@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Noto+Serif+JP:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Only output numerical values
/* 数値のみ出力する
====================================== */
/* font $size
====================================== */
/* font family
====================================== */
/* Break point ブレイクポイント
====================================== */
/* max site width コンテンツ最大幅
====================================== */
/* colors 色管理
====================================== */
/* media query
====================================== */
/* font-size フォントサイズのrem表示用
====================================== */
/* font-weight フォントの太さの指定用
====================================== */
html, body {
  overflow-x: clip;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #2C2C2C;
  scrollbar-gutter: stable;
}

body {
  font-family: "Yu Gothic", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
body.offcanvas-open {
  overflow: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Yu Gothic", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #2C2C2C;
  line-height: 1.2;
}

p {
  margin: 0;
}
p + p {
  margin-top: 1em;
}

ul, dl, figure {
  margin: 0;
  padding: 0;
}

dt {
  font-weight: normal;
}

ul, li {
  list-style: none;
}

a {
  color: #2C2C2C;
  transition: 0.4s;
}
a:before, a:after {
  transition: 0.4s;
}
a:hover {
  color: #2C2C2C;
  text-decoration: none;
}

em {
  font-style: normal;
  font-weight: normal;
  color: inherit;
}

input,
select,
textarea {
  outline: none;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1rem;
}

input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]):not([type=submit]):not([type=reset]):not([type=button]):not([type=image]),
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 1em;
  border: 0;
  box-sizing: border-box;
  border-radius: 4px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  background-color: #F6F6F4;
  color: #2C2C2C;
  outline: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}

input[type=radio] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 27px;
  height: 27px;
  border: 1px solid #707070;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
input[type=radio]::before {
  content: "";
  display: inline-block;
  width: 55%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #707070;
  transform: scale(0);
  transition: transform 0.15s ease;
}
input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid #2C2C2C;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
input[type=checkbox]::before {
  content: "";
  display: block;
  width: 90%;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_check.svg) no-repeat center/contain;
  transform: scale(0);
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}

textarea {
  box-sizing: border-box;
  min-height: 280px;
  padding-block: 1.5em;
}

address {
  margin-bottom: 0;
}

/* uk-container
====================================== */
.uk-container {
  max-width: 1120px;
  padding-inline: 30px;
}
.uk-container-small {
  max-width: 980px;
}
.uk-container-large {
  max-width: 1180px;
}
.uk-container-expand {
  max-width: none;
}
.uk-container-pi0 {
  padding-inline: 0;
}

/* Contact Form 7
====================================== */
.wpcf7 .ajax-loader {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

/* reCAPTCHA
====================================== */
.grecaptcha-badge {
  visibility: hidden;
}

/* Margin class in 5px steps
/* 余白調整用のクラス　5px刻みで20回処理を繰り返し
====================================== */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.com-txt-color-text {
  color: #2C2C2C !important;
}

.com-bg-text {
  background-color: #2C2C2C !important;
}

.com-txt-color-main {
  color: #305745 !important;
}

.com-bg-main {
  background-color: #305745 !important;
}

.com-txt-color-danger {
  color: #D01C1C !important;
}

.com-bg-danger {
  background-color: #D01C1C !important;
}

.com-txt-color-white {
  color: #fff !important;
}

.com-bg-white {
  background-color: #fff !important;
}

.com-txt-color-gray_01 {
  color: #707070 !important;
}

.com-bg-gray_01 {
  background-color: #707070 !important;
}

.com-txt-color-gray_02 {
  color: #808080 !important;
}

.com-bg-gray_02 {
  background-color: #808080 !important;
}

.com-txt-color-gray_03 {
  color: #ACACAC !important;
}

.com-bg-gray_03 {
  background-color: #ACACAC !important;
}

.com-txt-color-gray_04 {
  color: #686868 !important;
}

.com-bg-gray_04 {
  background-color: #686868 !important;
}

.com-txt-color-gray_05 {
  color: #D4D4D4 !important;
}

.com-bg-gray_05 {
  background-color: #D4D4D4 !important;
}

.com-txt-color-black_01 {
  color: #333 !important;
}

.com-bg-black_01 {
  background-color: #333 !important;
}

.com-txt-color-black_02 {
  color: #050505 !important;
}

.com-bg-black_02 {
  background-color: #050505 !important;
}

.com-txt-color-brown_01 {
  color: #DDD4C3 !important;
}

.com-bg-brown_01 {
  background-color: #DDD4C3 !important;
}

.com-txt-color-brown_02 {
  color: #E4E1DD !important;
}

.com-bg-brown_02 {
  background-color: #E4E1DD !important;
}

.com-txt-color-brown_03 {
  color: #F6F6F4 !important;
}

.com-bg-brown_03 {
  background-color: #F6F6F4 !important;
}

.com-txt-color-brown_04 {
  color: #A69B8F !important;
}

.com-bg-brown_04 {
  background-color: #A69B8F !important;
}

.com-txt-color-brown_05 {
  color: #C3BCAF !important;
}

.com-bg-brown_05 {
  background-color: #C3BCAF !important;
}

.com-txt-color-yellow_01 {
  color: #F6F6F4 !important;
}

.com-bg-yellow_01 {
  background-color: #F6F6F4 !important;
}

.com-txt-color-green_01 {
  color: #6B907F !important;
}

.com-bg-green_01 {
  background-color: #6B907F !important;
}

.com-txt-color-facebook {
  color: #3b5999 !important;
}

.com-bg-facebook {
  background-color: #3b5999 !important;
}

.com-txt-color-x {
  color: #000 !important;
}

.com-bg-x {
  background-color: #000 !important;
}

.com-txt-color-youtube {
  color: #cd201f !important;
}

.com-bg-youtube {
  background-color: #cd201f !important;
}

.com-txt-color-line {
  color: #18ba07 !important;
}

.com-bg-line {
  background-color: #18ba07 !important;
}

/* #header
====================================== */
#header {
  background-color: #fff;
  padding-block: 10px;
  position: relative;
}
@media (min-width: 960px) {
  #header {
    padding-block: 20px;
  }
}

/* parts
--------------------------------- */
/* #header-offcanvas-btn
--------------------------------- */
#header-offcanvas-btn {
  --padding: 10px;
  display: block;
  position: relative;
  width: 30px;
  aspect-ratio: 30/7;
  cursor: pointer;
  box-sizing: content-box;
  padding: 10px;
  background-color: transparent;
}
#header-offcanvas-btn span {
  display: block;
  position: absolute;
  left: var(--padding);
  width: calc(100% - var(--padding) * 2);
  height: 1px;
  background-color: #707070;
  transform-origin: center left;
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}
#header-offcanvas-btn span:first-child {
  top: var(--padding);
}
#header-offcanvas-btn span:last-child {
  bottom: var(--padding);
}
#header-offcanvas-btn.js-actived span:first-child {
  transform: rotate(11deg);
}
#header-offcanvas-btn.js-actived span:last-child {
  transform: rotate(-11deg);
}

/* #header-logo　
--------------------------------- */
#header-logo {
  max-width: 70px;
}
@media (min-width: 960px) {
  #header-logo {
    max-width: 120px;
  }
}

/* #header-tel　
--------------------------------- */
/* gnav
====================================== */
#gnav {
  display: flex;
  align-items: baseline;
  text-align: center;
  gap: 1.5em;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: "Source Han Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  margin-top: 17px;
}
#gnav .link {
  display: block;
  color: #808080;
  padding-inline: 1em;
}
#gnav .link .eng, #gnav .link .jp {
  display: block;
  will-change: transform;
  transition: all 0.3s ease-in-out;
}
#gnav .link .eng {
  font-size: 110%;
  font-weight: 600;
  letter-spacing: 0.13em;
  font-family: "Kohinoor Bangla", "Noto Sans Bengali", "Vrinda", "Bangla Sangam MN", sans-serif;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 0.4em;
}
#gnav .link .jp .sub {
  font-size: 110%;
  font-family: "Kohinoor Bangla", "Noto Sans Bengali", "Vrinda", "Bangla Sangam MN", sans-serif;
  letter-spacing: 0.026em;
}
#gnav .link:hover .jp, #gnav .link:hover .eng {
  transform: translateY(-5px);
  color: #305745;
}

/* #lnav
====================================== */
.header-wrapper {
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .header-wrapper {
    padding-inline: 50px;
  }
}

.header-btn-01 {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  background-color: #305745;
  color: #fff;
  border-radius: 4px;
  padding: 1em;
}
.header-btn-01.tel {
  letter-spacing: 0.11em;
}
.header-btn-01.tel .num {
  letter-spacing: 0.05em;
  font-size: 110%;
  font-family: "Futura", "Futura PT", "Avenir Next", Avenir, "Century Gothic", "URW Gothic", sans-serif;
}
.header-btn-01:hover {
  color: #fff;
}

/* #footer
====================================== */
/* footer-logo
====================================== */
#footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: inherit;
}
#footer-logo > a {
  display: block;
  color: inherit;
}
#footer-logo > a:hover {
  opacity: 0.6;
}
#footer-logo small {
  font-size: 72%;
}

/* footer-head
====================================== */
/* footer-body
====================================== */
.footer-body {
  background-color: #2C2C2C;
  color: #fff;
  padding-block: 120px 80px;
}
@media (min-width: 960px) {
  .footer-body {
    padding-block: 180px;
  }
}

/* footer-foot
====================================== */
.footer-foot {
  background-color: #fff;
  padding-block: 40px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1;
  font-family: "Source Han Serif", "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .footer-foot {
    font-size: 16px;
    font-size: 1rem;
  }
}

/* parts
====================================== */
/* pagetop
-------------------------------------- */
.pagetop {
  font-size: 10px;
  font-size: 0.625rem;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
}

/* footer-nav
-------------------------------------- */
/* .copyright
--------------------------------- */
.copyright {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
}

.footer-text-01 {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2.1538461538;
  font-weight: 500;
}
@media (min-width: 960px) {
  .footer-text-01 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.2142857143;
  }
}

