@charset "utf-8";
/* Reset */
html{font-size: 62.5%; scroll-behavior: smooth; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch; scroll-padding-top: 50px;}
body{color: #000; line-height: 1.9; word-spacing: 0; font-size: 1.6rem; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -moz-text-size-adjust: 100%; font-family: 'Noto Sans JP', serif; font-weight: 400;}

*{margin: 0; padding: 0; box-sizing: border-box; border: 0; outline: none;}
h1, h2, h3, h4, h5, h6{font-size: 100%; font-weight: 500;}
ol, ul{list-style: none;}
table{border-collapse: collapse; border-spacing: 0;}
th{text-align: left; font-weight: normal;}
a{color: inherit; text-decoration: none;}
img{vertical-align: bottom; max-width: 100%;}

[class*="container-"]{margin: 0 auto; width: calc(100% - 60px);}
.container-1200{max-width: 1200px;}
.container-1400{max-width: 1400px;}
.container-1600{max-width: 1600px;}

.cap,
[class*="cap-"]{font-size: 1rem; line-height: 1.4;}
.cap-abs_right{position: absolute; bottom: 7px; right: 7px; text-align: right;}
.cap-abs_left{position: absolute; bottom: 7px; left: 7px;}
.cap-right{padding-top: 5px; text-align: right;}
.cap-left{padding-top: 5px;}
.shadow{color: #fff; text-shadow: 0 0 1px rgba(0,0,0,.8), 0 0 2px rgba(0,0,0,.8), 0 0 3px rgba(0,0,0,.8), 0 0 4px rgba(0,0,0,.8), 0 0 5px rgba(0,0,0,.8), 0 0 6px rgba(0,0,0,.8), 0 0 7px rgba(0,0,0,.8), 0 0 8px rgba(0,0,0,.8), 0 0 9px rgba(0,0,0,.8), 0 0 10px rgba(0,0,0,.8);}

.center{text-align: center !important;}
.left{text-align: left !important;}
.right{text-align: right !important;}
.bold{font-weight: bold;}
.txt-red{color: #a81d34;}

@media (min-width: 768px){
    a[href^="tel:"]{pointer-events: none;}
    .only-sp{display: none;}
    .group{padding: 140px 0;}
}

@media (max-width: 767px){
    body{font-size: 1.4rem; line-height: 1.7;}
    [class*="container-"]{width: calc(100% - 40px);}
    .only-pc{display: none;}
    .group{padding: 70px 0;}
}

@media print {
    body{color-adjust: exact; -webkit-print-color-adjust: exact; print-color-adjust: exact;}
}

/* Animate */
.fade-in{opacity: 0; filter: blur(5px) brightness(105%); transition: opacity 1.3s ease, filter 1s ease;}
.fade-in.is-view{opacity: 1; filter: blur(0) brightness(100%);}

.fade-up{opacity: 0; transform: translateY(40px); -webkit-transform: translateY(40px); filter: blur(5px) brightness(105%); transition: opacity 1s ease, transform 1s ease, filter 1s ease;}
.fade-up.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); filter: blur(0) brightness(100%);}

.fade-down{opacity: 0; transform: translateY(-40px); -webkit-transform: translateY(-40px); filter: blur(5px) brightness(105%); transition: opacity 1s ease, transform 1s ease, filter 1s ease;}
.fade-down.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); filter: blur(0) brightness(100%);}

.fade-left{opacity: 0; transform: translateX(-40px); -webkit-transform: translateX(-40px); filter: blur(5px) brightness(105%); transition: opacity 1s ease, transform 1s ease, filter 1s ease;}
.fade-left.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); filter: blur(0) brightness(100%);}

.fade-right{opacity: 0; transform: translateX(40px); -webkit-transform: translateX(40px); filter: blur(5px) brightness(105%); transition: opacity 1s ease, transform 1s ease, filter 1s ease;}
.fade-right.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); filter: blur(0) brightness(100%);}

.zoom-in{opacity: 0; overflow: hidden; transform: scale(0.7,0.7); -webkit-transform: scale(0.7,0.7); transition: opacity 1s ease, transform 1s ease;}
.zoom-in.is-view{opacity: 1; transform: scale(1,1); -webkit-transform: scale(1,1);}

.zoom-out{opacity: 0; overflow: hidden; transform: scale(1.3,1.3); -webkit-transform: scale(1.3,1.3); transition: opacity 1s ease, transform 1s ease;}
.zoom-out.is-view{opacity: 1; transform: scale(1,1); -webkit-transform: scale(1,1);}

