
/* reset
**************************************** */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}


*,
*:after,
*::before {
  box-sizing: border-box;
}

*:after,
*::before {
  transition: all .4s ease-out;
}

* {
  letter-spacing: .1em;
}

body {
  line-height: 1;
  font-size: 16px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-image: url(../image/top/bg.png);
  background-size: auto;
  letter-spacing: .1em;
  color: #413836;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}


article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

ins {
  background-color: #ff9;
  color: #333;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #333;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #333;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

a,
a[href="javascript:void(0);"]:hover {
  color: #413836;
  text-decoration: none;
  transition: all .4s ease-out;
  outline: none;
}

a[href="javascript:void(0);"],
a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: default;
  opacity: 1;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* flex
**************************************** */
/* --- ブロック要素 --- */
.flex {
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  justify-content: flex-start;
}

.flex-j-end {
  justify-content: flex-end;
}

.flex-j-ctr {
  justify-content: center;
}

.flex-j-between {
  justify-content: space-between;
}

.flex-j-around {
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  align-items: flex-start;
}

.flex-a-end {
  align-items: flex-end;
}

.flex-a-ctr {
  align-items: center;
}

.flex-a-baseline {
  align-items: baseline;
}

.flex-a-stretch {
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  flex-wrap: nowrap;
}

.flex-c-wrap {
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  flex-wrap: wrap-reverse;
}

.flex-c-start {
  align-content: flex-start;
}

.flex-c-start {
  align-content: flex-start;
}

.flex-c-end {
  align-content: flex-end;
}

.flex-c-ctr {
  align-content: center;
}

.flex-c-baseline {
  align-content: baseline;
}

.flex-c-stretch {
  align-content: stretch;
}

@media screen and (max-width: 767px) {
  .flex-sp-block {
    flex-direction: column;
  }
}

.block {
  display: block;
}

/* txt */
.txt-ctr {
  text-align: center;
}

/* inner */
.inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* pos */
.pos-rel {
  position: relative;
}

.pos-ab {
  position: absolute;
}

/* font */
.font-jp {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-en {
  font-family: "retiro-std-24pt", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.font-adobe {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 600;
  font-style: normal;
}

.font-adobe-400 {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-style: normal;
}

/* anchor */
.anchor {
  position: absolute;
  top: -100px;
}

/* btn */
.btn a,
.btn button,
button.buy{
  position: relative;
  display: block;
  width: 100%;
  max-width: 368px;
  padding: 19px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background-color: #8C5D53;
  border: none;
  border-radius: 99px;
  box-shadow: 0 0 16px rgba(0, 0, 0, .2);
  text-align: center;
  transition: all .4s ease-out;
  cursor: pointer;
}

.btn a:hover,
.btn button:hover,
button.buy:hover {
  opacity: .7;
}

/*
.btn a::before,
.btn button::before,
button.buy::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  translate: 0 -50%;
  display: block;
  width: 38px;
  height: 38px;
  background-color: #4B1A0F;
  border-radius: 50%;
}
*/

.btn a::after,
.btn button::after,
button.buy::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 29px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.btn.btn-ppl a,
.btn.btn-ppl button,
button.buy {
  background-color: #93185A;
}

/*
.btn.btn-ppl a::before,
.btn.btn-ppl button::before,
button.buy {
  background-color: #500E32;
}
*/

.btn.btn-ctr a,
.btn.btn-ctr button {
  margin: 0 auto;
}

/* section_pdg */
.section_pdg {
  padding-block: 160px;
}

@media screen and (max-width: 767px) {
  .btn a,
  .btn button {
    padding: 14px;
    font-size: 20px;
  }

  .btn a::before,
  .btn button::before {
    width: 28px;
    height: 28px;
  }

  .btn a::after,
  .btn button::after {
    right: 25px;
    width: 10px;
    height: 10px;
  }

  .section_pdg {
    padding-block: 80px;
  }
}

.pc-none {
  display: none;
}

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

  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }

}

/* header
**************************************** */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100px;
  background-color: #707070;
}

.header--inner,
.header--menu,
.header--menu li,
.gnav--link {
  height: 100%;
}

.ganv_btn {
  display: none;
}

.gnav--link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 4px;
  padding-inline: 30px;
  color: #C9A063;
}

.gnav--link:hover {
  opacity: .7;
}

.gnav--link .en {
  font-size: 27px;
}

.gnav--link .jp {
  font-size: 13px;
}

.grav--link-reservation {
  background-color: #93185A;
}

