@charset "UTF-8";
.fadeIn {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: translateX(2.5%) scale(1);
            transform: translateX(2.5%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-2.5%) scale(1.15);
            transform: translateX(-2.5%) scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: translateX(2.5%) scale(1);
            transform: translateX(2.5%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-2.5%) scale(1.15);
            transform: translateX(-2.5%) scale(1.15);
  }
}
/*------------------------------------------------------------
	Default
------------------------------------------------------------*/
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, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  margin-top: 0 !important;
  font-size: 62.5%;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: "YakuHanJP", m-plus-2p, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: bold;
  color: #231815;
}

b, strong, .bold {
  font-family: "YakuHanJP", m-plus-2p, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

::-webkit-input-placeholder {
  color: #C6C6C6;
}

::-moz-placeholder {
  color: #C6C6C6;
}

:-ms-input-placeholder {
  color: #C6C6C6;
}

::-ms-input-placeholder {
  color: #C6C6C6;
}

::placeholder {
  color: #C6C6C6;
}

/* IE */
:-ms-input-placeholder {
  color: #C6C6C6;
}

/* Edge */
::-ms-input-placeholder {
  color: #C6C6C6;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #231815;
}
a:hover {
  opacity: 0.85;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.under_link {
  text-decoration: underline;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 640px) {
  .sp-only {
    display: block;
  }
}
.pc-only {
  display: block;
}

.pc-in-only {
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .pc-only,
.pc-in-only {
    display: none;
  }
}
/*------------------------------------------------------------
  Layout
------------------------------------------------------------*/
.wrapper {
  margin: 0 auto;
  width: 100%;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 1400px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

.header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header {
    position: absolute;
    background-color: transparent;
    right: 0;
  }
}
.header.top-header {
  top: 0;
  left: 0;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  opacity: 0;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.6s;
  transition: transform 0.6s, opacity 0.6s, -webkit-transform 0.6s;
}
.header.top-header.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header.top-sp-header .header__left {
    opacity: 0;
    z-index: -10;
  }
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 70px 17px 80px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .header_inner {
    padding: 17px 20px;
  }
}
@media screen and (max-width: 768px) {
  .header_inner {
    padding: 20px;
  }
}
.header__left {
  width: 142px;
}
.header__left_ttl a img {
  width: 100%;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__right {
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: #F2F0E7;
    overflow-y: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    overflow-y: scroll;
  }
}
.header__right.fade {
  opacity: 1;
  visibility: visible;
  display: block;
}
@media screen and (max-width: 768px) {
  .header__right_navigation {
    width: 90%;
    margin: auto;
    margin-top: 60px;
    background-color: #fff;
    border-radius: 40px 50px 0 0;
    padding: 20px 0 30px;
  }
}
.header__right_navigation_logo {
  text-align: center;
  margin-bottom: 4px;
}
.header__right_navigation_logo img {
  width: 150px;
}
.header__right_navigation > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .header__right_navigation > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 40px;
  }
}
.header__right_navigation > ul > li {
  position: relative;
  padding: 0 15px;
}
@media screen and (max-width: 960px) {
  .header__right_navigation > ul > li {
    padding: 0 6px;
  }
}
@media screen and (max-width: 768px) {
  .header__right_navigation > ul > li {
    padding: 0;
    border-bottom: 1px solid #EFEFEF;
  }
}
.header__right_navigation > ul > li > a {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 800px) {
  .header__right_navigation > ul > li > a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__right_navigation > ul > li > a {
    position: relative;
    color: #231815;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 16px 5px;
  }
}
.header__right_navigation > ul > li > a span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #C6C6C6;
  margin-top: 4px;
}
@media screen and (max-width: 800px) {
  .header__right_navigation > ul > li > a span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__right_navigation > ul > li > a span {
    display: inline-block;
    margin-left: 10px;
    font-weight: 400;
  }
}
.header__right_navigation > ul > li > a:hover {
  color: #FAC542;
}
.header__right_navigation > ul > li > a:hover span {
  color: #FAC542;
}
@media screen and (max-width: 768px) {
  .header__right_navigation > ul > li > a::after {
    position: absolute;
    content: "";
    background-image: url(../img/common/icon_link.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 16px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header__right_navigation > ul > li > a.work_link::after {
    background-image: url(../img/common/icon_otherlink.svg);
    width: 18px;
    height: 18px;
  }
}
.header__right_navigation_booking {
  margin-top: 30px;
  text-align: center;
}
.header__right_navigation_booking .btn_link {
  display: block;
  width: 200px;
  margin: auto;
  padding: 19px 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background-color: #F4CE72;
  border-radius: 70px;
}
.header__right_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 65px;
}
@media screen and (max-width: 1160px) {
  .header__right_sns {
    margin-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .header__right_sns {
    width: 90%;
    margin: auto;
    margin-bottom: 60px;
    padding-bottom: 50px;
    background-color: #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__right_sns_inner:first-child {
  margin-right: 20px;
}
.header__right_sns_inner a {
  display: block;
}
.header__btn_menu {
  display: none;
  cursor: pointer;
  background-color: #F4CE72;
  padding: 11.5px 12.24px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .header__btn_menu {
    position: fixed;
    right: 20px;
    display: block;
    z-index: 99999999;
  }
}
.header__btn_menu span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.header__btn_menu.is-open .bar1 {
  -webkit-transform: rotate(-28deg) translate(-4px, 6px);
          transform: rotate(-28deg) translate(-4px, 6px);
}
.header__btn_menu.is-open .bar2 {
  -webkit-transform: rotate(28deg) translate(-4px, -6px);
          transform: rotate(28deg) translate(-4px, -6px);
}
.header__btn_menu div {
  width: 26px;
  height: 3px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: auto;
}
.header__btn_menu .bar2 {
  margin-top: 11px;
  margin-bottom: 4px;
}

.footer {
  background-color: #F2F0E7;
  border-radius: 80px 80px 0 0;
}
@media screen and (max-width: 768px) {
  .footer {
    border-radius: 40px 40px 0 0;
  }
}
.footer__inner {
  padding: 30px 80px 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .footer__inner {
    padding: 30px 40px 62px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 30px 40px;
    display: block;
  }
}
.footer__inner_left {
  width: 22%;
  margin-right: 190px;
}
@media screen and (max-width: 1200px) {
  .footer__inner_left {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner_left {
    width: 180px;
    margin: auto;
    margin-bottom: 60px;
  }
}
.footer__inner_left_img {
  text-align: center;
  margin-bottom: 10px;
}
.footer__inner_left_img img {
  width: 100%;
}
.footer__inner_left_top {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer__inner_left_top {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.footer__inner_left_btm {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__inner_left_btm {
    font-size: 1.2rem;
    font-weight: 400;
  }
}
.footer__inner_mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
  margin-right: 80px;
}
@media screen and (max-width: 1200px) {
  .footer__inner_mid {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner_mid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: auto;
    margin-bottom: 40px;
  }
}
.footer__inner_mid ul {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .footer__inner_mid ul {
    width: 46%;
  }
}
.footer__inner_mid ul:first-child {
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  .footer__inner_mid ul:first-child {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner_mid ul:first-child {
    margin-right: 10px;
  }
}
.footer__inner_mid ul li:not(:last-child) {
  margin-bottom: 30px;
}
.footer__inner_mid ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.footer__inner_mid ul li a.work_link {
  position: relative;
  display: inline-block;
}
.footer__inner_mid ul li a.work_link::after {
  position: absolute;
  content: "";
  background-image: url(../img/common/icon_otherlink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  top: 50%;
  right: -36px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}
.footer__inner_right {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .footer__inner_right {
    margin-top: auto;
  }
}
.footer__inner_right_btn {
  margin-bottom: 20px;
}
.footer__inner_right_btn .btn_link {
  display: block;
  width: 200px;
  margin: auto;
  padding: 19px 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  background-color: #F4CE72;
  border-radius: 70px;
}
.footer__inner_right_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 56px;
}
.footer__inner_right_sns_list:first-child {
  margin-right: 20px;
}
.footer__inner_right_copy {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.footer.sub_footer {
  border-radius: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-right: 20px;
    margin-top: 62px;
    margin-bottom: 20px;
  }
}
.breadcrumb li {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.1666666667;
}
.breadcrumb li:not(:last-child) {
  position: relative;
  margin-right: 10px;
  padding-right: 18px;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  background-image: url(../img/common/icon_arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  width: 8px;
  height: 12px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*------------------------------------------------------------
  common
------------------------------------------------------------*/
.ttl {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 640px) {
  .ttl {
    font-size: 2.8rem;
  }
}
.ttl span {
  font-size: 3.4rem;
}
@media screen and (max-width: 640px) {
  .ttl span {
    font-size: 2.4rem;
  }
}
.ttl span.og {
  color: #FAC542;
}

.base_btn {
  width: 200px;
  background-color: #F4CE72;
  border-radius: 70px;
  text-align: center;
  margin: auto;
}
.base_btn:hover {
  opacity: 0.85;
}
.base_btn a {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 20px 0;
}

.btn_page_link a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.btn_page_link a span {
  display: inline-block;
  margin-left: 20px;
  background-color: #F4CE72;
  border-radius: 50%;
  padding: 15px;
}

.sub_page {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .sub_page {
    padding-top: 80px;
  }
}
@media screen and (max-width: 640px) {
  .sub_page .sec_ttl.left .sec_ttl_text {
    font-size: 2.6rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .sub_page .sec_ttl.left .sec_ttl_text::before {
    width: 15px;
    top: 50%;
  }
}
.sub_page_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1340px) {
  .sub_page_top {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
@media screen and (max-width: 640px) {
  .sub_page_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sub_page_top_text {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2.0714285714;
  text-align: center;
  margin-left: 200px;
  margin-right: 100px;
}
@media screen and (max-width: 1340px) {
  .sub_page_top_text {
    margin-left: auto;
  }
}
@media screen and (max-width: 900px) {
  .sub_page_top_text {
    font-size: 2.2rem;
    margin-right: 40px;
  }
}
@media screen and (max-width: 640px) {
  .sub_page_top_text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 2.6rem;
    line-height: 1.5769230769;
    margin: auto;
  }
}
.sub_page_top_text span {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  color: #F4CE72;
}
@media screen and (max-width: 900px) {
  .sub_page_top_text span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .sub_page_top_text span {
    font-size: 1.6rem;
  }
}
.sub_page_top_img {
  width: 800px;
  text-align: right;
}
@media screen and (max-width: 1340px) {
  .sub_page_top_img {
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  .sub_page_top_img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 320px;
    padding-left: 40px;
    margin-bottom: 60px;
  }
}
.sub_page_top_img img {
  width: 100%;
  border-radius: 60px 0 0 60px;
}
@media screen and (max-width: 640px) {
  .sub_page_top_img img {
    height: 100%;
    border-radius: 30px 0 0 30px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.sub_container {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .sub_container {
    width: 100%;
    padding: 0 20px;
  }
}
.sub_container_ttl {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7058823529;
}
@media screen and (max-width: 640px) {
  .sub_container_ttl {
    font-size: 2.6rem;
    line-height: 1.4615384615;
  }
}
.sub_container_ttl_en {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #F4CE72;
}
@media screen and (max-width: 640px) {
  .sub_container_ttl_en {
    font-size: 1.4rem;
  }
}
.sub_container_box {
  background-color: #fff;
  border-radius: 20px;
}

.sec__block1 {
  margin-bottom: 90px;
}
@media screen and (max-width: 640px) {
  .sec__block1 {
    margin-bottom: 40px;
  }
}
.sec__block1_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
}
@media screen and (max-width: 640px) {
  .sec__block1_inner {
    display: block;
    padding: 0 20px;
  }
}
.sec__block1_inner_img {
  width: 60.5%;
  margin-right: 80px;
}
@media screen and (max-width: 640px) {
  .sec__block1_inner_img {
    width: 100%;
    margin-right: auto;
    margin-bottom: 40px;
  }
}
.sec__block1_inner_img img {
  width: 100%;
}
.sec__block1_inner_text {
  width: 55%;
}
@media screen and (max-width: 640px) {
  .sec__block1_inner_text {
    width: 100%;
  }
}
.sec__block1_inner_text h3 {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .sec__block1_inner_text h3 {
    font-size: 3rem;
    line-height: 1.6666666667;
    margin-bottom: 30px;
  }
}
.sec__block1_inner_text h3 .sm {
  font-size: 3.4rem;
}
@media screen and (max-width: 640px) {
  .sec__block1_inner_text h3 .sm {
    font-size: 2.4rem;
  }
}
.sec__block1_inner_text p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.8125;
}
@media screen and (max-width: 640px) {
  .sec__block1_inner_text p {
    font-size: 1.4rem;
    line-height: 3;
  }
}

.sec__block2 {
  margin-bottom: 140px;
}
@media screen and (max-width: 640px) {
  .sec__block2 {
    margin-bottom: 120px;
  }
}
.sec__block2_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 60px;
  padding-right: 40px;
}
@media screen and (max-width: 640px) {
  .sec__block2_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
}
.sec__block2_inner_text {
  width: 55%;
  margin-right: 100px;
}
@media screen and (max-width: 640px) {
  .sec__block2_inner_text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-right: auto;
  }
}
.sec__block2_inner_text p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.8125;
}
@media screen and (max-width: 640px) {
  .sec__block2_inner_text p {
    font-size: 1.4rem;
    line-height: 3;
  }
}
.sec__block2_inner_img {
  width: 55%;
}
@media screen and (max-width: 640px) {
  .sec__block2_inner_img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-bottom: 40px;
    padding-left: 80px;
  }
}
.sec__block2_inner_img img {
  width: 100%;
}

.sec__block3_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .sec__block3_inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 640px) {
  .sec__block3_inner {
    display: block;
    padding: 0 20px;
  }
}
.sec__block3_inner_img {
  width: 60.5%;
  margin-right: 60px;
}
@media screen and (max-width: 640px) {
  .sec__block3_inner_img {
    width: 100%;
    margin-right: auto;
    margin-bottom: 40px;
  }
}
.sec__block3_inner_img img {
  width: 100%;
}
.sec__block3_inner_text {
  width: 55%;
}
@media screen and (max-width: 640px) {
  .sec__block3_inner_text {
    width: 100%;
  }
}
.sec__block3_inner_text h3 {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .sec__block3_inner_text h3 {
    font-size: 3rem;
    line-height: 1.6666666667;
    margin-bottom: 30px;
  }
}
.sec__block3_inner_text h3 .sm {
  font-size: 3.4rem;
}
@media screen and (max-width: 640px) {
  .sec__block3_inner_text h3 .sm {
    font-size: 2.4rem;
  }
}
.sec__block3_inner_text p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .sec__block3_inner_text p {
    font-size: 1.4rem;
    line-height: 2.5714285714;
    margin-bottom: 20px;
  }
}

.blog_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 640px) {
  .blog_list {
    display: block;
    padding: 0 10px;
  }
}
.blog_list_box {
  position: relative;
  width: 31.6%;
}
@media screen and (max-width: 640px) {
  .blog_list_box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.blog_list_box:not(:first-child) {
  margin-left: 30px;
}
@media screen and (max-width: 640px) {
  .blog_list_box:not(:first-child) {
    margin-left: auto;
  }
}
.blog_list_box:hover {
  opacity: 0.85;
}
.blog_list_box_img {
  margin-bottom: 15px;
  position: relative;
  height: 280px;
}
@media screen and (max-width: 1000px) {
  .blog_list_box_img {
    height: 60%;
  }
}
@media screen and (max-width: 640px) {
  .blog_list_box_img {
    height: 230px;
  }
}
.blog_list_box_img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
          box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  border-radius: 20px 20px 0 0;
}
.blog_list_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.blog_list_box_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.blog_list_box_top_category p .category {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 6px 13px;
  background-color: #F4CE72;
  border-radius: 5px;
  position: relative;
  z-index: 7;
}
.blog_list_box_top_data {
  font-size: 1.3rem;
  font-weight: 700;
  color: #C6C6C6;
}
.blog_list_box_top_data img {
  vertical-align: sub;
}
.blog_list_box_text {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5555555556;
}
@media screen and (max-width: 640px) {
  .blog_list_box_text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.blog_list_box .link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.blog_category {
  width: 1040px;
  margin: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  .blog_category {
    width: 100%;
  }
}
.blog_category_ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.blog_category_box {
  background-color: #F4CE72;
  border-radius: 20px;
  padding: 20px 20px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 640px) {
  .blog_category_box {
    display: block;
    padding: 20px 15px 0;
  }
}
.blog_category_box::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 18px 18px 0 18px;
  border-color: #F4CE72 transparent transparent transparent;
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.blog_category_box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .blog_category_box_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: auto;
  }
}
.blog_category_box_list:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .blog_category_box_list:not(:first-child) {
    margin-left: 0;
  }
}
.blog_category_box_list:not(:last-child) {
  border-right: 2px solid #fff;
}
@media screen and (max-width: 640px) {
  .blog_category_box_list:not(:last-child) {
    border-right: none;
  }
}
.blog_category_box_list li {
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .blog_category_box_list li {
    margin-right: 14px;
    margin-bottom: 20px;
  }
}
.blog_category_box_list li a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.blog_category_box_list li.pa {
  margin-right: 25px;
}
@media screen and (max-width: 640px) {
  .blog_category_box_list li.pa {
    margin-right: 15px;
  }
}
.blog_category_box_list li.pa a {
  font-size: 1.4rem;
  color: #fff;
}

.pagination {
  text-align: center;
}
.pagination_inner .wp-pagenavi {
  font-size: 2rem;
  font-weight: 500;
}
.pagination_inner .wp-pagenavi a {
  display: inline-block;
  margin: 0 15px;
}
.pagination_inner .wp-pagenavi .current {
  display: inline-block;
  color: #F4CE72;
  margin: 0 15px;
}
.pagination_inner .wp-pagenavi .previouspostslink {
  background: none;
  margin: auto;
}
.pagination_inner .wp-pagenavi .nextpostslink {
  background: none;
  margin: auto;
}

.info_box {
  padding: 40px 62px 10px;
}
@media screen and (max-width: 768px) {
  .info_box {
    padding: 40px 40px 10px;
  }
}
@media screen and (max-width: 640px) {
  .info_box {
    padding: 30px 20px 0;
  }
}
.info_box_inner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .info_box_inner_list {
    display: block;
  }
}
.info_box_inner_list:not(:last-child) {
  border-bottom: 1px solid #EFEFEF;
}
.info_box_inner_list_ttl {
  min-width: 214px;
}
@media screen and (max-width: 640px) {
  .info_box_inner_list_ttl {
    min-width: auto;
    margin-bottom: 20px;
  }
}
.info_box_inner_list_ttl h3 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7272727273;
}
@media screen and (max-width: 640px) {
  .info_box_inner_list_ttl h3 {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.info_box_inner_list_ttl h3 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4CE72;
}
.info_box_inner_list_text p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.75;
}
.info_box_inner_list_text_en {
  margin-top: 20px;
  color: #919191;
}