.footer-list-01 {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 2.1;
  font-weight: 500;
}
.footer-list-01 a {
  color: inherit;
}
.footer-list-01 a:hover {
  opacity: 0.6;
}
.footer-list-01 li + li {
  margin-top: 0.5em;
}
.footer-list-01 .tel {
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.footer-dl-01 dt {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  color: #ACACAC;
  margin-bottom: 0.5em;
}

#offcanvas {
  position: absolute;
  width: 100%;
  height: calc(100svh - 100%);
  top: 100%;
  background-color: #fff;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 960px) {
  #offcanvas {
    padding: 80px 50px;
  }
}
#offcanvas.js-actived {
  opacity: 1;
  visibility: visible;
}

#offcanvas-menu {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Source Han Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 500;
  color: #808080;
  letter-spacing: 0.08em;
}
#offcanvas-menu .link {
  display: flex;
  align-items: baseline;
  color: inherit;
  gap: 1.5em;
  padding-block: 1em;
}
#offcanvas-menu .link .eng, #offcanvas-menu .link .jp {
  transition: color 0.3s ease-in-out;
}
#offcanvas-menu .link .eng {
  font-family: "Kohinoor Bangla", "Noto Sans Bengali", "Vrinda", "Bangla Sangam MN", sans-serif;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
  flex-shrink: 0;
}
#offcanvas-menu .link .jp {
  flex: 1;
}
#offcanvas-menu .link .sub {
  font-size: 110%;
  font-family: "Kohinoor Bangla", "Noto Sans Bengali", "Vrinda", "Bangla Sangam MN", sans-serif;
}
#offcanvas-menu .link:hover {
  color: #305745;
}
#offcanvas-menu .link:hover .eng, #offcanvas-menu .link:hover .jp {
  color: inherit;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2C2C2C;
  overscroll-behavior: contain;
  box-sizing: border-box;
}

.loader-bar {
  width: 155px;
  height: 1px;
  background-color: #808080;
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}

.loader-logo img {
  opacity: 0;
}

#to-top {
  position: fixed;
  z-index: 5;
  right: 15px;
  bottom: 15px;
  display: none;
  width: 98px;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  border: 1px solid #707070;
  border-radius: 50%;
  background-color: #fff;
  will-change: transform;
}
@media (min-width: 960px) {
  #to-top {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#to-top::before {
  content: "";
  display: block;
  width: 33px;
  aspect-ratio: 33/52;
  background: url(../img/common/ico_toTop.svg) no-repeat center/contain;
}
#to-top:hover {
  background-color: #F6F6F4;
  transform: scale(1.1);
}

#fixed-sp {
  position: fixed;
  z-index: 10;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  width: 330px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  text-align: center;
  overflow: hidden;
  padding-bottom: 20px;
}
@media (min-width: 960px) {
  #fixed-sp {
    display: none;
  }
}
#fixed-sp .btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #305745;
  color: #fff;
  border-radius: 10px;
  border: 2px solid #fff;
  color: #fff;
  height: 100%;
  box-sizing: border-box;
  padding: 0.8em 0.5em;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  font-weight: 600;
  letter-spacing: 0.085em;
  font-family: "Poppins", sans-serif;
  will-change: transform;
}
#fixed-sp .btn.tel {
  letter-spacing: 0.15em;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3888888889;
}
#fixed-sp .btn.totop {
  font-size: 12px;
  font-size: 0.75rem;
  color: #808080;
  background-color: #DDD4C3;
}
#fixed-sp .btn.totop::before {
  content: "";
  display: block;
  width: 4px;
  aspect-ratio: 3/7;
  background: url(../img/common/arrow_01_gray.svg) no-repeat center/contain;
  transform: rotate(-90deg);
}
#fixed-sp .btn:hover {
  opacity: 0.6;
}
#fixed-sp.js-actived {
  pointer-events: none;
}
#fixed-sp.js-actived .btn {
  transform: translateY(20px);
  opacity: 0;
}

#aside-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 10;
  pointer-events: none;
}
#aside-fixed .clickable {
  pointer-events: auto;
}
#aside-fixed .fixed-list {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
}
#aside-fixed .fixed-list .item {
  --head-width: 0px;
  will-change: transform;
  transform: translateX(calc(100% - var(--head-width)));
  transition: transform 0.3s ease-in-out;
}
#aside-fixed .fixed-list .item + .item {
  margin-top: 40px;
}
#aside-fixed .fixed-list .item:nth-child(even) .anchor-link {
  color: #2C2C2C;
  background-color: #DDD4C3;
}
#aside-fixed .fixed-list .item:nth-child(even) .head::after, #aside-fixed .fixed-list .item:nth-child(even) .btn::after {
  background-image: url(../img/common/arrow_01.svg);
}
#aside-fixed .fixed-list .anchor-link {
  --head-width: 55px;
  --padding-block: 20px;
  background-color: #DDD4C3;
  display: flex;
  width: 540px;
  max-width: 80svw;
  box-sizing: border-box;
  color: #fff;
  background-color: #305745;
}
@media (min-width: 960px) {
  #aside-fixed .fixed-list .anchor-link {
    max-width: 50svw;
  }
}
#aside-fixed .fixed-list .head {
  writing-mode: vertical-rl;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.085em;
  padding: var(--padding-block) 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (min-width: 960px) {
  #aside-fixed .fixed-list .head {
    padding-block: 20px;
  }
}
#aside-fixed .fixed-list .head::after {
  content: "";
  display: block;
  width: 4px;
  aspect-ratio: 3/7;
  background: url(../img/common/arrow_01_white.svg) no-repeat center/contain;
  flex-shrink: 0;
  transform: scaleX(-1);
}
#aside-fixed .fixed-list .cont {
  padding-block: var(--padding-block);
  padding-right: 10px;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
#aside-fixed .fixed-list .thumb {
  width: 36%;
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 172/92;
}
#aside-fixed .fixed-list .tit {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1em;
  font-weight: 700;
  letter-spacing: 0.11em;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 0.5em;
  color: inherit;
}
#aside-fixed .fixed-list .tit .eng {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1;
}
#aside-fixed .fixed-list .desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#aside-fixed .fixed-list .btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  display: flex;
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  margin-top: 0.8em;
  gap: 1em;
  color: inherit;
}
#aside-fixed .fixed-list .btn::after {
  content: "";
  display: inline-block;
  width: 4px;
  aspect-ratio: 3/7;
  background: url(../img/common/arrow_01_white.svg) no-repeat center/contain;
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}
#aside-fixed .fixed-list .btn:hover::after {
  transform: translateX(5px);
}
@media (min-width: 960px) {
  #aside-fixed .fixed-list.js-actived .item {
    transition-duration: 0.5s;
    transform: translateX(0);
  }
}

/* section
====================================== */
/* parts
--------------------------------- */
/* title タイトル
--------------------------------- */
.page-tit-01 {
  padding-block: 30px;
  border-bottom: 1px solid #707070;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .page-tit-01 {
    padding-block: 50px;
  }
}
.page-tit-01.no-border {
  border-bottom: unset;
  margin-bottom: 0;
}

.page-tit-02 {
  padding-block: 40px;
}
@media (min-width: 960px) {
  .page-tit-02 {
    padding-block: 120px 50px;
    background-color: #F6F6F4;
  }
}
@media (min-width: 960px) {
  .page-tit-02 .text-wrapper {
    max-width: 540px;
  }
}

.page-layout-01 {
  display: grid;
  grid-template-columns: 100%;
  gap: 100px 4%;
  padding-block: 50px 100px;
}
@media (min-width: 960px) {
  .page-layout-01 {
    grid-template-columns: 23% 1fr;
    padding-block: 100px 150px;
  }
}

.page-layout-02 {
  display: grid;
  grid-template-columns: 100%;
  gap: 80px 2.5%;
  padding-block: 40px 120px;
}
@media (min-width: 960px) {
  .page-layout-02 {
    grid-template-columns: 1fr 31%;
    grid-template-areas: "layout-main layout-aside";
    padding-block: 70px 130px;
  }
}
@media (min-width: 960px) {
  .page-layout-02 > .layout-main {
    grid-area: layout-main;
  }
}
@media (min-width: 960px) {
  .page-layout-02 > .layout-aside {
    grid-area: layout-aside;
  }
}

