@charset "utf-8";

/*-----------------------------------------------
  共通部分
-------------------------------------------------*/

html{
    font-size: 1.1vw;
    letter-spacing: 0.02vw;
}

body{
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    box-sizing: border-box;
}

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

/*------------------------------------------------
  NAV MENU
--------------------------------------------------*/

.nav-menu{
    position: fixed;
    background-color: rgba(255, 255, 255, 0.97);
    width: 100vw;
    z-index: 102;
    top: 0;
}

.nav-menu-logo{
    position: relative;
    width: 14vw;
    
}

.menu-logo{
    position: absolute;
    width: 14vw;
    left: 57.7vw;
    bottom: 11.2vw;
}

.nav-menu-inner{
    display: flex;
    position: relative;
    z-index: 102;
}

.nav-list{
    background-color: #6F5549;
    padding: 2vw 16vw 9vw 1vw;
}

.nav-title{
    font-size: 3.4vw;
    color: #fff;
    font-weight: 200;
    letter-spacing: 0.2vw;
    margin-bottom: 2.8vw;
    padding-left: 3.5vw;
    position: relative;
    z-index: 102;
}

.nav-menu-ul{
    padding-left: 0.2vw;
}

.nav-menu-item{
    font-size: 1vw;
    margin-bottom: 1.9vw;
    color: #fff;
    padding-left: 3.5vw;
}

.hamburger-btn{
    width: 2.8vw;
    height: 1.39vw;
    position: fixed;
    right: 5.7vw;
    top: 2vw;
    z-index: 102;
}

.hamburger-line{
    background-color: #6F5549;
    max-width: 80vw;
    height: 0.16vw;
    margin-top: 0.8vw;
    position: relative;
    transition: all 0.5s;
    z-index: 102;
}

.hamburger-btn.open .hamburger-line:nth-of-type(1) {
    transform: translateY(-0.1rem) rotate(-45deg);
    top: 0.6vw;
}
.hamburger-btn.open .hamburger-line:nth-of-type(2) {
    transform: translateY(0.1rem) rotate(45deg);
    bottom: 0.6vw;
}  

.nav-menu{
    display: none !important;
}
.nav-menu.open{
    display: block !important;
}

.menu-logo-sp{
    display: none;
}

/*------------------------ NAV MENU / SP ------------------------*/

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

    .nav-menu{
        height: 100vh;
        overflow: auto;
    }
    
    .nav-menu-inner{
        display: block;
    } 
    
    .nav-list{
        background-color: rgba(255, 255, 255, 0.55);
        padding: 0;
        height: 217vw;
    }

    .nav-list-inner{
        background-color: #6F5549;
        height: 160vw;
        padding: 6.8vw 0 29vw 10.2vw;
    }

    .menu-logo{
        display: none;
    }

    .menu-logo-sp{
        display: inline-block;
        width: 22vw;
    }

    .nav-menu-logo{
        width: 22vw;
        margin: 0 0 0 auto;
        margin-top: 10vw;
        margin-right: 9.8vw;
    }

    .nav-title{
        font-size: 10.67vw;
        margin-bottom: 9.5vw;
    }

    .nav-menu-item{
        font-size: 4vw;
        margin-bottom: 6vw;
    }

    .hamburger-btn.open .hamburger-line:nth-of-type(1){
        background-color: #fff;
        top: 2.4vw;
        margin-top: 4.2vw;
        padding-right: 4vw;
    }

    .hamburger-btn.open .hamburger-line:nth-of-type(2){
        background-color: #fff;
        bottom: 2.4vw;
        margin-top: 4.2vw;
        padding-right: 4vw;
    }

    .hamburger-btn{
        width: 6.8vw;
        height: 3.7vw;
        margin-top: 1.78vw;
        right: 5vw;
    }

    .hamburger-line{
        height: 0.32vw;
        margin-top: 2.2vw;
    }
}

/*------------------------------------------------
  HEADER
--------------------------------------------------*/

