@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Maru+Gothic:wght@500;700;900&display=swap');

.en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/*----------------------------------------------------
	☆Reset
----------------------------------------------------*/
body, h1, h2, h3, h4, h5, h6, pre, ul , ol , li, dl, dt, dd, p, img {
	margin:0;
	padding:0;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 700;
}
body {
	font-size: 15px;
    font-family: "Zen Maru Gothic", '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro', 'メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック','MS P Gothic',sans-serif;
    font-weight: 500;
	color:#513924;
    letter-spacing: 0.15em;
    font-feature-settings: "palt";
	line-height: 1.75;
	width: 100%;
	overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    background: #f5f5ee;
}

#wrapper{
	width: 100%;
    overflow: hidden;
}

body, div, p, span, ul, ol, li, dl, dt, dd, table, tr, th, td, img, header, footer, small, section, a, h1, h2, h3, h4, h5, h6{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a {
    color: #000;
	text-decoration:none;
	cursor:pointer;
	outline:none;
}
a:link {
    color: #000;
	text-decoration:none;
	outline:none;
}
a:hover {
	text-decoration:none;
	outline:none;
}
ul, ol {
	list-style-type:none;
}
a:focus {
  outline: none;
}
img{ 
	vertical-align:bottom;
	width: 100%;
	-webkit-backface-visibility: hidden;
}

.sp{ display:none;}
.tab{ display:none;}
.pc{ display:block;}
.pc-inline{ display:inline;}
.btm0{ margin-bottom: 0 !important;}
.top0{ margin-top: 0 !important;}

.center{ text-align: center;}
.justify{ text-align: justify !important;}
.left{ text-align: left;}
.right{ text-align: right;}

.inlineBlock{ display: inline-block;}

.white{ color: #fff;}
.green{ color: #19937b;}
.pink{ color: #ea8888;}

.bgGreen{ background: #4cab98; color: #fff;}
.bgWhite{ background: #fff;}
.bgLineApp{ background: #06c755;}

.flex{
    display: flex;
    justify-content: space-between;
}
.flex.flex-center{
    justify-content: center;
}

a.link{
    transition: .4s;
    text-decoration: underline;
}
.linkArrow01{
    background: #e21b13;
    width: 1em;
    height: 1em;
    position: relative;
    border-radius: 100px;
    display: block;
}
.linkArrow01::before{
    content: "";
    display: block;
    width: 25%;
    height: 25%;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-75%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
    position: absolute;
}
.linkArrow01.white{
    background: #fff;
}
.linkArrow01.white::before{
    border-right: 1px solid #e21b13;
    border-bottom: 1px solid #e21b13;
}

.deco{
    position: absolute;
}

.max1200{    width: 85%;    max-width: 1200px;    margin: 0 auto;}
.max1080{    width: 85%;    max-width: 1080px;    margin: 0 auto;}
.max960{    width: 85%;    max-width: 960px;    margin: 0 auto;}
.max900{    width: 85%;    max-width: 900px;    margin: 0 auto;}
.max750{    width: 85%;    max-width: 750px;    margin: 0 auto;}
.max800{    width: 85%;    max-width: 800px;    margin: 0 auto;}

.max1200 .max1080,
.max1200 .max960,
.max1200 .max900,
.max1200 .max800,
.max1200 .max750{
    width: 100%;
}

.text{
	text-align: justify;
	letter-spacing: 0.08em;
    line-height: 2.2;
}

.nowrap{ white-space: nowrap; display: inline-block;}

p .small{
    font-size: 0.75em;
}

/*--- 画像ボケ防止 ---*/
@media screen and (min-width:769px) {
	img { 
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		image-rendering: crisp-edges;
		image-rendering: -webkit-optimize-contrast;
	}
}

/*----------------------------------------------------
	☆BASE CONTENTS PC
----------------------------------------------------*/

/*-- header --*/
#header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.0);
    transition: .4s;
}

.scrolled #header{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
}

#header .logo{
    transition: .4s;
    max-width: 303px;
    display: flex;
    align-items: center;
}
#header .headerLogo a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#header .headerMenu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.gNav ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 2em;
}
.gNav ul li{
    margin: 0 1em;
    font-size: 14px;
}
.gNav ul li a{
    color: #19937b;
    transition: .4s;
    font-weight: 700;
    line-height: 1;
    position: relative;
    display: block;
}
.gNav ul li a.current,
.gNav ul li a:hover{
    color: #ea8888;
}
.gNav ul li a.current::after,
.gNav ul li a:hover::after{
    opacity: 1;
}
.gNav ul li a::after{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: calc(50% - 4px);
    bottom: -15px;
    border-radius: 10px;
    background: #ea8888;
    opacity: 0;
    transition: .4s;
}
.btnLine a{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    text-align: center;
    padding: 20px 30px;
    border-radius: 100px;
    font-size: 16px;
    color: #fff;
    box-shadow: 7px 7px 5px rgba(68,53,21,0.15);
    font-weight: 700;
    transition: .4s;
}

.btnLine a .icon{
    width: 1.2em;
    height: 1.2em;
    margin-right: .4em;
}

#header .menuBtn{
    width: auto;
    height: 100%;
    background: #19937b;
    position: absolute;
    transition: .4s;
    top: 0;
    right: 0;
    aspect-ratio: 1 / 1;
    border-radius: 0 0 0 100%;
}
#header .menuBtn #nav-open{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .4s;
}

#header .menuBtn .border{
    height: 2px;
    background: #fff;
    position: absolute;
    left: 43%;
    transition: .4s;
    border-radius: 2px;
}
#header .menuBtn .border01{
    width: 36%;
    top: 30%;
}
#header .menuBtn .border02{
    width: 36%;
    top: 40%;
}
#header .menuBtn .border03{
    width: 36%;
    top: 50%;
}


