@charset "UTF-8";

.otgs-development-site-front-end {
  display: none;
}

/* ユーティリティー */

body {
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(13px, 1.82vw, 14px);
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  /*font-feature-settings: "palt";*/
  position: relative;
}

body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値では非表示 */
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

/*body.fade:after {
  opacity: 1;
}*/

main {
  overflow: hidden;
}

.page {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}

.page_in {
  max-width: 1230px;
  margin: 0 0 0 auto;
}

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

a {
  color: #222222;
  zoom: 1;
  text-decoration: none;
  transition: opacity 0.3s;
  display: block;
  word-break: break-all;
}

img[src*="_sp"] {
  display: none;
}

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

.img_cnt {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}

.img_cvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation-name: logoFade;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes logoFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.loader,
.loader:before,
.loader:after {
  width: 10px;
  height: 10px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
  border-radius: 90%;
}

.loader {
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  width: 10px;
  height: 10px;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

/*========= 画面遷移のためのCSS ===============*/

body {
  background: #fff;
  /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #fff;
  /*画面を開いた後の背景色を指定*/
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*上に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  bottom: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }

  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

/*下に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
  background: url(../imgs/common/bg_leather.png) repeat-y center top / contain;
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*====================================
フォント
===================================*/
.fgo {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  /*Thin:100; Regular:400; Medium: 500; bold: 700;  */
}

.futura {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  /* Book: 400;  Medium: 500; Bold: 700;*/
  font-style: normal;
  /* Oblique:italic; */
}

.century {
  font-family: "century-gothic", sans-serif;
  font-weight: 700;
  /* Bold: 700;*/
  font-style: normal;
}

.shippori {
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 400;
  /*Regular : 400; SemiBold : 600; */
  font-style: normal;
}

.lh_2732 {
  line-height: 2.732;
}

/*====================================
common
===================================*/
.bg_gy {
  background: #fafafa;
}

.low #mv {
  width: 96.88vw;
  margin: 0 0 50px auto;
}

.low #mv .imgblk {
  width: 100%;
  height: 23.5vw;
  max-height: 340px;
  min-height: 230px;
  border-radius: 30px 0 0 30px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.low #pagettl {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 4vw;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.low #pagettl.under-heading {
  color: #222;
  text-align: center;
  padding-top: 0;
  padding-bottom: 53px;
  margin-bottom: 0px;
  position: static;
  transform: initial;
  border-bottom: 1px solid #e5e5e5;
}

#pagettl .en {
  font-family: "Jost", sans-serif;
  font-size: 26.5px;
  font-weight: 700;
  display: block;
}

#pagettl .ja {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.low .pagettl {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 4vw;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.low .pagettl.under-heading {
  color: #222;
  text-align: center;
  padding-top: 0;
  padding-bottom: 53px;
  margin-bottom: 0px;
  position: static;
  transform: initial;
  border-bottom: 1px solid #e5e5e5;
}

.pagettl .en {
  font-family: "Jost", sans-serif;
  font-size: 26.5px;
  font-weight: 700;
  display: block;
}

.pagettl .ja {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.low #pankuzu ul {
  display: flex;
  font-size: 12px;
}

.low #pankuzu ul li:not(:last-child) {
  display: flex;
}

.low #pankuzu ul li:not(:last-child):after {
  content: "";
  width: 28px;
  height: 21px;
  background: url(../imgs/common/pankuzu.svg) no-repeat center center / 10px;
  display: block;
}

.low #pankuzu ul li a {
  color: #e5e5e5;
  transition: 0.3s;
}

.low #pankuzu ul li a:hover {
  color: #5c8650;
  opacity: 0.8;
}

.low #pankuzu ul li a.normal-link {
  color: #222;
}

.low #pankuzu ul li a.normal-link:hover {
  color: #222;
}

/*====================================
catch
===================================*/
.catch {
  text-align: center;
  margin-bottom: 65px;
}

.catch_ttl {
  font-family: "shippori-mincho", sans-serif;
  font-size: clamp(20px, 2.86vw, 22px);
  margin-bottom: 15px;
}

.catch_ttl + p {
  line-height: 2.75;
  letter-spacing: 0.06em;
  margin: 0 auto;
}