.grav--link-reservation .en {
  font-size: 29px;
}

.grav--link-reservation .jp {
  font-size: 16px;
}

@media (max-width: 1200px) {
  header {
    height: 64px;
  }

  .gnav_btn,
  .tel_btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 9999;
    transition: all .4s ease-out;
  }

  .gnav_btn--lines {
    position: relative;
    width: 24px;
    height: 18px;
  }

  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #C9A063;
    transition: all .4s ease-out;
  }

  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }

  .active .gnav_btn--lines span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }

  .header--logo img {
    height: 64px;
  }

  .header--menu,
  .header--menu li {
    height: auto;
  }

  .header--menu {
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding-inline: 5%;
    flex-direction: column;
    background-color: #707070;
    opacity: 0;
    transition: all .4s ease-out;
    pointer-events: none;
  }

  .header--menu.active {
    opacity: 1;
  }

  .gnav--link {
    padding-block: 16px;
  }
}

/* hero
**************************************** */
.hero {
  overflow: hidden;
}

.hero--img {
  width: 84.7%;
  max-width: inherit;
  margin: 0 auto;
}

.hero--catch {
  position: absolute;
  top: 18vw;
  left: 5.78%;
}

.hero--catch span {
  display: block;
  width: fit-content;
  padding-inline: 30px 150px;
  font-size: clamp(36px ,2.5vw, 48px);
  line-height: 1.78;
  letter-spacing: .2em;
  background: linear-gradient(to right, #fff, #fff 70%, transparent);
}

.hero--catch span:first-child {
  margin-bottom: 25px;
}

.hero--ttl {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  color: #fff;
  font-size: 25vw;
  text-shadow: 0 0 40px rgba(183, 170, 167, .4);
}

@media screen and (max-width: 768px) {
  .hero {
    padding-top: 64px;
  }

  .hero--img {
    width: 90%;
  }

  .hero--catch {
    position: absolute;
    top: 76vw;
    left: 2%;
  }

  .hero--catch span {
    padding-inline: 16px 72px;
    font-size: 22px;
  }

  .hero--catch span:first-child {
    margin-bottom: 10px;
  }

  .hero--ttl {
    bottom: -5.6vw;
  }
}

/* home_recruit
**************************************** */
.home_recruit {
  background-color: #fff;
}

.home_recruit .home--ttl {
  margin-bottom: 36px;
  font-size: 94px;
}

.recruit_content {
  max-width: 1364px;
  margin: 0 auto;
  padding: 0 12px;
}

.recruit_description {
  background-color: #fff;
  padding: 28px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.recruit_description .ttl {
  font-size: 22px;
  color: #bfa16a;
  margin: 12px;
}

.recruit_description .detail {
  margin-left: 1em;
  line-height: 1.8;
  color: #413836;
}

.recruit_form {
  margin-top: 20px;
  background-color: #f8f6f2;
  padding: 20px 22px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.recruit-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #4a3c2a;
}

.recruit-form input[type="text"],
.recruit-form input[type="tel"],
.recruit-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #d6c7b0;
  border-radius: 4px;
  font-size: 0.95rem;
}

.recruit-form .btn-apply {
  display: block;
  width: 100%;
  background-color: #bfa16a;
  color: #fff;
  padding: 12px 0;
  border-radius: 24px;
  border: none;
  font-size: 1.05rem;
}

@media screen and (max-width: 767px) {
  .recruit_description { padding: 18px; }
  .recruit_form { padding: 16px; }
  .home_recruit .home--ttl { font-size: 60px; margin-bottom: 24px; }
}


/* home_befoaf
**************************************** */
.home_befoaf .ttl {
  margin-bottom: 56px;
  font-size: 40px;
  letter-spacing: .1em;
}

.befoaf--inner {
  max-width: 1364px;
}

.befoaf_content {
  column-gap: 68px;
}

.befoaf_content--imgarea {
  width: 50.5%;
}

.befoaf_content--imgarea .imgarea {
	position: relative;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.befoaf_content--imgarea .imgs {
  width: 100%;
}

.befoaf_content--imgarea .img-txt {
  width: 100%;
  padding-block: 6px;
  font-size: 28px;
  color: #fff;
  background-color: #413836;
}

.befoaf_content--txtarea .txt {
  margin-bottom: 48px;
  font-size: clamp(18px ,1.05vw, 20px);
  line-height: 2.85;
}

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

  .home_befoaf .ttl {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.4;
  }

  .home_befoaf .ttl span {
    display: block;
  }

  .befoaf_content--imgarea {
    width: 100%;
    margin-bottom: 24px;
  }

  .befoaf_content--imgarea .imgarea {
    width: calc(50% - 10px);
  }

  .befoaf_content--imgarea .slick-track {
    width: 100% !important;
  }

  .befoaf_content--imgarea .img-txt {
    font-size: 18px;
  }

  .befoaf_content--txtarea .txt {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 2;
  }
}

/* home_reason
**************************************** */
.home_reason.section_pdg {
  padding-top: 120px;
  padding-bottom: 300px;
  background-color: rgba(65, 56, 54, .8);
}

.home_reason .iwashi {
  position: absolute;
  bottom: 0;
  right: 8%;
  width: 13vw;
}

.reason--inner {
  max-width: 1364px;
  column-gap: 5.7%;
}

.home_reason--ttlarea .en {
  margin-bottom: 40px;
  font-size: 60px;
  line-height: 1;
  color: #fff;
}

.home_reason--ttlarea .jp {
  font-size: 29px;
  color: #fff;
}

.home_reason--ttlarea .jp .txt-lg {
  font-size: 60px;
}

.home_reason--list {
  flex: 1;
  color: #fff;
}

.home_reason--item:not(:last-child) {
  margin-bottom: 32px;
}

.home_reason--item .num {
  margin-right: 36px;
  font-size: 50px;
}

.home_reason--item .txt {
  font-size: clamp(18px , 1.13vw, 22px);
  line-height: 1.6;
}

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

  .home_reason .iwashi {
    right: 2%;
    width: 10vw;
  }

}

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

  .home_reason.section_pdg {
    padding-top: 60px;
    padding-bottom: 200px;
  }

  .home_reason .iwashi {
    right: 5%;
    width: min(24vw, 100px);
  }

  .reason--inner {
    row-gap: 24px;
  }

  .home_reason--ttlarea .en {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .home_reason--ttlarea .jp {
    font-size: 22px;
  }

  .home_reason--ttlarea .jp .txt-lg {
    font-size: 40px;
  }

  .home_reason--item {
    align-items: start;
  }

  .home_reason--item:not(:last-child) {
    margin-bottom: 20px;
  }

  .home_reason--item .num {
    margin-bottom: 8px;
    margin-right: 20px;
    font-size: 32px;
  }

  .home_reason--item .txt {
    font-size: 15px;
  }

}