/*-- バーガーメニュー --*/

#overlay {
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(76,171,152,1);
    /*backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
}

#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0px;
    z-index: 9997;
    width: 100%;
    height: 100vh;

    color: #fff;
    transition: 0.75s;
    visibility: hidden;
    text-align: left;
    opacity: 0;
    padding: 0 7.5%;
}

#nav-content.open {
    opacity: 1;
    visibility: visible;
}
#nav-content a{
    color: #fff;
}

#nav-content .navLogo{
    position: absolute;
    width: 220px;
    left: 20px;
    top: 20px;
}

#nav-content .nav-inner{
    width: 100%;
    margin: 0 auto;
    max-width: 1500px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    height: 100vh;
}

#nav-content .nav-inner #sp-nav{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#nav-content .nav-inner #sp-nav ul li{
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}
#nav-content .nav-inner #sp-nav ul li:last-child{
    margin-bottom: 0;
}
#nav-content .nav-inner #sp-nav ul li a{
    padding-bottom: 20px;
    font-size: 15px;
    display: block;
}
#nav-content .nav-inner #sp-nav ul li a::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../images/common/arrow_01_yellow.svg) center center / contain no-repeat;
    transform: translate(0, 2px);
    margin-right: 0.6em;
}

.nav-close{
    width: 80px;
    height: 80px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    cursor: pointer;
}
.nav-close.open {
    opacity: 1;
    visibility: visible;
}
.nav-close .border{
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 25px;
    top: 50%;
    border-radius: 2px;
}
.nav-close .border01{
    transform: rotate(45deg);
}
.nav-close .border02{
    transform: rotate(-45deg);
}


/*-- footer --*/
#footer{
    background: #19937b;
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 100px 0;
}

#footer small{
    opacity: 0.5;
    font-size: 10px;
}

#footer .footerInr{
    max-width: 1320px;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#footer .footerInr .footerL .logo{
    max-width: 303px;
}
#footer .footerInr .footerL .address{
    font-size: 12px;
    margin-top: 1em;
}

#footer .footerInr .footerL{
    white-space: nowrap;
}
#footer .footerInr .footerR{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

#footer .footerInr .footerR small{
    font-size: 12px;
    text-align: right;
    margin-top: 30px;
    width: 100%;
}
#footer .gNav ul li a{
    color: #fff;
}
#footer .gNav ul li a::after{
    background: #ffca05;
}

/*--- topcontrol ---*/
#contact{
    background: #e8e8dd;
    width: calc(100% - 120px);
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px 30px 0 0;
    padding: 100px 0;
    text-align: center;
    z-index: 1;
}
#contact .deco{
    width: 370px;
    position: absolute;
    bottom: 0;
}
#contact .deco01{
    left: -40px;
}
#contact .deco02{
    right: -40px;
}
#contact .btnBox{
    margin: 60px auto 0;
}