.mfp-bg {
  background: #fff;
}

@media screen and (max-width: 640px) {
  .mfp-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.mfp-figure:after {
  display: none;
}

img.mfp-img {
  padding: 0;
  max-height: 460px !important;
  border-radius: 20px;
}

.mfp-image-holder .mfp-close {
  width: 200px;
  border-radius: 70px;
  top: auto;
  bottom: -86px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #F4CE72;
  opacity: 1;
  color: #231815;
  font-size: 1.6rem;
  font-family: "YakuHanJP", m-plus-2p, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0;
  height: 56px;
}

.roomModal .mfp-inline-holder .mfp-content {
  max-width: 1200px;
  background-color: #F2F0E7;
  border-radius: 30px;
  margin: 50px 0;
}
@media screen and (max-width: 1200px) {
  .roomModal .mfp-inline-holder .mfp-content {
    width: 90%;
  }
}
@media screen and (max-width: 640px) {
  .roomModal .mfp-inline-holder .mfp-content {
    width: 100%;
  }
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner {
  width: 82%;
  max-width: 740px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner {
    width: 100%;
    padding: 0 60px;
  }
}
@media screen and (max-width: 640px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner {
    padding: 0 15px;
  }
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner h3 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner h3 {
    font-size: 2rem;
    letter-spacing: 0.03em;
  }
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner h3 span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4CE72;
  margin-left: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner h3 span {
    font-size: 1.2rem;
    margin-left: 10px;
  }
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 {
  overflow: unset;
  height: 460px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 {
    height: 270px;
  }
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
          box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  border-radius: 20px;
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-button-next {
  background-color: #F4CE72;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  right: -67px;
}
@media screen and (max-width: 900px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-button-next {
    width: 36px;
    height: 36px;
    right: -10%;
  }
}
@media screen and (max-width: 640px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-button-next {
    display: none;
  }
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-button-next::after {
  content: "";
  background-image: url(../img/room/icon_modal_next.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 7px;
  height: 12px;
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-button-prev {
  background-color: #F4CE72;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  left: -67px;
}
@media screen and (max-width: 900px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-button-prev {
    width: 36px;
    height: 36px;
    left: -10%;
  }
}
@media screen and (max-width: 640px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-button-prev {
    display: none;
  }
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper2 .swiper-button-prev::after {
  content: "";
  background-image: url(../img/room/icon_modal_prev.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 7px;
  height: 12px;
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper .swiper-wrapper .swiper-slide {
  width: 98px;
}
@media screen and (max-width: 640px) {
  .roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper .swiper-wrapper .swiper-slide {
    width: 55px;
  }
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
          box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .roomSwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .modal_close {
  text-align: center;
  margin-top: 30px;
}
.roomModal .mfp-inline-holder .mfp-content .roomModal_inner .modal_close a {
  display: inline-block;
  width: 200px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background-color: #F4CE72;
  border-radius: 70px;
  padding: 19px 0;
}

/*------------------------------------------------------------
  TOP
------------------------------------------------------------*/
.top .sec__fv {
  max-height: 100vh;
}
.top .sec__fv_inner {
  position: relative;
}
.top .sec__fv_inner .fvSwiper {
  height: 100vh;
  position: sticky;
  top: 0;
}
.top .sec__fv_inner .fvSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateX(2.5%) scale(1.05, 1.05);
          transform: translateX(2.5%) scale(1.05, 1.05);
}
.top .sec__fv_inner .fvSwiper .swiper-slide-active img,
.top .sec__fv_inner .fvSwiper .swiper-slide-duplicate-active img,
.top .sec__fv_inner .fvSwiper .swiper-slide-prev img {
  -webkit-transform: translateX(-2.5%) scale(1.05, 1.05);
          transform: translateX(-2.5%) scale(1.05, 1.05);
  -webkit-transition: all 7000ms linear;
  transition: all 7000ms linear;
}
.top .sec__fv_inner_logo {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 200px;
  background-color: #fff;
  border-radius: 0 0 40px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .sec__fv_inner_logo {
    width: 130px;
  }
}
.top .sec__fv_inner_logo_img {
  margin: 30px 0 15px;
}
@media screen and (max-width: 768px) {
  .top .sec__fv_inner_logo_img {
    margin: 20px 0 15px;
  }
}
.top .sec__fv_inner_logo_img img {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .top .sec__fv_inner_logo_img img {
    width: 90px;
  }
}
.top .sec__fv_inner_logo_top {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .top .sec__fv_inner_logo_top {
    font-size: 1.3rem;
  }
}
.top .sec__fv_inner_logo_btm {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .top .sec__fv_inner_logo_btm {
    margin-bottom: 30px;
  }
}
.top .sec__fv_inner_text {
  position: absolute;
  z-index: 2;
  bottom: 52px;
  right: 100px;
  mix-blend-mode: difference;
}
@media screen and (max-width: 768px) {
  .top .sec__fv_inner_text {
    right: 30px;
    bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top .sec__fv_inner_text img {
    width: 278px;
  }
}
.top .sec__about {
  margin-top: 100px;
}
@media screen and (max-width: 640px) {
  .top .sec__about {
    margin-top: 60px;
  }
}
.top .sec__about_inner_text {
  width: 810px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 840px) {
  .top .sec__about_inner_text {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_text {
    display: block;
    margin-bottom: 142px;
  }
}
.top .sec__about_inner_text_left p {
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .top .sec__about_inner_text_left p {
    font-size: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_text_left p {
    font-size: 3.4rem;
    line-height: 1.7647058824;
  }
}
.top .sec__about_inner_text_left p:first-child {
  margin-bottom: 5px;
}
.top .sec__about_inner_text_left p .sm {
  font-size: 3.8rem;
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_text_left p .sm {
    font-size: 3rem;
  }
}
.top .sec__about_inner_text_left p .og {
  color: #FAC542;
}
.top .sec__about_inner_text_right {
  width: 49.5%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.8125;
  margin-top: 114px;
}
@media screen and (max-width: 768px) {
  .top .sec__about_inner_text_right {
    font-size: 1.4rem;
    line-height: 3.2142857143;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_text_right {
    width: 100%;
    margin-top: 30px;
  }
}
.top .sec__about_inner_img {
  width: 1060px;
  margin: auto;
}
@media screen and (max-width: 1150px) {
  .top .sec__about_inner_img {
    width: 100%;
    padding: 0 60px;
  }
}
@media screen and (max-width: 840px) {
  .top .sec__about_inner_img {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .top .sec__about_inner_img {
    padding: 0 30px;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_img {
    padding: 0;
  }
}
.top .sec__about_inner_img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_img_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_img_list::before {
    content: "";
    display: block;
    width: 48%;
  }
}
.top .sec__about_inner_img_list li {
  width: 30.2%;
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_img_list li {
    width: 49%;
    margin-bottom: 20px;
  }
}
.top .sec__about_inner_img_list li img {
  width: 100%;
}
.top .sec__about_inner_img_list li.first_img {
  position: relative;
}
.top .sec__about_inner_img_list li.first_img .mapimg {
  position: absolute;
  width: 300px;
  top: -230px;
  left: -40px;
}
@media screen and (max-width: 768px) {
  .top .sec__about_inner_img_list li.first_img .mapimg {
    width: 220px;
    top: -170px;
    left: -30px;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_img_list li.first_img .mapimg {
    width: 128%;
    left: -104%;
    top: -70%;
  }
}
.top .sec__about_inner_img_list li:nth-of-type(2) {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .top .sec__about_inner_img_list li:nth-of-type(2) {
    margin-top: auto;
  }
}
.top .sec__news {
  margin-top: 150px;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .top .sec__news {
    margin-top: 100px;
  }
}
.top .sec__news_inner_box {
  width: 1040px;
  margin: auto;
}
@media screen and (max-width: 1060px) {
  .top .sec__news_inner_box {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .top .sec__news_inner_box {
    padding: 0;
  }
}
.top .sec__news_inner_box_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .top .sec__news_inner_box_inner {
    display: block;
    margin-bottom: 20px;
  }
}
.top .sec__news_inner_box_inner_ttl {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 640px) {
  .top .sec__news_inner_box_inner_ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.top .sec__news_inner_box_inner_list {
  width: 76.5%;
}
@media screen and (max-width: 768px) {
  .top .sec__news_inner_box_inner_list {
    width: 70%;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__news_inner_box_inner_list {
    width: 100%;
  }
}
.top .sec__news_inner_box_inner_list li {
  padding-bottom: 18px;
  margin-top: 18px;
  border-bottom: 1px solid #EFEFEF;
}
.top .sec__news_inner_box_inner_list li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 640px) {
  .top .sec__news_inner_box_inner_list li dl {
    display: block;
  }
}
.top .sec__news_inner_box_inner_list li dl dt {
  min-width: 150px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 3.2142857143;
}
@media screen and (max-width: 640px) {
  .top .sec__news_inner_box_inner_list li dl dt {
    font-size: 1.2rem;
    line-height: 2.0833333333;
    margin-bottom: 6px;
  }
}
.top .sec__news_inner_box_inner_list li dl dd a {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.8125;
}
@media screen and (max-width: 640px) {
  .top .sec__news_inner_box_inner_list li dl dd a {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.top .sec__news_inner_box .btn_page_link {
  text-align: right;
}
.top .sec__stay {
  background-color: #F2F0E7;
  border-radius: 80px 80px 0 0;
}
@media screen and (max-width: 640px) {
  .top .sec__stay {
    border-radius: 40px 40px 0 0;
  }
}
.top .sec__stay_inner {
  padding: 90px 0 90px;
}
@media screen and (max-width: 640px) {
  .top .sec__stay_inner {
    padding: 70px 0 70px;
  }
}
.top .sec__stay_inner_box {
  width: 70%;
  margin: auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 20px 40px;
}
@media screen and (max-width: 640px) {
  .top .sec__stay_inner_box {
    width: 94%;
    padding: 50px 20px 30px;
  }
}
.top .sec__stay_inner_box .ttl {
  text-align: center;
  margin-bottom: 50px;
}
.top .sec__stay_inner_box_text {
  width: 75%;
  margin: auto;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .top .sec__stay_inner_box_text {
    width: 98%;
    font-size: 1.4rem;
    line-height: 2.5714285714;
  }
}
.top .sec__stay_inner_box_slider {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.top .sec__stay_inner_box_slider .staySlider .swiper-wrapper {
  width: 380px;
}
@media screen and (max-width: 640px) {
  .top .sec__stay_inner_box_slider .staySlider .swiper-wrapper {
    width: 214px;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__stay_inner_box_slider .staySlider .swiper-wrapper img {
    width: 100%;
  }
}
.top .sec__stay_inner_box .btn_page_link {
  text-align: right;
  margin-top: 20px;
  margin-right: 100px;
}
@media screen and (max-width: 640px) {
  .top .sec__stay_inner_box .btn_page_link {
    margin-right: auto;
  }
}
.top .sec__cafe {
  margin-top: 120px;
}
@media screen and (max-width: 640px) {
  .top .sec__cafe {
    margin-top: 80px;
  }
}
.top .sec__cafe_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 640px) {
  .top .sec__cafe_inner {
    display: block;
  }
}
.top .sec__cafe_inner_left {
  width: 41.2%;
  margin-right: 100px;
}
@media screen and (max-width: 1200px) {
  .top .sec__cafe_inner_left {
    width: 50%;
    margin-right: 40px;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__cafe_inner_left {
    width: 100%;
    padding-right: 40px;
    margin-bottom: 36px;
  }
}
.top .sec__cafe_inner_left img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .top .sec__cafe_inner_right {
    width: 48%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__cafe_inner_right {
    width: 100%;
    padding: 0 20px;
  }
}
.top .sec__cafe_inner_right .ttl {
  margin-bottom: 40px;
}
.top .sec__cafe_inner_right_text {
  width: 500px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .top .sec__cafe_inner_right_text {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__cafe_inner_right_text {
    font-size: 1.4rem;
    line-height: 2.5714285714;
    margin-bottom: 20px;
  }
}
.top .sec__work {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 640px) {
  .top .sec__work {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.top .sec__work_inner_box {
  background-color: #F2F0E7;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 70px 120px;
}
@media screen and (max-width: 1000px) {
  .top .sec__work_inner_box {
    padding: 70px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top .sec__work_inner_box {
    padding: 70px 40px;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__work_inner_box {
    padding: 50px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top .sec__work_inner_box_left {
  width: 500px;
  margin-right: 100px;
}
@media screen and (max-width: 1000px) {
  .top .sec__work_inner_box_left {
    width: 46%;
    margin-right: auto;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__work_inner_box_left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.top .sec__work_inner_box_left .ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .top .sec__work_inner_box_left .ttl {
    margin-bottom: 30px;
  }
}
.top .sec__work_inner_box_left_text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .top .sec__work_inner_box_left_text {
    font-size: 1.4rem;
    line-height: 2.5714285714;
    margin-bottom: 20px;
  }
}
.top .sec__work_inner_box_right {
  width: 37.5%;
}
@media screen and (max-width: 1000px) {
  .top .sec__work_inner_box_right {
    width: 44%;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__work_inner_box_right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-bottom: 40px;
  }
}
.top .sec__work_inner_box_right img {
  width: 100%;
}
.top .sec__blog {
  background-color: #F2F0E7;
  border-radius: 80px 80px 0 0;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 640px) {
  .top .sec__blog {
    border-radius: 40px 40px 0 0;
    padding-top: 74px;
    padding-bottom: 30px;
  }
}
.top .sec__blog_inner_box {
  width: 1140px;
  margin: auto;
}
@media screen and (max-width: 1160px) {
  .top .sec__blog_inner_box {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .top .sec__blog_inner_box {
    padding: 0;
  }
}
.top .sec__blog_inner_box:not(:first-child) {
  margin-top: 140px;
}
@media screen and (max-width: 640px) {
  .top .sec__blog_inner_box:not(:first-child) {
    margin-top: 80px;
  }
}
.top .sec__blog_inner_box_ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 48px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top .sec__blog_inner_box_ttl {
    margin-left: 10px;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__blog_inner_box_ttl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .top .sec__blog_inner_box_ttl .ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .top .sec__blog_inner_box_ttl .ttl span {
    font-size: 2.6rem;
  }
}
.top .sec__blog_inner_box_ttl_sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .top .sec__blog_inner_box_ttl_sub {
    margin-left: 6px;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__blog_inner_box_ttl_sub {
    line-height: 1.8571428571;
    margin-top: 15px;
    margin-left: auto;
  }
}
.top .sec__blog_inner_box_ttl_sub img {
  margin-right: 10px;
}
.top .sec__blog_inner_box_ttl .btn_page_link {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
  .top .sec__blog_inner_box_ttl .btn_page_link {
    top: -8px;
  }
}
.top .sec__insta {
  margin-top: 132px;
}
@media screen and (max-width: 640px) {
  .top .sec__insta {
    margin-top: 94px;
  }
}
.top .sec__insta_inner_ttl {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-bottom: 64px;
}
@media screen and (max-width: 640px) {
  .top .sec__insta_inner_ttl {
    font-size: 1.4rem;
    line-height: 2.5714285714;
    margin-bottom: 70px;
  }
}
.top .sec__insta_inner_ttl span {
  position: relative;
}
.top .sec__insta_inner_ttl span::before {
  position: absolute;
  content: "";
  left: -75px;
  bottom: 12px;
  width: 35px;
  height: 1px;
  background-color: #231815;
  -webkit-transform: rotate(54deg);
          transform: rotate(54deg);
}
@media screen and (max-width: 640px) {
  .top .sec__insta_inner_ttl span::before {
    left: -40px;
    width: 24px;
  }
}
.top .sec__insta_inner_ttl span::after {
  position: absolute;
  content: "";
  right: -75px;
  bottom: 12px;
  width: 35px;
  height: 1px;
  background-color: #231815;
  -webkit-transform: rotate(124deg);
          transform: rotate(124deg);
}
@media screen and (max-width: 640px) {
  .top .sec__insta_inner_ttl span::after {
    right: -40px;
    width: 24px;
  }
}
.top .sec__insta_inner_box {
  position: relative;
  background-color: #F2F0E7;
  border-radius: 40px 40px 0 0;
  padding: 70px 34px;
}
@media screen and (max-width: 640px) {
  .top .sec__insta_inner_box {
    padding: 60px 20px;
  }
}
.top .sec__insta_inner_box_text {
  position: absolute;
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  top: -4px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px) {
  .top .sec__insta_inner_box_text {
    font-size: 3rem;
    top: -2px;
  }
}
.top .sec__insta_inner_box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .top .sec__insta_inner_box_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top .sec__insta_inner_box_list li {
  width: 15.91%;
}
@media screen and (max-width: 640px) {
  .top .sec__insta_inner_box_list li {
    width: 49%;
    margin-bottom: 10px;
  }
}
.top .sec__insta_inner_box_list li img {
  width: 100%;
}
.top .sec__insta_inner_box .btn_link {
  position: absolute;
  display: block;
  width: 200px;
  background-color: #F4CE72;
  border-radius: 70px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  bottom: -56px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 20px 0;
}
.top .sec__access {
  margin-top: 170px;
  margin-bottom: 140px;
}
@media screen and (max-width: 640px) {
  .top .sec__access {
    margin-top: 112px;
    margin-bottom: 100px;
  }
}
.top .sec__access_inner_ttl {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .top .sec__access_inner_ttl {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
}
.top .sec__access_inner_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 55px;
}
@media screen and (max-width: 1000px) {
  .top .sec__access_inner_box {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .top .sec__access_inner_box {
    padding: 0;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__access_inner_box {
    display: block;
  }
}
.top .sec__access_inner_box_left {
  width: 53.3%;
}
@media screen and (max-width: 640px) {
  .top .sec__access_inner_box_left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top .sec__access_inner_box_left .gmap_inner {
  height: 0;
  overflow: hidden;
  padding-bottom: 65.5%;
  position: relative;
}
@media screen and (max-width: 640px) {
  .top .sec__access_inner_box_left .gmap_inner {
    padding-bottom: 63%;
  }
}
.top .sec__access_inner_box_left .gmap_inner iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 380px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .top .sec__access_inner_box_left .gmap_inner iframe {
    height: 232px;
  }
}
.top .sec__access_inner_box_right {
  width: 41.3%;
}
@media screen and (max-width: 1000px) {
  .top .sec__access_inner_box_right {
    width: 44%;
  }
}
@media screen and (max-width: 640px) {
  .top .sec__access_inner_box_right {
    width: 100%;
  }
}
.top .sec__access_inner_box_right_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top .sec__access_inner_box_right_ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top .sec__access_inner_box_right_top {
  border-bottom: 1px solid #F4CE72;
  margin-bottom: 20px;
}
.top .sec__access_inner_box_right_top p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .top .sec__access_inner_box_right_top p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.top .sec__access_inner_box_right_top p img {
  margin-right: 10px;
}
.top .sec__access_inner_box_right_top p span {
  width: 100%;
}
.top .sec__access_inner_box_right_btm p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .top .sec__access_inner_box_right_btm p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.top .sec__access_inner_box_right_btm p img {
  margin-right: 10px;
}

/*------------------------------------------------------------
  ABOUT
------------------------------------------------------------*/
.about .sec__staff {
  margin-top: 176px;
}
@media screen and (max-width: 640px) {
  .about .sec__staff {
    margin-top: 120px;
  }
}
.about .sec__staff_inner .ttl {
  text-align: center;
  margin-bottom: 50px;
}
.about .sec__staff_inner .staff_list {
  width: 860px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 880px) {
  .about .sec__staff_inner .staff_list {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .about .sec__staff_inner .staff_list {
    display: block;
  }
}
.about .sec__staff_inner .staff_list_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 46.6%;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .about .sec__staff_inner .staff_list_box {
    width: 100%;
  }
}
.about .sec__staff_inner .staff_list_box_img {
  width: 310px;
  height: 230px;
  margin: auto;
  position: relative;
}
.about .sec__staff_inner .staff_list_box_img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
          box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 640px) {
  .about .sec__staff_inner .staff_list_box_img {
    width: 93%;
    height: 100%;
  }
}
.about .sec__staff_inner .staff_list_box_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .sec__staff_inner .staff_list_box_name {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .about .sec__staff_inner .staff_list_box_name {
    margin-top: 30px;
  }
}
.about .sec__staff_inner .staff_list_box_name span {
  display: block;
  font-size: 1.4rem;
  color: #FAC542;
  margin-top: 5px;
}
.about .sec__staff_inner .staff_list_box_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 360px;
  margin: auto;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.2142857143;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .about .sec__staff_inner .staff_list_box_text {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .about .sec__staff_inner .staff_list_box_text {
    width: 93%;
  }
}
.about .sec__staff_inner .staff_list_box_like {
  background-color: #F2F0E7;
  border-radius: 20px;
  padding: 15px 20px 25px;
  margin-top: 20px;
}
.about .sec__staff_inner .staff_list_box_like_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.about .sec__staff_inner .staff_list_box_like_text {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8571428571;
}
.about .sec__gallery {
  margin-top: 100px;
  margin-bottom: 110px;
}
@media screen and (max-width: 640px) {
  .about .sec__gallery {
    margin-top: 120px;
    margin-bottom: 100px;
  }
}
.about .sec__gallery_inner {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .about .sec__gallery_inner {
    width: 100%;
  }
}
.about .sec__gallery_inner_ttl {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 40px;
}
.about .sec__gallery_inner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about .sec__gallery_inner_list_img {
  width: 23.6%;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .about .sec__gallery_inner_list_img {
    width: 48%;
    margin-bottom: 20px;
  }
}
.about .sec__gallery_inner_list_img a {
  position: relative;
  display: block;
  height: 100%;
}
.about .sec__gallery_inner_list_img a:hover {
  cursor: -webkit-zoom-in !important;
  cursor: zoom-in !important;
}
.about .sec__gallery_inner_list_img a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
          box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  border-radius: 10px 10px 0 0;
}
.about .sec__gallery_inner_list_img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/*------------------------------------------------------------
  room
------------------------------------------------------------*/
.room .sec__room_inner .link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 678px;
  text-align: center;
  background-color: #F4CE72;
  border-radius: 20px;
  margin: auto;
  padding: 20px 40px;
}
@media screen and (max-width: 710px) {
  .room .sec__room_inner .link_box {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .link_box {
    display: block;
  }
}
@media screen and (max-width: 380px) {
  .room .sec__room_inner .link_box {
    padding: 20px;
  }
}
.room .sec__room_inner .link_box::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 18px 18px 0 18px;
  border-color: #F4CE72 transparent transparent transparent;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.room .sec__room_inner .link_box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .link_box_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.room .sec__room_inner .link_box_list li {
  position: relative;
  padding-right: 24px;
  margin-left: 24px;
}
.room .sec__room_inner .link_box_list li::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  background-color: #fff;
  border-radius: 10px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.room .sec__room_inner .link_box_list li a {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 710px) {
  .room .sec__room_inner .link_box_list li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .link_box_list li a {
    font-size: 1.6rem;
  }
}
.room .sec__room_inner .link_box_list:first-child li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .link_box_list:first-child li:last-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .link_box_list:first-child li:last-child::after {
    content: none;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .link_box_list:first-child {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .link_box_list:last-child li:first-child {
    margin-left: 0;
  }
}
.room .sec__room_inner .link_box_list:last-child li:last-child {
  padding-right: 0;
}
.room .sec__room_inner .link_box_list:last-child li:last-child::after {
  content: none;
}
.room .sec__room_inner .room_box {
  padding-top: 122px;
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .room_box {
    padding-top: 80px;
  }
}
.room .sec__room_inner .room_box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .room_box_list {
    display: block;
  }
}
.room .sec__room_inner .room_box_list_inner {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .room_box_list_inner {
    width: 100%;
  }
}
.room .sec__room_inner .room_box_list_inner_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1818181818;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .room_box_list_inner_ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.room .sec__room_inner .room_box_list_inner_ttl span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4CE72;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .room_box_list_inner_ttl span {
    font-size: 1.3rem;
    margin-left: 10px;
  }
}
.room .sec__room_inner .room_box_list_inner_img {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .room .sec__room_inner .room_box_list_inner_img {
    margin-bottom: 20px;
  }
}
.room .sec__room_inner .room_box_list_inner_img img {
  width: 100%;
}
.room .sec__room_inner .room_box_list_inner_list {
  padding-bottom: 20px;
  border-bottom: 1px solid #EFEFEF;
  margin-bottom: 20px;
}
.room .sec__room_inner .room_box_list_inner_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 8px;
}
.room .sec__room_inner .room_box_list_inner_list dl dt {
  width: 66px;
}
.room .sec__room_inner .room_box_list_inner_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.room .sec__room_inner .room_box_list_inner_text p {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
.room .sec__room_inner .room_box_list_inner .base_btn {
  margin-top: 20px;
}
.room .sec__facility {
  padding-top: 60px;
}
@media screen and (max-width: 640px) {
  .room .sec__facility {
    padding-top: 40px;
  }
}
.room .sec__facility_inner_list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .room .sec__facility_inner_list {
    margin-top: 40px;
    display: block;
  }
}
.room .sec__facility_inner_list_box {
  width: 48%;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .room .sec__facility_inner_list_box {
    width: 100%;
  }
}
.room .sec__facility_inner_list_box_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1818181818;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .room .sec__facility_inner_list_box_ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.room .sec__facility_inner_list_box_ttl span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4CE72;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .room .sec__facility_inner_list_box_ttl span {
    font-size: 1.3rem;
    margin-left: 10px;
  }
}
.room .sec__facility_inner_list_box_img {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .room .sec__facility_inner_list_box_img {
    margin-bottom: 20px;
  }
}
.room .sec__facility_inner_list_box_img img {
  width: 100%;
}
.room .sec__facility_inner_list_box_text p {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
.room .sec__amenity {
  padding-top: 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .room .sec__amenity {
    padding-top: 40px;
    margin-bottom: 80px;
  }
}
.room .sec__amenity_inner_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_top {
    display: block;
    margin-top: 40px;
    margin-bottom: 80px;
  }
}
.room .sec__amenity_inner_top_left {
  width: 47%;
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_top_left {
    width: 100%;
    margin-bottom: 40px;
  }
}
.room .sec__amenity_inner_top_left h3 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_top_left h3 {
    font-size: 2.2rem;
  }
}
.room .sec__amenity_inner_top_left h3 span {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 20px;
}
.room .sec__amenity_inner_top_left p {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.2857142857;
}
.room .sec__amenity_inner_top_right {
  width: 47%;
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_top_right {
    width: 100%;
  }
}
.room .sec__amenity_inner_top_right img {
  width: 100%;
}
.room .sec__amenity_inner_icon {
  width: 850px;
  margin: auto;
}
@media screen and (max-width: 860px) {
  .room .sec__amenity_inner_icon {
    width: 100%;
  }
}
.room .sec__amenity_inner_icon .amenity_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_icon .amenity_list {
    display: block;
  }
}
.room .sec__amenity_inner_icon .amenity_list_ttl {
  width: 130px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_icon .amenity_list_ttl {
    margin-bottom: 20px;
  }
}
.room .sec__amenity_inner_icon .amenity_list_img {
  width: calc(100% - 130px);
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_icon .amenity_list_img {
    width: 100%;
  }
}
.room .sec__amenity_inner_icon .amenity_list_img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.room .sec__amenity_inner_icon .amenity_list_img ul li {
  width: 16.7%;
  margin-left: 20px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 860px) {
  .room .sec__amenity_inner_icon .amenity_list_img ul li {
    margin-left: 14px;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_icon .amenity_list_img ul li {
    width: 33.3%;
    margin-left: 0;
  }
}
.room .sec__amenity_inner_icon .amenity_list_img ul li p {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 10px;
}
.room .sec__amenity_inner_icon .amenity_list_img ul li p span {
  display: block;
  font-size: 1.1rem;
  color: #626262;
  margin-top: 4px;
}
@media screen and (max-width: 640px) {
  .room .sec__amenity_inner_icon .amenity_list_img ul:nth-child(3n-1) {
    margin: 0 20px;
  }
}
.room .sec__price {
  background-color: #F2F0E7;
  border-radius: 80px 80px 0 0;
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  .room .sec__price {
    border-radius: 40px 40px 0 0;
    padding-top: 40px;
  }
}
.room .sec__price_inner .sub_container_ttl {
  margin-bottom: 40px;
}
.room .sec__price_inner_list {
  padding: 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 760px) {
  .room .sec__price_inner_list {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list {
    padding: 30px 14px 30px 20px;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list {
    display: block;
  }
}
.room .sec__price_inner_list:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list:not(:last-child) {
    margin-bottom: 15px;
  }
}
.room .sec__price_inner_list_left {
  width: 46.7%;
}
@media screen and (max-width: 1000px) {
  .room .sec__price_inner_list_left {
    width: 38%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list_left {
    width: 100%;
  }
}
.room .sec__price_inner_list_left h3 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1666666667;
}
@media screen and (max-width: 760px) {
  .room .sec__price_inner_list_left h3 {
    font-size: 2rem;
    letter-spacing: 0.03em;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
.room .sec__price_inner_list_left h3 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4CE72;
  margin-top: 4px;
}
.room .sec__price_inner_list_right {
  width: 53%;
}
@media screen and (max-width: 1000px) {
  .room .sec__price_inner_list_right {
    width: 62%;
  }
}
@media screen and (max-width: 760px) {
  .room .sec__price_inner_list_right {
    width: 100%;
  }
}
.room .sec__price_inner_list_right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.room .sec__price_inner_list_right ul li:first-child {
  width: 40%;
  border-right: 1px solid #F4CE72;
  margin-right: 60px;
}
@media screen and (max-width: 900px) {
  .room .sec__price_inner_list_right ul li:first-child {
    margin-right: 30px;
  }
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list_right ul li:first-child {
    width: auto;
    margin-right: 8px;
    padding-right: 8px;
  }
}
.room .sec__price_inner_list_right ul li:first-child dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.room .sec__price_inner_list_right ul li:first-child dl:first-child {
  margin-bottom: 10px;
}
.room .sec__price_inner_list_right ul li:first-child dl dt {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list_right ul li:first-child dl dt {
    letter-spacing: 0.03em;
    margin-right: 7px;
    min-width: 33px;
  }
}
.room .sec__price_inner_list_right ul li:first-child dl dd {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list_right ul li:first-child dl dd {
    letter-spacing: 0.03em;
  }
}
.room .sec__price_inner_list_right ul li:last-child dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.room .sec__price_inner_list_right ul li:last-child dl:first-child {
  margin-bottom: 4px;
}
.room .sec__price_inner_list_right ul li:last-child dl dt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list_right ul li:last-child dl dt {
    letter-spacing: 0.03em;
    margin-right: 7px;
  }
}
.room .sec__price_inner_list_right ul li:last-child dl dd {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 640px) {
  .room .sec__price_inner_list_right ul li:last-child dl dd {
    letter-spacing: 0.03em;
  }
}
.room .sec__price_inner_list_right ul li:last-child dl dd span {
  font-size: 1.6rem;
}
.room .sec__price_inner_list_right p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
.room .sec__rule {
  background-color: #F2F0E7;
  padding-top: 120px;
  padding-bottom: 140px;
}
@media screen and (max-width: 640px) {
  .room .sec__rule {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.room .sec__rule_inner .sub_container_ttl {
  margin-bottom: 40px;
}

/*------------------------------------------------------------
  CAFE
------------------------------------------------------------*/
.cafe .sec__menu {
  background-color: #F2F0E7;
  border-radius: 80px 80px 0 0;
  padding-top: 90px;
  padding-bottom: 140px;
  margin-top: 140px;
}
@media screen and (max-width: 640px) {
  .cafe .sec__menu {
    border-radius: 40px 40px 0 0;
    padding-top: 70px;
    padding-bottom: 120px;
    margin-top: 80px;
  }
}
.cafe .sec__menu_inner .menu_box {
  margin-top: 40px;
  margin-bottom: 120px;
  padding: 40px 50px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .cafe .sec__menu_inner .menu_box {
    margin-bottom: 80px;
    padding: 30px 20px 10px;
    display: block;
  }
}
.cafe .sec__menu_inner .menu_box_inner {
  width: 46%;
}
@media screen and (max-width: 640px) {
  .cafe .sec__menu_inner .menu_box_inner {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .cafe .sec__menu_inner .menu_box_inner:first-child {
    margin-bottom: 40px;
  }
}
.cafe .sec__menu_inner .menu_box_inner_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6363636364;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .cafe .sec__menu_inner .menu_box_inner_ttl {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    line-height: 1.4444444444;
  }
}
.cafe .sec__menu_inner .menu_box_inner_ttl span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4CE72;
  margin-left: 10px;
  vertical-align: middle;
}
.cafe .sec__menu_inner .menu_box_inner_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed #F4CE72;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .cafe .sec__menu_inner .menu_box_inner_list dl {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.cafe .sec__menu_inner .menu_box_inner_list dl dt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.375;
}
@media screen and (max-width: 640px) {
  .cafe .sec__menu_inner .menu_box_inner_list dl dt {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}
.cafe .sec__menu_inner .menu_box_inner_list dl dd {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.375;
}
@media screen and (max-width: 640px) {
  .cafe .sec__menu_inner .menu_box_inner_list dl dd {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}
.cafe .sec__menu_inner .info_box {
  margin-top: 40px;
}

/*------------------------------------------------------------
  blog
------------------------------------------------------------*/
.blog .blog_slider {
  width: 100vw;
  margin-bottom: 40px;
}
.blog .blog_slider .staySlider .swiper-wrapper {
  width: 380px;
}
@media screen and (max-width: 640px) {
  .blog .blog_slider .staySlider .swiper-wrapper {
    width: 214px;
  }
}
@media screen and (max-width: 640px) {
  .blog .blog_slider .staySlider .swiper-wrapper img {
    width: 100%;
  }
}
.blog .sec__blog {
  margin-bottom: 140px;
}
@media screen and (max-width: 640px) {
  .blog .sec__blog {
    margin-bottom: 120px;
  }
}
.blog .sec__blog_inner {
  width: 1140px;
  margin: auto;
}
@media screen and (max-width: 1160px) {
  .blog .sec__blog_inner {
    width: 100%;
    padding: 0 20px;
  }
}
.blog .sec__blog_inner .sub_container_ttl {
  margin-bottom: 40px;
}
.blog .sec__blog_inner_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .blog .sec__blog_inner_ttl {
    font-size: 2.2rem;
    letter-spacing: 0em;
    margin-bottom: 30px;
    padding: 0 20px;
  }
}
.blog .sec__blog_inner .blog_list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .blog .sec__blog_inner .blog_list {
    padding: 0 20px;
  }
}
.blog .sec__blog_inner .blog_list::after {
  content: "";
  display: block;
  width: 31.6%;
}
@media screen and (max-width: 640px) {
  .blog .sec__blog_inner .blog_list::after {
    content: none;
  }
}
.blog .sec__blog_inner .blog_list_box {
  margin-bottom: 35px;
}
.blog .sec__blog_inner .blog_list_box:not(:first-child) {
  margin-left: 0;
}
.blog .sec__blog_inner .pagination {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .blog .sec__blog_inner .pagination {
    margin-top: 30px;
  }
}

.blog_sub .btm_category {
  margin-top: 80px;
}

.blog_detail .sec__detail {
  background-color: #F2F0E7;
  border-radius: 80px 80px 0 0;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail {
    border-radius: 40px 40px 0 0;
    padding-top: 40px;
  }
}
.blog_detail .sec__detail_inner .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail {
    display: block;
  }
}
.blog_detail .sec__detail_inner .detail_left {
  width: calc(100% - 300px);
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-right: 30px;
}
@media screen and (max-width: 800px) {
  .blog_detail .sec__detail_inner .detail_left {
    width: 70%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left {
    width: 100%;
    padding: 30px 20px;
    margin-right: auto;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_top {
    margin-bottom: 20px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_top_category p .category {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 8px 20px;
  background-color: #F4CE72;
  border-radius: 5px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_top_category p .category {
    font-size: 1.3rem;
    padding: 6px 13px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_top_data {
  font-size: 1.6rem;
  font-weight: 700;
  color: #C6C6C6;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_top_data img {
  vertical-align: sub;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_top_data {
    font-size: 1.3rem;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6071428571;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_ttl {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    margin-bottom: 30px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_eyecatch {
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_eyecatch {
    margin-bottom: 50px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_eyecatch img {
  width: 100%;
  height: 450px;
  border-radius: 30px 30px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_eyecatch img {
    height: 230px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_eyecatch::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  border-radius: 30px 30px 0 0;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body h2 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body h2 {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    margin-bottom: 30px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body h3 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6363636364;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body h3 {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-bottom: 30px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body h3::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background-color: #F4CE72;
  bottom: 0;
  left: 0;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body h4 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  position: relative;
  padding-left: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body h4 {
    font-size: 1.5rem;
    line-height: 1.7333333333;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body h4::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 20px;
  background-color: #F4CE72;
  top: 50%;
  left: 2px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body h5 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #F4CE72;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body h5 {
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body p {
    font-size: 1.4rem;
    line-height: 2.5714285714;
    margin-bottom: 30px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body figure {
  display: table;
  margin: auto;
  margin-bottom: 40px;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body figure img {
  max-width: 100%;
  height: 100%;
  border-radius: 5px;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body figure figcaption {
  caption-side: bottom;
  display: table-caption;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4285714286;
  color: #696969;
  margin-top: 10px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body figure figcaption {
    font-size: 1.1rem;
    line-height: 1.4545454545;
    margin-top: 6px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body ul {
    margin-bottom: 20px;
    padding-left: 15px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body ul li {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.625;
  margin-bottom: 6px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body ul li {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body ul li::marker {
  color: #F4CE72;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body ol {
    margin-bottom: 20px;
    padding-left: 17px;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body ol li {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.625;
  margin-bottom: 6px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_body ol li {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_body ol li::marker {
  color: #F4CE72;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf {
  margin-top: 80px;
  border-top: 2px dashed #F4CE72;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_ttl {
  text-align: center;
  width: 264px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 2px solid #F4CE72;
  border-radius: 30px;
  margin: auto;
  padding: 10px 26px;
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_acf_ttl {
    width: 244px;
    font-size: 1.8rem;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2142857143;
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_ttl {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_text {
    font-size: 1.4rem;
    line-height: 2.5714285714;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_name {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-top: 40px;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_link {
  display: inline-block;
  position: relative;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_link::after {
  position: absolute;
  content: "";
  background-image: url(../img/common/icon_og_otherlink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  top: 50%;
  right: -36px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_link a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #F4CE72;
  text-decoration: underline;
  word-break: break-all;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img {
    display: block;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img li {
  width: 48.8%;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img li {
    width: 100%;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img li:nth-child(odd) {
  margin-right: 18px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img li:nth-child(odd) {
    margin-right: auto;
  }
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
}
.blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img li img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_left .blog_box_acf_inner_img li img {
    height: 210px;
  }
}
.blog_detail .sec__detail_inner .detail_right {
  width: 300px;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 20px;
}
@media screen and (max-width: 800px) {
  .blog_detail .sec__detail_inner .detail_right {
    width: 30%;
  }
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .detail_right {
    display: none;
  }
}
.blog_detail .sec__detail_inner_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.1428571429;
  margin-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner_ttl {
    font-size: 2.2rem;
    letter-spacing: 0em;
    margin-bottom: 30px;
    padding: 0 20px;
  }
}
.blog_detail .sec__detail_inner .sp_detail_right {
  display: none;
}
@media screen and (max-width: 640px) {
  .blog_detail .sec__detail_inner .sp_detail_right {
    display: block;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    margin-top: 80px;
  }
}

.detail_box_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  margin-bottom: 40px;
}
.detail_box_ttl img {
  margin-right: 8px;
}
.detail_box_top_ttl {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.8571428571;
  color: #F4CE72;
  margin-bottom: 15px;
}
.detail_box_top_list {
  margin-bottom: 24px;
}
.detail_box_top_list li {
  position: relative;
  border-bottom: 1px solid #EFEFEF;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.detail_box_top_list li::after {
  position: absolute;
  content: "";
  background-image: url(../img/common/icon_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  top: 10%;
  right: 0;
  width: 16px;
  height: 10px;
}
.detail_box_top_list li a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
  padding-left: 5px;
  padding-right: 16px;
}
.detail_box_btm .detail_box_ttl {
  margin-top: 60px;
}
.detail_box_btm_list_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}
.detail_box_btm_list_inner_left {
  position: relative;
  max-width: 90px;
  min-width: 90px;
  height: 90px;
  margin-right: 8px;
}
.detail_box_btm_list_inner_left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
}
.detail_box_btm_list_inner_left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.detail_box_btm_list_inner_right_data {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #C6C6C6;
  margin-bottom: 10px;
  word-break: break-all;
}
.detail_box_btm_list_inner_right_ttl {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.5714285714;
}
.detail_box_btm_list_inner .link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*------------------------------------------------------------
  access
------------------------------------------------------------*/
.access .sec__access {
  margin-bottom: 140px;
}
@media screen and (max-width: 640px) {
  .access .sec__access {
    margin-bottom: 120px;
  }
}
.access .sec__access_inner_ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.0833333333;
  margin-bottom: 120px;
}
@media screen and (max-width: 640px) {
  .access .sec__access_inner_ttl {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    line-height: 2.5;
    margin-bottom: 80px;
  }
}
.access .sec__access_inner_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 640px) {
  .access .sec__access_inner_box {
    display: block;
    margin-bottom: 80px;
  }
}
.access .sec__access_inner_box_left {
  width: 53%;
}
@media screen and (max-width: 640px) {
  .access .sec__access_inner_box_left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.access .sec__access_inner_box_left img {
  width: 100%;
}
.access .sec__access_inner_box_right {
  width: 41%;
}
@media screen and (max-width: 1000px) {
  .access .sec__access_inner_box_right {
    width: 44%;
  }
}
@media screen and (max-width: 640px) {
  .access .sec__access_inner_box_right {
    width: 100%;
  }
}
.access .sec__access_inner_box_right_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .access .sec__access_inner_box_right_ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.access .sec__access_inner_box_right_top {
  border-bottom: 1px solid #F4CE72;
  margin-bottom: 20px;
}
.access .sec__access_inner_box_right_top p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .access .sec__access_inner_box_right_top p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.access .sec__access_inner_box_right_top p img {
  margin-right: 10px;
}
.access .sec__access_inner_box_right_top p span {
  width: 100%;
}
.access .sec__access_inner_box_right_btm p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .access .sec__access_inner_box_right_btm p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.access .sec__access_inner_box_right_btm p img {
  margin-right: 10px;
}
.access .sec__access_inner_map .gmap_inner {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media screen and (max-width: 640px) {
  .access .sec__access_inner_map .gmap_inner {
    padding-bottom: 63%;
  }
}
.access .sec__access_inner_map .gmap_inner iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 380px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .access .sec__access_inner_map .gmap_inner iframe {
    height: 232px;
  }
}
.access .sec__access_inner .base_btn {
  margin-top: 30px;
}

/*------------------------------------------------------------
  booking
------------------------------------------------------------*/
.booking .sec__vacancy {
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .booking .sec__vacancy {
    margin-bottom: 120px;
  }
}
.booking .sec__vacancy_inner .sub_container_ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .booking .sec__vacancy_inner .sub_container_ttl {
    margin-bottom: 40px;
  }
}
.booking .sec__room {
  margin-bottom: 120px;
}
@media screen and (max-width: 640px) {
  .booking .sec__room {
    margin-bottom: 80px;
  }
}
.booking .sec__room_inner_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .booking .sec__room_inner_ttl {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
  }
}
.booking .sec__room_inner_ttl span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F4CE72;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .booking .sec__room_inner_ttl span {
    margin-left: 10px;
  }
}
.booking .sec__room_inner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.booking .sec__room_inner_list li {
  width: 24%;
}
@media screen and (max-width: 640px) {
  .booking .sec__room_inner_list li {
    width: 48%;
    margin-bottom: 30px;
  }
}
.booking .sec__room_inner_list li img {
  width: 100%;
}
.booking .sec__room_inner_list li p {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 10px;
}
.booking .sec__room_inner_list li p span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #919191;
  margin-top: 8px;
}
.booking .sec__booking {
  background-color: #F2F0E7;
  border-radius: 80px 80px 0 0;
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking {
    border-radius: 40px 40px 0 0;
    padding-top: 70px;
  }
}
.booking .sec__booking_inner .sub_container_ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner .sub_container_ttl {
    margin-bottom: 40px;
  }
}
.booking .sec__booking_inner_tel {
  padding: 40px 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_tel {
    padding: 30px 20px;
  }
}
.booking .sec__booking_inner_tel_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_tel_ttl {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
  }
}
.booking .sec__booking_inner_tel_ttl span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4CE72;
  margin-left: 10px;
}
.booking .sec__booking_inner_tel_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_tel_number {
    display: block;
    text-align: center;
    font-size: 2.6rem;
  }
}
.booking .sec__booking_inner_tel_number img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_tel_number img {
    vertical-align: sub;
  }
}
.booking .sec__booking_inner_tel_number span {
  font-size: 1.8rem;
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_tel_number span {
    display: block;
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 5px;
  }
}
.booking .sec__booking_inner_tel_text {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_tel_text {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.booking .sec__booking_inner_form {
  padding: 40px 50px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_form {
    padding: 30px 20px;
  }
}
.booking .sec__booking_inner_form_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_form_ttl {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
  }
}
.booking .sec__booking_inner_form_ttl span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4CE72;
  margin-left: 10px;
}
.booking .sec__booking_inner_form_text {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
  padding-bottom: 30px;
  border-bottom: 1px solid #F4CE72;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_form_text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 50px;
  }
}
.booking .sec__booking_inner_form .contact_form_inner {
  margin: 0 20px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_form .contact_form_inner {
    margin: auto;
  }
}
.booking .sec__booking_inner_form .contact_form_inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_form .contact_form_inner dl {
    display: block;
  }
}
.booking .sec__booking_inner_form .contact_form_inner dl.textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.booking .sec__booking_inner_form .contact_form_inner dl dt {
  width: 38%;
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 20px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_form .contact_form_inner dl dt {
    width: 100%;
    margin-bottom: 10px;
    margin-right: auto;
  }
}
.booking .sec__booking_inner_form .contact_form_inner dl dt .en {
  font-size: 1.4rem;
  font-weight: 400;
  color: #696969;
  margin-left: 10px;
  margin-right: 4px;
}
.booking .sec__booking_inner_form .contact_form_inner dl dt .required {
  color: #F84D2E;
}
.booking .sec__booking_inner_form .contact_form_inner dl dd {
  width: 60%;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_form .contact_form_inner dl dd {
    width: 100%;
  }
}
.booking .sec__booking_inner_form .contact_form_inner dl dd input[type=text],
.booking .sec__booking_inner_form .contact_form_inner dl dd input[type=email],
.booking .sec__booking_inner_form .contact_form_inner dl dd input[type=tel] {
  width: 100%;
  background-color: #FFF9EA;
  border: none;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  padding: 8px 15px;
}
.booking .sec__booking_inner_form .contact_form_inner dl dd select {
  width: 100%;
  background-color: #FFF9EA;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  height: 40px;
  padding: 0 15px;
  border: none;
}
.booking .sec__booking_inner_form .contact_form_inner dl dd select.long {
  width: 350px;
}
.booking .sec__booking_inner_form .contact_form_inner dl dd textarea {
  width: 100%;
  border: none;
  background-color: #FFF9EA;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.875;
  padding: 15px;
}
.booking .sec__booking_inner_form .contact_form_inner dl dd p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.875;
}
.booking .sec__booking_inner_form .contact_form_inner dl.select dd {
  position: relative;
  width: 220px;
}
.booking .sec__booking_inner_form .contact_form_inner dl.select dd.long {
  width: 350px;
}
@media screen and (max-width: 640px) {
  .booking .sec__booking_inner_form .contact_form_inner dl.select dd.long {
    width: 100%;
  }
}
.booking .sec__booking_inner_form .contact_form_inner dl.select dd::after {
  content: "";
  background-image: url(../img/common/icon_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 11px;
  height: 6px;
  border: 0;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 14px;
}
.booking .sec__booking_inner_form .contact_form_inner .send {
  width: 200px;
  margin: auto;
  position: relative;
}
.booking .sec__booking_inner_form .contact_form_inner .send:hover {
  opacity: 0.85;
}
.booking .sec__booking_inner_form .contact_form_inner .send .send_text {
  width: 200px;
  background-color: #F4CE72;
  border-radius: 70px;
  text-align: center;
  margin: auto;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 19px 0;
  border: none;
  cursor: pointer;
}

.booking_check .contact_form_inner dl {
  padding-bottom: 20px;
  border-bottom: 1px solid #EFEFEF;
}
@media screen and (max-width: 640px) {
  .booking_check .contact_form_inner dl {
    padding-bottom: 14px;
  }
}
.booking_check .contact_form_inner dl.textarea {
  border-bottom: none;
}

.completed .sec__completed {
  margin-top: 150px;
  margin-bottom: 140px;
}
@media screen and (max-width: 640px) {
  .completed .sec__completed {
    margin-top: 90px;
    margin-bottom: 120px;
  }
}
.completed .sec__completed_inner {
  padding: 0 20px;
}
.completed .sec__completed_inner_text {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .completed .sec__completed_inner_text {
    font-size: 1.8rem;
    letter-spacing: 0em;
    line-height: 1.6666666667;
    margin-bottom: 20px;
  }
}
.completed .sec__completed_inner_ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #FAC542;
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .completed .sec__completed_inner_ttl {
    font-size: 1.8rem;
  }
}
.completed .sec__completed_inner_subtext {
  width: 740px;
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .completed .sec__completed_inner_subtext {
    width: 100%;
    margin-bottom: 70px;
  }
}
.completed .sec__completed_inner_subtext p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.5;
}
@media screen and (max-width: 640px) {
  .completed .sec__completed_inner_subtext p {
    font-size: 1.4rem;
    line-height: 2;
  }
}

/*------------------------------------------------------------
  404
------------------------------------------------------------*/
.no_page .sec__not {
  margin-top: 150px;
  margin-bottom: 140px;
}
@media screen and (max-width: 640px) {
  .no_page .sec__not {
    margin-top: 90px;
    margin-bottom: 120px;
  }
}
.no_page .sec__not_inner {
  padding: 0 20px;
}
.no_page .sec__not_inner_text {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .no_page .sec__not_inner_text {
    font-size: 1.8rem;
    letter-spacing: 0em;
    line-height: 1.6666666667;
    margin-bottom: 20px;
  }
}
.no_page .sec__not_inner_ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #FAC542;
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .no_page .sec__not_inner_ttl {
    font-size: 1.8rem;
  }
}
.no_page .sec__not_inner_subtext {
  width: 458px;
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .no_page .sec__not_inner_subtext {
    width: 100%;
    margin-bottom: 70px;
  }
}
.no_page .sec__not_inner_subtext p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.5;
}
@media screen and (max-width: 640px) {
  .no_page .sec__not_inner_subtext p {
    font-size: 1.4rem;
    line-height: 2;
  }
}

/*------------------------------------------------------------
  policy
------------------------------------------------------------*/
.policy .sec__policy {
  margin-top: 84px;
  margin-bottom: 140px;
}
@media screen and (max-width: 640px) {
  .policy .sec__policy {
    margin-top: 70px;
    margin-bottom: 120px;
  }
}
.policy .sec__policy_inner {
  width: 960px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .policy .sec__policy_inner {
    width: 100%;
    padding: 0 20px;
  }
}
.policy .sec__policy_inner_ttl {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7058823529;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 640px) {
  .policy .sec__policy_inner_ttl {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 60px;
  }
}
.policy .sec__policy_inner_text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .policy .sec__policy_inner_text {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 70px;
  }
}
.policy .sec__policy_inner .policy_list_box {
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .policy .sec__policy_inner .policy_list_box {
    margin-bottom: 40px;
  }
}
.policy .sec__policy_inner .policy_list_box_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  color: #FAC542;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .policy .sec__policy_inner .policy_list_box_ttl {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.policy .sec__policy_inner .policy_list_box_text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .policy .sec__policy_inner .policy_list_box_text {
    font-size: 1.3rem;
    line-height: 2;
  }
}