/* home_price
**************************************** */
.home_price {
  padding-bottom: 80px;
}

.price--inner {
  max-width: 1640px;
}

.price_box {
  position: relative;
  margin-top: -156px;
  padding: 66px 140px 132px;
  background-color: #fff;
}

.price_box .home_ttl {
  margin-bottom: 40px;
  font-size: 94px;
  line-height: 1.3;
}

.price_box--price {
  margin-bottom: 32px;
  padding: 40px;
  border: 5px solid #F5F5F5;
}

.price_box--price .price_info {
  column-gap: 54px;
  margin-bottom: 20px;
}

.price_box--price .ttl {
  font-size: 40px;
}

.price_box--price .price {
  translate: 0 20px;
  font-size: 40px;
  line-height: 1;
}

.price_box--price .price .num {
  display: inline-block;
  font-size: clamp(88px , 5.625vw, 108px);
  letter-spacing: .04em;
}

.price_box--price .detail {
  font-size: 15px;
}

.price_box--price .detail dl {
  display: flex;
  justify-content: space-between;
  background-color: rgba(65, 56, 54, .1);
  border-radius: 99px;
}

.price_box--price .detail dl:not(:last-child) {
  margin-bottom: 12px;
}

.price_box--price .detail dt {
  padding: 6px 12px;
  color: #fff;
  background-color: #413836;
  border-radius: 99px;
}

.price_box--price .detail dd {
  padding: 6px 12px;
  text-align: right;
}

.price_box--option {
  column-gap: 3.75vw;
  padding: 48px max(10.72vw, 160px) 54px 36px;
  background-color: rgba(201, 160, 99, .13);
}

.price_box--option .sample {
  position: absolute;
  top: 2.2vw;
  right: 3.75vw;
  padding-inline: 24px;
  font-size: clamp(15px ,.94vw, 18px);
  line-height: 1.66;
  color: #fff;
  background-color: #413836;
  border-radius: 99px;
}

.price_box--option .ttl {
  font-size: 53px;
}

.price_box--option .option_info {
  flex: 1;
}

.price_box--option .detail {
  margin-bottom: 36px;
  gap: 22px 16px;
}