.com-tit-01 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #2C2C2C;
  margin-bottom: 1em;
}
@media (min-width: 960px) {
  .com-tit-01 {
    margin-bottom: 1.6em;
  }
}
.com-tit-01::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background-color: currentColor;
  margin-top: 1.3em;
}
@media (min-width: 960px) {
  .com-tit-01::after {
    margin-top: 1.9em;
  }
}
.com-tit-01 .eng {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 51px;
  font-size: 3.1875rem;
  line-height: 1.0980392157;
  letter-spacing: 0;
  color: #333;
  margin-bottom: 0.3em;
}
@media (min-width: 960px) {
  .com-tit-01 .eng {
    font-size: 96px;
    font-size: 6rem;
    margin-bottom: 0.1em;
  }
}
.com-tit-01 .eng-02 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
}
.com-tit-01 .jp {
  margin: 0;
  font-family: "Source Han Serif", "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: inherit;
}
@media (min-width: 960px) {
  .com-tit-01.center {
    text-align: center;
  }
}
@media (min-width: 960px) {
  .com-tit-01.center::after {
    display: none;
  }
}
.com-tit-01.small .eng {
  font-size: 40px;
  font-size: 2.5rem;
}
@media (min-width: 960px) {
  .com-tit-01.small .eng {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
.com-tit-01.remove-border::after {
  display: none;
}

.com-tit-02 {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.2727272727;
  font-weight: 300;
  margin-bottom: 0.7em;
}
.com-tit-02 .eng {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  color: #A69B8F;
}
.com-tit-02 .jp {
  margin-block: 0.4em 0;
  font-family: inherit;
  letter-spacing: 0.13em;
}

.com-tit-03 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  .com-tit-03 {
    font-size: 38px;
    font-size: 2.375rem;
  }
}
.com-tit-03 .eng {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media (min-width: 960px) {
  .com-tit-03 .eng {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.com-tit-03 .jp {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  margin: 0;
  font-size: inherit;
}

.com-tit-04 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #707070;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}

.com-tit-05 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-size: 2.5rem;
  margin-bottom: 1em;
}
@media (min-width: 960px) {
  .com-tit-05 {
    font-size: 60px;
    font-size: 3.75rem;
    margin-bottom: 0.6em;
  }
}
.com-tit-05::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background-color: currentColor;
  margin-top: 0.5em;
}
@media (min-width: 960px) {
  .com-tit-05::after {
    display: none;
  }
}
.com-tit-05 .tit {
  margin: 0;
  font-weight: 300;
  font-family: inherit;
  font-size: inherit;
}
.com-tit-05 .sub {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .com-tit-05 .sub {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.2857142857;
  }
}

.com-tit-06 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.125;
  margin-bottom: 1.4em;
}
@media (min-width: 960px) {
  .com-tit-06 {
    font-size: 26px;
    font-size: 1.625rem;
    margin-bottom: 1.2em;
  }
}
.com-tit-06 .sub {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #808080;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1em;
}
@media (min-width: 960px) {
  .com-tit-06 .sub {
    font-size: 18px;
    font-size: 1.125rem;
    margin-left: 0.5em;
  }
}
.com-tit-06 .tit {
  font-size: inherit;
  margin: 0;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.11em;
}
@media (min-width: 960px) {
  .com-tit-06 .tit {
    font-weight: 600;
  }
}

.com-tit-07 {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  margin-bottom: 1.67em;
}
@media (min-width: 960px) {
  .com-tit-07 {
    font-size: 36px;
    font-size: 2.25rem;
    margin-bottom: 3em;
  }
}

.com-tit-08 {
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  .com-tit-08 {
    margin-bottom: 60px;
  }
}
.com-tit-08 > .jp, .com-tit-08 .eng {
  display: block;
}
.com-tit-08 .eng {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 300;
  font-family: "Cormorant Garamond", serif;
}
@media (min-width: 960px) {
  .com-tit-08 .eng {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
.com-tit-08 .jp {
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

/* panel パネル
--------------------------------- */
@media (min-width: 960px) {
  .com-panel-01 {
    border-left: 1px solid #707070;
    padding-left: 35px;
    padding-block: 10px;
  }
}

/* image
--------------------------------- */
.com-img-01 {
  display: block;
  width: 100%;
  aspect-ratio: 390/257;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .com-img-01 {
    aspect-ratio: 1440/687;
  }
}

/* Gap between sections or blocks
/* セクションやブロック間の隙間
--------------------------------- */
.com-mt-s {
  margin-top: 20px;
}
@media (min-width: 640px) {
  .com-mt-s {
    margin-top: 30px;
  }
}

.com-mt-m {
  margin-top: 40px;
}
@media (min-width: 640px) {
  .com-mt-m {
    margin-top: 60px;
  }
}

.com-mt-l {
  margin-top: 90px;
}
@media (min-width: 640px) {
  .com-mt-l {
    margin-top: 120px;
  }
}

.com-mt-01 {
  margin-top: 50px;
}
@media (min-width: 960px) {
  .com-mt-01 {
    margin-top: 100px;
  }
}

.com-mt-02 {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .com-mt-02 {
    margin-top: 80px;
  }
}

.com-mt-1em {
  margin-top: 1em;
}

/* list style リストスタイル
--------------------------------- */
.com-list-01 li {
  margin-left: 1.2em;
}
.com-list-01 li::before {
  content: "・";
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
}
.com-list-01 li + li {
  margin-top: 0.2em;
}
.com-list-01.notice li::before {
  content: "※";
}
.com-list-01.circle li::before {
  content: "●";
}
.com-list-01.square li::before {
  content: "■";
}

.com-list-02 {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.com-list-02 li {
  margin-left: 1.8em;
}
.com-list-02 li + li {
  margin-top: 0.2em;
}
.com-list-02 li::before {
  counter-increment: item;
  content: counter(item) ".";
  display: inline-block;
  width: 1.5em;
  padding-right: 0.3em;
  margin-left: -1.8em;
  text-align: right;
}

.com-list-03 {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.com-list-03 li {
  margin-left: 2.3em;
}
.com-list-03 li + li {
  margin-top: 0.4em;
}
.com-list-03 li::before {
  counter-increment: item;
  content: "※" counter(item);
  display: inline-block;
  width: 2.3em;
  margin-left: -2.3em;
}

.com-dl-01 {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 1em;
}
.com-dl-01 .row {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
}
.com-dl-01 dt {
  font-weight: inherit;
  letter-spacing: 0.1em;
}
.com-dl-01 dt::after {
  content: "：";
}

.com-accordion-01 {
  --border: 1px solid #2C2C2C;
  border-top: var(--border);
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.08em;
}
.com-accordion-01 .row {
  border-bottom: var(--border);
  margin-top: 0 !important;
}
.com-accordion-01 .head, .com-accordion-01 .cont {
  padding-inline: 10px 40px;
}
@media (min-width: 960px) {
  .com-accordion-01 .head, .com-accordion-01 .cont {
    padding-right: 60px;
  }
}
.com-accordion-01 .head {
  font-size: 14px;
  font-size: 0.875rem;
  padding-block: 1.5em;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
}
.com-accordion-01 .head::before {
  position: absolute;
  margin: 0;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.com-accordion-01 .cont {
  font-size: 13px;
  font-size: 0.8125rem;
  padding-block: 1.5em;
  background-color: #F6F6F4;
  margin-top: 0;
}

.com-accordion-02 {
  --border: 1px solid #2C2C2C;
  border-top: var(--border);
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
.com-accordion-02 .row {
  border-bottom: var(--border);
  margin-top: 0 !important;
}
.com-accordion-02 .head, .com-accordion-02 .cont {
  padding-inline: 20px 40px;
}
@media (min-width: 960px) {
  .com-accordion-02 .head, .com-accordion-02 .cont {
    padding-right: 60px;
  }
}
.com-accordion-02 .head {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  padding-block: 1.5em;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1em;
}
.com-accordion-02 .head::before {
  position: absolute;
  margin: 0;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.com-accordion-02 .head::after {
  content: "Q.";
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  order: -1;
}
.com-accordion-02 .cont {
  font-size: 13px;
  font-size: 0.8125rem;
  padding-block: 1.5em;
  background-color: #F6F6F4;
  margin-top: 0;
  letter-spacing: 0.08em;
  display: flex;
  align-items: baseline;
  gap: 1em;
}
.com-accordion-02 .cont::before {
  content: "A.";
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
}

.com-tab-list-01 {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: center;
}
.com-tab-list-01 .btn {
  display: block;
  border: 1px solid #2C2C2C;
  padding: 0.5em 1.3em;
}
.com-tab-list-01 .btn:hover {
  background-color: #DDD4C3;
  border-color: #DDD4C3;
}
.com-tab-list-01 .uk-active .btn {
  background-color: #DDD4C3;
  border-color: #DDD4C3;
}

.com-tab-list-02 {
  --gap: 10px;
  margin-left: calc(var(--gap) * -1);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
@media (min-width: 960px) {
  .com-tab-list-02 {
    --gap: 30px;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.14em;
  }
}
.com-tab-list-02 > * {
  padding-left: var(--gap);
}
.com-tab-list-02 .uk-grid-margin {
  margin-top: var(--gap);
}
.com-tab-list-02 .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  border-radius: 4px;
  background-color: #DDD4C3;
  padding: 0.8em 1em;
}
@media (min-width: 960px) {
  .com-tab-list-02 .btn {
    padding-block: 1.3em;
  }
}
.com-tab-list-02 .btn:hover {
  background-color: #C3BCAF;
}
.com-tab-list-02 .btn::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_01.svg) no-repeat center/contain;
  transform: rotate(90deg);
}

.com-tab-list-03 .tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #6B907F;
  border-radius: 4px;
  color: #fff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1.4em 3em;
  transition: background-color 0.3s ease-in-out;
}
.com-tab-list-03 .tab-btn::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 8px;
  aspect-ratio: 8/16;
  background: url(../img/common/arrow_05_white.svg) no-repeat center/contain;
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}
.com-tab-list-03 .tab-btn:hover {
  background-color: #305745;
}
.com-tab-list-03 .tab-btn:hover::after {
  transform: translateX(5px);
}
.com-tab-list-03 .tab-item.uk-active .tab-btn {
  background-color: #305745;
}
.com-tab-list-03 .tab-item + .tab-item {
  margin-top: 15px;
}

/* text テキスト
--------------------------------- */
.com-text-01 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  .com-text-01 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.2142857143;
    letter-spacing: 0.17em;
  }
}

.com-text-02 {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .com-text-02 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.com-text-02 .num {
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 960px) {
  .com-text-02 .num {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.com-text-03 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.com-text-04 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.com-text-05 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.com-text-06 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .com-text-06 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.com-catch-01 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.3571428571;
  font-weight: 300;
  letter-spacing: 0.01em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  margin-bottom: 1.3em;
}
@media (min-width: 960px) {
  .com-catch-01 {
    margin-bottom: 0.7em;
  }
}

/* font-size フォントサイズ
--------------------------------- */
.com-fz-10 {
  font-size: 10px;
  font-size: 0.625rem;
}

.com-fz-11 {
  font-size: 11px;
  font-size: 0.6875rem;
}

.com-fz-12 {
  font-size: 12px;
  font-size: 0.75rem;
}

.com-fz-13 {
  font-size: 13px;
  font-size: 0.8125rem;
}

.com-fz-14 {
  font-size: 14px;
  font-size: 0.875rem;
}

.com-fz-15 {
  font-size: 15px;
  font-size: 0.9375rem;
}

.com-fz-16 {
  font-size: 16px;
  font-size: 1rem;
}

.com-fz-17 {
  font-size: 17px;
  font-size: 1.0625rem;
}

.com-fz-18 {
  font-size: 18px;
  font-size: 1.125rem;
}

.com-fz-19 {
  font-size: 19px;
  font-size: 1.1875rem;
}

.com-fz-20 {
  font-size: 20px;
  font-size: 1.25rem;
}

.com-fz-21 {
  font-size: 21px;
  font-size: 1.3125rem;
}

.com-fz-22 {
  font-size: 22px;
  font-size: 1.375rem;
}

.com-fz-23 {
  font-size: 23px;
  font-size: 1.4375rem;
}

.com-fz-24 {
  font-size: 24px;
  font-size: 1.5rem;
}

.com-fz-25 {
  font-size: 25px;
  font-size: 1.5625rem;
}

.com-fz-26 {
  font-size: 26px;
  font-size: 1.625rem;
}

.com-fz-27 {
  font-size: 27px;
  font-size: 1.6875rem;
}

.com-fz-28 {
  font-size: 28px;
  font-size: 1.75rem;
}

.com-fz-29 {
  font-size: 29px;
  font-size: 1.8125rem;
}

.com-fz-30 {
  font-size: 30px;
  font-size: 1.875rem;
}

/* アクセント色
--------------------------------- */
/* card
--------------------------------- */
.com-card-01 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
}
.com-card-01 .card-thumb {
  width: 100%;
  aspect-ratio: 256/182;
  position: relative;
  will-change: transform;
  transition: all 0.3s ease-in-out;
}
.com-card-01 .card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.com-card-01 .card-tag {
  position: absolute;
  z-index: 2;
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  background-color: #A69B8F;
  text-align: center;
  padding: 0.5em 0.7em;
  box-sizing: border-box;
  max-width: 100%;
}
.com-card-01 .card-tit {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 300;
  letter-spacing: 0.13em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  margin-block: 1.8em 0.9em;
}
.com-card-01 .card-tit .eng {
  display: block;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #A69B8F;
  font-family: "Cormorant Garamond", serif;
}
.com-card-01 .card-info .row {
  display: flex;
  align-items: baseline;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
.com-card-01 .card-info .row dt {
  flex: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.16em;
}
.com-card-01 .card-info .row dd {
  flex-shrink: 0;
}
.com-card-01 .card-price {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.11em;
  font-weight: 300;
}
.com-card-01 .card-price small {
  font-size: 63%;
}
.com-card-01 .card-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.com-card-01 .card-info {
  margin-top: 0.2em;
}
.com-card-01:hover .card-thumb {
  transform: translateY(-5px);
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.2);
}

.com-card-02 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 960px) {
  .com-card-02 {
    flex-direction: row;
    align-items: flex-start;
  }
}
.com-card-02 .card-thumb {
  width: 100%;
  aspect-ratio: 326/215;
}
@media (min-width: 960px) {
  .com-card-02 .card-thumb {
    width: 46%;
    max-width: 404px;
    flex-shrink: 0;
  }
}
.com-card-02 .card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .com-card-02 .card-detail {
    flex: 1;
    align-self: center;
  }
}
.com-card-02 .card-tit {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.125;
  margin-bottom: 1.2em;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .com-card-02 .card-tit {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 0.7em;
  }
}
.com-card-02 .card-tit .name {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
.com-card-02 .card-tit .sub {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .com-card-02 .card-tit .sub {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.125;
  }
}
.com-card-02 .card-price {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  font-weight: 500;
}
.com-card-02 .card-price .price {
  line-height: 1;
}
.com-card-02 .card-price .price .prepend, .com-card-02 .card-price .price .append {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.11em;
}
.com-card-02 .card-price .price .prepend {
  font-size: 20px;
  font-size: 1.25rem;
}
.com-card-02 .card-price .price .append {
  font-size: 28px;
  font-size: 1.75rem;
}
.com-card-02 .card-price .price .num {
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
.com-card-02 .card-panel {
  background-color: #F6F6F4;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 25px;
  margin-top: 20px;
}
.com-card-02 .card-info {
  margin-top: 1em;
}
.com-card-02 .card-info .row {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.com-card-02 .card-info dt, .com-card-02 .card-info dd {
  font-weight: inherit;
}
.com-card-02 .card-info dt {
  flex-shrink: 0;
}
.com-card-02 .card-info dt::after {
  content: ":";
}
.com-card-02 .card-info dd {
  flex: 1;
}
.com-card-02 .card-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.com-card-02:is(a) .card-thumb {
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 959px) {
  .com-card-02:is(a):hover {
    opacity: 0.6;
  }
}
@media (min-width: 960px) {
  .com-card-02:is(a):hover .card-thumb {
    transform: translateY(-10px);
  }
}
.com-card-02 + .com-card-02 {
  margin-top: 50px;
}
@media (min-width: 960px) {
  .com-card-02 + .com-card-02 {
    margin-top: 35px;
  }
}

/* リンク
--------------------------------- */
.com-btn-01 {
  display: block;
  max-width: 336px;
  text-align: center;
  background: #305745;
  color: #fff;
  padding: 0.8em;
  padding-right: 2em;
  box-sizing: border-box;
  position: relative;
}
.com-btn-01:hover {
  color: #fff;
}

.com-btn-02 {
  --padding-y: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  border: 1px solid #2C2C2C;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #686868;
  letter-spacing: 0.25em;
  font-family: "Poppins", sans-serif;
  text-align: center;
  gap: 20px;
  min-width: 222px;
  box-sizing: border-box;
  padding: 1.2em var(--padding-y);
  position: relative;
  transition: background-color 0.3s ease-in-out;
}
.com-btn-02 .wrapper {
  display: block;
}
.com-btn-02::after {
  content: "";
  display: block;
  width: 4px;
  aspect-ratio: 3/7;
  background: url(../img/common/arrow_01.svg) no-repeat center/contain;
  transition: inherit;
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}
.com-btn-02:hover {
  background-color: #F6F6F4;
  color: #686868;
}
.com-btn-02:hover::after {
  transform: translateX(5px);
}

.com-btn-03 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5em;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.11em;
  font-family: "Source Han Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  padding: 1em;
  max-width: 375px;
  margin-inline: auto;
  box-sizing: border-box;
}
@media (min-width: 960px) {
  .com-btn-03 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.com-btn-03.pdf::after {
  content: "";
  width: 28px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_pdf.svg) no-repeat center/contain;
}
@media (min-width: 960px) {
  .com-btn-03.pdf::after {
    width: 32px;
  }
}
.com-btn-03.green {
  color: #fff;
  background-color: #305745;
}
.com-btn-03:hover {
  opacity: 0.6;
}

.com-btn-04 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #305745;
  color: #fff;
  gap: 2em;
  border-radius: 4px;
  padding: 1.2em 2.1em;
}
@media (min-width: 960px) {
  .com-btn-04 {
    font-size: 16px;
    font-size: 1rem;
    justify-content: center;
    padding-block: 2em;
  }
}
.com-btn-04::after {
  content: "";
  display: block;
  width: 17px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_01_white.svg) no-repeat center/contain;
}
.com-btn-04:hover {
  color: #fff;
  opacity: 0.6;
}

.com-btn-05 {
  display: block;
  background-color: #DDD4C3;
  border-radius: 4px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  position: relative;
  padding: 1em;
  padding-right: 3em;
}
@media (min-width: 640px) {
  .com-btn-05 {
    width: 100%;
    max-width: -moz-max-content;
    max-width: max-content;
    box-sizing: border-box;
    padding-inline: 1.2em;
  }
}
.com-btn-05::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2em;
  width: 9px;
  aspect-ratio: 9/17;
  background: url(../img/common/arrow_01.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
@media (min-width: 640px) {
  .com-btn-05::after {
    display: none;
  }
}
.com-btn-05:hover {
  opacity: 0.6;
}

.com-link-01 {
  text-decoration: underline;
  color: #305745;
}
.com-link-01:hover {
  color: #305745;
}

.com-link-02 {
  display: inline-block;
  color: inherit;
}
.com-link-02:hover {
  opacity: 0.6;
}
.com-link-02[target=_blank]::before {
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_new_tab.svg) no-repeat center/contain;
  margin-right: 5px;
  vertical-align: middle;
}
.com-link-02.icon-right::before {
  display: none;
}
.com-link-02.icon-right::after {
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_new_tab.svg) no-repeat center/contain;
  margin-left: 5px;
  vertical-align: middle;
}

.com-grid-10 {
  --gap: 10px;
  margin-left: calc(var(--gap) * -1);
}
.com-grid-10 > * {
  padding-left: var(--gap);
}

.com-grid-60 {
  --gap: 60px;
  margin-left: calc(var(--gap) * -1);
}
.com-grid-60 > * {
  padding-left: var(--gap);
}

.com-grid-margin-10 > .uk-grid-margin {
  margin-top: 10px;
}

.com-grid-margin-40 > .uk-grid-margin {
  margin-top: 40px;
}

.com-grid-margin-60 > .uk-grid-margin {
  margin-top: 60px;
}

.com-grid-margin-80 > .uk-grid-margin {
  margin-top: 80px;
}

.com-grid-margin-0 > .uk-grid-margin {
  margin-top: 0;
}

.com-font-han-serif {
  font-family: "Source Han Serif", "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif !important;
}

.com-font-hiragino-mincho {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif !important;
}

.com-arrow-01 {
  display: block;
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  background: unset;
  cursor: pointer;
}
.com-arrow-01::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/common/arrow_02.svg) no-repeat center/contain;
}
.com-arrow-01.prev::before {
  transform: scaleX(-1);
}
.com-arrow-01.style-02::before {
  background-image: url(../img/common/arrow_04.svg);
}
@media (min-width: 960px) {
  .com-arrow-01.style-02::before {
    background-image: url(../img/common/arrow_03.svg);
  }
}