.roll-left{position: relative; overflow: hidden; z-index: 2;}
.roll-left img{opacity: 0; transition: opacity 1s ease .5s;}
.roll-left:after{content: ''; position: absolute; top: 0; bottom: 0; background: #a81d34;}
.roll-left.is-view img{opacity: 1;}
.roll-left.is-view:after{animation: rollLeft 1s ease;}

@keyframes rollLeft{
    0%{left: 0; right: 100%;}
    50%{left: 0; right: 0;}
    100%{left: 100%; right: 0;}
}
@-webkit-keyframes rollLeft{
    0%{left: 0; right: 100%;}
    50%{left: 0; right: 0;}
    100%{left: 100%; right: 0;}
}

.roll-right{position: relative; overflow: hidden; z-index: 2;}
.roll-right img{opacity: 0; transition: opacity 1s ease .5s;}
.roll-right:after{content: ''; position: absolute; top: 0; bottom: 0; background: #a81d34;}
.roll-right.is-view img{opacity: 1;}
.roll-right.is-view:after{animation: rollRight 1s ease;}

@keyframes rollRight{
    0%{right: 0; left: 100%;}
    50%{right: 0; left: 0;}
    100%{right: 100%; left: 0;}
}
@-webkit-keyframes rollRight{
    0%{right: 0; left: 100%;}
    50%{right: 0; left: 0;}
    100%{right: 100%; left: 0;}
}

@media (min-width: 768px){
    .delay1{transition-delay: .2s;}
    .delay2{transition-delay: .4s;}
    .delay3{transition-delay: .6s;}
}

/* Header */
h1{width: 190px; background: #fff; position: absolute; top: 0; left: 0; z-index: 100;}

@media (max-width: 1080px){
    h1 {width: auto;}
    h1 img{height: 60px; width: auto;}
}

@media (max-width: 767px){
    h1{width: auto;}
}

/* Main */
.flexbox {display: flex; flex-wrap: wrap; justify-content: space-between;}
.arrow {position: relative;}
.arrow:after {content: ''; position: absolute; top: 50%; right: 7.5%; margin-top: -4px; display: inline-block; padding: 4px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); border: solid #fff; border-width: 0 2px 2px 0;}

.tit-h2 {margin-bottom: 40px; text-align: center;}
.tit-h2 .en {font-family: 'Barlow', serif; font-weight: 600; color: #a81d34; font-size: 5rem; line-height: 1; margin-bottom: 10px;}
.tit-h2 .jp {font-size: 1.6rem;}
.tit-h3 {text-align: center;}
.tit-h3 span:nth-of-type(1) {display: block; font-size: 3.2rem; font-weight: bold; line-height: 1.2; margin-bottom: 10px;}
.tit-h3 span:nth-of-type(2) {display: block; font-size: 6rem; color: #a81d34; line-height: 1.2; font-weight: bold;}

.cv_btnBox{ position: relative; text-align: center; border: 4px solid #000; background: #fff; margin-top: 75px; padding: 40px 10px;}
.cv_btnBox::before{ position: absolute; content: ''; display: block;  width: 101px; height: 141px; background: url(../img/img_woman.png) no-repeat; background-size: contain; right: 14%; top: -45px;}

.cv_btnBox p{ font-size: 3.8rem; font-weight: 700; margin-bottom: 30px;}
.cv_btnBox p::before{ content: "＼"; margin-right: 1rem; font-size: 3.8rem; display: inline-block;}
.cv_btnBox p::after{ content: "／";  font-size: 3.8rem; display: inline-block;}
.cv_btnBox ul{ max-width: 1180px; margin:0 auto;}
.cv_btnBox li{ flex-basis: calc((100% - 40px)/3);}
.cv_btnBox a{ width: 100%; padding:20px 0; border-radius: 45px; background: #a81d34; color: #fff; font-size: 2.4rem; display: inline-block; font-weight: 600;}
.cv_btnBox a:hover{ opacity: 0.8;}

.main{isolation: isolate; overflow: hidden;}

#mv {position: relative;}
#mv > img {width: 100%;}
#mv .mv-txt {position: absolute; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); color: #fff; width: 100%; text-align: center;}
#mv .mv-txt h2 { font-weight: 700; line-height: 1.3; margin-bottom: 20px; text-shadow: 0 0 15px rgba(0, 0, 0, 1);}
#mv .mv-txt h2 span:first-of-type{ display: block; max-width: 100%; width: 39%; margin-bottom: 20px; margin: 0 auto;}
#mv .mv-txt h2 span:first-of-type .size{ font-size: 4rem; border-bottom: none;}
#mv .mv-txt h2 span:nth-of-type(2){ font-size: 9rem;}
#mv .mv-txt h2 span:nth-of-type(3){ font-size: 12rem;}
#mv .mv-txt p {font-size: 2.2rem; margin-bottom: 20px; text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);}
#mv .mv-txt .btnBox{ max-width: 1180px; margin: 0 auto;}
#mv .mv-txt a { background: #a81d34; border-radius: 50px; display: flex; align-items: center; justify-content: center; max-width: 380px; flex-basis: calc((100% - 40px)/3); width: 100%; margin: 0 auto; line-height: 1.5; padding: 12px 0; border: 3px solid #fff; box-shadow: 2px 2px 10px #000, -2px -2px 10px #000; font-weight: bold;font-size:2rem;}
#mv .mv-txt a:hover {opacity: 0.8;}
#mv .mv-txt .percent {position: absolute; right: 13%; bottom: -30px; width: 15%; max-width: 286px;}


#about {background: #f6f6f6; padding: 100px 0;}
#about .tit-h2 {text-align: center;}
#about .col1 { /* width: 45%;  */ width: 100%;}
#about .col1 p { text-align: center; font-size: 2.4rem; line-height: 2; font-weight: bold; margin-bottom: 30px;}
#about .col1 ul li {display: inline-block; font-weight: bold; padding: 2px 20px; border-radius: 30px; border: 2px solid #a81d34; color: #a81d34; margin-bottom: 10px;}
#about .col2 {width: 50.08%;}

/* #reason {padding: 100px 0;}
#reason .tit-h3 {margin-bottom: 80px;}
#reason h4 {font-size: 3rem; font-weight: bold; line-height: 1.6; margin-bottom: 30px;}
#reason .box-img {position: relative; margin: 0 auto 140px;}
#reason .box-img .col1 {width: 50%;}
#reason .box-img .col1 img {width: 100%;}
#reason .box-img .col2 {position: absolute; top: 0; left: 0; right: 0;}
#reason .box-img .col2 .inner {width: 46%; margin: 0 0 0 auto;}
#reason .box-img .col2 .tit {height: 150px; position: relative; color: #fff; margin-bottom: 30px; padding-left: 170px; align-items: center; position: relative; overflow: hidden;}
#reason .box-img .col2 .tit::after {content: ''; position: absolute; top: 0; left: 100px; width: calc(100% - 150px); height: 100%; background: #a81d34; -moz-transform: skew(-20deg, 0deg); -webkit-transform: skew(-20deg, 0deg); -o-transform: skew(-20deg, 0deg); -ms-transform: skew(-20deg, 0deg); transform: skew(-20deg, 0deg); z-index: 2;}
#reason .box-img .col2 .tit .num {position: absolute; top: 0; left: 0; background: #751424; width: 150px; height: 100%; align-items: center; justify-content: space-around; z-index: 3;}
#reason .box-img .col2 .tit .num div span {display: block; text-align: center; font-family: 'Barlow', serif; line-height: 1; width: 100%;}
#reason .box-img .col2 .tit .num div span:nth-of-type(1) {font-size: 2rem;}
#reason .box-img .col2 .tit .num div span:nth-of-type(2) {font-size: 7rem;}
#reason .box-img .col2 .tit .txt {font-size: 4.6rem; font-weight: bold; align-items: center; z-index: 3;}
#reason #box-img-2 .col1 {margin: 0 0 0 auto;}
#reason #box-img-2 .col2 .inner {margin: 0 auto 0 0;}
#reason .box-list {margin-bottom: 140px;}
#reason .box-list h4 {text-align: center;}
#reason .box-list ul li {width: 31.33%; position: relative;}
#reason .box-list ul li::after {content: ''; width: 16px; height: 39px; background: url(../img/ic_arr.png) no-repeat; background-size: 100% 100%; position: absolute; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); right: -30px;}
#reason .box-list ul li:last-of-type::after {display: none;}
#reason .box-list-2 h4 {text-align: center;}
#reason .box-list-2 ul{padding-bottom: 40px;}
#reason .box-list-2 ul li {width: 49%; border: 1px solid #ccc; padding: 30px; margin-bottom: 2%; border-radius: 10px;}
#reason .box-list-2 ul li .head {border-bottom: 1px dotted #a81d34; padding-bottom: 20px; margin-bottom: 20px;}
#reason .box-list-2 ul li .head h5 {font-size: 2.2rem; font-weight: bold; color: #a81d34;}
#reason .box-list-2 ul li .head p {font-size: 1.8rem; font-weight: bold;}
#reason .box-list-2 ul li .head .col1 {width: 77%;}
#reason .box-list-2 ul li .head .col2 {width: 22.82%;}

#reason .box-list-2 .btn {background: #a81d34; border-radius: 50px; display: block; max-width: 550px; width: 100%; margin: 0 auto; line-height: 1; padding: 25px 0; font-weight: bold; color: #fff; text-align: center; font-size: 1.6rem;}
#reason .box-list-2 .btn:hover {opacity: 0.8;}

#reason .box-list-2 .cv_btnBox li{  border: none; padding:0;} */

#charm {padding: 100px 0;}
#charm .tit-h3 {margin-bottom: 80px;}
#charm h3 {font-size: 3rem; font-weight: bold; line-height: 1.6; margin-bottom: 30px;}
#charm .box-img {position: relative; margin: 0 auto 140px;}
#charm .box-img .col1 {width: 50%;}
#charm .box-img .col1 img {width: 100%;}
#charm .box-img .col2 {position: absolute; top: 0; left: 0; right: 0;}
#charm .box-img .col2 .inner {width: 46%; margin: 0 0 0 auto;}
#charm .box-img .col2 .tit {height: 150px; position: relative; color: #fff; margin-bottom: 30px; padding-left: 170px; align-items: center; position: relative; overflow: hidden;}
#charm .box-img .col2 .tit::after {content: ''; position: absolute; top: 0; left: 100px; width: calc(100% - 130px); height: 100%; background: #a81d34; -moz-transform: skew(-20deg, 0deg); -webkit-transform: skew(-20deg, 0deg); -o-transform: skew(-20deg, 0deg); -ms-transform: skew(-20deg, 0deg); transform: skew(-20deg, 0deg); z-index: 2;}
#charm .box-img .col2 .tit .num {position: absolute; top: 0; left: 0; background: #751424; width: 150px; height: 100%; align-items: center; justify-content: space-around; z-index: 3;}
#charm .box-img .col2 .tit .num div span {display: block; text-align: center; font-family: 'Barlow', serif; line-height: 1; width: 100%;}
#charm .box-img .col2 .tit .num div span:nth-of-type(1) {font-size: 2rem;}
#charm .box-img .col2 .tit .num div span:nth-of-type(2) {font-size: 7rem;}
#charm .box-img .col2 .tit .txt {font-size: clamp( 1.8rem, 2.5vw, 3.8rem); font-weight: bold; align-items: center; z-index: 3;}
#charm #box-img-2 .col1 {margin: 0 0 0 auto;}
#charm #box-img-2 .col2 .inner {margin: 0 auto 0 0;}
#charm .box-list {margin-bottom: 140px;}
#charm .box-list h3 {text-align: center;}
#charm .box-list ul li {width: 31.33%; position: relative;}
#charm .box-list ul li::after {content: ''; width: 16px; height: 39px; background: url(../img/ic_arr.png) no-repeat; background-size: 100% 100%; position: absolute; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); right: -30px;}
#charm .box-list ul li:last-of-type::after {display: none;}

#charm .box-list .reserve_method{ padding: 40px; border: 2px solid #ebebeb; border-radius: 6px;}
#charm .box-list .reserve_method h4{ background: #751424; color: #fff; font-size: clamp(1.6rem, calc(0.125rem + 2.333vw), 3rem); line-height: 1; padding: 15px 0; text-align: center; border-radius: 6px; max-height: 69px;}
#charm .box-list .reserve_method h4 span{ display: inline-block; margin-right: 0.5em;}
#charm .box-list .reserve_method h4 span img{ vertical-align: middle;}
#charm .box-list .reserve_method figure::before{ content: ""; display: block; width: 38px; height: 16px; background-color: #595959; clip-path: polygon(50% 16px, 0% 0%, 38px 0%); margin: 25px  auto;}
#charm .box-list .reserve_method p{ line-height: 1.5;}
#charm .box-list .reserve_method a img:hover{ opacity: 0.7;}
#charm .box-list .reserve_method .big_room{ text-align: center; border-radius: 6px; background: #f5f5f5; width: 34%; font-size: 1.8rem;}
#charm .box-list .reserve_method .big_room h4{ border-radius: 6px 6px 0 0; margin-bottom: 30px;}
#charm .box-list .reserve_method .big_room figure{ max-width: 158px; margin: 0 auto;}
#charm .box-list .reserve_method .mid_room{ text-align: center; border-radius: 6px; background: #f5f5f5; width: 62.68%; padding: 20px 40px 40px; font-size: 1.8rem;}
#charm .box-list .reserve_method .mid_room ul{ margin-top: 20px;}
#charm .box-list .reserve_method .mid_room li::after{ display: none;}
#charm .box-list .reserve_method .mid_room figure::before{ margin: 15px auto;}
#charm .box-list .reserve_method .mid_room li:nth-of-type(1) { width: 37.14%;}
#charm .box-list .reserve_method .mid_room li:nth-of-type(2) { width: 47.14%;}
#charm .box-list .reserve_method .mid_room li:nth-of-type(2) h4{ font-size: clamp(1.6rem, calc(0.375rem + 1.667vw), 2.6rem);}

#variation {background: #a81d34; padding: 100px 0; color: #fff;}
#variation .tit-h2 .en {color: #fff;}
#variation .tit-h3 {margin-bottom: 50px;}
#variation .tit-h3 span:nth-of-type(2) {color: #fff;}
#variation .container-1400 > p {font-size: 2rem; text-align: center; margin-bottom: 50px;}
#variation .navtab {overflow: hidden; justify-content: center; gap: 20px;}
#variation .navtab li {background: #751424; width: 32%; text-align: center; padding: 10px; font-size: 2.4rem; font-weight: bold; border-top-left-radius: 10px; border-top-right-radius: 10px;}
#variation .navtab li.active,
#variation .navtab li:hover {background: #fff; color: #a81d34; cursor: pointer;}
#variation .tab {background: #fff; color: #000; display: none;}
#variation .tab .container-1200 {padding: 60px 0;}
#variation .tab .container-1200 h4 {font-size: 3rem; font-weight: bold; color: #a81d34; padding-bottom: 5px; margin-bottom: 20px; border-bottom: 1px dotted #a81d34;}
#variation .tab .container-1200 h6  {font-size: 2rem; font-weight: bold; margin-bottom: 10px;}
#variation .tab .container-1200 ul {justify-content: flex-start;}
#variation .tab .container-1200 ul li {width: 31.33%; margin-right: 3.005%; margin-bottom: 3.005%;}
#variation .tab .container-1200 ul li:nth-of-type(3n) {margin-right: 0;}
#variation .tab .container-1200 ul li h5 {font-size: 2.2rem; font-weight: bold; margin: 10px 0;}
#variation .tab .container-1200 ul li .list-btn {margin-top: 10px;}
#variation .tab .container-1200 ul li .list-btn a {display: block; border: 1px solid #a81d34; padding: 5px; border-radius: 10px; color: #a81d34; margin-bottom: 10px; text-align: center; font-weight: bold; position: relative;}
#variation .tab .container-1200 ul li .list-btn a::after {content: ''; position: absolute; top: 50%; right: 7.5%; margin-top: -4px; display: inline-block; padding: 4px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); border: solid #a81d34; border-width: 0 2px 2px 0;}
#variation .tab .container-1200 ul li .list-btn a:hover {background: #a81d34; color: #fff;}
#variation .tab .container-1200 ul li .list-btn a:hover::after {border-color: #fff;}
#variation .tab3nav {margin-bottom: 20px;}
#variation .tab3nav a {display: block; background: #fff; border: 1px solid #a81d34; border-radius: 10px; overflow: hidden; padding: 10px; text-align: center; color: #a81d34; font-weight: bold; width: 24%; position: relative;}
#variation .tab3nav a::after {content: ''; position: absolute; top: 50%; right: 10px; margin-top: -4px; display: inline-block; padding: 4px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); border: solid #a81d34; border-width: 0 0 2px 2px;}
#variation .tab3nav a:hover {opacity: 0.8;}
#variation .tab3nav a * {display: inline-block; vertical-align: middle;}
#variation .tab3nav a span {text-align: left; margin-left: 5px; line-height: 1.2;}
#variation #tab1 {display: block;}
#variation .cv_btnBox { margin-top: 100px; color: #000;}




#equipment {padding: 100px 0; background: url(../img/bg_eq.png);}
#equipment .tit-h3 {margin-bottom: 50px;}
#equipment .container-1400 > p {font-size: 2rem; text-align: center; margin-bottom: 50px;}
#equipment .row1 {margin-bottom: 50px;}
#equipment .row1 li {width: 31.43%;}
#equipment .row1 li h5 {font-size: 2.2rem; font-weight: bold; margin: 5px 0;}
#equipment .row2 {background: #fff; border-radius: 10px; padding: 50px;}
#equipment .row2 h4 {text-align: center; font-size: 2.2rem; font-weight: bold; margin-bottom: 20px;}
#equipment .row2 ul li {width: 32%;}
#equipment .row2 ul li p {position: relative;}
#equipment .row2 ul li p * {display: inline-block; vertical-align: middle;}
#equipment .row2 ul li p span {font-size: 1.4rem; margin-left: 5px;}
#equipment .row2 ul li p .sm {font-size: 1.2rem;}

#charge_system{ padding: 100px 0;}
#charge_system h3 {font-size: 3rem; font-weight: bold; line-height: 1.6; margin-bottom: 30px;}
#charge_system .box-list {margin-bottom: 140px;}
#charge_system .box-list h3 {text-align: center;}
#charge_system .box-list ul li {width: 31.33%; position: relative;}
#charge_system .box-list ul li::after {content: ''; width: 16px; height: 39px; background: url(../img/ic_arr.png) no-repeat; background-size: 100% 100%; position: absolute; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); right: -30px;}
#charge_system .box-list ul li:last-of-type::after {display: none;}

#environment {padding: 100px 0; background: #f6f6f6;}
#environment .tit-h3 {margin-bottom: 50px;}
#environment .row1 {margin: 0 auto 80px; position: relative;}
#environment .row1 .col1 {position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); max-width: 1500px;}
#environment .row1 .col1 .inner {width: 40%; width: 60%; padding: 50px; background: url(../img/bg_en.png) no-repeat top left;}
#environment .row1 .col1 h4 {font-size: 4rem; font-family: 'Barlow', serif; letter-spacing: 0.1rem;}
#environment .row1 .col1 p {font-size: 2rem;}
#environment .row1 .col2 {width: 50%; margin: 0 0 0 auto;}
#environment .row1 .col2 img {width: 100%;} 
#environment .row2 {text-align: center; margin-bottom: 50px;}
#environment .row2 h4 {font-weight: bold; font-size: 3rem; margin-bottom: 20px;}
#environment .row2 ul li {width: 49.9%;}
#environment .row2 ul li h5 {font-size: 2.2rem; font-weight: bold; margin: 5px 0;}
#environment .row3 ul li {background: #fff; border-radius: 10px; width: 49%; text-align: center; padding: 40px;}
#environment .row3 ul li h5 {font-size: 2.6rem; font-weight: bold; margin-bottom: 10px; text-align: center;}
#environment .row3 ul li p {text-align: left; margin-top: 20px;}
#environment  .row3 .cv_btnBox ul li{ padding:0; }


#voice {padding: 100px 0;}
#voice ul li {padding: 40px; border: 1px solid #ccc; border-radius: 10px; width: 49%; text-align: center;}
#voice ul li h4 {margin-bottom: 20px;}
#voice ul li h4 span {display: block; line-height: 1.6;}
#voice ul li h4 span:nth-of-type(1) {font-size: 2.4rem; color: #a81d34; font-weight: bold;}
#voice ul li h5 {font-size: 2.2rem; font-weight: bold; margin: 5px 0;}
#voice ul li p {text-align: left;}

#voice .cv_btnBox li{ padding:0; border:none;}

#campaign {background: #a81d34; padding: 100px 0; color: #fff;}
#campaign .tit-h2 .en {color: #fff;}
#campaign .tit-h3 {margin-bottom: 50px;}
#campaign .row {max-width: 1140px; width: 100%; margin: 0 auto; margin-bottom: 20px;}
#campaign .row:last-of-type {margin-bottom: 60px;}
#campaign .row a:hover {opacity: 0.8;}
#campaign .btn {background: #fff; color: #a81d34; max-width: 550px; width: 100%; margin: 0 auto; line-height: 1; padding: 18px 0; text-align: center; font-size: 2.4rem; font-weight: bold; display: block; border-radius: 100px;}
#campaign .btn::after {border-color: #a81d34;}
#campaign .btn:hover {opacity: 0.8;}

#qa {padding: 100px 0; background: #f6f6f6;}
#qa .qa-item{margin: 0 0 20px; padding: 2.4% 2.8%; border: 1px solid #e0ddd5; border-radius: 6px;}
#qa .qa-item:last-of-type{margin: 0;}
#qa .qa-question{font-size: 2.2rem; line-height: 1.7; font-weight: bold; position: relative; padding: 0 55px 0 63px; cursor: pointer;}
#qa .qa-question:before{content: 'Q.'; font-size: 5.5rem; line-height: 0.7; color: #a81d34; position: absolute; top: 0; left: 0; font-family: 'Barlow', sans-serif;}
#qa .qa-question i{width: 42px; height: 42px; background: #a81d34; position: absolute; top: 0; right: 0;}
#qa .qa-question i:before{content: ''; width: 20px; height: 2px; background: #fff; position: absolute; left: 11px; top: 20px;}
#qa .qa-question i:after{content: ''; width: 2px; height: 20px; background: #fff; position: absolute; left: 20px; top: 11px;}
#qa .qa-question.is-open i:after{display: none;}
#qa .qa-answer{padding: 20px 55px 0 0; display: none;}
#qa .qa-answer a {color: #a81d34; text-decoration: underline;}
#qa .qa-answer a:hover {opacity: 0.8;}
#qa .qa-answer_list li{text-indent: -1em; margin-left: 1em;}
#qa .qa-answer_list li:before{content: '・';}

#access {padding: 100px 0;}
#access .access-wrap{display: flex; justify-content: space-between; flex-wrap: wrap;}
#access .access-map{width: 50%;}
#access .access-map iframe{width: 100%; height: 440px;}
#access .access-info{width: 45.7%;}
#access .access-rows{margin: 0 0 30px;}
#access .access-rows:last-of-type{margin: 0;}
#access .access-tit{font-size: 2.2rem; line-height: 1.5; font-weight: 500; border-bottom: 2px dotted #a7003b; padding: 0 0 13px; margin: 0 0 10px;}
#access .access-tel{font-size: 3.6rem; font-weight: 600; font-family: 'Barlow', serif; line-height: 1.6; color: #a7003b;}
#access .access-tel{display: flex; align-items: center; justify-content: flex-start;}
#access .access-tel:before{content: ''; width: 29px; height: 29px; background: url("../img/ic_phone.svg") no-repeat top left/100% 100%; display: inline-block; transform: rotate(-10deg); margin: 0 5px 0 0; position: relative;}


#contact {background: #a81d34; text-align: center; color: #fff; padding: 100px 0 30px;}
#contact .tit-h2 .en {color: #fff;}
#contact .contact-txt{font-size: 2.2rem; margin: 0 0 40px;}
#contact .contact-btn{font-size: 2.4rem; font-weight: 600; line-height: 1; background: #fff; color: #a81d34; width: 100%; max-width: 550px; border-radius: 100px; position: relative; display: block; padding: 18px 0; margin: 0 auto 110px; transition: .3s;}
#contact .contact-btn:after{content: ''; position: absolute; top: 50%; right: 7.5%; margin-top: -4px; display: inline-block; padding: 4px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); border: solid #a81d34; border-width: 0 2px 2px 0;}
#contact .contact-btn:hover{opacity: 0.8;}


#copyright{font-size: 1.2rem; line-height: 1.5; font-family: 'Barlow', serif;}
#pagetop{position: fixed; bottom: 20px; right: 20px; width: 60px; z-index: 100; cursor: pointer;}

@media (max-width: 1600px){

    .tit-h2 .en {font-size: 4rem;}
    .tit-h3 span:nth-of-type(1) {font-size: 2.5rem;}
    .tit-h3 span:nth-of-type(2) {font-size: 4rem;}

    #mv .mv-txt h2 {font-size: 5rem;}
    #mv .mv-txt p {font-size: 2rem;}

    #about .col1 p {font-size: 2rem;}

    #charm h4 {font-size: 2.2rem;}

    #variation .tab .container-1200 h4 {font-size: 2.2rem;}
    #variation .tab .container-1200 ul li h5 {font-size: 1.8rem;}

    #equipment .row1 li h5 {font-size: 1.8rem;}

    #environment .row1 .col1 p {font-size: 1.6rem;}
    #environment .row3 ul li h5 {font-size: 2rem;}
    #environment .row2 ul li h5 {font-size: 2rem;}

    #qa .qa-question {font-size: 1.8rem;}

}

@media (max-width: 1380px){
	.cv_btnBox::before{ right: 10% ; width: 90px; height: 121px;}
}

@media (max-width: 1200px){
    #mv .mv-txt h2 span:first-of-type{  font-size: 4vw;}
    #mv .mv-txt h2 span:first-of-type .size{ font-size: 3.5vw;}
    #mv .mv-txt h2 span:nth-of-type(2){ font-size: 7vw;}
    #mv .mv-txt h2 span:nth-of-type(3){ font-size: 9vw;}

    #equipment .row2 ul li p {position: relative; padding-left: 20px;}
    #equipment .row2 ul li p img {position: absolute; top: 10px; left: 0;}

    .cv_btnBox::before{ right: 20px ; width: 70px; height: 98px;}
}

@media (max-width: 1180px){
	.cv_btnBox a {font-size:1.8rem;}
	.cv_btnBox p {font-size: 3rem;margin-bottom:20px;}
}
@media (max-width: 1080px){
    #mv .mv-txt h2 {font-size: 3rem;}
    #mv .mv-txt a {max-width: 350px; font-size: 1.4rem;}

    #charm .box-img {margin-bottom: 30vw;}
    #charm .box-img .col2 .inner {width: 48%;}
    #charm .box-img .col2 .tit {height: 80px; padding-left: 120px;}
    #charm .box-img .col2 .tit::after {left: 50px; width: calc(100% - 70px);}
    #charm .box-img .col2 .tit .txt {font-size: 2.3vw;}
    #charm .box-img .col2 .tit .num {width: 100px;}
    #charm .box-img .col2 .tit .num div span:nth-of-type(1) {font-size: 1.6rem;}
    #charm .box-img .col2 .tit .num div span:nth-of-type(2) {font-size: 4rem;}
    #charm .box-list ul li::after {right: -7%; width: 10px; height: 24px;}


    #variation .navtab li {font-size: 2rem;}
    #variation .tab .container-1200 ul li .list-btn a {font-size: 1.2rem;}

    #equipment .container-1400 > p {font-size: 1.8rem;}
    #equipment .row2 {padding: 20px; width: 100%;}

    #environment .row1 .col1 h4 {font-size: 3rem;}
    #environment .row1 .col1 .inner {padding: 20px; width: 50%;}
    #environment .row1 .col1 .inner p br {display: none;}
}

@media (max-width: 767px){

    .tit-h2 {margin-bottom: 5vw;}
    .tit-h2 .en {font-size: 3rem;}

    .tit-h3 {margin-bottom: 5vw !important;}
    .tit-h3 span:nth-of-type(1) {font-size: 1.8rem;}
    .tit-h3 span:nth-of-type(2) {font-size: 3rem;}

    .cv_btnBox{ padding: 15px;}
    .cv_btnBox::before{ right: 20px ; top:-60px; width:60px; height: 85px;}
    .cv_btnBox p{position: relative; max-width: 500px; margin:
    0 auto;}
    .cv_btnBox p::before{ content: "＼"; margin-right: 1rem; font-size: 3.8rem; display: inline-block; position: absolute; bottom: 0; left: 0; bottom: -3px;}
    .cv_btnBox p::after{ content: "／";  font-size: 3.8rem; display: inline-block; position: absolute; right: 0; bottom: -3px;}
    .cv_btnBox p{ font-size: 5vw; margin-bottom: 10px;}
    .cv_btnBox li { flex-basis: 100%; margin-bottom: 10px;}
    .cv_btnBox li a{ font-size: 4vw; padding: 15px 0;}
    

    #mv .mv-txt h2 span:first-of-type{ margin-bottom:10px; width: 100%; padding:0 15px;}
    #mv .mv-txt h2 span:first-of-type .size{ font-size: 3.5vw;}
    #mv .mv-txt h2 span:nth-of-type(2){ font-size: 8vw;}
    #mv .mv-txt h2 span:nth-of-type(3){ font-size: 14vw;}
    #mv .mv-txt p {font-size: 4vw; margin-bottom: 6vw;}
    #mv .mv-txt .percent {width: 50%; width: 30%; bottom: 96%; right: 10px;}
    #mv .mv-txt .flexbox{ display: block; max-width: 320px;}
    #mv .mv-txt a {width: 90%; padding: 2.6vw 0; font-size: 1.6rem; margin-bottom: 9px; }
    #mv .mv-txt a:first-of-type{ padding: 2vw 0; line-height: 1.3;}


    #about {padding: 10vw 0;}
    #about .col1 {width: 100%; margin-bottom: 5vw;}    
    #about .col1 p {font-size: 1.8rem; text-align: left;}
    #about .col1 p br {display: none;}
    #about .col1 ul {text-align: center;}
    #about .col2 {width: 100%;}

    #charm {padding: 10vw 0;}
    #charm .box-img {margin-bottom: 10vw;}
    #charm .box-img .col1 {width: 100% !important; margin: 0 auto 5vw !important;}
    #charm .box-img .col2 {position: static;}
    #charm .box-img .col2 .inner {width: 100%; margin: 0 auto !important;}
    #charm .box-img .col2 .tit .txt {font-size: 4.5vw;}
    #charm h3 {font-size: 1.8rem; margin-bottom: 5vw; text-align: center;}
    #charm .box-list {margin-bottom: 10vw;}
    #charm .box-list ul li {width: 100%; margin-bottom: 5vw; text-align: center;}
    #charm .box-list ul li::after {display: none;}
    #charm .box-list .reserve_method{ padding: 20px 15px;}
    #charm .box-list .reserve_method .big_room{ width: 100%; padding-bottom: 30px; margin-bottom: 20px;}
    #charm .box-list .reserve_method .big_room h4{ border-radius: 6px 6px 0 0; margin-bottom: 20px;}
    #charm .box-list .reserve_method .big_room figure{ max-width: 158px; margin: 0 auto;}
    #charm .box-list .reserve_method .mid_room{ width: 100%; padding: 20px 20px ;}
    #charm .box-list .reserve_method .mid_room ul{ margin-top: 20px;}
    #charm .box-list .reserve_method .mid_room li::after{ display: none;}
    #charm .box-list .reserve_method .mid_room figure::before{ margin: 15px auto;}
    #charm .box-list .reserve_method .mid_room li:nth-of-type(1) { width: 100%; margin-bottom: 40px;}
    #charm .box-list .reserve_method .mid_room li:nth-of-type(2) { width: 100%; }

    #variation {padding: 10vw 0;}
    #variation .tit-h3 {margin-bottom: 5vw;}
    #variation .container-1400 > p {font-size: 1.6rem; text-align: left; margin-bottom: 5vw;}
    #variation .container-1400 > p br {display: none;}
    #variation .navtab {width: 100%; justify-content: space-between;}
    #variation .navtab li {font-size: 3.5vw; width: 47%; display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center; padding: 10px 5px;}
    #variation .tab .container-1200 ul li h5 {font-size: 1.6rem;}
    #variation .tab .container-1200 ul li .list-btn a {font-size: 2.5vw; padding: 5px 10px;}
    #variation .tab .container-1200 ul li .list-btn a::after {padding: 2px; right: 4%;}
    #variation .tab .container-1200 {padding: 5vw 0;}
    #variation .tab .container-1200 h4 {font-size: 2rem;}
    #variation .tab .container-1200 ul li {width: 48%; margin: 0 4% 4% 0;}
    #variation .tab .container-1200 ul li:nth-of-type(3n) {margin-right: 4%;}
    #variation .tab .container-1200 ul li:nth-of-type(2n) {margin-right: 0;}
    #variation .tab .container-1200 h6 {font-size: 1.6rem;}
    #variation .tab .container-1200 h4 {font-size: 1.8rem;}
    #variation .tab3nav a {width: 100%; margin-bottom: 2vw; text-align: left; padding: 10px 20px;}
    

    #equipment {padding: 10vw 0;}
    #equipment .container-1400 > p {font-size: 1.6rem; text-align: left; margin-bottom: 5vw;}
    #equipment .container-1400 > p br {display: none;}
    #equipment .row1 li {width: 100%; margin-bottom: 5vw;}
    #equipment .row1 li h5 {font-size: 1.8rem;}
    #equipment .row1 li figure {text-align: center;}
    #equipment .row2 {width: 100%;}
    #equipment .row2 ul li {width: 100%;}
    #equipment .row2 ul li p {padding-left: 0;}
    #equipment .row2 ul li p img {position: static;}

    #charge_system {padding: 10vw 0;}
    #charge_system h3 {font-size: 1.8rem; margin-bottom: 5vw; text-align: center;}
    #charge_system .box-list {margin-bottom: 10vw;}
    #charge_system .box-list ul li {width: 100%; margin-bottom: 5vw; text-align: center;}
    #charge_system .box-list ul li::after {display: none;}

    #environment {padding: 10vw 0;}
    #environment .row1 .col1 {position: static; transform: translateY(0); -webkit-transform: translateY(0); margin-bottom: 5vw;}
    #environment .row1 .col1 .inner {width: 100%; padding: 3vw; background-size: 50px auto;}
    #environment .row1 .col1 h4 {font-size: 2.2rem;}
    #environment .row1 .col1 p {font-size: 1.6rem;}
    #environment .row1 .col1 p br {display: none;}
    #environment .row1 .col2 {width: 100%;}
    #environment .row2 h4 {font-size: 2.2rem;}
    #environment .row2 ul li {width: 100%; margin-bottom: 5vw;}
    #environment .row2 ul li figure {text-align: center;}
    #environment .row2 ul li h5 {font-size: 1.8rem;}
    #environment .row3 ul li {width: 100%; margin-bottom: 5vw;}
    #environment .row3 ul li h5 {font-size: 2rem;}

    #voice {padding: 10vw 0;}
    #voice ul li {width: 100%; margin-bottom: 5vw; padding: 5vw;}
    #voice ul li h5 {font-size: 1.8rem; text-align: left;}


    #campaign {padding: 10vw 0;}
    #campaign .btn {font-size: 1.6rem;}

    #qa {padding: 10vw 0;}
    #qa .qa-item{padding: 15px;}
    #qa .qa-question{font-size: 1.8rem; line-height: 1.6; padding: 0 45px 0 40px;}
    #qa .qa-question:before{font-size: 3.6rem; top: 3px;}
    #qa .qa-question i{width: 32px; height: 32px;}
    #qa .qa-question i:before{width: 12px; left: 10px; top: 15px;}
    #qa .qa-question i:after{height: 12px; left: 15px; top: 10px;}
    #qa .qa-answer{padding: 15px 0 0 0;}

    #access {padding: 10vw 0;}
    #access .access-wrap{width: 100%;}
    #access .access-map{width: 100%;}
    #access .access-map iframe{height: 100vw;}
    #access .access-info{width: 100%; padding: 20px 20px 0;}
    #access .access-tit{font-size: 1.8rem;}



    #contact {padding: 10vw  0 5vw;}
    #contact .contact-txt{font-size: 1.8rem;}
    #contact .contact-btn{font-size: 1.6rem; margin: 0 auto 50px;}




    #pagetop{width: 40px; bottom: 10px; right: 10px;}


}