.price_box--option .detail li {
  font-size: clamp(18px , 1.145vw, 22px);
}

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

  .home_price {
    padding-bottom: 56px;
  }

  .price_box {
    margin-top: -48px;
    padding: 24px;
  }

  .price_box .home_ttl {
    margin-bottom: 16px;
    font-size: 48px;
  }

  .price_box--price {
    margin-bottom: 24px;
    padding: 24px;
    border: 5px solid #F5F5F5;
  }

  .price_box--price .price_info {
    row-gap: 16px;
    margin-bottom: 24px;
  }

  .price_box--price .ttl {
    font-size: 28px;
  }

  .price_box--price .price {
    translate: 0 10px;
    font-size: 32px;
  }

  .price_box--price .price .num {
    font-size: 64px;
  }

  .price_box--price .detail {
    font-size: 13px;
  }

  .price_box--option {
    align-items: start;
    row-gap: 24px;
    padding: 24px;
  }

  .price_box--option .sample {
    top: 16px;
    right: 16px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .price_box--option .ttl {
    font-size: 36px;
  }

  .price_box--option .detail {
    gap: 10px;
    margin-bottom: 24px;
  }

  .price_box--option .detail li {
    font-size: 15px;
    line-height: 1.4;
  }

}

/* home_staff
**************************************** */
.home_staff {
  margin-bottom: 120px;
}

.staff--inner {
  max-width: 1364px;
}

.home_staff .home_ttl {
  margin-bottom: 28px;
  font-size: 94px;
}

.staff_box {
  column-gap: 5.3%;
  padding: 28px 138px 28px 40px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .2);
}

.staff_box--img {
  width: 30%;
}

.staff_box--txtare {
  flex: 1;
}

.staff_box--txtare .info {
  margin-bottom: 16px;
  font-size: 22px;
}

.staff_box--txtare .name {
  margin-bottom: 16px;
  font-size: 43px;
  letter-spacing: .05em;
  color: #8C5D53;
}

.staff_box--txtare .txt {
  font-size: 19px;
  line-height: 1.84;
}

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

  .home_staff {
    margin-bottom: 60px;
  }

  .home_staff .home_ttl {
    margin-bottom: 14px;
    font-size: 64px;
  }

  .staff_box {
    row-gap: 24px;
    padding: 24px;
  }

  .staff_box--img {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .staff_box--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .staff_box--txtare .info {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .staff_box--txtare .name {
    margin-bottom: 16px;
    font-size: 36px;
  }

  .staff_box--txtare .txt {
    font-size: 15px;
  }

}

/* home_voice
**************************************** */
.home_voice.section_pdg {
  padding-block: 100px 192px;
  background-image: url(../image/top/voice_bg.png);
  background-color: rgba(232, 232, 232, .2);
  background-size: cover;
  overflow: hidden;
}

.voice--inner {
  max-width: 1364px;
}

.voice--ttlarea {
  margin-bottom: 80px;
}

.voice--ttlarea .home--ttl {
  margin-bottom: 40px;
  font-size: 96px;
}

.voice--ttlarea .txt {
  font-size: 22px;
}

.voice--list .slick-list {
  overflow: inherit;
}

.voice--item {
  padding-inline: 20px;
}

.voice--item .item--wrap {
  padding: 28px;
  background-color: #fff;
}

.voice--item .img {
  margin-bottom: 32px;
}

.voice--item .ttl {
  margin-bottom: 22px;
  font-size: 22px;
  color: #8C5D53;
}

.voice--item .txt {
  font-size: 18px;
  line-height: 1.66;
}

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

  .home_voice.section_pdg {
    padding-block: 64px;
  }

  .voice--ttlarea {
    margin-bottom: 40px;
  }

  .voice--ttlarea .home--ttl {
    margin-bottom: 20px;
    font-size: 64px;
  }

  .voice--ttlarea .txt {
    font-size: 18px;
    line-height: 1.4;
  }

  .voice--item {
    padding-inline: 10px;
  }

  .voice--item .item--wrap {
    padding: 24px;
  }

  .voice--item .img {
    margin-bottom: 20px;
  }

  .voice--item .ttl {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .voice--item .txt {
    font-size: 15px;
  }

}

/* home_fqa
**************************************** */
.home_faq.section_pdg {
  padding-bottom: 75px;
  background-color: #E8E8E8;
}

.faq--inner {
  column-gap: 4.16%;
  max-width: 1364px;
}

.home_faq .home--ttl {
  font-size: 94px;
}

.faq_content {
  flex: 1;
  border-top: 1px solid #413836;
}

.faq--item {
  padding: 32px 16px;
  border-bottom: 1px solid #413836;
}

.faq--item .ttl {
  position: relative;
  padding-right: 120px;
  font-size: 22px;
  line-height: 1.4;
  color: #8C5D53;
}

.faq--item .ttl::before {
  content: '';
  position: absolute;
  inset: -32px -16px;
  cursor: pointer;
}

.faq--item .faq_btn {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 60px;
  height: 60px;
  background-color: #D3D1D0;
  border-radius: 50%;
  transition: all .4 ease-out;
  cursor: pointer;
}

.faq--item .faq_btn::before,
.faq--item .faq_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 26px;
  height: 2px;
  background-color: #707070;
  transition: all .4 ease-out;
}