.catch_ttl span,
.catch_ttl + p span {
  display: inline-block;
}

/*====================================
secttl
===================================*/
.secttl .en {
  font-family: "Jost", sans-serif;
  font-size: clamp(18px, 2.73vw, 21px);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-right: 1em;
  color: #5c8650;
}

.secttl .ja {
  font-size: clamp(12px, 1.95vw, 15px);
  font-weight: 400;
  letter-spacing: 0.14em;
  display: inline-block;
  padding: 0 16px;
  position: relative;
}

.secttl .ja:before,
.secttl .ja:after {
  content: "";
  width: 10px;
  height: 0.5px;
  background: #222222;
  position: absolute;
  top: 50%;
}

.secttl .ja:before {
  left: 0;
}

.secttl .ja:after {
  right: 0;
}

/*====================================
infomation
===================================*/
#information .secttl {
  margin-bottom: 30px;
}

#information .info_list li {
  border-bottom: 1px solid #e5e5e5;
}

#information .info_list a {
  padding: 12px 1.46% 15px;
}

#information .info_list span {
  display: block;
}

#information .info_list .info_dt {
  font-size: clamp(14px, 1.95vw, 15px);
  font-family: "Jost", sans-serif;
  color: #5c8650;
}

#information .info_list a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/*====================================
pnav
===================================*/
#pnav .pnav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#pnav .pnav_list li {
  width: calc(100% / 6);
  padding: 0 6px;
  margin-bottom: 10px;
}

#pnav .pnav_list li a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  height: 100%;
  padding-bottom: 39px;
  border-bottom: 1px solid #e5e5e5;
  background: url(../imgs/common/arrow_btm.svg) no-repeat bottom 15px center/15px;
  transition: 0.3s;
}

#pnav .pnav_list li a span span {
  display: inline-block;
}

#pnav .pnav_list li a:hover {
  background-position: center bottom 12px;
  border-bottom: 1px solid #5c8650;
}

/*====================================
btn
===================================*/
.btn {
  font-size: clamp(14px, 2.08vw, 16px);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
  max-width: 244px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #fff url(../imgs/common/arrow_bk.svg) no-repeat center right 10% /5px 7px;
  transition: ease 0.3s;
}

.btn:hover {
  color: #fff;
  background: #000 url(../imgs/common/arrow_wh.svg) no-repeat center right 10% /5px 7px;
  animation: arrow 0.5s;
}

.gr_btn {
  font-size: clamp(14px, 2.08vw, 16px);
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
  max-width: 244px;
  border: 1px solid #5c8650;
  border-radius: 999px;
  background: #5c8650 url(../imgs/common/arrow_wh.svg) no-repeat center right 10% /5px 7px;
  transition: ease 0.3s;
}

.gr_btn:hover {
  animation: arrow 0.5s;
}

@keyframes arrow {
  50% {
    background-position: center right 7%;
  }

  100% {
    background-position: center right 10%;
  }
}

/*====================================
inview
===================================*/
.inv_mov {
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.tl_yb {
  transform: translate(0, 60px);
}

.tl_yt {
  transform: translate(0, -60px);
}

.tl_xl {
  transform: translate(-60px, 0);
}

.tl_xr {
  transform: translate(60px, 0);
}

.tl_rol {
  transform: rotate(-10deg);
}

.tl_ror {
  transform: rotate(10deg);
}

.tl_xt {
  transform: rotateX(180deg);
}

/*.tl_yt {
  transform: rotateY(180deg);
}*/

.mov {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition: opacity 1s, transform 1s;
}

.mov.delay100 {
  transition-delay: 100ms;
}

.mov.delay200 {
  transition-delay: 200ms;
}

.mov.delay300 {
  transition-delay: 300ms;
}

.mov.delay400 {
  transition-delay: 400ms;
}

.mov.delay500 {
  transition-delay: 500ms;
}

.mov.delay600 {
  transition-delay: 600ms;
}

.mov.delay700 {
  transition-delay: 700ms;
}

/* -------------------------------------
header
------------------------------------- */
header {
}

header.fixed {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(000, 000, 000, 0.12) 2px 2px 6px 3px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

header .head_top {
  width: 21.3%;
  max-width: 297px;
  min-width: 200px;
  padding: 0 20px;
}

header #head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 1390px;
  margin: 0 auto;
}

header #head #logo {
  font-size: clamp(13px, 1.82vw, 14px);
  width: 100%;
}