#contact .btnBox .caption{
    position: relative;
    font-size: clamp(11px,3.5vw,19px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}
#contact .btnBox .caption::before,
#contact .btnBox .caption::after{
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 2px;
    background: #513924;
    border-radius: 2px;
}
#contact .btnBox .caption::before{
    transform: rotate(-120deg) translate(10px, -7px);
}
#contact .btnBox .caption::after{
    transform: rotate(120deg) translate(-10px, -7px);
}

#contact .btnLine a{
    max-width: 480px;
    margin: 0 auto;
    font-size: clamp(20px,3.2vw,30px);
    width: 85%;
}

/*--- topcontrol ---*/
#pagetop{
    width: 60px;
    height: 60px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10;
    opacity:0;
    transition: .4s;
    cursor: pointer;
    background: url("../images/common/pagetop.svg") center center / contain no-repeat;
}
#pagetop.is-fadein {
    visibility: visible;
    opacity: 1;
}



/*----------------------------------------------------
	☆INNER BASE PARTS
----------------------------------------------------*/

/*-- contents --*/
#contents{
    padding: 0 0 100px 0;
}

/*-- mainTitle --*/
#mainTitle{
    background: #4cab98;
    color: #fff;
    padding: 50px 0 70px;
    position: relative;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: calc(100% - 120px);
    margin: 103px auto 0;
}
#mainTitle .title{
    padding-top: 100px;
    position: relative;
    text-align: center;
    font-weight: 700;
}
#mainTitle .title::before{
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
}

#service #mainTitle .title::before{ background: url("../images/service/icon_main_service.png") center center / contain no-repeat;}
#office #mainTitle .title::before{ background: url("../images/office/icon_main_office.png") center center / contain no-repeat;}
#price #mainTitle .title::before{ background: url("../images/price/icon_main_price.png") center center / contain no-repeat;}
#faq #mainTitle .title::before{ background: url("../images/faq/icon_main_faq.png") center center / contain no-repeat;}

#mainTitle .title span{
    display: block;
    line-height: 1.2;
}
#mainTitle .title .en{
    font-size: 21px;
    color: #ffca05;
}
#mainTitle .title .jp{
    font-size: clamp(28px,5.3vw,48px);
}

/*--- section ---*/
#contents .section{
    padding: 120px 0;
}
#contents .section.noPadding{
    padding: 0;
}
#contents .section.noPaddingTop{
    padding-top: 0;
}
/*#contents .section:last-of-type{
    padding-bottom: 0;
}*/


/*--- innerNav ---*/
#contents .innerNav{
    z-index: 2;
    position: relative;
    transform: translate(0,50%);
}
#contents .innerNav ul{
    background: #fff;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 7px 7px 5px rgba(68, 53, 21, 0.15);
    display: flex;
    justify-content: space-between;
    width: 95%;
    max-width: 1320px;
    padding: 20px 0;
}
#contents .innerNav ul li{
    width: calc(100% / 3);
    text-align: center;
    font-size: 16px;
}
#contents .innerNav ul li{
    border-right: 1px solid #ccc;
}
#contents .innerNav ul li:last-child{
    border: none;
}
#contents .innerNav ul li a{
    position: relative;
    padding: 0 20px 1.5em;
    line-height: 1.3;
    color: #19937b;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    font-size: clamp(10px,2vw,16px);
    letter-spacing: 0.05em;
}
#contents .innerNav ul li a::after{
    display: block;
    width: 0.9em;
    height: 0.9em;
    background: url("../images/common/icon_anchor.svg") center center / contain no-repeat;
    content: "";
    position: absolute;
    left: calc(50% - 0.45em);
    bottom: 0;
}


/*----------------------------------------------------
	☆COMPONENT PC
----------------------------------------------------*/

/*-- head --*/
.head01{
    text-align: center;
    position: relative;
    padding-bottom: 17px;
    margin-bottom: 40px;
}
.head01 .en{
    font-size: 14px;
    line-height: 1.3;
    display: block;
}
.head01 .jp{
    font-size: clamp(24px,5.2vw,42px);
    line-height: 1.3;
    display: block;
    letter-spacing: 0.12em;
    margin-top: 0.08em;
}
.head01::after{
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    border-radius: 10px;
    position: absolute;
    left: calc(50% - 25px);
    bottom: 0;
    background: #ea8888;
}
.head01 span{
    color: #19937b;
}
.head01::after{
}
.bgGreen .head01 .en{
    color: #ffca05;
}
.bgGreen .head01 .jp{
    color: #fff;
}
.bgGreen .head01::after{
    background: #fff;
}

