@charset "utf-8";
html {
    font-size: 62.5%;
    background-color: #fff;
  }

  body {
    font-family: 
    'Zen kaku Gothic new';
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 24px;
    font-style: normal;
    color: #4B4B4B;
}

img {
    max-width: 100%;
    height:auto;
}  



/*==========================
header
==========================*/
.logo{
    width: 58px;
    height: auto;
}

.header {
    width:100%;
    padding: 0 5%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
  }
  
 .nav {
    background: rgba(255, 247, 246, 1);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(+100%);
    transition: transform 0.4s;
}

.nav__header {
    display: inline;
}

.nav__list {
    margin-top: 67px;
}

.nav__item {
    color: #979696;
    font-family: cinzel;
    font-size: 2rem;
    line-height: 1;
    margin:0 0 20px 50px;
    display: flex;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.icon__btn{
    display: flex;
    gap: 3vw;
}

.icon__btn a{
    display:inline-block;
}
.header__insta{
    width: 25px;
    height: 30px;
    padding-top: 1px;
}

.header__btn {
    display: block; 
    padding-right:5%;
    width: 34px;
}  
.nav__btn{
    width: 32px;
    margin: 16px 0 0 85.7vw;
}

/* .header pc */
@media screen and (min-width:769px) {
.logo{
    width: 70px;
    height: auto;
}

.header {
    max-width: 100%;
    height: 100px;
    margin: 0 auto;
    padding: 20px 60px;
}

.nav__header {
    display: none;
}

.nav {
    width: auto;
    height: auto;
    padding: 0;
    position: static;
    transform: translate(0);
    background-color: #fff;
}

.nav__list {
    margin-top: 0px;
    display: flex;
    align-items: center;
}


.nav__item {
    margin: 0 0 0 2.5vw;
    color: #666565;
    font-size: 1.8rem;
    line-height: 1.3;
}

.header__insta{
    width: 30px;
}


.nav__list li a{
	position: relative;
}

.nav__list li.current a,
.nav__list a:hover{
	color:#666565;

}

.nav__list li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom:-15%;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background:#969696;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.nav__list li.current a::after,
.nav__list li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}



.header__btn {
    display: none;
}

}/* pc 769px */


/*==========================
main
==========================*/

.top-sp{
 width: 100%;
}


.btn{color: #B99D21;
    font-family: "Josefin Sans";
    font-size: 1.6rem;
    line-height: 30px; 
}

.concept__btn{
    display: block;
    text-align: center;
}

.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }
    
/* .header pc */
@media screen and (min-width:769px) {

.top-sp {
    display: none;
}
   
.top-pc{
    width: 100%;
    display: block;
    }

}


/* =========================
plan
=========================== */

.ttl__sub{
    color: #B17272;
    font-size: 1rem;    
    line-height: 20px;
    text-align: center;
    }

.ttl__main{
    color: #B17272;
    font-family: "Josefin Sans";
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}
.spark_sp{
    text-align: center;
    margin-top: -12px;
}


.spark_sp{
    margin: auto;
    display: block;
}



/* 下からふわっと現れる */

/* jQueryで追加、削除 */
.fadeUp {
    -webkit-animation-name: fadeUpAnime;
            animation-name: fadeUpAnime; /*アニメーションの名前*/
    -webkit-animation-duration: 1s;
            animation-duration: 1s; /*アニメーションの実行時間*/
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; /*アニメーション後、要素が表示されたままにする*/
  }
  @-webkit-keyframes fadeUpAnime {
    0% {
      opacity: 0; /*非表示*/
      -webkit-transform: translateY(100px);
              transform: translateY(100px); /*縦方向に100pxずらす*/
    }
    100% {
      opacity: 1; /*表示*/
      -webkit-transform: translateY(0);
              transform: translateY(0); /*元の位置*/
    }
  }
  @keyframes fadeUpAnime {
    0% {
      opacity: 0; /*非表示*/
      -webkit-transform: translateY(100px);
              transform: translateY(100px); /*縦方向に100pxずらす*/
    }
    100% {
      opacity: 1; /*表示*/
      -webkit-transform: translateY(0);
              transform: translateY(0); /*元の位置*/
    }
  }
  .fadeUpTrigger {
    opacity: 0; /*非表示*/
  }


.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }


/* pc */
@media screen and (min-width:769px) {


    .ttl__sub{
        font-size: 2rem;
        margin-bottom: 6px;
    }
    .ttl__main{
        font-size: 5rem;
        line-height:70px;
    }
    
    .spark_sp{
        width: 60px;
        margin-top:-6px ;
    }


    .btn{
        font-size: 2.6rem;
        line-height: 50px; 
        } 
    
        .arrowbtn{
        width: 50px;
        padding-left: 2px;
        }


}


/*==========================
slick
==========================*/
.section--slick{
    padding: 20px 0;
}

.slider{ width:94%;
    margin:0 auto;
}

.slide-item{
    max-width: 130px;
    margin:0 1vw;
}

.slider .slick-slide {
    margin:0 1vw;
}

.slider{
    display: none;
  }
  .slider.slick-initialized{
    display: block; /*slick-initializedが付与されたら表示*/
  }

/* .slick-slider pc */
@media screen and (min-width:769px) {

    .section--slick{
        padding: 60px 4.2%;
    }

    .slider__item {
        margin: 0 1vw;
    }


}/* pc 769px */


/*==========================
feature
==========================*/
.feature__part{
    margin: 10px auto;
    width: 90vw;
    background: #FFF7F6;
    padding: 40px 0;
    text-align: center;
    margin: 40px auto;
    position: relative;
}

.feature__part:after {
    position: absolute;
    border: 2px solid #fff;
    content: "";
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
}

.featureimg{
    width: 56vw;
    margin: 30px auto 0 auto;
}


.feature__ttl{
    font-size: 1.6rem;
    font-weight:300;
    line-height: 24px; /* 150% */
    display: inline-block;
    margin: 20px;
}

.feature__ttl-part{
    margin: 15px auto;
}

.feature__txt{
    text-align: left;
    padding: 0 5vw;
}