header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 30px;
  width: 78%;
  max-width: 950px;
  padding: 20px 0;
  transition: all 0.4s;
}

header #head.fixed nav {
  padding: 10px 0;
}

header nav #gnav {
  display: flex;
}

header nav #gnav > li {
  text-align: center;
}

header nav #gnav > li.sp {
  display: none;
}

header nav #gnav > li > a {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  padding: 10px 12px;
  position: relative;
  transition: color 0.5s;
}

header nav #gnav > li > a:hover {
  color: #5c8650;
}

header nav #lang {
  display: flex;
  justify-content: space-between;
  width: 84px;
  padding-left: 28px;
  background: url(../imgs/common/lang_logo.svg) 0 center no-repeat;
  background-size: 24px auto;
}

header nav #lang li {
  text-align: center;
  width: 50%;
  max-width: 23px;
  padding: 5px 0;
}

header nav #lang li a {
  font-weight: 500;
  transition: color 0.5s;
}

header nav #lang li a:hover {
  color: #5c8650;
}

header nav #lang li.np {
  position: relative;
}

header nav #lang li.np:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 7px;
  left: 0;
}

header nav a.nav_reserv {
  display: block;
  color: #fff;
  text-align: center;
  letter-spacing: 0.28em;
  padding: 10px 28px 10px 20px;
  width: 164px;
  background: #5c8650 url(../imgs/common/arrow_wh.svg) right 15px center no-repeat;
  background-size: 4px 6px;
  cursor: pointer;
}

header .head_top a#menu_btn {
  display: none;
  width: 38px;
  height: 38px;
  background: url(../imgs/menu_open.svg) center center no-repeat;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 5;
  transition: all 0.4s;
}

/* header .head_top a#menu_btn.active {
  background-image: url(../imgs/menu_close.svg);
} */

header .head_top a#menu_btn,
header .head_top a#menu_btn span {
  display: inline-block;
  transition: all 0.4s;
}

header .head_top a#menu_btn {
  display: none;
  width: 49px;
  height: 49px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
}

header .head_top a#menu_btn span {
  width: 36px;
  height: 2px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #5c8650;
  position: absolute;
  left: 0;
  right: 0;
}

header .head_top a#menu_btn span:nth-of-type(1) {
  top: 15px;
}

header .head_top a#menu_btn span:nth-of-type(2) {
  top: 24px;
}

header .head_top a#menu_btn span:nth-of-type(3) {
  top: 32px;
}

header .head_top a#menu_btn.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-315deg);
}

header .head_top a#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

header .head_top a#menu_btn.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(315deg);
}

/* -------------------------------------
footer
------------------------------------- */
footer {
  color: #fff;
  font-size: 14px;
  text-align: left;
  background-color: #222;
}

footer a {
  color: #fff;
}

footer .in {
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  width: calc(100% - 40px);
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 0 110px;
}

footer .in .lft {
  width: 100%;
  max-width: 360px;
}

footer .in .lft #f_logo {
  width: 100%;
  max-width: 262px;
  margin-bottom: 37px;
}

footer .in .lft .adbk {
}

footer .in .lft .add {
  font-size: 15px;
  width: 100%;
}

footer .in .lft .telbk {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

footer .in .lft .sns_blk {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 94px;
}

footer .in .lft .sns_blk li {
  width: calc((100% - 20px) / 2);
  max-width: 37px;
  height: auto;
}

footer .in .lft .sns_blk li a {
  position: relative;
  transition: bottom 0.2s ease-out;
  bottom: 0;
}

footer .in .lft .sns_blk li a:hover {
  bottom: -3px;
}

footer .in .fmenu {
  display: none;
}

footer .in nav {
  width: calc(100% - 380px);
  max-width: 536px;
}

footer .in nav .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .in nav .fnav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  min-width: 220px;
}

footer .in nav .fnav_r .fnav:last-child {
  padding-top: 69px;
}