.head02{
    font-size: clamp(22px,2.6vw,26px);
    text-align: center;
    margin-bottom: .8em;
    color: #19937b;
    line-height: 1.3;
}
.head03{
    font-size: clamp(22px,2.6vw,26px);
    text-align: center;
    margin-bottom: 1.5em;
    color: #19937b;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head03::before,
.head03::after{
    content: "";
    display: inline-block;
    height: 1px;
    background: #ffca05;
    width: 50%;
}
.head03::before{
    margin-right: 0.5em;
}
.head03::after{
    margin-left: 0.5em;
}

.head04{
    font-size: clamp(22px,2.6vw,26px);
    text-align: center;
    margin-bottom: 1em;
    color: #19937b;
    line-height: 1.5;
}

.head05{
    font-size: clamp(24px,3vw,34px);
    color: #19937b;
    line-height: 1.5;
    position: relative;
    padding: 0 0 4px 27px;
    font-weight: 700;
}
.head05::before{
    content: "";
    display: block;
    width: 5px;
    border-radius: 100px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ea8888;
}

/*-- lead --*/
.lead01{
    text-align: center;
}

/*-- list --*/
ul.indList li {
	text-indent:-1em;
	padding-left:1em;
}
ol.decimal{
	padding-left:1.5em;
}
ol.decimal li{
	list-style:decimal;
	margin-bottom:8px;
}
ul.disc{
	padding-left:1.5em;
}
ul.disc li{
	list-style:disc;
	margin-bottom:8px;
    display: list-item !important;
}

ul.dotList{
}
ul.dotList li{
	margin-bottom:6px;
	padding-left:1.5em;
    line-height: 1.45;
    position: relative;
    font-weight: 700;
}
ul.dotList li::before{
    content: "●";
    color: #19937b;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.45;
    display: block;
}

/*-- button --*/
.btn01{
    display: table;
    margin: 60px auto 0;
}
.btn01 a{
    display: block;
    position: relative;
    background: #513924;
    color: #fff;
    border-radius: 100px;
    padding: 20px 50px;
    font-size: 18px;
    line-height: 1.2;
    transition: .4s;
    font-weight: bold;
    box-shadow: 7px 7px 5px rgba(68,53,21,0.15);
}


/*-- moreBtn --*/
.moreBtn .inr{
    display: flex;
    justify-content: center;
    font-weight: 700;
    transition: .4s;
    line-height: 1.2;
}
.moreBtn .inr::before{
    content: "";
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    background: url("../images/common/arrow_01_yellow.svg") center center / contain no-repeat;
    transform: translate(0,2px);
    margin-right: 0.5em;
}

/*-- spOverflow --*/
.spOverflow{
    position: relative;
}


/*-- table --*/
.table01 > dl{
    display: flex;
    line-height: 1.5;
}
.table01 > dl > dt{
    width: 25%;
    position: relative;
    padding: 30px 0;
    font-weight: 700;
    color: #19937b;
    background: #f5f5ee;
    text-align: center;
    line-height: 1.5;
}
.table01 > dl > dd{
    width: 75%;
    position: relative;
    padding: 30px 0 30px 20px;    
}
.table01 > dl:first-child > dd::before,
.table01 > dl:first-child > dt::before,
.table01 > dl > dd::after,
.table01 > dl > dt::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.15);
}
.table01 > dl:first-child > dd::before,
.table01 > dl:first-child > dt::before{
    top: 0;
    bottom: auto;
}
.table01 > dl:first-child  > dd::before,
.table01 > dl > dd::after{
    background: #d8d8d8;
}


/*-- bg --*/
.bg01{
}


/*-- photoAndTextBox --*/

.photoAndTextBox{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    width: 85%;
    margin: 0 auto;
}
.photoAndTextBox .image{
    border-radius: 30px;
    background-position: center center;
    background-size: cover;
    width: 50%;
    position: relative;
}
.photoAndTextBox .info{
    width: 50%;
    padding: 60px 0 60px 60px;
}
.photoAndTextBox .title{
    color: #19937b;
    font-size: clamp(20px,2.6vw,26px);
    margin-bottom: 25px;
    font-weight: 700;
}
#top .photoAndTextBox .title{
    font-size: clamp(23px,2.7vw,30px);
}

