@charset "UTF-8";
/*
 * htmlのフォントサイズ
 * @args ベースの画面幅
 */
/*
   * ルートのフォントサイズを基準にフォントサイズを可変にする
   * @args 最大値（デザイン上の数値）
   */
/*
   * get_vwの設定
   */
/*
 * 指定したサイズで%を計算
*/
/*
   * breakpointの設定
   */

/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
/** --------------------------------
* 使用フォント
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  position: relative;
}

body {
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
  margin: 0;
}

a {
  text-decoration: none;
}

#root,
#__next {
  isolation: isolate;
}

ul {
  list-style: none;
}

.pc_contents {
  display: block !important;
}

.pc_contentsFlex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.sp_contents {
  display: none !important;
}

.sp_contentsFlex {
  display: none !important;
}

.justifyContentCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-pc_none {
  display: none !important;
}

.u-tb_none {
  display: none !important;
}

.u-sp_none {
  display: block !important;
}

.mb-30 {
  margin-bottom: 30px;
}

.humberger_line_outer {
  background: #fff;
  opacity: 0.5;
  width: max(50px, 3.90625vw);
  height: max(50px, 3.90625vw);
  position: fixed;
  right: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /* スクロール時の処理 */
  /* 開いた際の処理 */
}
.humberger_line_outer.is-active {
  opacity: 1;
  z-index: 11;
}
.humberger_line_outer.is-drawer_open {
  opacity: 1;
  background: transparent;
  z-index: 11;
}
.humberger_line_outer.is-drawer_open .humberger_line {
  opacity: 0;
}
.humberger_line_outer.is-drawer_open .humberger_line_before {
  opacity: 1;
  top: max(25px, 1.953125vw);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.humberger_line_outer.is-drawer_open .humberger_line_after {
  opacity: 1;
  bottom: max(25px, 1.953125vw);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.humberger_line, .humberger_line_before, .humberger_line_after {
  background-color: #686058;
  width: max(23px, 1.796875vw);
  height: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: max(13px, 1.015625vw);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}
.humberger_line {
  top: max(25px, 1.953125vw);
}
.humberger_line_before {
  top: max(20px, 1.5625vw);
}
.humberger_line_after {
  bottom: max(19px, 1.484375vw);
}
.humberger_icon {
  display: block;
  width: min(134px, 100%);
  margin-bottom: 75px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.humberger_icon:hover {
  opacity: 0.7;
}
.humberger_cont {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: min(390px, 100%);
  height: 100vh;
  background-color: #bbf91e;
  padding: 30px 20px 110px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}
.humberger_cont.is-drawer_open {
  opacity: 1;
  right: 0;
  z-index: 10;
}
.humberger_list {
  margin-bottom: 60px;
}
.humberger_list_item > a {
  font-size: 16px;
  font-weight: 400;
}
.humberger_list_item + .humberger_list_item {
  margin-top: 20px;
}
.humberger_list_link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.humberger_list_link:hover {
  opacity: 0.8;
}
.humberger_instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.humberger_instagram > img {
  width: 30px;
}
.humberger_instagram:hover {
  opacity: 0.8;
}
.humberger_instagram_txt {
  font-size: 16px;
  font-weight: 500;
}

.language-dropdown {
  width: 64px;
  height: max(50px, 3.90625vw);
  position: fixed;
  right: max(60px, 4.6875vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  z-index: -1;
}
.language-dropdown.is-active {
  opacity: 1;
  z-index: 11;
}
.language-dropdown.is-drawer_open {
  opacity: 1;
  z-index: 11;
}
.language-dropdown.is-drawer_open .dropdown-arrow::before {
  border-right: 1px solid #686058;
  border-bottom: 1px solid #686058;
}
.language-dropdown.is-drawer_open .language-item a {
  color: #686058;
}
.language-dropdown .selected-language {
  cursor: pointer;
  padding: 2px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #686058;
}
.language-dropdown .dropdown-arrow {
  margin-left: 5px;
}
.language-dropdown .dropdown-arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #686058;
  border-bottom: 1px solid #686058;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.language-dropdown .dropdown-arrow.is-active::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.language-dropdown .language-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 11;
}
.language-dropdown .language-item {
  padding: 2px 0px;
}
.language-dropdown .language-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #686058;
}
.language-dropdown .language-flag {
  width: 16px;
  height: 11px;
  margin-right: 5px;
}
.language-dropdown .language-list.show {
  display: block;
}

.language_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 16px;
  margin-bottom: 50px;
}
.language_list .lang-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  position: relative;
}
.language_list .lang-item::before {
  content: "|";
  position: absolute;
  display: block;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.language_list .lang-item-first::before {
  display: none;
}
.language_list .current-lang {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer {
  background-color: #bbf91e;
  position: relative;
}
.footer_inner {
  margin: 0 auto;
  padding: 80px 150px 15px;
}
.footer_img {
  display: block;
  width: min(134px, 100%);
  margin-bottom: 55px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer_img:hover {
  opacity: 0.7;
}
.footer_instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-bottom: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer_instagram:hover {
  opacity: 0.7;
}
.footer_instagram > img {
  width: 30px;
}
.footer_instagram_txt {
  font-size: 20px;
}
.footer_about {
  margin-bottom: 50px;
}
.footer_about_ttl {
  font-size: 32px;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}
.footer_about_txt {
  font-size: 16px;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 1px;
}
.footer_ttl {
  font-size: min(11.71875vw, 114px);
  font-family: "Raleway", sans-serif;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: min(11.71875vw, 100px);
}
.footer_ttl span {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
.footer_ttl span::before {
  content: "";
  border-bottom: 1px solid #686058;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: min(1.8229166667vw, 20px);
}
.footer_ttl .last {
  margin-top: -15px;
  display: block;
  padding-right: 0;
}
.footer_contact {
  position: relative;
  width: min(308px, 100%);
  height: 42px;
  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;
  text-align: center;
  margin: 0 auto min(10.4166666667vw, 80px) 0;
  border: 1px solid #686058;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer_contact:hover {
  opacity: 0.7;
}
.footer_contact > img {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 24px;
}
.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(5.2083333333vw, 50px);
}
.footer_menu_link {
  font-size: 12px;
}
.footer_menu_link:hover {
  text-decoration: underline;
}
.footer_menu_link--big {
  font-size: 20px;
}

.copy_right {
  background: #686058;
  padding: 20px 20px 110px;
}
.copy_right_txt {
  color: #fff;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

.fixBtn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.fixBtn.is-active {
  z-index: 9;
  opacity: 1;
}
.fixBtn_reserve {
  color: #686058;
  background-color: #14ffff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
  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;
  gap: 20px;
  padding: 18px 0 30px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
.fixBtn_reserve:hover {
  background-color: #fff;
}
.fixBtn_reserve::before {
  content: "";
  background: url(../img/top/icon_check.webp);
  background-size: 100%;
  width: 24px;
  height: 22px;
  display: block;
}
.fixBtn_top {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 8px;
  width: 50px;
  height: 50px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #010000;
  gap: 7px;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.fixBtn_top:hover {
  opacity: 0.7;
}
.fixBtn_top::before {
  content: "";
  background: url(../img/top/icon_top_arrow.webp);
  background-size: 100%;
  width: 18px;
  height: 7px;
  display: block;
}

@-webkit-keyframes mask-bg {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  40%, 60% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}

@keyframes mask-bg {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  40%, 60% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
.c-animation.sa {
  display: inline-block;
  overflow: hidden;
  position: relative;
  color: transparent;
  -webkit-transition: color 0ms 450ms;
  transition: color 0ms 450ms;
}
.c-animation.sa::after {
  content: "";
  background: #686058;
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(0, calc(100% + 2px));
          transform: translate(0, calc(100% + 2px));
}
.c-animation.sa.show {
  color: #686058;
}
.c-animation.sa.show::after {
  -webkit-animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
          animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}

.p-bread--single {
  margin-bottom: 40px;
}
.p-bread_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-bread_list li {
  position: relative;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}
.p-bread_list li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.4;
}
.p-bread_list li + li {
  padding-left: 15px;
  margin-left: 0px;
}
.p-bread_list li + li::before {
  content: ">";
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
}

html {
  margin-top: 0 !important;
}

body {
  background: #fff;
  color: #686058;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  font-weight: 400;
}

main.main {
  width: 100%;
}

p,
a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #686058;
}

a {
  cursor: pointer;
}

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

.text-black a {
  color: #686058 !important;
}
.text-black:hover a::before, .text-black:active a::before {
  content: none !important;
}
@media screen and (max-width: 1280px) {
  body {
    margin: 0;
  }
  .footer_inner {
    width: min(980px, 100%);
    padding: 70px 50px 15px;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  body {
    margin: 0;
  }
  .u-tb_none {
    display: block !important;
  }
  .footer_inner {
    padding: 70px min(40px, 6.5104166667vw) 30px;
  }
  .footer_img {
    margin-bottom: 50px;
  }
  .footer_instagram {
    margin-bottom: 50px;
  }
  .footer_ttl {
    font-size: min(12.8205128205vw, 90px);
    margin-bottom: min(15.3846153846vw, 90px);
  }
  .footer_contact {
    margin-bottom: max(50px, 13.0208333333vw);
  }
  .fixBtn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 75px;
  }
  .fixBtn_reserve {
    width: calc(100% - 90px);
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    height: 100%;
    padding: 15px min(16px, 5.7291666667vw);
  }
  .fixBtn_reserve::before {
    position: absolute;
    left: min(16px, 5.7291666667vw);
  }
  .fixBtn_top {
    width: min(90px, 100%);
    height: 100%;
    padding: 15px min(16px, 5.7291666667vw);
  }
}
@media screen and (max-width: 500px) {
  body {
    margin: 0;
  }
  .pc_contents {
    display: none !important;
  }
  .pc_contentsFlex {
    display: none !important;
  }
  .sp_contents {
    display: block !important;
  }
  .sp_contentsFlex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-pc_none {
    display: block !important;
  }
  .u-sp_none {
    display: none !important;
  }
  .humberger_cont {
    width: 100%;
  }
  .footer_about {
    margin-bottom: 30px;
  }
  .footer_ttl .last {
    margin-top: -1.2820512821vw;
  }
  .footer_menu {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .footer_menu_item--big {
    margin-bottom: 10px;
  }
  html {
    margin-top: 0 !important;
  }
}