.com-dots-01 {
  --swiper-theme-color: #808080;
  --swiper-pagination-bullet-inactive-color: #fff;
  text-align: center;
}
.com-dots-01 .swiper-pagination-bullet {
  opacity: 1;
}
.com-dots-01.style-02 {
  --swiper-theme-color: #2C2C2C;
  --swiper-pagination-bullet-inactive-color: #808080;
}

.com-sec-01 {
  padding-block: 50px;
}
@media (min-width: 960px) {
  .com-sec-01 {
    padding-block: 100px;
  }
}

.com-border-top-01 {
  border: 1px solid #707070;
}

.com-border-top-01 {
  border: 1px solid #707070;
}

@media (min-width: 960px) {
  .js-sect-01-old {
    height: calc(100svh - var(--header-height));
    min-height: 760px;
  }
}

@media (min-width: 960px) {
  .js-sect-01 {
    min-height: calc(100svh - var(--header-height));
  }
}

.js-hero-text, .js-split-text {
  opacity: 0;
}
.js-hero-text span, .js-split-text span {
  display: inline-block;
}

.js-reveal-hidden {
  opacity: 0;
  transform: translateY(2rem);
}

.js-reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-image-curtain {
  position: relative;
  overflow: hidden;
}
.js-image-curtain img {
  transform: scale(1.15);
  transition: transform 2.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block; /* Ensure no baseline gap */
}
.js-image-curtain .js-image {
  position: absolute;
  inset: 0;
  background-color: #E0E0E0;
  z-index: 20;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 3;
}
.js-image-curtain .js-image.from-left {
  transform-origin: left;
}
.js-image-curtain .js-image.vertical {
  transform: scale(1, 1);
  transform-origin: bottom;
  transition: transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
  /* Fix for hairline gap at bottom during animation */
  height: 102%;
  bottom: -1%;
}
.js-image-curtain.js-actived img {
  transform: scale(1);
}
.js-image-curtain.js-actived .js-image {
  transform: scaleX(0);
}
.js-image-curtain.js-actived .js-image.vertical {
  transform: scale(1, 0); /* Y軸のみ0にする */
}