/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/
#mv .slidein,
.out.slidein,
.out .slidein{
    opacity: 0;
}

#mv .slidein,
.in.slidein,
.in .slidein{
    animation: slidein 0.8s ease forwards;
}

@keyframes slidein{
    0%{ transform: translate(0,10px); opacity: 0; }
    100%{  transform: translate(0,0);opacity: 1;}
}

.clip01 {
    transition: 1s;
    clip-path: inset(0 100% 0 0);
}

.in .clip01,
.in.clip01{
    clip-path: inset(0 0 0 0);
}

.clip02 {
    transition: .4s;
    clip-path: inset(50% 50% 50% 50%);
}
.in .clip02,
.in.clip02{
    clip-path: inset(0 0 0 0);
}

#mv .clipAnimationLtoR,
.clipAnimationLtoR {
    clip-path: inset(0 100% 0 0);
}

#mv .clipAnimationLtoR,
.in .clipAnimationLtoR,
.in.clipAnimationLtoR{
    animation: clipAnimationLtoR .5s ease-in-out forwards;
}

@keyframes clipAnimationLtoR {
	0% { clip-path: inset(0 100% 0 0);}
	100% { clip-path: inset(0 0 0 0); }
}

#mv .clipAnimationRtoL,
.clipAnimationRtoL {
    clip-path: inset(0 0 0 100%);
}
#mv .clipAnimationRtoL,
.in .clipAnimationRtoL,
.in.clipAnimationRtoL {
    animation: clipAnimationRtoL .5s ease-in-out forwards;
}

@keyframes clipAnimationRtoL {
    0%   { clip-path: inset(0 0 0 100%); }
    100% { clip-path: inset(0 0 0 0); }
}

#mv .clipAnimationTtoB,
.in .clipAnimationTtoB,
.in.clipAnimationTtoB {
    animation: clipAnimationTtoB .5s ease-in-out forwards;
}
@keyframes clipAnimationTtoB {
	0% { clip-path: inset(0 0 100% 0); }
	100% { clip-path: inset(0 0 0 0); }
}


.fadein{
    opacity: 0;
}
.in.fadein,
.in .fadein,
#mv .fadein,
#mainTitle .fadein{
    animation: fadein 1s ease forwards;
}

@keyframes fadein {
	0% { opacity: 0;}
	100% { opacity: 1; }
}

.delay01{ animation-delay: 0.1s!important;}
.delay02{ animation-delay: 0.2s!important;}
.delay03{ animation-delay: 0.3s!important;}
.delay04{ animation-delay: 0.4s!important;}
.delay05{ animation-delay: 0.5s!important;}
.delay06{ animation-delay: 0.6s!important;}
.delay07{ animation-delay: 0.7s!important;}
.delay08{ animation-delay: 0.8s!important;}
.delay09{ animation-delay: 0.9s!important;}
.delay10{ animation-delay: 1.0s!important;}
.delay11{ animation-delay: 1.1s!important;}
.delay12{ animation-delay: 1.2s!important;}
.delay13{ animation-delay: 1.3s!important;}
.delay14{ animation-delay: 1.4s!important;}
.delay15{ animation-delay: 1.5s!important;}
.delay16{ animation-delay: 1.6s!important;}
.delay17{ animation-delay: 1.7s!important;}
.delay18{ animation-delay: 1.8s!important;}
.delay19{ animation-delay: 1.9s!important;}
.delay20{ animation-delay: 2.0s!important;}
.delay21{ animation-delay: 2.1s!important;}
.delay22{ animation-delay: 2.2s!important;}
.delay23{ animation-delay: 2.3s!important;}
.delay24{ animation-delay: 2.4s!important;}
.delay25{ animation-delay: 2.5s!important;}
.delay26{ animation-delay: 2.6s!important;}
.delay27{ animation-delay: 2.7s!important;}
.delay28{ animation-delay: 2.8s!important;}
.delay29{ animation-delay: 2.9s!important;}
.delay30{ animation-delay: 3.0s!important;}
.delay31{ animation-delay: 3.1s!important;}
.delay32{ animation-delay: 3.2s!important;}
.delay33{ animation-delay: 3.3s!important;}
.delay34{ animation-delay: 3.4s!important;}
.delay35{ animation-delay: 3.5s!important;}
.delay36{ animation-delay: 3.6s!important;}
.delay37{ animation-delay: 3.7s!important;}
.delay38{ animation-delay: 3.8s!important;}
.delay39{ animation-delay: 3.9s!important;}
.delay40{ animation-delay: 4.0s!important;}