.marker{
    background: linear-gradient(transparent 70%, #ffffff 0%);
  }

/* pc */
@media screen and (min-width:1000px) {
    .section--feature{
        padding: 60px 0;
    }

    .feature__part{
     padding:90px 8vw ;
    }

    .featureimg{
        width: 40%;
        height: auto; 
    }

    .featureimage{
   
    width: 30vw;
    max-width: 420px;
    }

    .feature__ttl{
       font-size: 1.8rem;
       font-weight: 400;
       line-height: 34px;
       text-align: center;
       width: 45vw;

    }
    
    .feature__txt{
        font-size: 1.4rem;
        line-height: 28px;
        width: 50vw;

    }
    
    .featuretxt{
        width:60%;
        }
    
    
    .feature__narabi{
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }
    .feature__part:after {
        position: absolute;
        border: 4px solid #fff;
        content: "";
        top: 8px;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }


}



/*==========================
price
==========================*/
.section--price{
    padding: 60px 0 50px;
    background:#F4F3E2;
}

.pricelist_ttl{
    text-align: center;
    color: #6b6b6b;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 30px 0 10px 0;
}

.pricetop{
    margin-top: 30px;
}

.price__ttl{
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 24px; /* 153.846% */
    margin-bottom: 10px;
}

.price__list{
    display: flex;
    justify-content: center;
    gap: 2.1vw;
}

.price__plan{
    padding: 20px 0;
    width:43.2vw;
    background: rgba(255, 255, 255, 0.80);
    margin:10px 0 10px 0 ;
}

.price__hr{
    width: 33vw;
    height: 0.5px;
    background: #D4D4D4;
    justify-content: center;
    display:flex;
    margin: 10px auto;
}

.price__span{
    text-align: center;
    font-size: 1.2rem;
    line-height: 18px; /* 109.091% */
}

.price__txt{
    margin: 4px 0 0 3px;
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    line-height: 20px; /* 150% */
}

.price__price{
    margin-top: 6px;
    text-align: center;
    font-family: "Josefin Sans";
    font-size: 1.1rem;
    line-height: 20px;
}

.money{
    text-align: center;
    font-family: "Josefin Sans";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 23px; 
}

.price__time{
    margin-top: 4px; 
    text-align: center;
    font-size: 1.2rem;
    line-height: 16px; /* 109.091% */
}


.price__attention{ 
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 8.5%;
    text-indent: -1em;
}


/* pc */
@media screen and (min-width:1000px) {

    .section--price{
        padding: 120px 0 ;
        background:#F4F3E2;
    }
    
    .pricelist_ttl{
        font-size: 2.4rem;
        font-weight: 500;
        margin: 60px 0 20px 0;
    }
    
    .pricetop{
        margin-top: 80px;
    }
    
    .price__ttl{
        font-size: 2rem;
        font-weight: 500;
        margin: 15px 0;
    }
    
    .price__list{
        display: flex;
        justify-content: center;
        gap: 2.1vw;
    }
    
    .price__plan{
        padding: 20px 0 40px 0;
        width:30vw;
        background: rgba(255, 255, 255, 0.80);
        margin:40px 0;
    }
    
    .price__hr{
        width: 24vw;
        height: 1px;
        background: #D4D4D4;
        justify-content: center;
        display:flex;
        margin: 20px auto;
    }
    
    .price__span{
        text-align: center;
        font-size: 1.6rem;
        line-height: 18px; /* 109.091% */
        margin-top: 8px;
    }
    
    .price__txt{
        margin: 8px 0 8px 0;
        text-align: center;
        font-size: 1.8rem;
        font-style: normal;
        line-height: 20px; /* 150% */
    }
    
    .price__price{
        margin: 8px 0 12px 2vw;
        text-align: center;
        font-size: 1.6rem;
        line-height: 20px;
    }

    .price__narabi{
        display:flex;
        justify-content: center;

    }
    
    .money{
        text-align: center;
        font-family: "Josefin Sans";
        font-size: 2rem;
        font-weight: 700;
        line-height: 23px; 
    }
    
    .price__time{
        margin: 10px; 
        text-align: center;
        font-size: 1.6rem;
        line-height: 24px;
    }
    
        .price__attention{
        margin-left: 20%;
        font-size: 1.4rem;
        margin-top: -20px; 
}
}


/*===option=== */

.option{
    margin: 20px auto;
    display: flex;
    width: 90vw;
    background: rgba(255, 255, 255, 0.80);
    padding: 3% 1.2%;
}


.option__list{
    display: flex;/*必須*/
    flex-wrap: wrap;/*必須*/
    width:70vw;
    margin: 0 auto;
  }

.option__item{
    width: 75%;/*必須*/
    padding-top:6px ;
  }

.option__price{
    font-family: "Josefin Sans";
    width: 25%;/*必須*/
    padding-top:6px;
}



/* pc */
@media screen and (min-width:1000px) {

    .option{
        width: 62vw;
        margin: 40px auto;
        display: flex;
        justify-content: center;
    }
    
    .option__item{
        width: 60%;/*必須*/
        padding:20px 0 0 10vw;
        font-size: 1.8rem;
        justify-content: left ;
        display: flex;
      }
    
    .option__price{
        width: 40%;/*必須*/
        padding:10px 0 0 8vw;
        font-size: 1.8rem;
        justify-content: left ;
        display: flex;

    }
}


/*==========================
threepoints
==========================*/
 .threepoints__list{
    margin-top: 10px;
} 

.threepoints__item{
    margin: 20px 0;
    display: flex;
    width: 90vw;
    height: auto; 
    background: rgba(255, 255, 255, 0.80);
    padding: 5% 2vw 5% 0;
}

.points__ttl{
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom:4px;
}

.points__txt{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 20px;
}

.points{
    width:70%;
    }

.icon{
    text-align: center;
    margin: auto;
    width: 30%;
}

.threepoints{
    display: flex;
    justify-content: center;
}

.camera{
    width: 13vw;
    height: auto; 
    max-width: 50px;
    
}

.crown{
    width: 13vw;
    height: auto; 
    max-width: 50px;
}

.car{
    width: 13vw;
    height: auto; 
    max-width: 50px;
}



/* .header pc */
@media screen and (min-width:1000px) {
    .threepoints__list{
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
        width: 64vw;

    } 
    
    .threepoints__item{
        margin: 40px auto;
        display: block;
        width: 19vw;
        height: auto;
        background: rgba(255, 255, 255, 0.80);
        padding: 30px 1vw;
    
    }
    
    .points__ttl{
        font-size: 1.6rem;
        font-weight: 600;
        display: block;
        margin:15px 0;
        text-align: center;
    }
    
    .points__txt{
        display: block;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        margin-right: -0.4vw;
    }

    .icon{
        text-align: center;
        margin: auto
    }
    
    .points{
        width:100%;
        }
    
    .camera{
        width: 20vw;
        height: auto; 
        max-width: 50px;
        
    }
    
    .crown{
        width: 20vw;
        height: auto; 
        max-width: 50px;

    }
    
    .car{
        width: 20vw;
        height: auto; 
        max-width: 50px;
    }
    
    .icon{
        width: 30%;
    }
    

}


/*==========================
contact
==========================*/
.contact__part{ 
    background-image: url("../images/contact/contact_bg.jpg");
    background-size: cover;
    width: 100%;
	height: auto;
    padding: 60px 0;
}

.contact__txt-part{
    margin-top: 30px;
}

.contact__txt{
    text-align: center;
    font-size: 1.4rem;
    line-height: 20px; /* 166.667% */
    margin: 20px 0;
}


.contact__btn{
    display: flex;
    justify-content: center;
    margin-top: 40px ;
    gap: 4vw;
}


.contact__contents{
    justify-content: center;
    margin: 30px auto;
    display: flex;
    width: 90vw;
    background: rgba(255, 255, 255, 0.80);
    padding: 3% 0 3% 10vw;
}

.contact__list{
    display: flex;
    flex-wrap: wrap;
  }

.contact__item{
    font-size: 1.2rem;
    width: 50%;
    text-align: left;
  }

  .contact_icon{
    display: block;
    width: 38.1vw;
    max-width: 200px;
  }


  /*pc */
@media screen and (min-width:769px) {    
    .contact__part{
        padding: 120px 0;

    }

    .contact__txt-part{
        margin-top: 30px;
    }
    
    .contact__txt{
        text-align: center;
        font-size: 1.6rem;
        line-height: 30px; /* 166.667% */
        margin: 20px 0;
    }
    
    
    .contact__btn{
        margin-top: 40px ;
    }
    
    .contact__contents{
        margin: 30px auto;
        display: flex;
        width: 70vw;
        background: rgba(255, 255, 255, 0.80);
        padding: 3% 0 3% 10vw;
    }
    
    .contact__list{
        display: flex;
        flex-wrap: wrap;
      }
    
    .contact__item{
        font-size: 1.6rem;
        width: 50%;
        text-align: left;
        margin-top: 8px;
      }


  .contact_icon{
    display: block;
    max-width: 240px;
  }


}

  
/*==========================
process
==========================*/

.section--process{
    background: #F8F3F2;
    padding: 60px 0;
}

.process__item{
    text-align: center;
    margin-top: 50px;
}

.process__ttl{
    font-size: 1.4rem;
    line-height: 20px; 
    text-align: center;
    margin: 10px 0;
}

.process__txt{
    font-size: 1.2rem;
    line-height: 17px; 
    width:35vw;
    text-align: left;
}

.process__icon{
    width: 30vw;
    max-width:130px;

}

.process__part{
    display: flex;
    justify-content: center;
}

.process__list{
    display:flex;
    gap: 50px;
}


  /*pc */
  @media screen and (min-width:800px) {  

    .section--process{
        background: #F8F3F2;
        padding: 120px 0;
    }
    

    .process__nababi{
        max-width:80%;
        display:flex; 
        justify-content: center;
        gap: 4.5vw;
        margin: 0 auto;

    } 

    .process__item{
        text-align: center;
        margin-top: 50px;
    }
    
    .process__ttl{
        font-size: 2rem;
        line-height: 36px; 
        text-align: center;
        margin: 15px 0;
    }
    
    .process__txt{
        font-size: 1.4rem;
        line-height: 28px; 
        width:15vw;
        text-align: left;
    }
    
    .process__part{
        display: flex;
        justify-content: center;
    }
    
    .process__list{
        display:flex;
        gap: 4.5vw;
        justify-content: center;
    }
    

  }

/*==========================
faq
==========================*/

.section--faq{
    padding: 60px 0;
}

.faq__hr{
    width: 83vw;
    height: 0.5px;
    background: #B4B4B4;
}


.faq__part{
    padding: 20px 8%;
}

.btn__faq{
    display: block;
    text-align: right;
    margin:20px 2.5vw 0 0;
}
.faq__hr-last{
    margin-bottom: 20px;
}

.accordion-test summary{
	position: relative;
	list-style: none; /* デフォルトの三角形アイコンを消します */
	padding: 10px;
	cursor: pointer; /* ポインターを指さしマークに変更 */
    font-family: 
    "Shippori Mincho B1";
    font-size: 1.6rem;
}

.summary{
    font-family: "Shippori Mincho B1";
    font-size: 1.6rem;
    line-height: 20px; 
    margin: 8px 0;
    width: 80%;
}

.accordion-test summary::-webkit-details-marker {
	display: none; /* Safariで表示されるデフォルトの三角形アイコンを消します */
}

.accordion-test summary::after{
	position: absolute;
	width: 10px;
	height: 10px;
	top: calc(50% - 10px);
	right: 25px;
	border-right: 1.5px solid #B17272;
	border-bottom: 1.5px solid #B17272;
	box-sizing: border-box;
	content: "";
	transform: rotate(45deg);
	transition: top 0.4s ease-out, transform 0.4s ease-out;
}

.accordion-test details[open] summary::after{
	top: calc(50% - 5px);
	transform: rotate(-135deg);
}


dl.faq__detail dt:before,
dl.faq__detail dd:before{
  font-size: 1.2rem;
  padding:5px 10px;
}

dl.faq__detail dt:before{
  content:"Q";
  color: #B99D21;
font-family: "Josefin Sans";
font-size: 1.4rem;
margin-left: -30px;
}

dl.faq__detail dd{
  margin:0 0 10px 7vw;
  font-size: 1.2rem;
}

.faq__detail dt{
    font-family: "Shippori Mincho B1";
    font-weight: 400;
    font-size: 1.4rem;
    margin: 12px 7vw 8px 7vw;
    flex-wrap: wrap;
    width: 80vw;
}   

  /*pc */
  @media screen and (min-width:800px) {  
    .section--faq{
        padding: 120px 0;
    }


.faq__part{
    padding: 40px 10vw;
}

dl.faq__detail dt{
    margin:20px 10vw;
    font-size: 1.8rem;
  }


dl.faq__detail dd{
    margin:10px 3vw 20px 10vw;
    font-size: 1.6rem;
    line-height: 28px;
  }

  .btn__faq{
    display: block;
    text-align: right;
    margin:20px 2.5vw 0 0;
}

dl.faq__detail dt:before{
    content:"Q";
    color: #B99D21;
  font-family: "Josefin Sans";
  font-size: 1.8rem;
  margin-left: -30px;
  }

  .accordion-test summary{
    font-size: 1.8rem;
    margin: 10px 0 10px 4vw;
}
  
.accordion-test summary::after{
	width: 15px;
	height: 15px;
	top: calc(50% - 10px);
	right: 25px;
	border-right: 2px solid #B17272;
	border-bottom: 2px solid #B17272;
	box-sizing: border-box;
	content: "";
	transform: rotate(45deg);
	transition: top 0.4s ease-out, transform 0.4s ease-out;
    margin-right: 4vw;
}
  }


/*==========================
footer
==========================*/
.footer{ 
    background-image: url(../images/footer/footer_bg-sp.jpg);
    background-size: cover;
    width: 100%;
    padding: 20px 30px 10px 30px;
}

.footerNav__ttl{
    font-family: "Josefin Sans";
    color: #6b6b6b;
    font-size: 1rem;
    display:block;
}

.footerNav__list{
    display: flex;
}

.footer__logo{
    width: 110px;
    height: auto;
}
      
.footerNav__item{
    width: 33%;
}

.footerNav__list{
   display: flex;
  list-style: none;
}

.item01{
    padding: 20px 0 0 8vw;
}

.item02{
    display:flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

.item03{
    padding: 20px 0 0 8vw;
}

.footer_insta{
 max-width: 25px;
  margin: 65px 60px 0 -85px;
}

.footer__line{
    max-width: 25px;
    margin: 65px 0 0 -45px;
}

.copy{
    font-size: 1rem;
    text-align: right;
    padding-right:6px;
    margin-top: 10px;
}

  /*pc */
  @media screen and (min-width:800px) { 
    .footer{ 
        background-image: url(../images/footer/footer_bg_pc.jpg);
        background-size: cover;
        width: 100%;
        padding: 20px 30px 10px 30px;
    }
    
    .footerNav__ttl{
        font-family: "josefin sans";
        font-size: 1.4rem;
        line-height: 30px;
        display:block;
    }
 
    .item01{
        padding: 30px 0 0 22vw;
    }

    .item03{
        padding: 30px 14vw 0 4vw;
    }

  }