.header-ul{
    display: flex;
    padding-top: 2.8vw;
}

.header-nav-item{
    margin-right: 5.2vw;
    color: #6F5549;
    font-size: 1.1vw;
}

.header-btn-wrapper{
    background-color: #6F5549;
    width: 8vw;
    height: 2.2vw; 
    line-height: 2.2vw;
    text-align: center;
    border-radius: 10vw;
    display: block;
    margin-top: 2.28vw;
}

.header-btn{
    width: 8vw;
    color: #fff;
    display: block;
    overflow: hidden; 
}

.header-nav-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6vw;
    position: fixed;
    left: 8vw;
    top: 0vw;
    z-index: 100;
}

/*------------------------ HEADER / SP ------------------------*/

@media screen and (max-width: 768px){
    .header-nav{
        display: none;
    }

    .header-btn-wrapper{
        margin-left: 53vw;
    }

    .header-btn-wrapper{
        width: 21.2vw;
        height: 7vw;
        line-height: 2.4;
        text-align: center;
        margin-top: 4.4vw;
    }

    .header-btn{
        width: 19.7vw;
        font-size: 2.93vw;
        text-align: center;
        padding-left: 1.8vw;
    }
}

/*------------------------------------------------
  MAIN
--------------------------------------------------*/

/*------------------------STORY------------------------*/

.logo-img{
    width: 4.1vw;
}


