@charset "utf-8";

/* 昼神温泉
-------------------------------*/
/*カラー設定
--------------------*/
:root {
  --black: #212529;
  --white: #fff;
  --gray: #707070;
  --main: #7C8AC7;
  --sub: #DFE4F7;
  --border: #B5B5B5;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}


/*共通
-------------------------------*/
article {
    font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    overflow: hidden;
}

a:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.6;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {

}

/* flex
----------------------------------*/
.flex {
    display: flex;
    flex-wrap: wrap;
}

/* bg
-------------------------------------*/
.bg-main {
    background-color: var(--main);
}

.bg-sub {
    background-color: var(--sub);
}

/* section
-------------------------------------*/
.section {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

/* border
--------------------------------------*/
/* border-block */
.block-border {
    border-top: 1px dashed var(--border);

}

/* 見出し
--------------------------------------*/
.heading {
    text-align: center;
    margin-bottom: 50px;
}

.heading-img {
    position: relative;
    display: inline-block;
    width: fit-content;
    text-align: center;
    line-height: 1.4;
}

.heading-img::before,
.heading-img::after {
    content: '';
    position: absolute;
    top: 0;
    display: inline-block;
    width: 55px;
    height: 52px;
    background: url('/static/img/tour/campaign/hotsprings/hirugami/img-diya-pc.svg') no-repeat center center/ 100%;
}

.heading-img::before {
    left: -64px;
}
.heading-img::after {
    right: -64px;
}

.heading-img img {
  text-align: center;
  margin: 0 auto;
}


/*見出しのアニメーション*/ 

.js-scrollIn .heading-img::before,
.js-scrollIn .heading-img::after { 
    animation: diya_rotation 1s ease-out forwards; 
}

/*アニメーション設定*/ 
@keyframes diya_rotation { 
    0% { 
        transform: rotateY(0); 
    } 

    100% { 
        transform: rotateY(360deg); 
    } 
} 


@media (max-width: 767px) {
    .heading {
        margin-bottom: 24px;
    }

    .heading-img {
        text-align: center;
        margin: auto;
    }
    
    .heading-img::before,
    .heading-img::after {
        top: -5px;
        width: 33px;
        height: 35px;
        background: url('/static/img/tour/campaign/hotsprings/hirugami/img-diya-sp.svg') no-repeat center center/ 100%;
    }
    
    .heading-img::before {
        left: -36px;
    }
    .heading-img::after {
        right: -36px;
    }
}


/* title
--------------------------------*/
.title {
    width: fit-content;
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    line-height: 1.6;
    margin: 0 auto 20px;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.title::before,
.title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--black);
}

.title::before {
    left: -36px;
}

.title::after {
    right: -36px;
}

@media (max-width: 767px) {
    .title {
        font-size: 16px;
        margin: 0 auto 12px;
    }
}


/* button
--------------------------------------*/
.button {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: auto;
  padding: 0;
}

.button-cv {
  max-width: 387px;
  text-align: center;
  margin: 10px auto;
}

.button-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
  background: var(--black);
  color: var(--white);
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.button-link:hover {
  opacity: 0.6;
  color: var(--white);
  text-decoration: none;
  border: none;
}

.button-link::after {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 16px;
  color: var(--white);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .button {
    max-width: 100%;
    margin: 20px auto;
  }
  .button-link {
    padding: 20px;
    font-size: 16px;
  }
  .button-link::after {
    right: 18px;
    font-size: 14px;
  }
  .button-cv {
    width: 100%;
    max-width: 100%;
  }
}

/*text-ib-link*/
.text-ib-link {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
  position: relative;
  padding-right: 20px;
}

.text-ib-link::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #fff;
}

@media (max-width: 767px) {
  .text-ib-link {
    margin-top: 5px;
    font-size: 12px;
  }
}

/* text
--------------------------------------*/
.lead {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 20px;
    color: #3D3C3C;
}

.bold {
  font-weight: bold;
}

.small {
    font-size: 80%;
}

.text-center {
    text-align: center;
}