footer .in nav .fnav li a {
  display: inline-block;
  padding: 5px 0 5px 50px;
  position: relative;
  transition: all 0.2s ease-out;
}

footer .in nav .fnav li a:before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #5c8650;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease-out;
}

footer .in nav .fnav li a:hover {
  color: #5c8650;
}

footer .in nav .fnav li a:hover:before {
  width: 40px;
}

footer #cp {
  font-size: 12px;
  text-align: center;
  padding: 17px 10px;
}

/* -------------------------------------
404 Not found
------------------------------------- */
.notfound {
  text-align: center;
  padding: 250px 0;
}

.notfound .page {
  padding-left: 0;
}

.notfound .ttl {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.notfound p {
  font-size: 16px;
  margin-bottom: 15px;
}

.notfound p strong {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.notfound a {
  text-decoration: underline;
  display: inline-block;
}

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

@media screen and (max-width: 1060px) {
  /* -------------------------------------
footer
------------------------------------- */
  footer .in {
    display: block;
    max-width: 490px;
  }

  footer .in .lft {
    letter-spacing: 0.1em;
    width: 100%;
    max-width: 390px;
    margin: 0 auto 25px;
  }

  footer .in .lft #f_logo {
    margin: 0 auto 37px;
  }

  footer .in nav {
    width: 100%;
  }

  footer .in nav .fnav li a {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
  }

  footer .in .policy_link.pc {
    display: none;
  }

  footer .in .policy_link.sp {
    display: block;
  }
}

@media screen and (max-width: 980px) {
  /* -------------------------------------
footer
------------------------------------- */
  footer .in {
    display: block;
    max-width: 440px;
    margin: 0 auto;
    padding: 40px 0;
  }

  footer .in .lft {
    margin: 0 auto 20px;
  }

  footer .in .lft #f_logo {
    margin: 0 auto 37px;
  }

  footer .in nav#footer_nav {
    width: 100%;
  }

  footer .in nav .fnav {
    min-width: auto;
  }

  /* footer .in nav .fnav_r .fnav:last-child {
    padding-top: 0;
  } */
}

@media screen and (max-width: 880px) {
  /* -------------------------------------
header
------------------------------------- */
  header .head_top {
    padding: 0;
    min-width: 160px;
  }

  header nav #gnav > li > a {
    font-size: 14px;
    padding: 10px 8px;
  }

  #pnav .pnav_list {
    max-width: 396px;
    margin: 0 auto;
  }

  #pnav .pnav_list li {
    width: 132px;
  }
}

@media screen and (max-width: 768px) {
  body.fixed {
    overflow-y: hidden;
  }

  /* -------------------------------------
header
------------------------------------- */
  header {
    border-top: none;
  }

  header #head {
    width: 100%;
    z-index: 5;
  }

  header .head_top {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    position: relative;
    z-index: 5;
  }

  header .head_top a#menu_btn {
    display: block;
  }

  header #head nav {
    display: none;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding: 70px 0 60px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -20;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }

  header.active #head nav {
    display: block;
    /* flex-direction: column;
    align-items: center;
    justify-content: center; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
  }

  header.active .head_top {
  }

  header #head #logo {
    max-width: 160px;
  }

  header nav #gnav {
    display: block;
    margin-bottom: 25px;
  }

  header nav #gnav li {
    display: block;
    padding: 0 30px;
    border-bottom: 1px solid #d5d5d5;
  }

  header nav #gnav li.sp {
    display: block;
  }

  header nav #gnav li a {
    font-size: 15px;
    display: block;
    max-width: 310px;
    margin: 0 auto;
    padding: 10px 15px;
  }

  header nav #gnav > li a:hover {
    color: #222;
  }

  header nav #lang {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 25px;
  }

  header nav a.nav_reserv{
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  a.sptel {
    cursor: pointer;
    pointer-events: auto;
  }
}

@media screen and (max-width: 540px) {
  /*====================================
	catch
	===================================*/
  .catch_ttl + p {
    text-align: left;
  }

  .catch_ttl + p span {
    display: inline;
  }

  footer .in .lft .sns_blk {
    margin: 0 auto;
  }

  footer .in nav .fnav {
    display: block;
    margin: 0 auto 40px;
    width: 100%;
    max-width: 258px;
  }

  footer .in nav .fnav li {
    display: block;
    border-bottom: 1px solid #d5d5d5;
  }

  footer .in nav .fnav li a {
    text-align: center;
    display: block;
    max-width: 310px;
    margin: 0 auto;
    padding: 10px 15px;
  }

  footer .in nav .fnav li a:before {
    content: none;
  }

  footer .in nav .fnav_r {
    margin: 0 auto;
    width: 100%;
    max-width: 258px;
  }

  footer .in nav .fnav_r .fnav:last-child {
    padding-top: 0px;
  }
}