.clip01.delay02{ transition-delay: 0.2s !important;}
.clip01.delay04{ transition-delay: 0.4s !important;}
.clip01.delay06{ transition-delay: 0.6s !important;}
.clip01.delay08{ transition-delay: 0.8s !important;}
.clip01.delay10{ transition-delay: 1s !important;}


#mainTitle .breadcrumb,
#mainTitle .title{
    clip-path: inset(0 100% 0 0);
    animation: mvClip .5s ease-in-out forwards;
}
@keyframes mvClip {
    0% { clip-path: inset(0 100% 0 0);}
	100% { clip-path: inset(0 0 0 0);}
}

#mainTitle .inrNav ul li{
    animation: slidein 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.4s !important;
}
#mainTitle .inrNav ul li:nth-child(2){ animation-delay: 0.6s !important;}
#mainTitle .inrNav ul li:nth-child(3){ animation-delay: 0.8s !important;}
#mainTitle .inrNav ul li:nth-child(4){ animation-delay: 1.0s !important;}
#mainTitle .inrNav ul li:nth-child(5){ animation-delay: 1.2s !important;}
#mainTitle .inrNav ul li:nth-child(6){ animation-delay: 1.4s !important;}
#mainTitle .inrNav ul li:nth-child(7){ animation-delay: 1.6s !important;}
#mainTitle .inrNav ul li:nth-child(8){ animation-delay: 1.8s !important;}
#mainTitle .inrNav ul li:nth-child(9){ animation-delay: 2.0s !important;}
#mainTitle .inrNav ul li:nth-child(10){ animation-delay: 2.2s !important;}

@keyframes slide {
	0% { transform: translateX(10px); opacity: 0;}
	3% { transform: translateX(10px); opacity: 1;}
	100% { transform: translateX(-10px); opacity: 0; }
}

/*----------------------------------------------------
	☆901以上　PCのみ & HOVER
----------------------------------------------------*/

@media screen and (min-width:901px) {
    
	
    /*--- bace pc hover ---*/
    
    a.link:hover{
        text-decoration: none;
    }
    
    .btnLine a:hover{
        background: #ea8888;
    }
    #footer .gNav ul li a:hover{
        color: #ffca05;
    }
    
    a:hover .moreBtn .inr{
        color: #ffca05;
    }
    .btn01 a:hover{
        background: #ffca05;
        color: #513924;
    }
    
    
}



/*----------------------------------------------------
	☆UNDER 1200
----------------------------------------------------*/

@media screen and (max-width:1200px) {
    
    #header {
        padding: 25px 40px 15px;
    }
    #header .gNav.pc{
        display: none;
    }
    #header .menuBtn.sp{
        display: block;
    }
    #header .headerMenu .btnLine{
        position: absolute;
        right: 95px;
        top: 50%;
        transform: translateY(-50%);
    }
    #header .headerMenu .btnLine a {
        padding: 15px 30px;
    }
    
    
    #footer .footerInr{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #footer .footerInr .footerL,
    #footer .footerInr .footerR {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #footer .footerInr .footerR {
        margin-top: 40px;
        gap: 40px;
    }
    
    
    /*----------------------------------------------------
        ☆COMPONENT
    ----------------------------------------------------*/
    
    /*--- head ---*/
    .head01{
    }
    
    
    /*--- section ---*/
    #contents .section {
        padding: 100px 0;
    }
    
    /*--- photoAndTextBox ---*/
    .photoAndTextBox .info {
        width: 50%;
        padding: 30px 0 30px 50px;
    }
    
}

/*----------------------------------------------------
	☆UNDER 1000
----------------------------------------------------*/