@media (max-width: 767px) {
  .lead {
      font-size: 14px;
      line-height: 1.5;
  }
}



/* section
---------------------------------------------*/
/*　MV
-------------------------------*/
.mv-area {
  width: 100%;
  text-align: center;
  background: var(--main);
}

.mv-area img {
  max-width: 100%;
  object-position: top center;
  object-fit: cover;
  margin: auto;
}


/* about
------------------------------------------------*/
.about-area {
    padding: 56px 0 70px;
    background: var(--sub);
    position: relative;
    z-index: 0;
}

.about-area::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: url('/static/img/tour/campaign/hotsprings/hirugami/bg-kirakira.png') no-repeat center center / cover;
}

/*
.about-area::after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: -3px;
    left: 0;
    display: block;
    width: 100%;
    height: 224px;
    background: url("/static/img/tour/campaign/hotsprings/hirugami/bg-wave-pc.png") no-repeat center bottom/ 100%;
}
*/

.about-area .container {
    position: relative;
    z-index: 3;
}

.about-lead {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

/* movie */
.movie-wrap {
    width: 100%;
    max-width: 640px;
    margin: 54px auto 30px;
}

.movie {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.movie iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media (max-width: 767px) {
    .about-area {
        padding: 20px 0 30px;
    }

    .about-lead {
        font-size: 13px;
    }
    
    /* movie */
    .movie-wrap {
        max-width: 100%;
        margin: 32px auto 28px;
    }
}

@media (max-width: 480px) {
    .about-area::after {
        width: 100%;
        height: 84px;
        background: url("/static/img/tour/campaign/hotsprings/hirugami/bg-wave-sp.png") no-repeat center bottom/ 100%;
    }
}


/* page nav
--------------------------*/
.page-nav {
    margin: 10px auto 30px;
    padding: 0 3%;
    display: flex;
    column-gap: 1.2%;
    justify-content: center;
    max-width: 1140px;
}

.page-nav li {
    width: calc(100% / 6);
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.page-nav li a {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    color: var(--black);
    padding: 13px 20px 13px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    border-top: 2px dotted var(--main);
    border-bottom: 2px dotted var(--main);
}

.page-nav li a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    transition: 0.3s;
    font-size: 14px;
    color: var(--main);
}

.page-nav li a:hover {
    opacity: 0.6;
}

@media (max-width: 970px) {
    
    .page-nav {
        margin: 5px auto 36px;
        flex-wrap: wrap;
    }
    
    .page-nav li {
        width: 32%;
        justify-content: space-between;
    }
    
    .page-nav li a {
        border-top: none;
        padding: 8px 12px 10px;
    }

}


@media (max-width: 767px) {
    .page-nav li a {
        font-size: 12px;
        padding: 8px 10px 10px;
    }

    .page-nav li a::after {
        right: 4px;
        font-size: 10px;
    }
}


/* Access
-----------------------------------------------*/
.access-area {
    padding: 50px 0 100px;
    background: var(--main);
/*  background: linear-gradient(transparent 10%, #FAF6F5 0);*/
}


.access-heading {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    


    .access-area {
        padding: 0 0 160px;
    }

    .access-area::before,
    .access-area::after {
        top: -20px;
    }

    .access-area::before{
        top: 0;
        left: -1vw;
        width: 20%;
        height: 96px;
    }

    .access-area::after {
        top: 0;
        right: -3vw;
        width: 25%;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .access-area{
        padding: 34px 0 60px;
    }
}


/* access-tab
-------------------------------------*/
/* タブボタン */
.accesstabs-buttonlist {
	display: flex;
    column-gap: 0.5%;
	justify-content: space-between;
	position: relative;
    border-bottom: none;
	/*z-index: -1;*/
}

.accesstabs-buttonlist.nav-tabs li {
    width: 32%;
    border-bottom: 2px solid var(--white);
}

.accesstabs-buttonlist li {
/*	flex: 1 1 auto;*/
	text-align: center;
}

.accesstabs-buttonlist.nav-tabs li > span {
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	transition: 0.3s;
    cursor: pointer;
	color: var(--black);
    background: var(--sub);
    border-radius: 0;
}

.accesstabs-buttonlist li .frame {
    display: block;
    width: 100%;
    border: 1px solid var(--main);
    padding: 10px 30px;
    position: relative;
}

.accesstabs-buttonlist.nav-tabs li .frame::before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    transition: 0.3s;
    font-size: 14px;
    color: var(--main);
}

.accesstabs-buttonlist.nav-tabs .nav-link.active {
    background-color: var(--white);
    opacity: 1;
}

/*タブボタン アクティブ時の挙動*/
.accesstabs-buttonlist li button.active {
    position: relative;
}


 @media (max-width: 767px) {
     /* タブボタン */
     .accesstabs-buttonlist li {
         width: 31.5%;
     }
     
	 .accesstabs-buttonlist li button,
	 .accesscetabs-buttonlist li span {
		 font-size: 11px;
	 }
     
     .accesstabs-buttonlist.nav-tabs li span {
         width: 100%;
         font-size: 11px;
         padding: 6px 8px;
     }
     
     .accesstabs-buttonlist.nav-tabs li .frame::before {
         font-size: 11px;
     }
     
}

/* タブコンテンツ　*/
.tab-content {
    background: var(--white);
    padding: 50px 6% 60px;
}

.access-content {
	display: none;
	transition: 0.3s;
}
.access-content.active {
	display: block;
}

.access-img {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.access-img img {
   border: 1px solid var(--gray);
}

 @media (max-width: 767px) {
     /* タブコンテンツ　*/
     .tab-content {
         padding: 24px 6%;
     }
}


/* scroll*/
@media (max-width: 1000px) {
    .scroll-area {
        overflow-x: hidden;
    }

    .scroll-container {
        width: 100%;
        overflow-x: scroll;
    }

    .scroll-container img {
        width: 968px;
        max-width: initial;
    }
}


/* reservation block
--------------------------------*/
.reservation-block {
    margin-top: 48px;
    padding-top: 32px;
}    

 @media (max-width: 767px) {
     .reservation-block {
        margin-top: 20px;
        padding-top: 24px;
    }   
}


/* contents
----------------------------------------*/
.odd-content {
    background: linear-gradient(90deg, var(--white) 0%,  var(--white) 6vw, var(--sub) 6vw, var(--sub) 100%);
}

.even-content {
    position: relative;
}

.even-content::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -5px;
    left: -290px;
    display: block;
    width: 510px;
    height: 316px;
    background: url('/static/img/tour/campaign/hotsprings/hirugami/img-star-line.svg') no-repeat center center/ 100%;
}

.content-heading {
    margin-bottom: 20px;
}

.sub-title {
    width: 100%;
    max-width: 260px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    padding: 10px;
    border-top: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    margin: 20px auto 40px;
}

.flex-content {
    width: 100%;
    box-sizing: border-box;
}

.content-left {
    order: 1;
    width: 50%;
    padding-right: 3%;
}

.content-right {
    order: 2;
    width: 50%;
    padding-left: 3%;
}

.content-img img {
    box-shadow: 8px 8px 0px 0px var(--main);
}


.point {
    margin-bottom: 10px;
}

/*.pointアニメーション*/ 
.js-scrollIn .point img { 
    animation: point_fadeup 1.8s cubic-bezier(0.33, 1, 0.68, 1) forwards; 
}

/*アニメーション設定*/ 
@keyframes point_fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* list */
.dot-list li {
    position: relative;
    display: block;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.dot-list li::before {
    content: '';
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background: var(--main);
    top: 5px;
    left: 0;
}

@media (max-width: 1100px) {
     .even-content::before {
        top: 0;
        left: -28vw;
        width: 42vw;
    }
}


@media (max-width: 767px) {
    .odd-content {
        background: linear-gradient(90deg, var(--white) 0%,  var(--white) 3vw, var(--sub) 3vw, var(--sub) 100%);
    }
    
    .even-content::before {
        top: 0;
        left: -300px;
        background: url('/static/img/tour/campaign/hotsprings/hirugami/img-star-line-sp.svg') no-repeat center center/ 100%;
    }
    
    .content-heading {
        margin-bottom: 16px;
    }

    .sub-title {
        font-size: 16px;
        padding: 10px 20px;
        margin: 16px auto 23px;
    }

    .row-content {
        width: 100%;
        box-sizing: border-box;
    }

    .content-left {
        order: 2;
        width: 94%;
        padding-right: 0;
        margin: 10px auto 0;
    }

    .content-right {
        order: 1;
        width: 94%;
        padding-left: 0;
        margin: auto;
    }
    
    .point {
        width: 30%;
        margin-bottom: 6px;
    }
    
    .dot-list li {
        padding-left: 24px;
        font-size: 14px;
    }

    .dot-list li::before {
        width: 13px;
        height: 13px;
        top: 3px;
    }
}

@media (max-width: 560px){
    .even-content::before {
        top: 0;
        left: -32px;
        width: 78px;
        height: 58px;
        background: url('/static/img/tour/campaign/hotsprings/hirugami/img-star-line-sp.svg') no-repeat center center/ 100%;
    }
}


/* slider 
-------------------------------------*/
/** ベース設定 **?
/*左右の矢印の色を変える*/
.slick-prev:before, .slick-next:before {
	color: #fff;
    font-size: 24px;
}

/*左右の矢印の位置を変える*/
.slick-next {
	right: 130px;
	z-index: 99;
}
.slick-prev {
	left: 130px;
	z-index: 100;
}

/*ドット*/
.slick-dots {
    bottom: -16px;
}

.slick-dots li {
    margin: 0 3px;
}

.slick-dots li button {
    padding: 0;
}

.slick-dots li.slick-active button:before {
    color: var(--main);
}

.slick-dots li button:before {
    font-size: 10px;
}

/*スライド画像の横幅可変*/
.slick-track img {
	max-width: 100%;
	height: auto;
}
.slick-slider{
	margin-bottom: 0;
}

/* slider */
.slider-container {
    margin: 50px 0 20px;
}

.content-slider-item {
    margin: 10px 0;
}

.slide-img {
     max-width: 434px;
}

.content-slider-item img {
    padding: 0 6px;
}

@media (max-width: 767px) {
    /** ベース設定 **?
    /*左右の矢印の色を変える*/
    .slick-prev:before, .slick-next:before {
        color: #fff;
        font-size: 20px;
    }

    /*左右の矢印の位置を変える*/
    .slick-next {
        right: 20px;
    }
    .slick-prev {
        left: 20px;
    }
}


@media (max-width: 560px) {
    /* slider */
    .slider-container {
        margin: 20px 0 10px;
    }
    
    .content-slider-item {
        margin: 10px 0 14px;
    }
    .slide-img {
        max-width: 240px;
        margin-bottom: 0;
    }

}


/* hotspring area
-----------------------------*/
.hotspring-area {
    background: linear-gradient(90deg, var(--sub) 0%,  var(--sub) 94vw, var(--white) 94vw, var(--white) 100%);
}

@media (max-width: 767px) {
    .hotspring-area {
        background: linear-gradient(90deg, var(--sub) 0%,  var(--sub) 97vw, var(--white) 97vw, var(--white) 100%);
    }
}

/* cuisine-are
-------------------*/
.cuisine-area::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 30px;
    left: auto;
    right: -300px;
    display: block;
    width: 510px;
    height: 420px;
    background: url(/static/img/tour/campaign/hotsprings/hirugami/img-star-line-r.svg) no-repeat center center / 100%;
}

@media (max-width: 1100px) {
    .cuisine-area::before {
        top: 10px;
        right: -27vw;
        width: 50vw;
    }
}

@media (max-width: 560px) {
    .cuisine-area::before {
        top: 10px;
        right: -37px;
        width: 106px;
        height: 84px;
        background: url(/static/img/tour/campaign/hotsprings/hirugami/img-star-line-r-sp.svg) no-repeat center center / 100%;
    }
}


/*　波
-----------------------------------*/
.wave-area {
  position: relative;
  height: 100px; /*何も表示されない場合は各波の親要素に高さを持たせる*/
}

.wave-area svg {
    height: 100vh;
    width: 100vw;
    position: absolute;
    left: 0;  
}

/*波 1*/
.wave-white svg {
  top: -100px;
}

/*波 2*/
.wave-pink svg{
   top: -250px; 
}

@media (max-width: 767px) {
    /*波 1*/
    .wave-white svg {
    }
    
    .wave-pink {
        height: auto;
    }

    /*波 2*/
    .wave-pink svg{
       top: -250px; 
    }
}


/*　20240813追記　plan
-----------------------------------*/
/*20241210追記　aboutの上部にplan移動*/
#plan{
	position: relative;
	padding-bottom: 220px;
}
#plan::after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: -3px;
    left: 0;
    display: block;
    width: 100%;
    height: 224px;
    background: url("/static/img/tour/campaign/hotsprings/hirugami/bg-wave-pc.png") no-repeat center bottom/ 100%;
}
@media (max-width: 480px) {
	#plan{
		padding-bottom: 100px;
	}
	
    #plan::after {
        width: 100%;
        height: 104px;
        background: url("/static/img/tour/campaign/hotsprings/hirugami/bg-wave-sp.png") no-repeat center bottom/ 100%;
    }
}
/*ここまで　aboutの上部にplan移動*/