@media screen and (max-width: 440px) {
  #pnav .pnav_list {
    max-width: 270px;
    justify-content: space-between;
  }
}

@media screen and (min-width: 769px) {
}

#ui-datepicker-div {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.head_reservation {
  display: none;
}

#reservation.reservation--modal {
  padding-top: 0;
}

#reservation.reservation--modal .page {
  width: calc(100% - 40px);
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -37%);
  -webkit-transform: translate(-50%, -37%);
  -ms-transform: translate(-50%, -37%);
}

.reserv_btn.reserv_btn--rental {
  display: none;
}

@media screen and (max-width: 768px) {
  .head_reservation {
    display: block;
    width: 30px;
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    cursor: pointer;
  }

  .reserv_btn.reserv_btn--rental {
    margin-top: 25px;
  }
}

@media screen and (max-width: 420px) {
  .reserv_btn.reserv_btn--rental {
    font-size: 14px;
  }
}

.plans_link.sp-btn {
  display: none !important;
}



@media screen and (max-width: 768px) {
  .plans_link.sp-btn {
    display: flex !important;
    padding-top: 15px;
  }
}

/* -------------------------------------
reservation
------------------------------------- */
#reservation {
  padding-top: 65px;
}

#reservation .tab {
  display: flex;
  width: 100%;
  max-width: 378px;
}

#reservation .tablist {
  color: #5c8650;
  line-height: 1;
  text-align: center;
  min-width: 173px;
  padding: 10px 15px;
  background-color: #fff;
  box-shadow: rgba(000, 000, 000, 0.1) 2px 2px 6px 3px;
  cursor: pointer;
}

#reservation .tablist.active {
  color: #fff;
  background-color: #5c8650;
}

.reserv_cont {
  padding: 30px 50px;
  margin-bottom: 15px;
  border-top: 4px solid #5c8650;
  box-shadow: rgba(000, 000, 000, 0.1) 2px 2px 6px 3px;
  position: relative;
  background-color: #fff;
}

.reserv_cont:before {
  content: "";
  display: block;
  width: 47px;
  height: 4px;
  background-color: #5c8650;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.reserv_cont .secttl {
  width: 210px;

  border-right: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.reserv_cont .reserv_item {
  width: calc(100% - 210px);
}

.reserv_cont__text {
  font-size: 13px;
  line-height: 1.59;
  letter-spacing: 0.06em;
}
.reserv_btn.reserv_btn--type02 {
  font-size: 14px;
  padding: 10px 21px 10px 10px;
  line-height: 1.17;
  letter-spacing: 0.28em;
}


.plans_link {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  width: 100%;
  max-width: 459px;
  margin-left: auto;
}
.plans_link2 {
  display: none;
  width: fit-content;
  margin-left: auto;
}

.plans_link li,
.plans_link2 li {
  font-size: clamp(11px, 2.71vw, 13px);
  font-weight: 700;
  min-width: 143px;
  padding: 5px 18px 5px 0;
  border-bottom: 1px solid #222;
  background: url(../imgs/common/arrow_bk.svg) right center no-repeat;
  background-size: 5px auto;
  transition: ease 0.3s;
}

.plans_link li:not(:last-child) {
  margin-right: 15px;
}
.plans_link2 li:not(:last-child) {
  margin-right: 15px;
}

/* -------------------------------------
予約パーツ
------------------------------------- */
.reserv_item input,
.reserv_item select {
  background: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}

.reserv_cont_in:nth-child(2) {
  display: none;
}

:focus {
  outline: none;
}

.h-s-block__item1 {
  display: flex;
  align-items: center;
}

.h-s-block--1 {
  margin-bottom: 10px;
}

.check-in {
  display: flex;
  margin-right: 30px;
}

.check-out {
  display: flex;
}

.h-s-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
}