.com-form-01 .form-table .head {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  margin-bottom: 1.15em;
}
.com-form-01 .form-table .head:not(:first-child) {
  margin-top: 40px;
}
.com-form-01 .form-table .head.large-mt:not(:first-child) {
  margin-top: 120px;
}
.com-form-01 .form-table .head.required::after {
  content: "*必須";
  display: inline-block;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  color: #D01C1C;
  margin-left: 1em;
}
.com-form-01 .form-mt-01 {
  margin-top: 30px;
}
@media (min-width: 960px) {
  .com-form-01 .form-mt-01 {
    margin-top: 40px;
  }
}
.com-form-01 .submit-btn {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #DDD4C3;
  font-family: "Source Han Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  letter-spacing: 0.11em;
  font-size: 18px;
  font-size: 1.125rem;
  color: #808080;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  border-radius: 4px;
  padding: 1em 0.5em;
}
.com-form-01 .submit-btn:hover {
  background-color: #305745;
  border-color: #305745;
  color: #fff;
}
.com-form-01 .mw_wp_form_confirm .form-table {
  background-color: #F6F6F4;
  padding: 40px 30px;
  width: calc(100% + 60px);
  box-sizing: border-box;
  margin-left: -30px;
}
@media (min-width: 960px) {
  .com-form-01 .mw_wp_form_confirm .form-table {
    width: 100%;
    margin-left: 0;
    padding-block: 60px;
  }
}
@media (min-width: 1200px) {
  .com-form-01 .mw_wp_form_confirm .form-table {
    padding-inline: 100px;
  }
}
.com-form-01 .mw_wp_form_confirm .confirm-hidden {
  display: none;
}
.com-form-01 .mw_wp_form_confirm .submit-btn {
  background-color: #DDD4C3;
  border-color: #DDD4C3;
}
.com-form-01 .mw_wp_form_confirm .submit-btn:hover {
  background-color: #305745;
  border-color: #305745;
  color: #fff;
}

.com-form-02 .customize-select {
  --border-radius: 4px;
  --background: #DDD4C3;
  position: relative;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 500;
}
.com-form-02 .customize-select.is-open .options-list {
  display: block;
}
.com-form-02 .customize-select .input-wrapper {
  background-color: var(--background);
  color: #333;
  padding: 0.5em 1em;
  padding-right: calc(1.5em + 10px);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--border-radius);
  position: relative;
}
.com-form-02 .customize-select .input-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_01.svg) no-repeat center/contain;
  top: 50%;
  right: 1em;
  transform: translate(-50%, -50%) rotate(90deg);
}
.com-form-02 .customize-select .options-list {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  z-index: 10;
  border-radius: var(--border-radius);
}
.com-form-02 .customize-select .item {
  padding: 0.5em 1em;
  cursor: pointer;
  border-bottom: 1px solid var(--background);
  display: flex;
  flex-direction: column;
}
.com-form-02 .customize-select .item:last-child {
  border-bottom: none;
}
.com-form-02 .customize-select .cs-main, .com-form-02 .customize-select .cs-sub {
  display: block;
}
.com-form-02 .customize-select .cs-sub {
  font-family: "Kohinoor Gujarati", "Noto Sans Gujarati", "Shruti", "Gujarati Sangam MN", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.11em;
}
.com-form-02 .radio-list {
  --checked: #C3BCAF;
  --normal: #DDD4C3;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
.com-form-02 .radio-list li + li {
  margin-top: 6px;
}
.com-form-02 .radio-list .input {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 8px 20px;
  gap: 15px;
  overflow: hidden;
  min-height: 43px;
  box-sizing: border-box;
}
.com-form-02 .radio-list .text {
  line-height: 1.5;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
}
.com-form-02 .radio-list .text::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--normal);
  transition: background 0.2s;
}
.com-form-02 .radio-list .text small {
  display: block;
  line-height: 1;
}
.com-form-02 .radio-list input[type=radio] {
  /* Size */
  width: 17px;
  height: 17px;
  background-color: #fff;
  /* Remove default styles */
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  /* Border */
  border: none;
  border-radius: 50%;
  /* Center the dot */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  /* Dot via pseudo element */
}
.com-form-02 .radio-list input[type=radio]::before {
  display: none;
}
.com-form-02 .radio-list input[type=radio]::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}
.com-form-02 .radio-list input[type=radio]:checked::after {
  background: var(--checked);
}
.com-form-02 .radio-list input[type=radio]:checked ~ .text::after {
  background: var(--checked);
}
.com-form-02 .radio-list.small .text {
  font-size: 14px;
  font-size: 0.875rem;
}
.com-form-02 .form-table {
  display: grid;
  grid-template-columns: max-content 1fr;
}
@media (min-width: 960px) {
  .com-form-02 .form-table {
    display: block;
    grid-template-columns: unset;
  }
}
.com-form-02 .form-table .row {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
  gap: 15px 20px;
}
@media (min-width: 960px) {
  .com-form-02 .form-table .row {
    display: flex;
    grid-template-columns: unset;
    grid-column: unset;
    flex-direction: column;
    align-items: initial;
  }
}
.com-form-02 .form-table .row + .row {
  margin-top: 25px;
}
@media (min-width: 960px) {
  .com-form-02 .form-table .row + .row {
    margin-top: 100px;
  }
}
.com-form-02 .form-table dt {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.11em;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .com-form-02 .form-table dt {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.com-form-02 .form-table dd {
  flex: 1;
}

.home-mv-01 {
  position: relative;
  background: url(../img/home/mv_s.jpg) no-repeat center/cover;
  min-height: 760px;
  height: calc(100svh - var(--header-height));
  color: #fff;
}
@media (min-width: 960px) {
  .home-mv-01 {
    background-image: url(../img/home/mv.jpg);
  }
}
.home-mv-01 .mv-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1115px;
}
.home-mv-01 .mv-panel {
  width: 100%;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  container-type: inline-size;
}
@media (min-width: 960px) {
  .home-mv-01 .mv-panel {
    width: 48%;
  }
}
.home-mv-01 .mv-sub,
.home-mv-01 .mv-tit {
  font-family: "Cormorant Garamond", serif;
}
.home-mv-01 .mv-sub {
  letter-spacing: 0.07em;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.2;
}
.home-mv-01 .mv-tit {
  color: #fff;
  margin-block: 0 0.5em;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.035em;
}
@media (min-width: 960px) {
  .home-mv-01 .mv-tit {
    font-size: clamp(75px, 17cqi, 91px);
  }
}
.home-mv-01 .mv-tit small {
  display: block;
  font-size: 40%;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-top: 0.3em;
}
@media (min-width: 960px) {
  .home-mv-01 .mv-tit small {
    font-size: 60%;
    margin-top: 0;
  }
}
.home-mv-01 .mv-catch {
  border-left: 1px solid currentColor;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  padding-left: 1em;
}

.home-panel-01 {
  position: relative;
  z-index: 2;
}
@media (min-width: 1120px) {
  .home-panel-01 {
    --half-space: calc((100svw - 1120px) / 2);
  }
}
.home-panel-01 .image-panel {
  display: none;
  position: relative;
}
@media (min-width: 960px) {
  .home-panel-01 .image-panel {
    display: block;
    position: sticky;
    height: 100svh;
    top: 0;
  }
}
.home-panel-01 .panel-sp-thumb {
  width: 100%;
  aspect-ratio: 390/390;
}
@media (min-width: 960px) {
  .home-panel-01 .panel-sp-thumb {
    display: none;
  }
}
.home-panel-01 .panel-sp-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 959px) {
  .home-panel-01 .panel-sp-thumb-wrapper {
    padding: 40px 30px 0;
  }
}
.home-panel-01 .panel-cont-wrapper {
  position: relative;
}
@media (min-width: 960px) {
  .home-panel-01 .panel-cont-wrapper {
    display: flex;
    align-items: center;
  }
}
.home-panel-01 .panel-cont-wrapper.bg-brown_03::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #F6F6F4;
  width: 100svw;
  height: 100%;
}
@media (min-width: 960px) {
  .home-panel-01 .panel-cont-wrapper.bg-brown_03::after {
    width: 50svw;
  }
}
.home-panel-01 .panel-pc-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 1120px) {
  .home-panel-01 .panel-pc-image-wrapper {
    width: calc(100% + var(--half-space));
  }
}
.home-panel-01 .panel-pc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: clip-path;
}
.home-panel-01 .panel-pc-img:not(:first-child) {
  clip-path: inset(100% 0 0 0);
}
.home-panel-01 .panel-pc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-panel-01 .panel-cont {
  padding: 60px 30px 80px;
}
.home-panel-01 .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.home-panel-01 .slider-arrow.prev {
  left: 5%;
}
.home-panel-01 .slider-arrow.next {
  right: 5%;
}
.home-panel-01 .panel-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 3;
}
.home-panel-01.border {
  --border: 1px solid #707070;
}
.home-panel-01.border > .text-panel > * {
  position: relative;
}
@media (min-width: 960px) {
  .home-panel-01.border > .text-panel > *::before {
    content: "";
    position: absolute;
    width: 50svw;
    border-top: var(--border);
    top: 0;
    right: 0;
  }
}
@media (min-width: 960px) {
  .home-panel-01.border > .image-panel::before {
    content: "";
    position: absolute;
    width: 50svw;
    border-top: var(--border);
    top: 0;
    left: 0;
    z-index: 2;
  }
}
.home-panel-01.border > :first-child {
  border-right: var(--border);
}
.home-panel-01.reverse .panel-pc-image-wrapper {
  left: unset;
  right: 0;
}
@media (min-width: 960px) {
  .home-panel-01.reverse .panel-cont-wrapper::after {
    right: unset;
    left: 0;
  }
}
@media (min-width: 960px) {
  .home-panel-01.reverse.border > .text-panel > *::before {
    right: unset;
    left: 0;
  }
}
@media (min-width: 960px) {
  .home-panel-01.reverse.border > .image-panel::before {
    left: unset;
    right: 0;
  }
}