@media screen and (max-width:1000px) {
    
    .text {
        line-height: 1.8;
    }
    
    /*----------------------------------------------------
        ☆BASE
    ----------------------------------------------------*/
    #nav-content .nav-inner{
        justify-content: flex-start;
    }
    #gnav{
        padding: 160px 0;
    }
    #gnav .sitemapLinkList > ul{
        justify-content: space-between;
    }
    #gnav .sitemapLinkList > ul > li{
        width: 29%;
        margin-right: 0 !important;
    }
    #nav-content .sitemapLinkList > ul > li .categoryTitle .en{
        font-size: clamp(10px,1.2vw,12px);
    }
    #nav-content .sitemapLinkList > ul > li .categoryTitle .jp {
        font-size: clamp(16px,2vw,20px);
    }
    #nav-content .sitemapLinkList > ul > li ul li a{
        font-size: clamp(12px,1.6vw,16px);
    }
    
    
    /*----------------------------------------------------
        ☆COMPONENT
    ----------------------------------------------------*/
    
    /*--- head ---*/
    
}


/*----------------------------------------------------
	☆UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {
    
    body {
	    font-size:14px;
    }
    
    .tab{ display:block;}
    .pc, .pc-inline{ display:none;}
    
    /*----------------------------------------------------
	    ☆BASE CONTENTS
    ----------------------------------------------------*/
    
    /*--- header ---*/

    /*--- contact ---*/    
    #contact .center{
        text-align: justify;
        width: 85%;
        margin: 0 auto;
    }
    #contact .btnBox {
        margin: 40px auto 20px;
    }
    #contact .deco {
        width: 260px;
    }
    
    /*--- footer ---*/
    #footer .footerInr .footerLogo{
        width: auto;
    }
    
    
    /*----------------------------------------------------
        ☆INNER BASE PARTS
    ----------------------------------------------------*/
    
    /*--- mainTitle ---*/
    #mainTitle{
        width: 85%;
        border-radius: 30px;
    }
    
    
    /*----------------------------------------------------
        ☆COMPONENT
    ----------------------------------------------------*/
    
    /*--- lead ---*/
    .lead01{
    }
    
    /*--- head ---*/
    .head01 .jp {
    }
    
    /*-- photoAndTextBox --*/

    .photoAndTextBox{
        flex-direction: column;
    }
    .photoAndTextBox .image{
        border-radius: 20px;
        width: 100%;
        height: 60vw;
        max-width: 600px;
        max-height: 360px;
        margin: 0 auto;
    }
    .photoAndTextBox .info{
        width: 100%;
        padding: 40px 0 0 0;
    }
}


/*----------------------------------------------------
	☆UNDER 750
----------------------------------------------------*/

@media screen and (max-width:750px) {
    
    /*----------------------------------------------------
	    ☆BASE CONTENTS
    ----------------------------------------------------*/
    
    /*--- header ---*/
    #header{
        padding: 20px 20px 14px;
    }
    #header .logo{
        width: 64%;
    }
    
    #header .headerMenu .btnLine .title{
        display: none;
    }
    #header .headerMenu .btnLine{
        height: 100%;
        right: 145px;
    }
    #header .headerMenu .btnLine a{
        padding: 0;
        height: 75%;
        width: auto;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    #header .headerMenu .btnLine a .icon{
        margin-right: 0;
        width: 45%;
        height: 45%;
    }
}
    