.h-s-block__row {
  display: flex;
}

.h-s-left {
  max-width: 658px;
  width: 100%;
}

.reserv_item {
  padding-left: 3%;
}

.reserv-input {
  width: 30px;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #222222;
  text-align: center;
  font-size: 16px;
  margin-left: 4px;
  margin-right: 4px;
  font-family: "Jost", sans-serif;
  -webkit-appearance: none;
}

.h-s-block__row:not(:last-child) {
  margin-right: 30px;
}

.h-s-block__label {
  font-size: 14px;
  font-weight: bold;
}

.hs_js,
.hs_jk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 0;
}

.h-s-block__unit {
  line-height: 1;
  font-size: 14px;
  display: inline-block;
  position: relative;
  top: 3px;
}

.h-s-block__select {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #222222;
}

.check-out input,
.check-in input {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #222222;
  text-align: center;
  font-size: 14px;
  text-align: center;
  width: 110px;
  letter-spacing: 0.1em;
  margin-left: 16px;
  font-family: "Jost", sans-serif;
}

.check-out input::placeholder,
.check-in input::placeholder {
  color: #222222;
}

.reserv_btn {
  color: #fff;
  text-align: center;
  letter-spacing: 0.28em;
  padding: 10px 28px 10px 20px;
  min-width: 195px;
  background: #5c8650 url(../imgs/common/arrow_wh.svg) right 15px center no-repeat;
  background-size: 4px 6px;
  border: none;
  letter-spacing: 0.28em;
  font-size: 17px;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-left: 20px;
}

.reserv_btn:hover {
  opacity: 0.8;
}

.h-s-block__select {
  overflow: hidden;
  width: 100%;
  margin-left: 16px;
}

.h-s-block__select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  color: #222222;
  font-size: 14px;
}

.h-s-block__select select::-ms-expand {
  display: none;
}

.h-s-block__select {
  position: relative;
}

.h-s-block__select::before {
  position: absolute;
  top: 0.8em;
  right: 0.3em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #222222;
  pointer-events: none;
}

.h-s-block__num {
  display: flex;
  align-items: baseline;
}

.h-s-block__num .h-s-block__select {
  width: 40px;
  margin-left: 7px;
  margin-right: 7px;
}

@media screen and (max-width: 1441px) {
  .reserv_cont {
    min-height: 162px;
  }
}
@media screen and (max-width: 920px) {
  .hs_js,
  .hs_jk {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  /* -------------------------------------
予約パーツ
------------------------------------- */

  #reservation .tablist {
    width: 50%;
    min-width: auto;
  }

  #reservation .tab {
    max-width: 100%;
  }

  .reserv_cont {
    padding: 20px 6%;
    z-index: 3;
  }

  .reserv_cont_in .flex {
    flex-direction: column;
    align-items: center;
  }

  .reserv_cont .reserv_item {
    width: 100%;
    padding-left: 0;
  }

  .h-s-left,
  .hs_js,
  .hs_jk {
    width: 100%;
    padding-right: 0;
  }

  .reserv_cont .secttl {
    display: block;
    width: 100%;
    text-align: center;
    border-right: none;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .reserv_cont_in.renewal-form .secttl{
    width: 100%!important;
  }

  .check-out,
  .check-in {
    flex-wrap: wrap;
  }

  .check-out input,
  .check-in input {
  }

  .reserv_cont:before {
    display: none;
  }

  .reserv_btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  #reservation .tablist.tab3,
  #reservation .tablist.tab3.active {
    display: none;
  }
  .reserv_cont_in.panel3 {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .plans_link li {
    min-width: auto;
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 374px) {
  #reservation.reservation--modal .page {
    top: 48%;
    transform: translate(-50%, -48%);
    -webkit-transform: translate(-50%, -48%);
    -ms-transform: translate(-50%, -48%);
  }

  .plans_link {
    flex-direction: column;
    width: 199px;
  }
}