.home-panel-02 {
  --border: 1px solid #707070;
}
@media (min-width: 960px) {
  .home-panel-02 {
    border-block: var(--border);
  }
}
@media (min-width: 960px) {
  .home-panel-02 .border-left {
    border-left: var(--border);
  }
}
.home-panel-02 + .home-panel-02 {
  border-top: none;
}

.home-panel-03 {
  --padding-gap: 70px;
}
@media (min-width: 960px) {
  .home-panel-03 > * {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 960px) {
  .home-panel-03 > :first-child .panel {
    padding-right: var(--padding-gap);
  }
}
@media (min-width: 960px) {
  .home-panel-03 > :last-child .panel {
    padding-left: var(--padding-gap);
  }
}
.home-panel-03 .panel {
  width: 100%;
}

.home-tit-01 {
  color: #E4E1DD;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 2.4em;
}
@media (min-width: 960px) {
  .home-tit-01 {
    margin-bottom: 1em;
  }
}
.home-tit-01 .num {
  font-family: "IvyMode", "Ivy Mode", "Playfair Display", "Bodoni Moda", Didot, "Times New Roman", Times, serif;
  font-size: 110px;
  font-size: 6.875rem;
  letter-spacing: 0.095em;
  font-weight: 400;
  line-height: 1;
}

.home-text-01 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .home-text-01 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.2142857143;
  }
}

.home-text-02 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.home-text-03 {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.home-text-04 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.08em;
}
.home-text-04 .tit {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 500;
  margin-bottom: 0.2em;
}

.home-quote-01 {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  border-left: 1px solid #808080;
  padding-left: 1.5em;
}

.home-sec-01 {
  padding-block: 80px;
}
@media (min-width: 960px) {
  .home-sec-01 {
    padding-block: 120px 100px;
  }
}

.home-sec-02 {
  padding-block: 60px;
}
@media (min-width: 960px) {
  .home-sec-02 {
    padding-block: 0;
  }
}
.home-sec-02 + .home-sec-02 {
  padding-top: 0;
}

.home-card-01 {
  display: block;
  font-weight: 500;
  letter-spacing: 0.088em;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
.home-card-01 .card-thumb {
  width: 100%;
  aspect-ratio: 246/312;
  will-change: transform;
  transition: all 0.2s ease-in-out;
}
.home-card-01 .card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-card-01 .card-tit {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 500;
  letter-spacing: 0.13em;
  font-family: "Noto Serif JP", serif;
  margin-block: 1.6em 0.7em;
}
.home-card-01 .card-tit .eng {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #A69B8F;
  margin-bottom: 0.4em;
}
.home-card-01 :is(a):hover .card-thumb {
  transition-duration: 0.3s;
  transform: translateY(-5px);
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.2);
}

.home-slider-01 {
  --item-width: 246px;
  --container-padding: 30px;
  margin-left: calc(var(--container-padding) * -1);
  width: calc(100% + var(--container-padding) * 2);
  position: relative;
  padding-top: 10px;
}
.home-slider-01 .swiper-slide {
  width: var(--item-width);
}
.home-slider-01 .slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
}
.home-slider-01 .slider-arrow.swiper-button-disabled {
  display: none;
}
.home-slider-01 .slider-arrow.prev {
  right: calc(50svw + var(--item-width) / 2);
  transform: translate(30%, -50%);
}
.home-slider-01 .slider-arrow.next {
  left: calc(50svw + var(--item-width) / 2);
  transform: translate(-30%, -50%);
}

.home-slider-02 {
  position: relative;
}
.home-slider-02 .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media (min-width: 960px) {
  .home-slider-02 .slider-arrow {
    display: none;
  }
}
.home-slider-02 .slider-arrow.prev {
  left: 5%;
}
.home-slider-02 .slider-arrow.next {
  right: 5%;
}

.home-img-01 {
  width: 100%;
  aspect-ratio: 326/197;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-map-01 {
  width: 100%;
  aspect-ratio: 326/245;
}
@media (min-width: 960px) {
  .home-map-01 {
    aspect-ratio: 508/386;
  }
}
.home-map-01 iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#scroll-indicator {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: calc(100% + 20px);
  right: 150px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
@media (max-width: 959px) {
  #scroll-indicator {
    display: none;
  }
}
#scroll-indicator::before {
  content: "SCROLL";
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.14em;
}
#scroll-indicator .line {
  width: 2px;
  height: 67px;
  background-color: #D4D4D4;
  overflow: hidden;
  position: relative;
}
#scroll-indicator .line::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  animation: scroll-indicator 2.5s infinite ease;
}
#scroll-indicator.js-actived {
  transition-duration: 0.2s;
  visibility: hidden;
  opacity: 0;
}

@keyframes scroll-indicator {
  0% {
    transform: translateY(-100%);
  }
  80% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(100%);
  }
}
/* list
--------------------------------- */
.info-list-01 {
  border-top: 1px solid #D1D1D1;
}
.info-list-01 li {
  border-bottom: 1px solid #D1D1D1;
}