.faq--item .faq_btn::after {
  rotate: 90deg;
}

.faq--item .active .faq_btn::after {
  rotate: 360deg;
}

.faq--item .txtarea {
  padding-right: 120px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.66;
}

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

  .home_faq.section_pdg {
    padding-bottom: 64px;
  }

  .faq--inner {
    row-gap: 24px;
  }

  .home_faq .home--ttl {
    font-size: 64px;
  }

  .faq--item {
    padding: 20px 12px;
  }

  .faq--item .ttl {
    padding-right: 50px;
    font-size: 18px;
  }

  .faq--item .ttl::before {
    inset: -20px -18px;
  }

  .faq--item .faq_btn {
    width: 40px;
    height: 40px;
  }

  .faq--item .faq_btn::before,
  .faq--item .faq_btn::after {
    width: 16px
  }

  .faq--item .txtarea {
    padding-right: 50px;
    margin-top: 20px;
    font-size: 15px;
  }
}

/* home_contact
**************************************** */
.home_contact {
  background-color: #fff;
}

.contact--inner {
  max-width: 1364px;
}

.home_contact .home--ttl {
  margin-bottom: 36px;
  font-size: 94px;
}

.home_contact .txt {
  margin-bottom: 48px;
}

.btn-line a {
  position: relative;
  width: 400px;
  height: 80px;
  padding-right: 48px;
  margin: 0 auto;
  background-color: #00B900;
  border: 5px solid #06c755;
  border-radius: 99px;
}

.btn-line a:hover {
  background-color: #06c755;
}

.btn-line a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 29px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.btn-line a img {
  width: 80px;
}

.btn-line a span {
  display: block;
  font-size: 24px;
  letter-spacing: .05em;
  color: #fff;
}

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

  .home_contact .home--ttl {
    margin-bottom: 20px;
    font-size: 64px;
  }

  .home_contact .txt {
    margin-bottom: 24px;
    line-height: 1.4;
  }

  .btn-line a {
    max-width: 400px;
    width: 100%;
    height: 80px;
    padding-right: 32px;
  }

  .btn-line a::after {
    right: 20px;
    width: 12px;
    height: 12px;
  }

  .btn-line a img {
    width: 64px;
  }

  .btn-line a span {
    font-size: clamp(18px, 5.4vw, 24px);
  }

}

/* footer
**************************************** */
footer {
  padding-block: 42px;
  background-color: #1F1F1F;
}

.footer--inner {
  max-width: 1364px;
}

.fixed_btn {
  position: fixed;
  bottom: 56px;
  right: 42px;
}

.fixed_btn a {
  width: 170px;
  height: 170px;
  background-color: #792955;
  border-radius: 50%;
  border: 20px solid #93185A;
}

.fixed_btn a:hover {
  opacity: .7;
}

.fixed_btn p {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.4;
  color: #C9A063;
}

.fixed_btn p .txt-lg {
  font-size: 1.22em;
}

.fixed_btn i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #93185A;
  border-radius: 50%;
}

.fixed_btn i::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-top: 2px solid #C9A063;
  border-right: 2px solid #C9A063;
  transform: rotate(45deg);
}

.fnav {
  column-gap: 54px;
}

.fnav li a {
  display: block;
  font-size: 20px;
  color: #fff;
}

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

  footer {
    padding-block: 24px 100px;
  }

  .footer--inner {
    row-gap: 16px;
  }

  .footer--logo img {
    height: 64px;
  }

  .fixed_btn {
    bottom: 20px;
    right: 20px;
  }

  .fixed_btn a {
    width: 90px;
    height: 90px;
    border: 8px solid #93185A;
  }

  .fixed_btn p {
    font-size: 10px;
  }

  .fixed_btn p .txt-lg {
    font-size: 1.22em;
  }

  .fixed_btn i {
    width: 18px;
    height: 18px;
  }

  .fixed_btn i::before {
    width: 7px;
    height: 7px;
    margin-right: 5px;
  }

  .fnav {
    justify-content: center;
    gap: 12px 20px;
  }

  .fnav li a {
    display: block;
    font-size: 15px;
    color: #fff;
  }
}