.logo-img{
animation-name:fadeInAnime;
animation-duration:1.5s;
animation-delay: 0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.main-title{
animation-name:fadeInAnime;
animation-duration:1.5s;
animation-delay: 0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.logo-img-wrapper{
    width: 4.1vw;
    margin: 0 auto;
    margin-top: 3.2vw;
    position: relative;
    z-index: 6;
}

.main-title-wrapper{
    margin-top: 9.6vw;
}

.main-title{
    width: 9vw;
    color: rgba(0, 0, 0, 0.42);
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2.5vw;
    position: relative;
    bottom: 0.2vw;
    z-index: 6;
    padding-right: 0.1vw;
}


.asterisk{
    font-family: "Castoro Titling", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.39vw;
}

.about-img-wrapper{
    text-align: center;
    margin-left: 4vw;
    margin-top: 3vw;
    
}

.about-img{
    width: 72vw;
}


.story-img-wrapper{
    text-align: center;
    margin-left: 4vw;
    margin-top: 4vw;
}

story-img{
    width: 72vw;
    margin-top: 4vw;
}

.story-title{
    font-size: 6.81vw;
    margin-top: 8vw;
    margin-left: 14vw;
    letter-spacing: 0.4vw;
}

.slide-in-story {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner-story {
	display: inline-block;

}


/*左右のアニメーション*/
.leftAnime-story{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight-story {
	animation-name:slideTextX100;
	animation-duration:1s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft-story {
	animation-name:slideTextX-100;
	animation-duration:1s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.story-lead{
    font-size: 1.84vw;
    color: #6F5549;
    margin-left: 14.5vw;
    margin-top: 0;
    line-height: 1.5;
}

.story-detail-title{
    font-size: 1.94vw;
    font-weight: 400;
    color: #6F5549;
    margin-top: 7.7vw;
}

.story-detail{
    text-align: center;
}

.story-detail-txt{
    display: inline-block;
    text-align: left;
    margin-top: 2.2vw;
    margin-bottom: 3vw;
    width: 55.7vw;
    line-height: 2vw;
}

.story-img-wrapper{
    width: 22vw;
    margin: 6.5vw auto 0 auto;
    position: relative;
}

.story-credit-name{
    position: absolute;
    bottom: 0.4vw;
    right: 0.4vw;
    color: #fff;
}

.story-img{
    width: 22vw;
    animation: fadeIn4 linear;
    animation-timeline: view(); /* スクロールと連動 */
    animation-range: entry 10% cover 40%;
}


@keyframes fadeIn4{
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}

/*------------------------ STORY / SP ------------------------*/

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

    .main-title{
        width: 24vw;
    }


    .logo-img-wrapper{
        width: 10.7vw;
        margin-top: 23vw;
    }

    .logo-img{
        width: 10.7vw;
        margin-top: 3vw;
    }

    .asterisk{
        
        font-size: 2vw;
    }

    .story-title{
        font-size: 11.73vw;
        letter-spacing: 0.8vw;
    }

    .story-lead{
        font-size: 4vw;
    }


    .about-img{
        width: 96vw;
        margin-top: 2vw;
        padding-right: 1vw;
        animation: fadeIn4 linear;
        animation-timeline: view(); /* スクロールと連動 */
        animation-range: entry 10% cover 40%;
    }

    

    .story-detail-title{
        font-size: 4.8vw;
        margin-top: 17.3vw;
    }

    .story-detail-txt{
        font-size: 3.73vw;
        width: 82vw;
        line-height: 2;
        margin-top: 7vw;
        padding-left: 2vw;
    }

    .story-img-wrapper{
    width: 52vw;
    margin: 16.5vw auto 0 auto;
    }

    .story-img{
        width: 52vw;
    }

    .story-credit-name{
        font-size: 2.93vw;
        bottom: 1vw;
        right: 1vw;
    }

}

/*------------------------NAME------------------------*/

.name-title{
    font-size: 1.94vw;
    color: #6F5549;
    text-align: center;
    margin-top: 12vw;
    margin-bottom: 3.7vw;
}

.name-detail{
    text-align: center;
}

.name-detail-title{
    font-size: 1.53vw;
    font-weight: 400;
    margin-top: 5.3vw;
}

.name-detail-txt{
    display: inline-block;
    text-align: left;
    font-size: 1.11vw;
    width: 40.7vw;
    line-height: 2;
    margin-top: 1.84vw;
}

.name-detail-txt2{
    padding-right: 4vw;
    margin-top: 1.5vw;
}


.name-br-sp{
    display: none;
}

/*------------------------ NAME / SP ------------------------*/

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

    .name-title{
        font-size: 5.33vw;
        margin-top: 25.3vw;
    }

    .name-detail-title{
        font-size: 4.27vw;
        margin-top: 13vw;
    }

    .name-detail-txt{
        font-size: 3.73vw;
        width: 80vw;
        margin-top: 7.4vw;
    }

    .name-detail-txt2{
    font-size: 3.73vw;
    width: 80vw;
    margin: 0 auto;
    margin-top: 7.4vw;
    line-height: 1.7;
    }

    .name-br-sp{
    display: block;
}

    .name-detail-txt2-spn{
        padding-right: 10vw;
    }

    
}


/*------------------------LOGO------------------------*/

.logo-section-img{
    width: 19vw;
}



.logo-section-img.active{
	animation-name:blurAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}


.logo-title{
    font-size: 1.94vw;
    color: #6F5549;
    text-align: center;
    margin-top: 7.8vw;
}

.logo-subtitle{
    font-size: 1.39vw;  
    text-align: center;
    
    margin-top: 5vw;  
}

.logo-txt-wrapper{
    text-align: center;
}

.logo-txt1{
    margin: 0 auto;
    text-align: left;
    margin-top: 3vw;
    width: 43vw;
    line-height: 2;
}

.logo-txt2{
    margin: 0 auto;
    text-align: left;
    margin-top: 3vw;
    width: 43vw;
    line-height: 2;
}

.logo-txt3{
    margin: 0 auto;
    text-align: left;
    margin-top: 3vw;
    width: 43vw; 
    line-height: 2;
}

.logo-section-img-wrapper{
    width: 20vw;
    margin: 0 auto;
    margin-top: 7.8vw;
    
}

.logo-br-sp{
    display: none;
}

/*------------------------ LOGO / SP ------------------------*/

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

    .logo-section-img-wrapper{
        width: 43vw;
        margin-top: 22vw;
        margin-bottom: 23vw;
    }

    .logo-section-img{
        width: 43vw;
    }

    .logo-title{
        font-size: 5.33vw;
    }

    .logo-subtitle{
       font-size: 4.27vw; 
       margin-top: 13vw;
       line-height: 1.6;
    }

    .logo-txt1{
       font-size: 3.73vw;
       width: 76vw; 
        margin-top: 7.2vw;
    }

    .logo-br-sp{
    display: block;
    }

    .logo-spn-sp{
        padding-right: 4vw;
    }

    .logo-txt2{
        font-size: 3.73vw;
        width: 79vw;
        margin-top: 14vw;
    }

    .logo-txt3{
        font-size: 3.73vw;
        width: 79vw;
        margin-top: 14vw;
    }
}

/*------------------------BUSINESS------------------------*/

.business-section{
    position: relative;
    z-index: 5;
}

.business-title{
    font-size: 3.96vw;
    margin-top: 13vw;
    text-align: center;
    letter-spacing: 0.2vw;
}

.business-lead{
    font-size: 1.53vw;
    color: #6F5549;
    text-align: center;
    margin-top: 1vw;
    padding-right: 0.2vw; 
    margin-bottom: 12.4vw;
}

.business-detail-container{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    justify-items: center;
    row-gap: 10.5vw;
    padding: 0 5vw;
}

.number1, .number2, .number3, .number4, .number5{
    font-size: 8.9vw;
    color: #E4DDDA;
}

.number1, .number2{
    position: relative;
    bottom: 3vw;
}


.number1, .number2{
    opacity: 0;
    animation-timeline: view
}

.number1.active {
  -webkit-animation: example 0.5s ease 0.3s 1 forwards;
  animation: example 0.5s ease 0.3s 1 forwards;
  animation-timeline: view
}

.number2.active {
  -webkit-animation: example 0.5s ease 0.6s 1 forwards;
  animation: example 0.5s ease 0.6s 1 forwards;
  animation-timeline: view
}


@-webkit-keyframes example {
  100% {
    opacity: 1;
  }
}
@keyframes example {
  100% {
    opacity: 1;
  }
}


.number3, .number4{
    opacity: 0;
    animation-timeline: view
}

.number3.active {
  -webkit-animation: example 0.5s ease 0.3s 1 forwards;
  animation: example 0.5s ease 0.3s 1 forwards;
  animation-timeline: view
}

.number4.active {
  -webkit-animation: example 0.5s ease 0.6s 1 forwards;
  animation: example 0.5s ease 0.6s 1 forwards;
  animation-timeline: view
}


@-webkit-keyframes example {
  100% {
    opacity: 1;
  }
}
@keyframes example {
  100% {
    opacity: 1;
  }
}


.number5{
    opacity: 0;
    animation-timeline: view
}

.number5.active {
  -webkit-animation: example 0.5s ease 0.3s 1 forwards;
  animation: example 0.5s ease 0.3s 1 forwards;
  animation-timeline: view
}


@-webkit-keyframes example {
  100% {
    opacity: 1;
  }
}
@keyframes example {
  100% {
    opacity: 1;
  }
}


.business-detail1-title{
    font-size: 1.67vw;
    margin-bottom: 1.2vw;
}




.business-detail1-subtitle{
    font-size: 1.25vw;
}

.business-detail1-item, .business-detail2-item{
    margin-top: 0.8vw;
}

.business-detail1-container{
    display: flex;
    gap: 4.5vw;
}

.business-detail1-inner{
    display: flex;
    align-items: center;
    gap: 1vw;
}

.business-detail1-wrapper{
    border-bottom: 2px solid ;
    border-right: 2px solid ;
    padding-right: 2.7vw;
    padding-left: 1vw;
    height: 18vw;
    width: 25vw;
}

.business-detail2-inner{
    display: flex;
    align-items: center;
    gap: 1vw;
}

.business-detail2-container{
    display: flex;
    gap: 4vw;
}

.business-detail2-title{
    text-align: center;
}

.business-detail2-subtitle{
    font-size: 1.25vw;
}

.business-etc{
    text-align: center;
    margin-top: 0.9vw;
    padding-left: 3vw;
}

.business-detail2-wrapper{
    border-bottom: 2px solid ;
    border-right: 2px solid ;
    padding-right: 2.7vw;
    padding-left: 1vw;
    height: 18vw;
    width: 25vw;
}

.business-detail2-title{
    font-size: 1.67vw;
    margin-bottom: 1.1vw;
}

.business-detail3-container{
    display: flex;
    gap: 4vw;
}

.business-detail3-title{
    font-size: 1.67vw;
    padding-left: 3vw;
    margin-bottom: 1.8vw;
    line-height: 1.5;
    
}

.business-detail3-txt{
    line-height: 1.5;
}

.business-detail3-txt2{
   margin-top: 0.8vw; 
}

.business-detail3-span{
    padding-left: 1vw;
}

.business-detail3-wrapper{
    border-bottom: 2px solid ;
    border-right: 2px solid ;
    padding-right: 0vw;
    padding-left: 0.6vw;
    padding-top: 1.8vw;
    height: 18vw;
    width: 25vw;
    position: relative;
    right: 1vw;
}

.business-detail4-container{
    display: flex;
    gap: 4vw;
}

.business-detail4-title{
    font-size: 1.67vw;
    padding-right: 2vw;
    margin-bottom: 1.8vw;
    line-height: 1.5;
    text-align: center;
}

.business-detail4-item{
    margin-top: 0.8vw;
}

.business-detail4-wrapper{
    border-bottom: 2px solid ;
    border-right: 2px solid ;
    padding-right: 1.4vw;
    padding-left: 0.6vw;
    padding-top: 1.4vw;
    height: 18vw;
    width: 25vw;
}

.business-detail5-container{
    display: flex;
    gap: 4vw;
}

.business-detail5-title{
    font-size: 1.67vw;
    margin-bottom: 1.8vw;
    line-height: 1.5;
}

.business-detail5-item{
    margin-top: 0.8vw;
}

.business-detail5-wrapper{
    border-bottom: 2px solid ;
    border-right: 2px solid ;
    padding-right: 1.5;
    padding-left: 0.6vw;
    padding-top: 1vw;
    height: 19vw;
    width: 26vw;
    position: relative;
    right: 1vw;
}

.coupon-section2{
    position: relative;
    z-index: 5;
}

.business-background-img{
    background-image: url(../images/gradation2-pc.jpg);
    background-size: cover;
    width: 100%;
    height: 45vw;
    position: relative;
    bottom: 22vw;
    z-index: 1;
}

.business-detail3-br{
    display: none;
}

.business-detail4-br{
    display: none;
}

/*------------------------ BUSINESS / SP ------------------------*/

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

.business-title{
    font-size: 10.13vw;
    margin-top: 30vw;
    letter-spacing: 0.6vw;
}

.business-lead{
    font-size: 4vw;
    margin-top: 2vw;
}

.business-detail1-inner{
    display: block;
}

.business-detail-container{
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18vw;
}

.number1{
    font-size: 27.2vw;
    position: relative;
    bottom: 24vw;
}


.number1.active {
  -webkit-animation: example 0.5s ease 0.4s 1 forwards;
  animation: example 0.5s ease 0.4s 1 forwards;
  animation-timeline: view
}

.number2.active {
  -webkit-animation: example 0.5s ease 1.4s 1 forwards;
  animation: example 0.5s ease 1.4s 1 forwards;
  animation-timeline: view
}


.number3.active {
  -webkit-animation: example 0.5s ease 0.4s 1 forwards;
  animation: example 0.5s ease 0.4s 1 forwards;
  animation-timeline: view
}

.number4.active {
  -webkit-animation: example 0.5s ease 1.4s 1 forwards;
  animation: example 0.5s ease 1.4s 1 forwards;
  animation-timeline: view
}


.number5.active {
  -webkit-animation: example 0.5s ease 0.4s 1 forwards;
  animation: example 0.5s ease 0.4s 1 forwards;
  animation-timeline: view
}

.business-detail1-container{
    align-items: center;
    gap: 8vw;
}

.business-detail1-title{
    font-size: 4.27vw;
    width: 45vw;
}

.business-detail1-subtitle{
    font-size: 3.73vw;
    width: 28vw;
    margin-top: 7vw;
    margin-bottom: 5vw;
    padding-left: 2vw;
    line-height: 1.5;
}

.business-detail1-item{
    font-size: 3.2vw;
    width: 37.4vw;
    margin-top: 3vw;
}

.business-detail1-wrapper{
    width: 58.2vw;
    height: 70vw;
    padding-right: 0;
    padding-bottom: 2vw;
}

.number2{
    font-size: 27.2vw;
    position: relative;
    bottom: 14vw;
}

.business-detail2-title{
    font-size: 4.27vw;
    width: 45vw;
    padding-right: 12vw;
}

.business-detail2-container{
    align-items: center;
    gap: 2vw;
    position: relative;
}

.business-detail2-inner{
    display: block;
    padding-left: 4vw;
}

.business-detail2-subtitle{
    font-size: 3.73vw;
    width: 28vw;
    margin-top: 7vw;
    margin-bottom: 5vw;
}

.business-detail2-item{
    font-size: 3.2vw;
    width: 37.4vw;
    margin-top: 3vw;
}

.business-detail2-wrapper{
    width: 58.2vw;
    height: 68vw;
    padding-right: 0;
    margin-right: 2vw;
    margin-top: 24vw;
    padding-left: 6vw;
}

.number3{
    font-size: 27.2vw;
    position: relative;
    bottom: 14vw;
}

.business-detail3-title{
    font-size: 4.27vw;
    width: 45vw;
}

.business-detail3-txt, .business-detail3-txt2{
    font-size: 3.2vw;
    width: 42vw;
    line-height: 1.5;
}

.business-detail3-txt{
    margin-top: 6vw;
}

.business-detail3-txt2{
    margin-top: 3vw;
}

.business-detail3-spn1{
    padding-left: 3vw;
}

.business-detail3-br{
    display: block;
}

.business-detail3-spn2{
    padding-left: 3vw;
}

.business-detail3-wrapper{
    width: 58.2vw;
    height: 68vw;
    padding-left: 2vw;
    margin-top: 24vw;
    margin-right: 2vw;
}

.business-detail3-container{
    align-items: center;
}

.number4{
    font-size: 27.2vw;
    position: relative;
    bottom: 14vw;
}

.business-detail4-title{
    font-size: 4.27vw;
    width: 45vw;
    padding-right: 13vw;
}

.business-detail4-item{
    font-size: 3.2vw;
    width: 37.4vw;
    margin-top: 3vw;
    line-height: 1.5;
}

.business-detail4-wrapper{
    width: 58.2vw;
    height: 68vw;
    padding-left: 4vw;
    padding-right: 0;
    margin-top: 24vw;
    margin-right: 4vw;
}

.business-detail4-container{
    align-items: center;
    gap: 4vw;
}

.business-detail4-inner{
    margin-top: 6vw;
}

.business-detail4-br{
    display: block;
}

.business-detail4-spn1, .business-detail4-spn2, .business-detail4-spn3{
    padding-left: 3vw;
}

.number5{
    font-size: 27.2vw;
    position: relative;
    bottom: 14vw;
}

.business-detail5-title{
    font-size: 4.27vw;
    width: 45vw;
    line-height: 6.7vw;
    margin-bottom: 6vw;
}

.business-detail5-item{
    font-size: 3.2vw;
    width: 37.4vw;
    margin-top: 3vw;
    line-height: 1.5;
}

.business-detail5-wrapper{
    width: 58.2vw;
    height: 72vw;
    padding-left: 4vw;
    padding-right: 0;
    padding-bottom: 4vw;
    margin-top: 24vw;
    margin-right: 1vw;
}

.business-detail5-container{
    align-items: center;
    gap: 4vw;
}

.business-background-img{
    background-image: url(../images/gradation-sp.jpg);
    background-size: contain;
    width: 100vw;
    height: 65vh;
    position: relative;
    bottom: 22vw;
}


}
/*------------------------------------------------
  FOOTER
--------------------------------------------------*/

.triangle-arrow{
    width: 1.27vw;
    height: 1.45vw;
    background-color: #fff;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    margin: 0 auto;
    
}

.top-btn{
    color: #fff;
    font-size: 1.25vw;
    line-height: 2vw;
}

.top-btn-circle{
   width: 6.94vw;
   height: 6.94vw;
   background-color: #6F5549;
   border-radius: 50%;
   text-align: center;
   padding-top: 1.8vw;
   margin: 0 3vw 0 auto;
    position: relative;
    bottom: 9vw;
}

.footer-img2{
    background-image: url(../images/story-footer-img-pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 30vw;
    margin-top: -22vw;
    padding-top: 30vw;
}

.footer-contents-container{
    background-color: #6F5549;
    padding: 2vw 5vw 2vw 0;
    color: #fff;
}

.footer-sns-btn{
    display: flex;
    align-items: center;
    gap: 2.8vw;
    padding-left: 3.9vw;
}

.footer-sns-img1{
    width: 3.2vw;
}

.footer-sns-img2{
    width: 2.62vw;
}

.footer-sns-img3{
    width: 7.4vw;
    position: relative;
    bottom: 0.6vw;
    right: 1.3vw;
}

.footer-detail{
   margin-top: 3.47vw;
   padding-left: 3.9vw; 
}

.footer-detail-title1, .footer-detail-title2, .footer-detail-title3{
    font-weight: 400;
    margin-top: 2.5vw;
}

.sitemap-date-txt{
    font-weight: 400; 
}

.footer-detail-txt1, .footer-detail-txt2, .footer-detail-txt3{
    margin-top: 1.1vw;
}

.footer-contents-container{
    display: flex;
    gap: 14.9vw;
}

.sitemap{
    display: flex;
    gap: 6.2vw;
}

.footer-logo-img{
    width: 3.6vw;
}

.footer-title-wrapper{
    display: flex;
    align-items: center;
}

.footer-title{
    font-family: "komorebi gothic", sans-serif;
    width: 27vw;
}



.asterisk{
    font-family: "Castoro Titling", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2vw;
}

.sitemap-date{
    margin-bottom: 2.5vw;
    font-weight: 300;
    padding-top: 0.8vw;
}

.sitemap-detail{
    margin-top: 1.25vw;
    padding-left: 0.1vw;
}

.footer-title{
    font-size: 1.53vw;
    margin-left: 0.3vw;
    position: relative;
    top: 0.1vw;
}

.footer-title-wrapper{
    margin-top: 7.5vw;
}

.copyright{
    font-size: 0.83vw;
    margin-left: 6.2vw;
    position: relative;
    top: 0.2vw;
}

.copyright-sp{
    display: none;
}

.sitemap-sp-wrapper{
    display: none;
}

.sitemap-sp-line{
    display: none;
}

.footer-br-sp{
    display: none;
}

.sitemap-menu{
    display: none;
}

/*------------------------ FOOTER / SP ------------------------*/

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

    .footer-img2{
        background-image: url(../images/story-footer-img-sp.jpg);
        height: 53vw;
        position: relative;
        margin-bottom: 100vw;
    } 

    .sitemap{
        display: none;
    }

    .sitemap-sp-wrapper{
        cursor: pointer;
    }

    .footer-contents-container{
        display: block;
        margin-top: -100vw;
    }

    .copyright{
        display: none;
    }

    .copyright-sp{
        display: block;
    }

    .sitemap-sp-wrapper{
        display: block;
        margin-top: 20vw;
        text-align: center;
    }

    .sitemap-sp{
        font-size: 3.73vw;
    }

    .sitemap-sp-line{
        display: block;
        width: 23vw;
        margin: 0 auto;
        margin-top: 1vw;
        height: 0.4vw;
        
    }

    .footer-sns-img1{
        width: 8vw;
    }

    .footer-sns-img2{
        width: 6.8vw;
    }

    .footer-sns-img3{
        width: 19.2vw;
        bottom: 1.4vw;
        right: 2.8vw;
    }

    .footer-contents-container{
        padding: 7vw 0 14vw 0;
    }

    .footer-sns-btn{
        gap: 5vw;
        padding-left: 7vw;
    }

    .footer-detail{
        font-size: 3.7vw;
        padding-left: 7vw;
    }

    .footer-detail-txt1, .footer-detail-txt2, .footer-detail-txt3{
        margin-top: 5.2vw;
        line-height: 1.7;
    }

    .footer-br-sp{
        display: block;
    }

    .footer-detail-title1, .footer-detail-title2, .footer-detail-title3{
        margin-top: 11vw;
        font-size: 4vw;
    }
    
    .footer-logo-wrpper{
        width: 8vw;
        margin-right: 2vw;
    }

    .footer-logo-img{
        width: 8vw;
    }

    .footer-title-wrapper{
        justify-content: center;
        margin-top: 20vw;
    }

    .footer-title{
        font-size: 4.27vw;
        width: 26vw;
    }

    .copyright-sp{
        text-align: center;
        font-size: 2.93vw;
        margin-top: 5.4vw;
    }

    .asterisk{
        font-size: 3.73vw;
        font-family: "Castoro Titling", serif;
        font-weight: 400;
        font-style: normal;
    }

    .top-btn-circle{
        width: 13.4vw;
        height: 13.4vw;
        vertical-align: middle;
        position: absolute;
        top: 36vw;
        right: 2vw;
    }

    .top-btn{
        font-size: 3.2vw;
        margin-top: 2vw;
    }

    .triangle-arrow{
        width: 3.2vw;
        height: 3.73vw;
    }

}

/*------------------------ FOOTER-SITEMAP / SP ------------------------*/

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

    .sitemap-menu{
        display: block;
        font-size: 3.73vw;
        padding: 9.08vw 0 14vw 0;
        background-color: #6F5549;
        color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 110;
        height: 100vh;
        overflow: auto;
    }

    .footer-sitemap-title-wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20vw;
    }

    .footer-sitemap-title{
        font-family: "komorebi gothic", sans-serif;
        font-size: 4.27vw;
        position: relative;
        top: 0.1vw;
    }

    .footer-sitemap-logo-wrpper{
        width: 8vw;
        margin-right: 2vw;
    }

    .footer-sitemap-logo-img{
        width: 8vw;
    }

    .sitemap-menu-title{
        font-size: 6.4vw;
        padding-left: 10vw;
    }

    .home-btn{
        font-size: 4.8vw;
        padding-left: 10vw;
        margin-top: 12.4vw;
        cursor: pointer;
    }

    .home-btn-line{
        width: 14vw;
        margin-left: 10vw;
        margin-bottom: 12.4vw;
    }

    .sitemap-menu-dl{
        padding-left: 10vw;
    }

    .sitemap-menu-date{
        margin-top: 13.5vw;
        margin-bottom: 6.8vw;
        font-size: 4.8vw;
        font-weight: 300;
    }

    .sitemap-menu-detail{
        margin-top: 4.8vw;
    }

    .sitemap-menu{
        display: none !important;
    }
    .sitemap-menu.open{
        display: block !important;
    }

    .sitemap-sp-wrapper{
        font-size: 3.73vw;
    }
}