/* btn
--------------------------------- */
.info-btn-01 {
  display: block;
  padding: 1em 0;
  padding-right: 1.5em;
  position: relative;
}
@media (min-width: 640px) {
  .info-btn-01 {
    padding-top: 2em;
    padding-bottom: 2em;
    padding-right: 3em;
  }
}
@media (min-width: 960px) {
  .info-btn-01 {
    display: flex;
    align-items: center;
  }
}
.info-btn-01:hover {
  background: #91c2ab;
}
.info-btn-01::after {
  content: "";
  height: 1em;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
@media (min-width: 960px) {
  .info-btn-01::after {
    right: 0.5em;
  }
}
.info-btn-01 .tit {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  display: block;
  margin-top: 1em;
}
@media (min-width: 640px) {
  .info-btn-01 .tit {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
@media (min-width: 960px) {
  .info-btn-01 .tit {
    margin-top: 0;
    flex: 1;
    border-left: 1px solid #707070;
    padding-left: 1.1em;
  }
}
.info-btn-01 .data {
  margin-left: 0.5em;
}
@media (min-width: 960px) {
  .info-btn-01 .data {
    width: 8em;
    text-align: center;
  }
}

/* icon
--------------------------------- */
.cat-ico-01 {
  display: inline-block;
  min-width: 100px;
  padding: 0 1em;
  box-sizing: border-box;
  background: #305745;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* pagination ページナビ
--------------------------------- */
.com-pagination ul {
  font-family: "Cormorant Garamond", serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: -8px;
  margin-top: -8px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 960px) {
  .com-pagination ul {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.com-pagination ul .page-numbers {
  display: block;
  margin-left: 8px;
  margin-top: 8px;
  box-sizing: border-box;
}
.com-pagination ul .page-numbers:not(.prev):not(.next) {
  display: grid;
  border: 1px solid #C0C0C0;
  width: 45px;
  aspect-ratio: 1/1;
  place-items: center;
}
@media (min-width: 960px) {
  .com-pagination ul .page-numbers:not(.prev):not(.next) {
    width: 60px;
  }
}
.com-pagination ul .page-numbers.prev, .com-pagination ul .page-numbers.next {
  padding: 1em 0.5em;
}
.com-pagination ul .page-numbers.prev:hover, .com-pagination ul .page-numbers.next:hover {
  color: #305745;
}
.com-pagination ul .page-numbers.prev img, .com-pagination ul .page-numbers.prev svg {
  transform: scaleX(-1);
}
.com-pagination ul .page-numbers.current {
  border-width: 2px !important;
  border-color: #305745 !important;
}
.com-pagination ul a:not(.prev):not(.next):hover {
  background: #91c2ab;
}

/* list
--------------------------------- */
/* btn
--------------------------------- */
.column-btn-01 {
  display: block;
  padding: 14px;
  border: 1px solid #D1D1D1;
}
.column-btn-01:hover {
  background: #91c2ab;
}
.column-btn-01 .img {
  background: #F0F0F0;
  padding-top: 100%;
  overflow: hidden;
  margin-bottom: 0.5em;
  position: relative;
}
.column-btn-01 .img::before {
  content: "NO IMAGE";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.column-btn-01 .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}
.column-btn-01 .tit {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: block;
  line-height: 1.8;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.column-btn-01 .data {
  margin-left: 0.5em;
  font-size: 13px;
  font-size: 0.8125rem;
}
.column-btn-01 .text {
  font-size: 12px;
  font-size: 0.75rem;
}

/* post navigation 記事前後ボタン
--------------------------------- */
.single-nav {
  border-top: 1px solid #D1D1D1;
  margin-top: 40px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
@media (min-width: 640px) {
  .single-nav {
    grid-template-columns: 3fr 3fr 2fr;
    margin-top: 60px;
    padding-top: 60px;
  }
}
.single-nav a {
  display: block;
  text-align: center;
  padding: 0.5em;
  border: 2px solid #305745;
  color: #305745;
  position: relative;
}
.single-nav a::before {
  height: 1em;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.single-nav a[rel=prev] {
  padding-left: 2em;
}
.single-nav a[rel=prev]::before {
  content: "\f053";
  left: 1em;
}
.single-nav a[rel=next] {
  padding-right: 2em;
}
.single-nav a[rel=next]::before {
  content: "\f054";
  right: 1em;
}
.single-nav a.index {
  background: #5f5f5f;
  border-color: #5f5f5f;
  color: #fff;
  padding-right: 2em;
}
.single-nav a.index::before {
  content: "\f077";
  right: 1em;
}

/* list
--------------------------------- */
.recruitment-list-01 li + li {
  margin-top: 20px;
}
@media (min-width: 640px) {
  .recruitment-list-01 li + li {
    margin-top: 30px;
  }
}

/* btn
--------------------------------- */
.recruitment-btn-01 {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  padding: 20px;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 640px) {
  .recruitment-btn-01 {
    padding: 40px 28px;
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.recruitment-btn-01 .tit {
  flex: 1;
}
.recruitment-btn-01::before {
  content: "";
  display: block;
  width: 6px;
  align-self: stretch;
  margin-right: 0.9em;
  background: #305745;
}
.recruitment-btn-01::after {
  margin-left: auto;
  padding-left: 0.9em;
}
.recruitment-btn-01:hover {
  background: #91c2ab;
}

/* dl table
--------------------------------- */
@media (max-width: 639px) {
  .job-table-01 {
    border-bottom: 1px solid #989898;
  }
}
@media (min-width: 640px) {
  .job-table-01 {
    display: grid;
    grid-template-columns: 292px 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
.job-table-01 dt {
  padding: 1.5em 0 1em;
  padding-left: 25px;
  font-weight: 500;
  position: relative;
  border-top: 1px solid #989898;
}
@media (min-width: 640px) {
  .job-table-01 dt {
    padding-bottom: 1.5em;
    border-top: 2px solid #989898;
  }
  .job-table-01 dt:last-of-type {
    border-bottom: 2px solid #989898;
  }
}
.job-table-01 dt::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #305745;
  position: absolute;
  margin-top: 0.5em;
  left: 0;
}
.job-table-01 dd {
  padding-bottom: 1.5em;
}
@media (min-width: 640px) {
  .job-table-01 dd {
    padding-top: 1.5em;
    border-top: 1px solid #989898;
  }
  .job-table-01 dd:last-of-type {
    border-bottom: 1px solid #989898;
  }
}

.inquiry-mt-01 {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .inquiry-mt-01 {
    margin-top: 25px;
  }
}

/* list
--------------------------------- */
.thanks-panel-01 {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  border-top: 1px solid #989898;
  border-bottom: 1px solid #989898;
}

.faq-tit-01 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .faq-tit-01 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.venue-slider-01 {
  position: relative;
}
.venue-slider-01 img {
  width: 100%;
  aspect-ratio: 326/315;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .venue-slider-01 img {
    aspect-ratio: 661/420;
  }
}
.venue-slider-01 .slider-arrow {
  --arrow-pos: 10%;
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
}
@media (min-width: 960px) {
  .venue-slider-01 .slider-arrow {
    --arrow-pos: 24.5vw;
    width: 70px;
  }
}
.venue-slider-01 .slider-arrow.prev {
  left: var(--arrow-pos);
  transform: translate(-50%, -50%);
}
.venue-slider-01 .slider-arrow.next {
  right: var(--arrow-pos);
  transform: translate(50%, -50%);
}
.venue-slider-01 .panel-dots {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.venue-slider-02 {
  position: relative;
}
@media (min-width: 960px) {
  .venue-slider-02 {
    padding-inline: 80px;
  }
}
.venue-slider-02 .swiper-slide img {
  width: 100%;
  aspect-ratio: 326/207;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .venue-slider-02 .swiper-slide img {
    aspect-ratio: 541/342;
  }
}
.venue-slider-02 .slider-dots {
  margin-top: 10px;
}
@media (min-width: 960px) {
  .venue-slider-02 .slider-dots {
    display: none;
  }
}
.venue-slider-02 .slider-arrow {
  --arrow-pos: 5%;
  position: absolute;
  top: calc((100% - 38px) / 2);
  transform: translateY(-50%);
  z-index: 2;
}
@media (min-width: 960px) {
  .venue-slider-02 .slider-arrow {
    --arrow-pos: 0;
    top: 50%;
  }
}
.venue-slider-02 .slider-arrow.prev {
  left: var(--arrow-pos);
}
.venue-slider-02 .slider-arrow.next {
  right: var(--arrow-pos);
}

.venue-panel-01 {
  display: flex;
  flex-direction: column;
}
.venue-panel-01 > * {
  width: 100%;
}
.venue-panel-01 .panel-detail {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .venue-panel-01 .panel-detail {
    order: -1;
    margin-top: 0;
  }
}
@media (min-width: 960px) {
  .venue-panel-01 .panel-slider {
    margin-top: 80px;
  }
}
.venue-panel-01 .panel-slider .uk-container {
  max-width: unset;
}
@media (min-width: 960px) {
  .venue-panel-01 .panel-slider .uk-container {
    padding-inline: 0;
  }
}
.venue-panel-01 .panel-footer {
  margin-top: 80px;
}

.venue-panel-02 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  border: 1px solid #707070;
  padding: 40px 20px;
}
@media (min-width: 960px) {
  .venue-panel-02 {
    padding-inline: 25px;
  }
}

.venue-panel-03 {
  --pi: 30px;
  width: calc(100% + var(--pi) * 2);
  margin-left: calc(var(--pi) * -1);
}
@media (min-width: 960px) {
  .venue-panel-03 {
    --pi: 35px;
    width: 100%;
    margin-left: 0;
    max-width: 767px;
  }
}
.venue-panel-03 > .panel-body, .venue-panel-03 > .panel-footer {
  padding-inline: var(--pi);
}
.venue-panel-03 > .panel-body {
  background-color: #F6F6F4;
  padding-block: 30px 20px;
}
.venue-panel-03 > .panel-footer {
  background-color: #DDD4C3;
  padding-block: 10px;
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 30px;
  align-items: center;
}

.venue-sec-01 {
  background-color: #F6F6F4;
}
@media (min-width: 960px) {
  .venue-sec-01 {
    background-color: unset;
  }
}

.venue-sec-02 {
  position: relative;
}
.venue-sec-02 + .venue-sec-02 {
  --sec-gap: 80px;
}
.venue-sec-02 + .venue-sec-02::before {
  content: "";
  display: block;
  margin-left: calc(var(--sec-gap) * -1);
  width: calc(100% + var(--sec-gap) * 2);
  border-top: 1px solid #707070;
  margin-block: var(--sec-gap);
}
@media (min-width: 960px) {
  .venue-sec-02 + .venue-sec-02::before {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 959px) {
  .venue-list-01 li {
    margin-left: 0;
  }
}
@media (max-width: 959px) {
  .venue-list-01 li::before {
    display: none;
  }
}

.venue-list-02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.05em;
}
.venue-list-02 > li {
  border: 1px solid #707070;
  border-radius: 13px;
  padding: 0.5em;
}

.venue-text-01 {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  .venue-text-01 {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 2.3076923077;
  }
}

.venue-text-02 {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.venue-text-03 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  letter-spacing: 0.1em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  max-width: 540px;
}

.venue-tit-01 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  margin-bottom: 1.5em;
}

.venue-tit-02 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 0.6875;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.11em;
  margin: 0;
}
@media (min-width: 960px) {
  .venue-tit-02 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.venue-dl-01 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
  line-height: 1.2;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.11em;
}
@media (min-width: 960px) {
  .venue-dl-01 {
    gap: 20px 40px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.venue-dl-01 .row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #707070;
}
.venue-dl-01 dt {
  font-weight: inherit;
}
.venue-dl-01 dd {
  font-size: 12px;
  font-size: 0.75rem;
}
.venue-dl-01 .num {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 500;
}
@media (min-width: 960px) {
  .venue-dl-01 .num {
    font-size: 16px;
    font-size: 1rem;
  }
}

.plans-fixed-btn {
  position: fixed;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 1em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  left: 15px;
  bottom: 35px;
  background-color: #C3BCAF;
  border-radius: 4px;
  padding: 1.3em 2.3em;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .plans-fixed-btn {
    left: unset;
    right: 15px;
    bottom: 135px;
  }
}
.plans-fixed-btn::after {
  content: "";
  display: block;
  width: 8.5px;
  aspect-ratio: 8.5/17;
  background: url(../img/common/arrow_05.svg) no-repeat center/contain;
}
.plans-fixed-btn:hover {
  opacity: 0.6;
}

.plans-text-01 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  font-weight: 500;
}
.plans-text-01 .price {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media (min-width: 960px) {
  .plans-text-01 .price {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}
.plans-text-01 .currency {
  font-size: 67%;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
}
@media (min-width: 960px) {
  .plans-text-01 .currency {
    font-size: 78%;
  }
}

.plans-text-02 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (min-width: 960px) {
  .plans-text-02 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.3571428571;
    letter-spacing: 0.1em;
    max-width: 590px;
  }
}

.plans-text-03 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.08em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.plans-list-01 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7em 1em;
}
@media (min-width: 960px) {
  .plans-list-01 {
    justify-content: flex-end;
  }
}
.plans-list-01 > li {
  border: 1px solid #707070;
  border-radius: 11px;
  padding: 0.3em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-panel-01 {
  position: relative;
  z-index: 2;
  padding: 30px;
  margin-top: 30px;
}
@media (min-width: 960px) {
  .plans-panel-01 {
    padding-block: 75px;
    margin-top: 0;
  }
}
.plans-panel-01::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: calc(100% - 60px);
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #F6F6F4;
  transform: translateX(-50%);
}
@media (min-width: 640px) {
  .plans-panel-01::before {
    width: 100%;
  }
}

.plans-panel-02 + .plans-panel-02 {
  margin-top: 80px;
}
@media (min-width: 960px) {
  .plans-panel-02 + .plans-panel-02 {
    margin-top: 120px;
  }
}

.plans-panel-03 {
  background-color: #F6F6F4;
  padding: 25px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .plans-panel-03 {
    padding: 45px 80px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.2142857143;
    letter-spacing: 0.14em;
  }
}
.plans-panel-03 .panel-list {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  font-weight: 300;
}
@media (min-width: 960px) {
  .plans-panel-03 .panel-list {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.2142857143;
    letter-spacing: 0.14em;
  }
}

.plans-dl-01 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1em;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (min-width: 960px) {
  .plans-dl-01 {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
.plans-dl-01 .row {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
  align-items: baseline;
  gap: 2em;
}

.plans-dl-02 > :first-child {
  margin-top: 0;
}
.plans-dl-02 dt {
  margin-top: 1em;
}
.plans-dl-02 dd {
  margin-top: 0;
}

.plans-dl-03 {
  --border: 1px solid #707070;
  border-block: var(--border);
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.14em;
}
@media (min-width: 960px) {
  .plans-dl-03 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1em;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5714285714;
    padding-inline: 7.5%;
  }
}
.plans-dl-03 .row {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 100%;
  gap: 0.5em 2.5em;
  padding-block: 1em;
}
@media (min-width: 960px) {
  .plans-dl-03 .row {
    grid-template-columns: subgrid;
    align-items: baseline;
    padding-block: 1.6em;
  }
}
@media (min-width: 1200px) {
  .plans-dl-03 .row {
    -moz-column-gap: 4.5em;
    column-gap: 4.5em;
  }
}
.plans-dl-03 .row + .row {
  border-top: var(--border);
}
.plans-dl-03 dt {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  .plans-dl-03 dt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.plans-img-01 {
  width: 100%;
  aspect-ratio: 236/215;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .plans-img-01 {
    aspect-ratio: 569/340;
  }
}

.plans-tit-01 {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  margin-bottom: 1em;
}
@media (min-width: 960px) {
  .plans-tit-01 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.plans-card-01 {
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6923076923;
  letter-spacing: 0.13em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-weight: 300;
}
@media (min-width: 960px) {
  .plans-card-01 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2857142857;
    letter-spacing: 0.11em;
  }
}
.plans-card-01 .card-image {
  width: 100%;
  aspect-ratio: 256/182;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .plans-card-01 .card-image {
    aspect-ratio: 661/420;
  }
}
.plans-card-01 .card-caption {
  margin-top: 1.2em;
}

.plans-card-02 {
  display: block;
}
.plans-card-02 .card-tit {
  --arrow: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-right: calc(0.5em + var(--arrow));
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.11em;
  margin-bottom: 1.5em;
}
@media (min-width: 960px) {
  .plans-card-02 .card-tit {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.plans-card-02 .card-tit::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/common/arrow_03.svg) no-repeat center/contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: var(--arrow);
  aspect-ratio: 1/1;
}
.plans-card-02 .card-tit .sub {
  display: inline-block;
}
.plans-card-02 .card-desc {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6923076923;
  letter-spacing: 0.06em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 48px;
}
@media (min-width: 960px) {
  .plans-card-02 .card-desc {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.plans-card-02 .card-thumb {
  width: 100%;
  aspect-ratio: 290/176;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 1.4em;
}
@media (min-width: 960px) {
  .plans-card-02 .card-thumb {
    aspect-ratio: 364/221;
  }
}
.plans-card-02:hover {
  opacity: 0.6;
}

.plans-slider-01 {
  position: relative;
}
.plans-slider-01 .slider-arrow {
  --arrow-pos: 18.5vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (min-width: 960px) {
  .plans-slider-01 .slider-arrow {
    --arrow-pos: 22.5vw;
    width: 70px;
  }
}
.plans-slider-01 .slider-arrow.prev {
  left: var(--arrow-pos);
}
.plans-slider-01 .slider-arrow.next {
  right: var(--arrow-pos);
}

.plans-slider-02 .slider-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 960px) {
  .plans-slider-02 .slider-footer {
    margin-top: 60px;
  }
}
.plans-slider-02 .slider-arrow {
  flex-shrink: 0;
}
.plans-slider-02 .slider-dots {
  width: auto;
}
.plans-slider-02 .slider-dots .swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 7px;
  --swiper-pagination-bullet-width: 3px;
  --swiper-pagination-bullet-height: 3px;
}

.plans-arrow-01 {
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background-color: unset;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.plans-arrow-01::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/arrow_01_gray.svg) no-repeat center/4px;
  top: 0;
  left: 0;
}
.plans-arrow-01.prev::before {
  transform: scaleX(-1);
}
.plans-arrow-01:hover {
  background-color: rgba(48, 87, 69, 0.1);
}

.plan-sec-01 {
  padding-block: 20px 40px;
  border-bottom: 1px solid #707070;
}

.js-plan-search-wrapper {
  transition: opacity 0.5s ease-in-out;
}
.js-plan-search-wrapper.is-disable {
  opacity: 0.5;
  pointer-events: none;
}

.access-map-01 {
  width: 100%;
  aspect-ratio: 326/245;
  filter: grayscale(1);
  transition: filter 0.3s ease-in-out;
}
@media (min-width: 960px) {
  .access-map-01 {
    aspect-ratio: 1180/499;
  }
}
.access-map-01 iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.access-map-01:hover {
  filter: grayscale(0);
}

.access-text-01 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 300;
  letter-spacing: 0.08em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

.access-link-01 {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.access-tit-01 {
  font-size: 23px;
  font-size: 1.4375rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 1em;
}

.access-panel-01 {
  --addition-width: 30px;
  margin-left: calc(var(--addition-width) * -1);
  width: calc(100% + var(--addition-width) * 2);
  padding: 30px var(--addition-width);
  background-color: #F6F6F4;
  box-sizing: border-box;
}
@media (min-width: 960px) {
  .access-panel-01 {
    margin-left: 0;
    width: 100%;
    max-width: 1080px;
    padding: 20px;
    margin-inline: auto;
  }
}

.access-dl-01 {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .access-dl-01 {
    display: grid;
    grid-template-columns: auto 1fr;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.access-dl-01 .row {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px 80px;
  padding-block: 30px;
}
@media (min-width: 960px) {
  .access-dl-01 .row {
    grid-column: span 2;
    grid-template-columns: subgrid;
    align-items: baseline;
    padding-block: 20px;
  }
}
.access-dl-01 .row:not(:first-child) {
  border-top: 1px solid #707070;
}
.access-dl-01 dt {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: inherit;
}
@media (min-width: 960px) {
  .access-dl-01 dt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.cuisine-slider-01 .main-slider img {
  width: 100%;
  aspect-ratio: 326/204;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .cuisine-slider-01 .main-slider img {
    aspect-ratio: 700/440;
  }
}
.cuisine-slider-01 .slider-thumb {
  --gap: 10px;
  margin-left: calc(var(--gap) * -1);
  margin-top: 15px;
}
.cuisine-slider-01 .slider-thumb > * {
  padding-left: var(--gap);
}
.cuisine-slider-01 .slider-thumb > .uk-grid-margin {
  margin-top: var(--gap);
}
.cuisine-slider-01 .slider-thumb .thumb {
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
.cuisine-slider-01 .slider-thumb .thumb:hover {
  opacity: 0.6;
}

.cuisine-grid-01 {
  --gap-x: 70px;
  margin-left: calc(var(--gap-x) * -1);
}
@media (min-width: 1200px) {
  .cuisine-grid-01 {
    --gap-x: 150px;
  }
}
.cuisine-grid-01 > * {
  padding-left: var(--gap-x);
}

.cuisine-grid-02 {
  --gap-x: 60px;
  margin-left: calc(var(--gap-x) * -1);
}
@media (min-width: 1200px) {
  .cuisine-grid-02 {
    --gap-x: 150px;
  }
}
.cuisine-grid-02 > * {
  padding-left: 120px;
}

.cuisine-tit-01 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 300;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
@media (min-width: 960px) {
  .cuisine-tit-01 {
    margin-bottom: 1.8em;
  }
}

.cuisine-tit-02 {
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.07em;
  margin-bottom: 2.75em;
}
@media (min-width: 960px) {
  .cuisine-tit-02 {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.11em;
    margin-bottom: 3.3em;
  }
}
.cuisine-tit-02 .eng {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.28125;
  font-weight: 300;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}
@media (min-width: 960px) {
  .cuisine-tit-02 .eng {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 1.6;
  }
}
.cuisine-tit-02 .jp {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  margin: 0;
}

.cuisine-catch-01 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .cuisine-catch-01 {
    font-size: 29px;
    font-size: 1.8125rem;
  }
}

.cuisine-card-01 {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.05em;
}
.cuisine-card-01 .card-thumb {
  width: 100%;
  aspect-ratio: 470/300;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 30px;
}
.cuisine-card-01 .card-tit {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
  text-align: center;
  font-family: inherit;
  margin-block: 0 30px;
}
@media (min-width: 960px) {
  .cuisine-card-01 .card-tit {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.cuisine-card-01 .card-desc {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
}
/*# sourceMappingURL=layout.css.map */