/* reservation
**************************************** */
body.reservation {
  padding-top: 220px;
  background-image: inherit;
}

.reservation--inner {
  position: relative;
  max-width: 1640px;
  translate: 3.125vw 0;
}

.reservation .page--ttl {
  margin-bottom: 48px;
  font-size: 94px;
}

.reservation--content {
  margin-bottom: 108px;
  gap: 24px 7.44%;
}

.reservation--imgarea {
  width: 26.2%;
}

.reservation--formarea {
  flex: 1;
}

.reservation--formarea .detail {
  margin-bottom: 32px;
  font-size: 15px;
}

.reservation--formarea .detail dl {
  display: flex;
  justify-content: space-between;
  background-color: rgba(65, 56, 54, .1);
  border-radius: 99px;
}

.reservation--formarea .detail dl:not(:last-child) {
  margin-right: 20px;
}

.reservation--formarea .detail dt {
  padding: 6px 12px;
  color: #fff;
  background-color: #413836;
  border-radius: 99px;
}

.reservation--formarea .detail dd {
  padding: 6px 12px;
  text-align: right;
}

.reservation--formarea .detail_blc {
  margin-bottom: 64px;
}

.reservation--formarea .ttl {
  margin-bottom: 8px;
  font-size: 19px;
}

.reservation--formarea .location {
  column-gap: 8px;
  margin-bottom: 16px;
}

.reservation--formarea .location span {
  display: block;
  width: 160px;
  padding: 8px 24px;
  font-size: 22px;
  text-align: center;
  border: 1px solid;
  cursor: pointer;
}

.reservation--formarea input[type=radio] {
    display: none;
}

.reservation--formarea .detail_list {
    gap: 8px;
}

.reservation--formarea .detail_list label {
    display: block;
    width: calc(50% - 8px);
    padding: 6px;
    font-size: 15px;
    text-align: center;
    border: 1px solid;
    cursor: pointer;
    transition: all .4s ease-out;
}

.reservation--formarea .detail_list input[type="radio"]:checked + label {
  color: #fff;
  background-color: #413836;
}

.reservation--formarea .option_blc {
  margin-bottom: 64px;
}

.reservation--formarea .blc--ttl {
  margin-bottom: 24px;
  font-size: 19px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 1px solid #413836;
}

.reservation--formarea .form_list {
  gap: 24px 3.64vw;
  margin-bottom: 32px;
}

.reservation--formarea .form_item:nth-child(odd) {
  width: 260px;
  max-width: calc((100% - 3.64vw) / 2);
}

.reservation--formarea .form_item:nth-child(even) {
  width: calc(100% - 260px - 3.64vw);
}

.reservation--formarea .form_item label {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: .05em;
}

.reservation--formarea .form_item select {
  position: relative;
  width: 260px;
  height: 36px;
  padding-left: 16px;
  font-size: 16px;
  color: #B7AAA7;
  border-radius: 0;
  border-color: #B7AAA7;
}

.reservation--formarea .price {
  margin-bottom: 16px;
  font-size: 72px;
}

.reservation--formarea .price .num {
  font-size: 1.48em;
}

.reservation--formarea .price .tax {
  font-size: .26em;
}

.reservation--formarea .btn {
  margin-bottom: 56px;
}