/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
    
    body {
        font-size: 14px;
    }
    
    .sp{ display:block;}
    
    .text {
        line-height: 1.75;
    }
    
    /*----------------------------------------------------
	    ☆BASE CONTENTS
    ----------------------------------------------------*/
    
    #pagetop {
        width: 44px;
        height: 44px;
    }
    
    /*--- header ---*/
    #header .logo {
        width: 220px;
    }
    #header .menuBtn.sp{
        width: 60px;
        height: 60px;
    }
    #header .headerMenu .btnLine {
        right: 52px;
        width: 60px;
        height: 60px;
    }
    
    /*--- contact ---*/
    #contact {
        width: 85%;
        padding: 60px 0 80px;
    }
    #contact .btnBox .caption::before{
        transform: rotate(-120deg) translate(4px, 0px);
    }
    #contact .btnBox .caption::after{
        transform: rotate(120deg) translate(-4px, 0px);
    }
    #contact .deco {
        width: 210px;
    }
    #contact .deco01 {
        left: -60px;
    }
    #contact .deco02 {
        right: -60px;
}

    /*--- footer ---*/
    #footer{
        padding: 60px 0;
    }
    #footer .gNav{
        width: 100%;
    }
    #footer .gNav ul{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }
    #footer .gNav ul li {
        width: 100%;
        display: block;
        margin: 0 0 15px 0;
    }
    #footer .gNav ul li:last-of-type{
        margin-bottom: 0;
    }
    #footer .gNav ul li a{
        padding-bottom: 17px;
        border-bottom: 1px solid rgba(255,255,255,0.25);
        font-size: 13px;
        display: block;
        text-align: left;
        line-height: 1;
    }
    #footer .gNav ul li a::before {
        content: "";
        display: inline-block;
        width: 1em;
        height: 1em;
        background: url(../images/common/arrow_01_white.svg) center center / contain no-repeat;
        transform: translate(0, 2px);
        margin-right: 0.6em;
    }
    #footer .gNav ul li a::after{
        display: none;
    }
    #footer .footerInr .footerR small {
        margin-top: 0;
        font-size: clamp(10px, 2.5vw, 14px);
        text-align: center;
    }
    
    
    /*----------------------------------------------------
        ☆INNER BASE PARTS
    ----------------------------------------------------*/
    
    /*-- -mainTitle ---*/
    #mainTitle {
        width: 85%;
        border-radius: 20px;
        padding: 40px 30px;
    }
    #mainTitle .title {
        padding-top: 70px;
    }
    #mainTitle .title::before{
        width: 60px;
        height: 60px;
    }
    #mainTitle .title .en {
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    /*-- -mainTitle ---*/
    #contents .innerNav ul{
        padding: 15px 0;
    }
    
    /*----------------------------------------------------
        ☆COMPONENT
    ----------------------------------------------------*/
    
    #contents {
        padding: 0 0 60px 0;
    }
    
    /*--- section ---*/
    #contents .section {
        padding: 70px 0;
    }
        
    
    /*--- lead ---*/
    .lead01{
        text-align: justify;
    }
    
    /*--- head ---*/
    .head01 {
        margin-bottom: 25px;
    }
        
    /*-- spOverflow --*/
    .spOverflow{
		overflow-x: scroll;
		width: 100%;
		padding: 0 9% 20px;
    }
    .spOverflow img{
		width: 600px;
        opacity: 0.3;
        transition: .4s;
	}
    .spOverflow .inr{
        opacity: 0.3;
        position: relative;
    }
    .spOverflow .deco img{
        width: 100%;
    }
    .spOverflow.touched .inr,
    .spOverflow.touched img{
        opacity: 1;
    }
    .howToScroll.is-ua-sp{
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
	}
	.howToScroll.is-ua-sp .howToScrollInr::after{
		content: "";
		display: block;
		width: 70%;
		height: 100%;
		position: absolute;
		left: 15%;
		top: 0;
		z-index: 2;
		background: url("../images/common/icon_swipe.svg")center center / 60% auto no-repeat;
		animation: slide 1500ms linear infinite;
		transition: all 300ms;
	}
    .howToScroll.is-ua-sp.delete,
	.howToScroll.is-ua-sp .howToScrollInr.delete {
		animation: none;
		transition: .3s;
		opacity: 0;
		visibility: hidden;
	}
    
    
    /*-- btn01 --*/
    .btn01 a,
    .btnLine a {
        box-shadow: 5px 5px 3px rgba(68, 53, 21, 0.1);
    }
    
    /*-- table --*/
    .table01 > dl{
        flex-direction: column;
    }
    .table01 > dl > dt{
        width: 100%;
        padding: 10px 15px;
        text-align: left;
        line-height: 1.3;
        font-size: 13px;
    }
    .table01 > dl > dd{
        width: 100%;
        padding: 15px;    
    }
    .table01 > dl > dt::after,
    .table01 > dl:first-child > dd::before{
        display: none;
    }
    
    
    /*-- photoAndTextBox --*/
    .photoAndTextBox .title {
        margin-bottom: 20px;
        line-height: 1.5;
        letter-spacing: 0.05em;
    }
    .photoAndTextBox .info{
        padding-top: 30px;
    }
    .photoAndTextBox .image {
        border-radius: 20px;
    }
    
}


/*----------------------------------------------------
	☆UNDER 450
----------------------------------------------------*/

@media screen and (max-width:450px) {
}

/*----------------------------------------------------
	☆UNDER HEIGHT 600
----------------------------------------------------*/

@media screen and (max-height:600px) {
    
    #nav-content .nav-inner #sp-nav{
        justify-content: flex-start;
        padding: 100px 0;
    }
    
}

