*,::after,::before{box-sizing:border-box;word-wrap:break-word;transition:all .25s ease;}
body{margin:0}h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.17rem}hr{border-style:solid;border-width:1px 0 0;color:inherit;height:0;overflow:visible}audio,canvas,embed,iframe,img,object,svg,video,picture{display:block;max-width:100%}canvas,img,svg,video{height:auto}audio{width:100%}img{border-style:none}svg{overflow:hidden}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}
p, dd, figure {margin: 0;}
h1,h2,h3 { margin: 0; }
*, *::before, *::after {
	box-sizing: border-box;
	word-break: break-all;
}
ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; }
a:hover { text-decoration: none; }

:root {
	--color01: #fff;
	--color02: #1a1b4b;
	--color03: #39a0a5;
  --color04: #eb6c00;/*eb6c00*/
  --color05: #61c4c9;
  --color06: #969696;
  --color07: #444;
  --color08: #44b8c4;
  --color09: #fcfbe6;
}

html {
	position: relative;
	min-height: 100%;
}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-size: 100%;
  font-family: 'Roboto','Kosugi Maru', sans-serif;
	font-weight: 500;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: unset;
  font-feature-settings: "palt" 1;
}


/* GLOBAL HEADER
____________________________________________ */
.globalHeader {
  display: block;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(255,255,255,0.75);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.globalHeader .headerInner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 2vw;
}
.globalHeader .headerInner .siteID {
  flex-grow: 0;
  display: flex;
  align-items: center;
  width: min(30%, 140px);
}
.globalHeader .headerInner .siteID a {
  display: inline-block;
}
.globalNav {
  display: none;
}
.siteNav {
  display: none;
}
@media(min-width: 1024px) {
  .globalHeader .headerInner {
    padding: 0 2vw;
  }
  .globalHeader .headerInner .siteID {
    width: auto;
  }
  .globalNav {
    display: block;
  }
  .globalNav ul {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .globalNav ul li a {
    font-size: min(3vw, 14px);
    padding: 1em 1em;
    display: block;
    color: var(--color02);
  }
  .globalNav ul li a img {
    width: 100%;
  }
  .siteNav {
    display: block;
    padding-bottom: 3px;
    margin-right: 0;
  }
  .siteNav a {
    display: block;
  }
  .siteNav a img {
    width: 100%;
    height: auto;
  }
}

/* 警報発出
____________________________________________ */
.alertIssued {
  background: var(--color08);
  color: #fff;
  padding: 3px;
  border-radius: 10px;
  width: 100%;
  max-width: calc( 100% - (4vw * 2));
  margin: 3rem auto 1rem auto;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: column;
}
.alertIssued.invoke {
  background: var(--color04);
}

.alertIssued .alertStat {
  color: var(--color03);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px 10px 0 0;
  font-size: min(8vw, 58px);
  font-weight: 500;
  text-align: justify;
  padding: 1em .5em;
  position: relative;
}
.alertIssued.invoke .alertStat {
  color: var(--color04);
}
.alertIssued .alertDetail {
  width: 100%;
  padding: 8px 5px 8px 5px;
}
.alertIssued .alertDetail .first {
  background: #fff;
  padding: 1em;
  border-radius: 5px;
}
.alertIssued .alertDetail .first .alertInfo {
  font-size: min(5vw, 46px);
  margin-bottom: .75rem;
  display: block;
  color: var(--color03);
  text-align: center;
}
.alertIssued.invoke .alertDetail .first .alertInfo {
  font-size: min(5vw, 38px);
  color: var(--color04);
  text-align: left;
}

.alertIssued .alertDetail .first .alertInfo span {
  font-size: 60%;
  display: inline-block;
  margin: auto 5px;
}
.alertIssued .alertDetail .first .alertArea {
  font-size: min(5vw, 18px);
  color: var(--color02);
  text-align: center;
}
.alertIssued.invoke .alertDetail .first .alertArea {
  text-align: left;
}

.alertIssued .alertDetail .second {
  padding: 1em;
}
.alertIssued .alertDetail .second p {
  line-height: 1.6;
  font-size: min(4vw, 18px);
  font-weight: 100;
}
.alertIssued .alertDetail .second p a {
  color: #fff;
  margin-top: 1em;
  display: inline-block;
  font-weight: 100;
  border: 1px solid #fff;
  border-radius: 2em;
  padding: 0.5em 1.5em;
}
.alertIssued .alertDetail .second p a:hover {
  background: #fff;
  color: #000;
}

@media(min-width: 970px) {
  .alertIssued {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 80%;
    width: fit-content;
  }
  .alertIssued .alertStat {
    width: 13rem;
    border-radius: 10px 0 0 10px;
    padding: 0;
    white-space: nowrap;
  }
  .alertIssued .alertDetail {
    width: 100%;
    padding: 5px 5px 5px 8px;
  }
  .alertIssued.invoke .alertDetail {
    width: calc(100% - 13rem);
  }
}

.availability-indicator::after,
.availability-indicator::before {
  display: block;
  content: "";
  width: 180%;
  height: 100%;
  position: absolute;
  background-color: var(--color04);
  border-radius: 50%;
  animation: pulse1 1.5s ease-out infinite;
}
.availability-indicator::after{
  animation-delay: 1s;
  animation: pulse1 2s ease-out infinite;
}
@keyframes pulse1 {
  0% { transform:scale(1); opacity:.3; }
  100% { transform:scale(4); opacity:0; }
}



/* FIRST VIEW
____________________________________________ */
.fv {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fv img {
  width: 100%;
  height: auto;
}


/* MAIN
____________________________________________ */


/* FUNCTION
____________________________________________ */
.isFlex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media(min-width: 750px) {
  .isFlex {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
  }
}

.btnWrap {
	display: flex;
  margin: 0 auto;
	padding: 1em 0 1em 0;
	flex-direction: column;
	justify-content: space-around;
  align-items: center;
}
.btnWrap a:hover,
.btnWrap button:hover {
  opacity: 0.75;
}


/* BASE
____________________________________________ */
.sec {
  padding: min(10%, 100px) 6vw min(10%, 70px) 6vw;
}
.secHeadline {
  width: 100%;
  max-width: calc(100% - (2vw * 2));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: min(10%, 80px);
}
.secHeadline .withHeadline {
  font-size: min(3.25vw, 16px);
  font-weight: 500;
  text-align: center;
  line-height: 2;
  padding-top: 2em;
}
.sec .inner {
  max-width: 1024px;
  margin: 0 auto;
}


/* SEC01
____________________________________________ */
.sec01 .secHeadline.slogan p:nth-of-type(1) {
  font-size: min(6vw, 30px);
  font-weight: 700;
  color: var(--color07);
  letter-spacing: 0.2em;
  font-feature-settings: "palt" 1;
  line-height: 1;
  margin-bottom: 1em;
}
.sec01 .secHeadline.slogan p:nth-of-type(2) {
  font-size: min(6vw, 48px);
  font-weight: 700;
  color: var(--color08);
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  line-height: 1;
}
@media (min-width: 750px) {
  .sec01 .secHeadline.slogan p:nth-of-type(2) {
    letter-spacing: 0.075em;
  }
}

.sec01 .inner > img {
  display: block;
  margin: 0 auto 60px auto;
}
.sec01 .inner .lead {
  background: var(--color09);
  text-align: center;
  padding: min(10%, 60px) min(4vw, 40px);
  border-radius: 20px;
  letter-spacing: 0;
  font-size: min(4.75vw, 22px);
  line-height: 2;
  font-weight: 500;
  margin-bottom: 60px;
  white-space: nowrap;
}
.sec01 .inner .lead span {
  display: block;
  font-size: 100%;
  white-space: nowrap;
  letter-spacing: 0.2em;
  line-height: 1.75;
  color: var(--color08);
  margin: 1em 0;
}
.sec01 .inner .lead span em {
  font-size: 140%;
  white-space: nowrap;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  border-bottom: 3px dotted var(--color04);
}
@media (min-width: 750px) {
  .sec01 .inner .lead {
    letter-spacing: 0.1em;
    white-space: normal;
  }
  .sec01 .inner .lead span {
    font-size: 125%;
    margin: 0 auto 0.25em auto;
  }
  .sec01 .inner .lead span em {
    font-size: 125%;
    letter-spacing: 0.15em;
  }
}
.sec01 .inner .desc {
  font-size: min(3.5vw, 20px);
  line-height: 1.8;
  margin-bottom: 60px;
}
.sec01 .inner .desc em {
  font-style: normal;
  font-weight: 500;
  line-height: 2.2;
  color: var(--color05);
}


/* SEC02
____________________________________________ */
.sec02 {
  background: url(img/image-user_section2.png) no-repeat, url(img/bg-user_section2.png) var(--color05);
  background-position: 70% calc(100% - 60px), 0 0;
}
.sec02 .isFlex {
  flex-direction: column;
}
.sec02 .isFlex .video {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: #eee;
  margin-bottom: 2em;
}
.sec02 .isFlex .video > iframe {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 9;
}
.sec02 .isFlex .videoInfo {
  width: 100%;
  padding-left: 0;
  line-height: 1.8;
  font-size: min(4vw, 18px);
  text-align: justify;
}
@media (min-width: 750px) {
  .sec02 .isFlex {
    flex-direction: row;
    align-items: center;
  }
  .sec02 .isFlex .video {
    width: 50%;
    margin-bottom: 0;
  }
  .sec02 .isFlex .videoInfo {
    width: 50%;
    padding-left: 2em;
  }
}


/* SEC03
____________________________________________ */
.faqList {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	display: block;
	letter-spacing: -.05em;
}
.faqList dl {
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0;
	margin: 0 0 1rem 0;
	background: var(--color01);
	letter-spacing: 0;
	width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--color05);
}
.faqList dl dt {
	font-weight: 700;
	display: flex;
	align-items: center;
	cursor: pointer;
  background: var(--color05);
}
.faqList dl.faqOpen dt {
  background: var(--color01);
}
.faqList dl dt::after {
	content: '';
	display: block;
	color: #fff;
	width: min(7vw, 2.5em);
	height: min(7vw, 2.5em);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50%;
  background-color: #fff;
	background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48"><path d="M22.65 34h3v-8.3H34v-3h-8.35V14h-3v8.7H14v3h8.65ZM24 44q-4.1 0-7.75-1.575-3.65-1.575-6.375-4.3-2.725-2.725-4.3-6.375Q4 28.1 4 23.95q0-4.1 1.575-7.75 1.575-3.65 4.3-6.35 2.725-2.7 6.375-4.275Q19.9 4 24.05 4q4.1 0 7.75 1.575 3.65 1.575 6.35 4.275 2.7 2.7 4.275 6.35Q44 19.85 44 24q0 4.1-1.575 7.75-1.575 3.65-4.275 6.375t-6.35 4.3Q28.15 44 24 44Zm.05-3q7.05 0 12-4.975T41 23.95q0-7.05-4.95-12T24 7q-7.05 0-12.025 4.95Q7 16.9 7 24q0 7.05 4.975 12.025Q16.95 41 24.05 41ZM24 24Z" fill="%23f3ab4b"/></svg>');
}
.faqList dl.faqOpen dt::after {
	background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48"><path d="M14 25.35h20v-3H14ZM24 44q-4.1 0-7.75-1.575-3.65-1.575-6.375-4.3-2.725-2.725-4.3-6.375Q4 28.1 4 24q0-4.15 1.575-7.8 1.575-3.65 4.3-6.35 2.725-2.7 6.375-4.275Q19.9 4 24 4q4.15 0 7.8 1.575 3.65 1.575 6.35 4.275 2.7 2.7 4.275 6.35Q44 19.85 44 24q0 4.1-1.575 7.75-1.575 3.65-4.275 6.375t-6.35 4.3Q28.15 44 24 44Zm0-3q7.1 0 12.05-4.975Q41 31.05 41 24q0-7.1-4.95-12.05Q31.1 7 24 7q-7.05 0-12.025 4.95Q7 16.9 7 24q0 7.05 4.975 12.025Q16.95 41 24 41Zm0-17Z" fill="%23f3ab4b"/></svg>');
}
.faqList dl dt p {
	line-height: 1.4;
	width: calc(100% - min(7vw, 3em) - 4vw);
	user-select: none;
	font-feature-settings: "palt" 1;
	font-size: min(5vmin, 18px);
	font-weight: 600;
	padding: 1.75rem 1.5rem 1.5rem 2rem;
  letter-spacing: 0.15em;
	text-align: justify;
}
@media (min-width: 750px) {
	.faqList dl {
		width: 100%;
	}
	.faqList dl dt p {
		width: calc(100% - min(7vw, 3em));
	}
}
.faqList dl dd {
	display: flex;
	height: 0;
	opacity: 0;
	padding: 0;
	overflow: hidden;
	width: 100%;
	font-size: min(3.75vmin, 18px);
	transition: all .75s ease;
}
.faqList dl.faqOpen dd {
	height: auto;
	opacity: 1;
	padding: 0;
	align-items: flex-start;
	transition: all .75s ease;
}
.faqList dl dd p {
	line-height: 1.8;
	flex-grow: 1;
	width: 100%;
	padding: 0 1.5rem 1.5rem 2rem;
	letter-spacing: .05em;
	font-feature-settings: "palt" 1;
	font-size: min(5vw, 16px);
	font-weight: 400;
}



/* SEC04
____________________________________________ */
.sec04 {
  padding: 0;
}
.sec04 .leaf_header {
  width: 100%;
}
.sec04 .leafkatei {
  background: #f0d34a;
  padding-bottom: 5%;
}
.sec04 .leafoffice {
  background: #d09256;
  padding-bottom: 5%;
  margin-bottom: 5%;
}

.sec04 .leafkatei > img {
  display: block;
  margin: 0 auto;
  width: 92%;
}
.sec04 .leafoffice > img {
  display: block;
  margin: 0 auto;
  width: 92%;
}
@media (min-width: 750px) {
  .sec04 .leafkatei > img {
    width: 67%;
  }
  .sec04 .leafoffice > img {
    width: 67%;
  }
}

.sec04 .setsuden_leaflet_body_sp {
  padding: 4vw;
}

.sec04 .setsuden_leaflet_body_sp img {
  margin-bottom: 4vw;
}

.sec04 .shoene_setsuden {
  display: block;
  margin: 2rem auto;
  width: 100%;
  max-width: 80%;
}
.sec04 .secHeadline {
  margin-top: 100px;
}

.downloadLeaflet {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.downloadLeaflet .thumb {
  margin-bottom: min(10%, 80px);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.downloadLeaflet .thumb .leafletImg {
  flex: 0 1 calc(100% / 2 - 2%);
}
.downloadLeaflet .thumb .leafletImg img {
  width: 100%;
}
.downloadLeaflet .leafletNote {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  border: none;
  width: 100%;
  margin: 0 auto;
}
.downloadLeaflet .leafletNote dl {
  margin: 0 auto 5% auto;
  flex: 1 1 auto;
}
.downloadLeaflet .leafletNote dl dt {
  margin-bottom: 2rem;
}
.downloadLeaflet .leafletNote dl dd .btnWrap {
  width: 70%;
}
@media (min-width: 750px) {
  .downloadLeaflet .leafletNote {
    flex-direction: row;
    border: 3px solid var(--color03);
    width: 86%;
    padding: 5% 5%;
  }
  .downloadLeaflet .leafletNote dl {
    margin: 0 auto;
    flex: 0 0 70%;
  }
}



/* GLOBAL FOOTER
____________________________________________ */
.globalFooter {
  display: block;
  width: 100%;
  background: #fff;
  padding: min(10%, 60px) 6vw min(10%, 60px) 6vw;
}
.globalFooter .footerInner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 2vw;
}

.adopt_banner {
  margin-bottom: 100px;
}

.globalFooter .footerInner .shigen_logo {
  display: block;
  width: min(50%, 200px);
  margin-bottom: 30px;
}
.globalFooter .footerInner .shigen_logo a {
  display: block;
  width: 100%;
}
.globalFooter .footerInner .shigen_logo a img {
  width: 100%;
}
.globalFooter .footerInner .privacy a {
  font-size: min(3vw, 14px);
  color: var(--color00);
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 60px;
}



.globalFooter .footerInner .selfinfo {
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;
}
.globalFooter .footerInner .selfinfo dt {
	padding: 0;
	text-align: center;
	line-height: 1;
	font-size: min(13vw, 16px);
}
.globalFooter .footerInner .selfinfo dd {
	text-align: center;
	padding-top: .5em;
}
.globalFooter .footerInner .selfinfo dd p:nth-of-type(1) {
  margin-bottom: 1em;
}
.globalFooter .footerInner .selfinfo dd a {
	font-size: min(5vw, 48px);
	color: var(--color00);
	line-height: 1;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1rem;
}
.globalFooter .footerInner .selfinfo dd a + p {
	font-size: min(4vw, 14px);
  letter-spacing: 0.25em;
}
.globalFooter .footerInner .operation {
  font-size: min(4vw, 14px);
  display: block;
  padding: 7% 0;
  text-align: center;
}


.floatBadge {
  position: fixed;
  right: 4vw;
  bottom: 4vw;
  z-index: 100;
  display: block;
  width: min(24%, 167px);
}
.floatBadge img {
  width: 100%;
  height: auto;
}
@media (min-width: 750px) {
  .floatBadge {
    right: 4vw;
    bottom: 4vw;
  }
  .floatBadge:hover {
    transform: rotate(7deg);
  }
}



._sp { display: block !important; }
._pc { display: none !important; }
@media (min-width: 750px) {
	._sp { display: none !important; }
	._pc { display: block !important; }
}