.reservation--formarea .note {
  font-size: 19px;
  line-height: 2;
  letter-spacing: .05em;
}

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

  body.reservation {
    padding-top: 120px;
  }

  .reservation--inner {
    translate: 0;
  }

  .reservation .page--ttl {
    margin-bottom: 24px;
    font-size: 64px;
  }

  .reservation--content {
    margin-bottom: 64px;
  }

  .reservation--imgarea {
    width: 100%;
  }

  .reservation--formarea .detail {
    margin-bottom: 32px;
    font-size: 13px;
  }

  .reservation--formarea .detail dl:not(:last-child) {
    margin-right: 10px;
  }

  .reservation--formarea .detail dt {
    padding: 4px 8px;
  }

  .reservation--formarea .detail dd {
    padding: 4px 8px;
  }

  .reservation--formarea .detail_blc {
    margin-bottom: 48px;
  }

  .reservation--formarea .ttl {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .reservation--formarea .location {
    column-gap: 8px;
    margin-bottom: 16px;
  }

  .reservation--formarea .location span {
    width: calc(50% - 4px);
    font-size: 18px;
  }

  .reservation--formarea .detail_list label {
    width: 100%;
    font-size: 13px;
  }

  .reservation--formarea .detail_list input[type="radio"]:checked + label {
    color: #fff;
    background-color: #413836;
  }

  .reservation--formarea .option_blc {
    margin-bottom: 56px;
  }

  .reservation--formarea .blc--ttl {
    font-size: 16px;
  }

  .reservation--formarea .form_list {
    row-gap: 16px;
    margin-bottom: 32px;
  }

  .reservation--formarea .form_item:nth-child(odd) {
    width: 100%;
    max-width: inherit;
  }

  .reservation--formarea .form_item:nth-child(even) {
    width: 100%;
  }

  .reservation--formarea .form_item label {
    font-size: 16px;
  }

  .reservation--formarea .form_item select {
    width: 100%;
    height: 32px;
    font-size: 14px;
  }

  .reservation--formarea .price {
    margin-bottom: 16px;
    font-size: 48px;
  }

  .reservation--formarea .btn {
    margin-bottom: 32px;
  }

  .reservation--formarea .note {
    font-size: 16px;
  }
}

/* option
**************************************** */
body.option {
  padding-top: 220px;
}

.option--inner {
  max-width: 1364px;
}

.option .page--ttl {
  margin-bottom: 108px;
  font-size: 94px;
}

.option .option_list {
  margin-bottom: 132px;
}

.option .option_item:not(:last-child) {
  margin-bottom: 50px;
}

.option_item--img {
  width: 19%;
  height: 100%;
  overflow: hidden;
}