.row-setplan{
	justify-content: flex-start;
}

.card-style {
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.1);
	padding-top: 15px;
}

.title-hotel {
    font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 15px 15px 15px;
    padding: 10px;
/*    padding: 15px 15px 5px;*/
    background: #DFE4F7;
	border-bottom: 2px solid var(--main);
}

.card-info {
    padding: 10px 15px 15px;
}

/*住所*/
.address-map{
	color: #212529;
	text-decoration: underline;
}
.address-map:hover{
	color: #212529;
	text-decoration: underline;
}

/*タグ*/
.card-tag {
    background: #7C8AC7;
    font-size: 14px;
	color: #fff;
	padding: 3px 5px;
    margin-right: 10px;
}

.meal-tag{margin-top: 10px;}

.meal-tag .card-tag{
/*
    background: #212529;
	color: #fff;
*/
	background: #F3E3AA;
    color: #212529;
}
.meal-tag .card-tag.red {
	background: #ffe2e0;
    color: #212529;
}

/*料金*/
/*
.price-wrap{
	display: flex;
	align-items: center;
}
*/
.price-inner{
/*	margin: 0 0 0 auto;*/
	text-align: right;
}
.num{
	font-weight: bold;
	font-size: 18px;
}

/*ボタン*/
.card-btn {
    padding: 10px;
    background: #7C8AC7;
    display: block;
    text-align: center;
    color: #fff;
	font-weight: bold;
	transition: 0.3s;
}

.card-btn:hover{
	color: #fff;
	opacity: 0.8;
}



/*　固定ボタン
-----------------------------------*/
.fixedBtn {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 5;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0 auto;
	padding: 15px 12px;
}

/*ボタンデザイン*/
.fixedBtn .link-btn {
    position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    width: 320px;
    background: #7C8AC7;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    padding: 25px 25px 25px 60px;
    margin: 0 auto;
	transition: 0.3s;
	border: solid 2px #fff;
}

.fixedBtn .link-btn:hover{
	opacity: 0.85;
}

/*アイコン*/
.fixedBtn .link-btn:before {
    position: absolute;
    z-index: 2;
    content: "\f594";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #fff;
    width: 20px;
    transform: scale(1);
    left: 3.7em;
}

/*上に戻るボタン*/
#pageup a {
	display: none;
}


@media (max-width: 768px) {
	/*固定ボタン*/
	.fixedBtn {
		width: 100%;
		background: rgba(223, 228, 247, 0.8);
	}
	
	.fixedBtn .link-btn {
		border: none;
		max-width: 300px;
		padding: 15px 15px 15px 50px;
	}
	
	/*アイコン*/
	.fixedBtn .link-btn:before {
		left: 3em;
	}
}