.option_item--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.option_item--txtarea {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.option_item--txtarea .ttl {
  padding: 18px 56px;
  font-size: 25px;
  line-height: 1.4;
  color: #fff;
  background-color: #B7AAA7;
}

.option_item--txtarea .info {
  flex: 1;
  padding: 20px 46px 32px 56px;
  background-color: #fff;
}

.option_item--txtarea .pricearea {
  width: 358px;
}

.option_item--txtarea .sheet {
  width: 70px;
  height: 70px;
  font-size: 21px;
  color: #fff;
  background-color: #C9A063;
  border-radius: 50%;
}

.option_item--txtarea .price-detail {
  flex: 1;
}

.option_item--txtarea .sheet + .price-detail .price {
  padding-left: 20px;
}

.option_item--txtarea .price {
  translate: 0 12px;
  font-size: 42px;
  letter-spacing: .05em;
}

.option_item--txtarea .num {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.52em;
}

.option_item--txtarea .txt-add {
  margin-top: 16px;
  font-size: 22px;
}

.option_item--txtarea .txt {
  flex: 1;
  font-size: 18px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  body.option {
    padding-top: 120px;
  }

  .option .page--ttl {
    margin-bottom: 56px;
    font-size: 64px;
  }

  .option .option_list {
    margin-bottom: 64px;
  }

  .option .option_item:not(:last-child) {
    margin-bottom: 24px;
  }

  .option_item--img {
    width: 100%;
  }

  .option_item--txtarea .ttl {
    padding: 8px 112px 8px 16px;
    font-size: 20px
  }

  .option_item--txtarea .info {
    padding: 24px;
  }

  .option_item--txtarea .pricearea {
    width: 100%;
  }

  .option_item--txtarea .sheet {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .option_item--txtarea .sheet + .price-detail .price {
    padding-left: 10px;
  }

  .option_item--txtarea .price {
    translate: 0 8px;
    font-size: 32px;
  }

  .option_item--txtarea .num {
    margin-left: 4px;
  }

  .option_item--txtarea .txt-add {
    margin-top: 6px;
    font-size: 18px;
  }

  .option_item--txtarea .txt {
    margin-top: 20px;
    font-size: 15px;
  }
}



/* 追記 */

button.buy {
    height: 60px;
    margin-bottom: 16px;
    background: #93185A !important;
    border-radius: 50px !important;
    font-family: 'Zen Antique Soft' !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 22px !important;
    text-shadow: none !important;
}
.reservation_date_disabled {
    color: #FF0000;
	border: 1px solid #000000 !important;
}
.area_selected{
	color: #fff;
    background-color: #413836;
}

#annotation{
    margin-top: 32px;
}


/* h4{
	width: 100%;
	text-align: left;
	border-bottom: solid 1px #000;
	margin-bottom: 16px;
	padding-bottom: 8px;
}
input[type=checkbox] {
    display: none;
}
input[type=radio] {
    display: none;
}
input[type=radio]:checked + label {
    color: red;
}
input[type=number] {
    width: 80px;
    text-align: right;
}
button {
    position: relative;
    margin-top: 32px;
    width: 400px;
    height: 80px;
    max-width: 240px;
    background: #A1762D;
    border: 5px solid #885E18;
    border-radius: 50px;
    overflow: visible;
    white-space: nowrap;
    text-align: center;
    font-family: 'Zen Antique Soft';
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    color: #FFFFFF;
    letter-spacing: 1px;
    cursor: pointer;
}
button.buy {
    background: #A1762D !important;
    border: 5px solid #885E18 !important;
    border-radius: 50px !important;
    font-family: 'Zen Antique Soft' !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 22px !important;
    text-shadow: none !important;
}
button::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 32px;
    top: calc(50% - 2px);
    border-top: solid 4px;
    border-right: solid 4px;
    transform: rotate(45deg) translateY(-50%);
}
/* Reservation */
/* h1.reservation {
    position: relative;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 16px;
	font-size: 24px;
}
h4.option {
    margin-top: 16px;
}
#date_list{
    display: flex;
    flex-direction: column;
}
#date_list > label{
    border: 1px solid #b6b6b6;
    border-radius: 3px;
    margin: 4px;
    height: 38px;
    line-height: 36px;
    width: 360px;
    text-align: center;
}
#option_list > div.item_list{
    display: flex;
    flex-direction: column;
    margin: 8px;
}
#option_list > div.item_list > select{
    margin-top: 4px;
    width: 240px;
}
#reservation_price, #option_price{
    margin-top: 16px;
}
#reservation_price_1, #option_price_1{
    font-size: 36px;
    font-weight: bold;
}
#reservation_price_2, #option_price_2{
    font-size: 48px;
    font-weight: bold;
}
#reservation_price_3, #option_price_3{
    font-size: 16px;
}  */

/* @media (max-width: 1059px) {
	body {
	  font-size: 12px;
	  font-weight: 200;
	}
    header,.hero--catch {
        display: none;
    }
    .section_pdg {
    	padding-block: 40px;
	}
	.befoaf_content,.price_info,.price_box--option,.staff_box,.faq--inner {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.befoaf_content--imgarea .img-txt {
		font-size: 16px;
	}
	.reason--inner{
		flex-direction: column;
		align-items: center;
	}
	.befoaf_content--txtarea .txt {
		margin-bottom: 0px;
		font-size: 16px;
	}
	.price_box {
		padding: 66px 32px;
	}
	.price_box--price .price .num {
		font-size: 86px;
	}
	.price_box--option {
		padding: 24px 36px;
	}
	.price_box--option .ttl{
		margin-bottom: 16px;
	}
	.price_box--option .detail li {
		font-size: 16px;
	}
	.fixed_btn{
		display: none;
	}
	.staff_box {
		padding: 20px 24px;
	}
	.staff_box--img {
		width: 60%;
	}
	.staff_box--txtare {
		margin-top: 32px;
	}
}
@media screen and (max-width: 767px) {
  .befoaf_content--imgarea {
    width: 90%;
  }
  .befoaf_content--imgarea .slick-list {
    height: auto !important;
  }
  .befoaf_content--imgarea .slick-track {
    width: 100% !important;
  }
  .befoaf_content--imgarea .slick-slide {
    width: 100% !important;
  }
} */

h3{
  position:relative;
}
.h3_sub{
    position: absolute;
    right: 16px;
    overflow: visible;
    white-space: nowrap;
    background-color: #93185A;
    border-radius: 50px;
    padding: 4px 12px;
    top: 50%;
    transform: translatey(-50%);
    font-size: 80%;
}
/* モーダル */
.modal {
    display: none;
    height: 100vh;
    width: 100%;
    max-width: 600px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}
.modal_bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    width: 100%;
    position: fixed;
}
.modal_content {
    padding: 32px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    background-color: #FFFFFF;
    background-image: url(../image/top/bg.png);
    background-size: auto;
}
.modal_content > .befoaf_content--imgarea {
    width: 100%;
}

#model_sample{
    width: 100%;
}
#model_sample_text{
    max-width: 325px;
    background-color: #FFF;
    padding: 8px;
    border: solid 1px
}