@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

br.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  br.u-desktop {
    display: inline;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #fffcea;
  color: #5a5a5a;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
}

/* 下層ページは固定ヘッダー分の余白を確保（TOPはMVがヘッダー下に潜り込む） */
body:not(.home) main {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  body:not(.home) main {
    padding-top: 6.25rem;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  color: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 299px;
  max-width: 18.6875rem;
  height: 64px;
  height: 4rem;
  padding-right: 14px;
  padding-right: 0.875rem;
  padding-left: 26px;
  padding-left: 1.625rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background-color: #dfefad;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  left: 0;
  width: calc(100% + 1.25rem);
  height: calc(100% + 4px);
  background-color: #c8d3b6;
  -webkit-transform: skewX(-10deg) scale(0, 1);
          transform: skewX(-10deg) scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1), -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) {
  .btn:hover {
    opacity: 1;
  }
  .btn:hover::after {
    -webkit-transform: skewX(-10deg) scale(1, 1);
            transform: skewX(-10deg) scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media screen and (min-width: 768px) {
  .btn {
    max-width: 23.1875rem;
    height: 5rem;
    padding-right: 1.9375rem;
    padding-left: 3.625rem;
  }
}

.btn__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  -webkit-transition: color 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) {
  .btn__text {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .btn:hover .btn__text {
    color: #fff;
  }
}

.btn__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  margin-left: 8px;
  margin-left: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .btn__arrow {
    margin-left: 0;
  }
}

.btn__arrow::before {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: 2px solid #b2d677;
  border-right: 2px solid #b2d677;
  -webkit-transform: translateX(-0.125rem) rotate(45deg);
          transform: translateX(-0.125rem) rotate(45deg);
}

.btn-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  width: 100%;
  max-width: 286px;
  max-width: 17.875rem;
  height: 41px;
  height: 2.5625rem;
  padding-right: 8px;
  padding-right: 0.5rem;
  padding-left: 14px;
  padding-left: 0.875rem;
  border: 1px solid #b2d677;
  border-radius: 999px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-outline::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  left: 0;
  width: calc(100% + 1.25rem);
  height: calc(100% + 4px);
  background-color: #b2d677;
  -webkit-transform: skewX(-10deg) scale(0, 1);
          transform: skewX(-10deg) scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1), -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) {
  .btn-outline:hover {
    opacity: 1;
  }
  .btn-outline:hover::after {
    -webkit-transform: skewX(-10deg) scale(1, 1);
            transform: skewX(-10deg) scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media screen and (min-width: 768px) {
  .btn-outline {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    height: 3.125rem;
    padding-right: 1.75rem;
    padding-left: 1.4375rem;
  }
}

.btn-outline__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: 0.1em;
  color: #87ba67;
  -webkit-transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) {
  .btn-outline__text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .btn-outline:hover .btn-outline__text {
    color: #fff;
  }
}

.btn-outline__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  border: 1px solid #b2d677;
  border-radius: 50%;
  -webkit-transition: background-color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: background-color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

@media screen and (min-width: 768px) {
  .btn-outline:hover .btn-outline__arrow {
    background-color: #fff;
  }
}

.btn-outline__arrow::before {
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-top: 1px solid #b2d677;
  border-right: 1px solid #b2d677;
  -webkit-transform: translateX(-0.125rem) rotate(45deg);
          transform: translateX(-0.125rem) rotate(45deg);
}

body.active {
  height: 100%;
  overflow: hidden;
}

.drawer {
  display: none;
  position: fixed;
  z-index: 890;
  top: 60px;
  top: 3.75rem;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .drawer {
    display: none !important;
  }
}

.drawer__inner {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.drawer__item {
  border-bottom: 1px dashed #b4aea3;
}

.drawer__item:first-child {
  border-top: 1px dashed #b4aea3;
}

.drawer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 24px 25px;
  padding: 1.5rem 1.5625rem;
  text-align: left;
}

.drawer__label {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.drawer__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  margin-left: 16px;
  margin-left: 1rem;
  border-top: 1px solid #5a5a5a;
  border-right: 1px solid #5a5a5a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.drawer__row[aria-expanded=true] .drawer__arrow,
.drawer__sub-row[aria-expanded=true] .drawer__arrow {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.drawer__sub {
  display: none;
  background-color: #fffcea;
}

.drawer__sub-item + .drawer__sub-item {
  border-top: 1px solid rgba(180, 174, 163, .4);
}

.drawer__sub-link,
.drawer__sub-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 14px 25px 14px 42px;
  padding: 0.875rem 1.5625rem 0.875rem 2.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #707070;
  text-align: left;
}

.drawer__sub-row .drawer__label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #707070;
}

.drawer__child {
  display: none;
}

.drawer__child-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 12px 25px 12px 58px;
  padding: 0.75rem 1.5625rem 0.75rem 3.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #707070;
}

.drawer__child-item a::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8px;
  width: 0.5rem;
  height: 1px;
  background-color: #707070;
}

.drawer__links {
  padding: 24px 25px 0;
  padding: 1.5rem 1.5625rem 0;
}

.drawer__links li + li {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.drawer__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5625rem;
     -moz-column-gap: 0.5625rem;
          column-gap: 0.5625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.drawer__links img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 23px;
  width: 1.4375rem;
}

.drawer__links li:last-child img {
  width: 26px;
  width: 1.625rem;
}

.drawer__recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 195px;
  width: 12.1875rem;
  height: 43px;
  height: 2.6875rem;
  margin: 53px auto 0;
  margin: 3.3125rem auto 0;
  border: 1px solid #b4aea3;
  border-radius: 999px;
  background-color: #dfefad;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.drawer__tel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 15px;
  row-gap: 0.9375rem;
  margin-top: 28px;
  margin-top: 1.75rem;
}

.drawer__tel .tel-block__badge {
  width: 126px;
  width: 7.875rem;
}

.drawer__tel .tel-block__number {
  font-size: 27px;
  font-size: 1.6875rem;
}

.drawer__tel .tel-block__icon {
  width: 25px;
  width: 1.5625rem;
}

@media (prefers-reduced-motion: no-preference) {
  .js-fadeIn.is-fadein-ready {
    opacity: 0;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
    -webkit-transition: opacity 1s cubic-bezier(0, 0.84, 0.43, 0.98), -webkit-transform 1s cubic-bezier(0, 0.84, 0.43, 0.98);
    transition: opacity 1s cubic-bezier(0, 0.84, 0.43, 0.98), -webkit-transform 1s cubic-bezier(0, 0.84, 0.43, 0.98);
    transition: opacity 1s cubic-bezier(0, 0.84, 0.43, 0.98), transform 1s cubic-bezier(0, 0.84, 0.43, 0.98);
    transition: opacity 1s cubic-bezier(0, 0.84, 0.43, 0.98), transform 1s cubic-bezier(0, 0.84, 0.43, 0.98), -webkit-transform 1s cubic-bezier(0, 0.84, 0.43, 0.98);
  }
  .js-fadeIn.is-inview {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.footer {
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5.125rem;
    padding-bottom: 3.1875rem;
  }
}

.footer__inner {
  width: 100%;
  max-width: 1455px;
  max-width: 90.9375rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-right: 0;
    padding-left: 0;
  }
}

.footer__head {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__head {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__logo {
  width: 325px;
  width: 20.3125rem;
  margin-right: auto;
  margin-left: auto;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 28.0625rem;
    margin-right: 0;
    margin-left: 0;
  }
}

.footer__address {
  margin-top: 28px;
  margin-top: 1.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.571;
  letter-spacing: 0.1em;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 3.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625;
    color: #5a5a5a;
  }
}

.footer__anniversary {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__anniversary {
    display: block;
    width: 8.5625rem;
    margin-top: 1.5625rem;
  }
}

.footer__sitemap {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__sitemap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 7.375rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 2.5rem;
  }
}

.footer__col + .footer__col {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__col + .footer__col {
    margin-top: 0;
  }
}

.footer__nav-title {
  display: inline-block;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  border-bottom: 2px solid #b2d677;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.footer__nav--second {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.footer__nav-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.footer__nav-list a,
.footer__sub-list a {
  display: block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media screen and (min-width: 768px) {
  .footer__nav-list a:hover,
  .footer__sub-list a:hover {
    opacity: 1;
    color: #a38a51;
  }
}

.footer__nav-heading {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.footer__nav-heading:first-child {
  margin-top: 0;
}

.footer__sub-list {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.footer__sitemap-link {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #707070;
  text-align: center;
}

.footer__copy {
  display: block;
  margin-top: 52px;
  margin-top: 3.25rem;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 3.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-align: left;
  }
}

.group-banner {
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .group-banner {
    padding-top: 9.375rem;
    padding-bottom: 8.5625rem;
  }
}

.group-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  width: 100%;
  max-width: 1604px;
  max-width: 100.25rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .group-banner__inner {
    -webkit-column-gap: 3.5625rem;
       -moz-column-gap: 3.5625rem;
            column-gap: 3.5625rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.group-banner__slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 200px;
  width: 12.5rem;
  min-width: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .group-banner__slider {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}

.group-banner__item {
  width: 200px;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .group-banner__item {
    width: 15.125rem;
  }
}

.group-banner__item img {
  border: 1px solid #5a5a5a;
}

.group-banner__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  width: 1.25rem;
  height: 25px;
  height: 1.5625rem;
  padding: 0;
}

.group-banner__arrow::before {
  content: "";
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  border-top: 1px solid #5a5a5a;
  border-right: 1px solid #5a5a5a;
}

.group-banner__arrow--prev::before {
  -webkit-transform: translateX(0.1875rem) rotate(-135deg);
          transform: translateX(0.1875rem) rotate(-135deg);
}

.group-banner__arrow--next::before {
  -webkit-transform: translateX(-0.1875rem) rotate(45deg);
          transform: translateX(-0.1875rem) rotate(45deg);
}

.group-banner__pagetop {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  position: fixed;
  z-index: 800;
  right: 11px;
  right: 0.6875rem;
  bottom: 80px;
  bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 4px;
  row-gap: 0.25rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .group-banner__pagetop {
    right: 3.125rem;
    bottom: 2.5rem;
    row-gap: 0.3125rem;
    width: 2.8125rem;
  }
}

.group-banner__pagetop.is-visible {
  visibility: visible;
  opacity: 1;
}

.pagetop__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
  border: 1px solid #a38a51;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .pagetop__circle {
    width: 4.125rem;
    height: 4.125rem;
  }
}

.pagetop__circle::before {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: 2px solid #a38a51;
  border-right: 2px solid #a38a51;
  -webkit-transform: translateY(0.125rem) rotate(-45deg);
          transform: translateY(0.125rem) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .pagetop__circle::before {
    width: 0.6875rem;
    height: 0.6875rem;
  }
}

.pagetop__text {
  font-family: "Comfortaa", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  color: #a38a51;
}
@media screen and (min-width: 768px) {
  .pagetop__text {
    font-size: 1rem;
  }
}

.header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, .7);
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .16);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body.active .header {
  background-color: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-left: 18px;
  padding-left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-right: 3.125rem;
    padding-left: 3.125rem;
  }
}

.header__logo {
  width: 192px;
  width: 12rem;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 17.8125rem;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    height: 100%;
    margin-left: 7.375rem;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  height: 100%;
}

.header__nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.header__nav-item a {
  padding-inline: 23px;
  padding-inline: 1.4375rem;
}

.header__nav-item:hover,
.header__nav-item:focus-within {
  background-color: #dfefad;
}

.header__nav-item.current {
  background-color: transparent;
}

.header__nav-item.current .header__nav-link {
  position: relative;
  z-index: 1;
}

.header__nav-item.current::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 15px;
  top: 0.9375rem;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0.625rem 0.625rem 0 0;
  background-color: #dfefad;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}

.header__nav-item.current:hover,
.header__nav-item.current:focus-within {
  background-color: transparent;
}

.header__nav-item.current:hover::before,
.header__nav-item.current:focus-within::before {
  opacity: 1;
}

.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__nav-item:hover .header__nav-link,
.header__nav-item:focus-within .header__nav-link {
  opacity: 1;
}

.mega {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
  pointer-events: none;
}

.header__nav-item:hover .mega,
.header__nav-item:focus-within .mega {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.mega__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  padding: 28px 40px 32px;
  padding: 1.75rem 2.5rem 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, .16);
}

.mega__item + .mega__item {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.mega__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  padding: 5px 2px;
  padding: 0.3125rem 0.125rem;
  margin: -5px -2px;
  margin: -0.3125rem -0.125rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.mega__link::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-top: 1px solid #a38a51;
  border-right: 1px solid #a38a51;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__utility {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__utility {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    margin-left: auto;
  }
}

.header__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 19px;
  row-gap: 1.1875rem;
}

.header__sub-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -6px -8px;
  margin: -0.375rem -0.5rem;
  padding: 6px 8px;
  padding: 0.375rem 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.header__sub-icon--access {
  width: 24px;
  width: 1.5rem;
  margin-right: 7px;
  margin-right: 0.4375rem;
}

.header__sub-icon--mail {
  width: 27px;
  width: 1.6875rem;
  margin-right: 4px;
  margin-right: 0.25rem;
}

.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  row-gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.4375rem;
     -moz-column-gap: 0.4375rem;
          column-gap: 0.4375rem;
}

.header__recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 155px;
  width: 9.6875rem;
  height: 34px;
  height: 2.125rem;
  border: 1px solid #b4aea3;
  border-radius: 999px;
  background-color: #dfefad;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-transition: border-color 0.4s cubic-bezier(0.45, 0, 0.55, 1), color 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: border-color 0.4s cubic-bezier(0.45, 0, 0.55, 1), color 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.header__recruit::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  left: 0;
  width: calc(100% + 1.25rem);
  height: calc(100% + 4px);
  background-color: #fff;
  -webkit-transform: skewX(-10deg) scale(0, 1);
          transform: skewX(-10deg) scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1), -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) {
  .header__recruit:hover {
    opacity: 1;
  }
  .header__recruit:hover::after {
    -webkit-transform: skewX(-10deg) scale(1, 1);
            transform: skewX(-10deg) scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

@media screen and (min-width: 768px) {
  .header__recruit:hover {
    border-color: #c7e29b;
    color: #87ba67;
  }
}

.header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  width: 203px;
  width: 12.6875rem;
  height: 34px;
  height: 2.125rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  border: 1px solid #b4aea3;
  border-radius: 999px;
  background-color: #fff;
}

.header__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
}

.header__search-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 17px;
  width: 1.0625rem;
}

.header__search-input {
  width: 100%;
  padding-right: 12px;
  padding-right: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.header__search-input::-webkit-input-placeholder {
  color: #5a5a5a;
  opacity: 1;
}

.header__search-input::-moz-placeholder {
  color: #5a5a5a;
  opacity: 1;
}

.header__search-input::-ms-input-placeholder {
  color: #5a5a5a;
  opacity: 1;
}

.header__search-input::placeholder {
  color: #5a5a5a;
  opacity: 1;
}

.header__sp-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header__sp-btns {
    display: none;
  }
}

.header__sp-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 6px;
  row-gap: 0.375rem;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  padding: 0;
}

.header__sp-icon {
  width: 16px;
  width: 1rem;
}

.header__sp-label {
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.header__sp-label--en {
  font-family: "Comfortaa", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
}

.header__sp-label--close {
  display: none;
}

.header__hamburger.is-open .header__sp-label--menu {
  display: none;
}

.header__hamburger.is-open .header__sp-label--close {
  display: block;
}

.header__hamburger-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 6.5px;
  row-gap: 0.40625rem;
  width: 20px;
  width: 1.25rem;
}

.header__hamburger-bars span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #5a5a5a;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.header__hamburger.is-open .header__hamburger-bars span:nth-of-type(1) {
  -webkit-transform: translateY(0.46875rem) rotate(45deg);
          transform: translateY(0.46875rem) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-bars span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open .header__hamburger-bars span:nth-of-type(3) {
  -webkit-transform: translateY(-0.46875rem) rotate(-45deg);
          transform: translateY(-0.46875rem) rotate(-45deg);
}

.header__sp-search {
  display: none;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .16);
}
@media screen and (min-width: 768px) {
  .header__sp-search {
    display: none !important;
  }
}

.header__sp-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  height: 40px;
  height: 2.5rem;
  padding-right: 12px;
  padding-right: 0.75rem;
  padding-left: 16px;
  padding-left: 1rem;
  border: 1px solid #b4aea3;
  border-radius: 999px;
  background-color: #fff;
}

.header__sp-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.header__sp-submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  width: 18px;
  width: 1.125rem;
}

.drawer__sub-list {
  background-color: #fffcea;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.hours-table th,
.hours-table td {
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  text-align: center;
}

.hours-table th:not(:first-child),
.hours-table td:not(:first-child) {
  border-left: 1px solid #aaa;
}

.hours-table th {
  height: 36px;
  height: 2.25rem;
  background-color: rgba(222, 211, 151, .4);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .hours-table th {
    height: 2.75rem;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
}

.hours-table th:first-child {
  width: 53.8%;
}
@media screen and (min-width: 768px) {
  .hours-table th:first-child {
    width: 58.4%;
  }
}

.hours-table th:nth-child(2) {
  width: 10.5%;
}
@media screen and (min-width: 768px) {
  .hours-table th:nth-child(2) {
    width: 11.2%;
  }
}

.hours-table th:nth-child(3) {
  width: 12.3%;
}
@media screen and (min-width: 768px) {
  .hours-table th:nth-child(3) {
    width: 11.2%;
  }
}

.hours-table td {
  height: 58px;
  height: 3.625rem;
}
@media screen and (min-width: 768px) {
  .hours-table td {
    height: 4.375rem;
  }
}

.hours-table td.hours-table__time-cell {
  height: 58px;
  height: 3.625rem;
  padding-right: 2px;
  padding-right: 0.125rem;
  padding-left: 2px;
  padding-left: 0.125rem;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .hours-table td.hours-table__time-cell {
    height: 4.375rem;
    padding-right: 0.75rem;
    padding-left: 0;
    text-align: right;
  }
}

.hours-table__time {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .hours-table__time {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5625rem;
  }
}

.hours-table__note {
  display: block;
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .hours-table__note {
    display: inline-block;
    vertical-align: middle;
    width: 7.875rem;
    margin-top: 0;
    margin-left: 0.9375rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: left;
    white-space: normal;
  }
}

@media screen and (min-width: 768px) {
  .hours-table--lg .hours-table__note {
    width: 8.5rem;
    margin-left: 1.3125rem;
  }
}

.hours-table__circle {
  display: inline-block;
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  border-radius: 50%;
  background-color: #b2d677;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .hours-table__circle {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}

.hours-table__bar {
  display: inline-block;
  width: 12px;
  width: 0.75rem;
  height: 1px;
  background-color: #5a5a5a;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .hours-table__bar {
    width: 1.25rem;
  }
}

.hours-table__mark {
  position: relative;
  margin-right: -1em;
  font-family: "M PLUS 2", sans-serif;
  font-size: 7px;
  font-size: 0.4375rem;
  line-height: 1;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .hours-table__mark {
    top: -0.375rem;
    font-size: 0.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .hours-table--lg .hours-table__time {
    font-size: 1.75rem;
  }
}

.inner {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 78.125rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .inner--wide {
    max-width: 90.625rem;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.section-title {
  text-align: center;
}

.section-title__en {
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 3.4375rem;
  }
}

.section-title__ja {
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media screen and (min-width: 768px) {
  .section-title__ja {
    margin-top: 0.625rem;
    font-size: 1.375rem;
  }
}

.section-title--white .section-title__en,
.section-title--white .section-title__ja {
  color: #fff;
}

.section-title--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .section-title--inline {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
  }
}

.section-title--inline .section-title__ja {
  white-space: nowrap;
}

.section-title--inline .section-title__en {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: normal;
  text-indent: 0;
  color: #a38a51;
}
@media screen and (min-width: 768px) {
  .section-title--inline .section-title__en {
    font-size: 2.1875rem;
  }
}

.section-title--inline .section-title__ja {
  margin-top: 0;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #a38a51;
}
@media screen and (min-width: 768px) {
  .section-title--inline .section-title__ja {
    font-size: 1.125rem;
  }
}

.tel-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  row-gap: 8px;
  row-gap: 0.5rem;
}

.tel-block__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.4375rem;
     -moz-column-gap: 0.4375rem;
          column-gap: 0.4375rem;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .tel-block__number {
    font-size: 1.6875rem;
  }
}

.tel-block__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 29px;
  width: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .tel-block__icon {
    width: 1.8125rem;
  }
}

.tel-block__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 126px;
  width: 7.875rem;
  height: 24px;
  height: 1.5rem;
  border: 1px solid #b2d677;
  border-radius: 0.375rem;
  background-color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: #87ba67;
}
@media screen and (min-width: 768px) {
  .tel-block__badge {
    width: 7.875rem;
    height: 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
  }
}

.tel-block--inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

.mv__slide-img {
  aspect-ratio: 375/404;
}
@media screen and (min-width: 768px) {
  .mv__slide-img {
    aspect-ratio: 16/9;
  }
}

.mv__slide-img picture {
  display: block;
  height: 100%;
}

.mv__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
  .mv__slide.swiper-slide-active .mv__slide-img,
  .mv__slide.swiper-slide-duplicate-active .mv__slide-img,
  .mv__slide.swiper-slide-prev .mv__slide-img {
    -webkit-animation: mv-zoom 8s linear 0s normal both;
            animation: mv-zoom 8s linear 0s normal both;
  }
}
@-webkit-keyframes mv-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes mv-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.mv {
  position: relative;
}

.mv__catch {
  position: absolute;
  z-index: 1;
  top: 73.6vw;
  left: 28.8vw;
  width: 64.8vw;
}
@media screen and (min-width: 768px) {
  .mv__catch {
    top: 24.875rem;
    left: 80.9375rem;
    width: 27.8125rem;
  }
}

.mv__panel {
  position: fixed;
  z-index: 880;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0 -0.125rem 0.625rem rgba(0, 0, 0, .16);
          box-shadow: 0 -0.125rem 0.625rem rgba(0, 0, 0, .16);
}
@media screen and (min-width: 768px) {
  .mv__panel {
    position: absolute;
    z-index: 1;
    left: auto;
    overflow: hidden;
    border-radius: 1.25rem 1.25rem 0 0;
    width: 41.25rem;
    -webkit-box-shadow: 0.3125rem 0.3125rem 1.875rem rgba(0, 0, 0, .3);
            box-shadow: 0.3125rem 0.3125rem 1.875rem rgba(0, 0, 0, .3);
  }
}

.mv__panel-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.3125rem;
     -moz-column-gap: 1.3125rem;
          column-gap: 1.3125rem;
  width: 100%;
  height: 60px;
  height: 3.75rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  background-color: #a38a51;
}
@media screen and (min-width: 768px) {
  .mv__panel-head {
    position: static;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    height: 4.3125rem;
    padding-right: 2.1875rem;
    padding-left: 12.375rem;
  }
}

.mv__panel-icon {
  width: 32px;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .mv__panel-icon {
    width: 2.5rem;
  }
}

.mv__panel-head[aria-expanded=true] .mv__panel-toggle {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  .mv__panel-head[aria-expanded=true] .mv__panel-toggle {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.mv__panel-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__panel-title {
    margin-left: 2.3125rem;
    font-size: 1.5625rem;
  }
}

.mv__panel-toggle {
  position: absolute;
  top: 50%;
  right: 25px;
  right: 1.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .mv__panel-toggle {
    position: static;
    width: 1.4375rem;
    height: 1.4375rem;
    margin-left: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.mv__panel-toggle::before {
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translateY(-0.125rem) rotate(45deg);
          transform: translateY(-0.125rem) rotate(45deg);
}

.mv__panel-body {
  display: none;
  max-height: calc(100vh - 7.5rem);
  overflow-y: auto;
  padding: 20px 25px 21px;
  padding: 1.25rem 1.5625rem 1.3125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__panel-body {
    display: block;
    max-height: none;
    overflow-y: visible;
    padding: 1.125rem 1.875rem 1.4375rem 1.9375rem;
  }
}

.mv__note {
  margin-top: 11px;
  margin-top: 0.6875rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.375;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .mv__note {
    margin-top: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.mv__closed {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.444;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .mv__closed {
    margin-top: 0.625rem;
    font-size: 1.125rem;
  }
}

.mv__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .mv__buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
    margin-top: 0.8125rem;
  }
}

.mv__buttons .btn-outline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .mv__buttons .btn-outline {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

.info-cards {
  margin-top: 62px;
  margin-top: 3.875rem;
  padding-bottom: 71px;
  padding-bottom: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .info-cards {
    margin-top: 7.8125rem;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .info-cards__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5625rem;
  }
}

.info-cards__item + .info-cards__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .info-cards__item + .info-cards__item {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .info-cards__item {
    width: calc(20% - 1.25rem);
  }
}

.info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  height: 5.625rem;
  padding-left: 8px;
  padding-left: 0.5rem;
  overflow: hidden;
  border-radius: 0.625rem;
  background-color: #fff;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.625rem rgba(0, 0, 0, .16);
          box-shadow: 0.3125rem 0.3125rem 0.625rem rgba(0, 0, 0, .16);
  padding-inline: 7px;
  padding-inline: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .info-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    padding-bottom: 2.3125rem;
    padding-inline: 1rem;
    -webkit-box-shadow: 0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, .1);
            box-shadow: 0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, .1);
  }
}

@media (any-hover: hover) {
  .info-card:hover {
    opacity: 1;
  }
  .info-card:hover .info-card__title,
  .info-card:hover .info-card__sub {
    color: #a38a51;
  }
  .info-card:hover .info-card__figure img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.info-card__figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 96px;
  width: 6rem;
}
@media screen and (min-width: 768px) {
  .info-card__figure {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    height: 14.8125rem;
  }
}

.info-card__image {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.info-card__image--01 {
  width: 91px;
  width: 5.6875rem;
}
@media screen and (min-width: 768px) {
  .info-card__image--01 {
    width: 14.1875rem;
    max-height: none;
  }
}

.info-card__image--02 {
  width: 79px;
  width: 4.9375rem;
}
@media screen and (min-width: 768px) {
  .info-card__image--02 {
    width: 13.75rem;
    margin-top: 0.8125rem;
  }
}

.info-card__image--03 {
  width: 67px;
  width: 4.1875rem;
}
@media screen and (min-width: 768px) {
  .info-card__image--03 {
    width: 9.4375rem;
    margin-top: 2rem;
  }
}

.info-card__image--04 {
  width: 69px;
  width: 4.3125rem;
}
@media screen and (min-width: 768px) {
  .info-card__image--04 {
    width: 9.4375rem;
    margin-top: 2.6875rem;
  }
}

.info-card__image--05 {
  width: 78px;
  width: 4.875rem;
}
@media screen and (min-width: 768px) {
  .info-card__image--05 {
    width: 10.5rem;
    margin-top: 3.75rem;
  }
}

.info-card__title {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .info-card__title {
    margin-left: 0;
    font-size: 2.1875rem;
  }
}

.info-card__sub {
  margin-left: 3px;
  margin-left: 0.1875rem;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .info-card__sub {
    margin-top: 0.75rem;
    margin-left: 0;
    font-size: 1.6875rem;
  }
}

.info-card__arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .info-card__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1.6875rem;
    height: 1.6875rem;
    margin-top: 1.375rem;
    border: 2px solid #a38a51;
    border-radius: 50%;
  }
}

.info-card__arrow::before {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: 2px solid #a38a51;
  border-right: 2px solid #a38a51;
  -webkit-transform: translateX(-0.125rem) rotate(45deg);
          transform: translateX(-0.125rem) rotate(45deg);
}

.hours {
  padding-top: 42px;
  padding-top: 2.625rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .hours {
    margin-top: 7.6875rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .hours__panels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .hours__panel {
    padding: 1.75rem 1.25rem 2rem;
    border-radius: 0.625rem;
    background-color: #fff;
    -webkit-box-shadow: 0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, .1);
            box-shadow: 0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, .1);
  }
}

.hours__panel + .hours__panel {
  margin-top: 57px;
  margin-top: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .hours__panel + .hours__panel {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .hours__panel--main {
    width: calc(59.46746% - 1.78402rem);
    padding: 2.25rem 3.875rem 2.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .hours__panel--visit {
    width: calc(40.53254% - 1.21598rem);
    padding: 2.25rem 3.75rem 2.4375rem;
  }
}

.hours__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.3125rem;
     -moz-column-gap: 1.3125rem;
          column-gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .hours__head {
    -webkit-column-gap: 1.6875rem;
       -moz-column-gap: 1.6875rem;
            column-gap: 1.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .hours__panel--visit .hours__head {
    -webkit-column-gap: 1.3125rem;
       -moz-column-gap: 1.3125rem;
            column-gap: 1.3125rem;
  }
}

.hours__head-icon {
  width: 42px;
  width: 2.625rem;
}
@media screen and (min-width: 768px) {
  .hours__head-icon {
    width: 3.125rem;
  }
}

.hours__panel--visit .hours__head {
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
}

.hours__panel--visit .hours__head-icon {
  width: 35px;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .hours__panel--visit .hours__head-icon {
    width: 3.0625rem;
  }
}

.hours__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media screen and (min-width: 768px) {
  .hours__title {
    font-size: 1.75rem;
    line-height: 1.143;
  }
}

.hours__panel--visit .hours__title {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .hours__panel--visit .hours__title {
    font-weight: 800;
  }
}

.hours .hours-table,
.hours .visit-table {
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .hours .hours-table,
  .hours .visit-table {
    margin-top: 1.375rem;
  }
}

.hours__note {
  margin-top: 11px;
  margin-top: 0.6875rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.375;
  letter-spacing: normal;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .hours__note {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.hours__closed {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.444;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .hours__closed {
    margin-top: 0.75rem;
    font-size: 1.125rem;
  }
}

.hours__visit-text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.786;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .hours__visit-text {
    margin-top: 0.5rem;
    line-height: 1.875;
    font-size: 1rem;
  }
}

.hours__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .hours__buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
    margin-top: 0.875rem;
  }
}

.hours__buttons .btn-outline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .hours__buttons .btn-outline {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

.hours__buttons--single .btn-outline {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 174px;
  width: 10.875rem;
}
@media screen and (min-width: 768px) {
  .hours__buttons--single .btn-outline {
    width: 100%;
  }
}

.hours__buttons--single {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .hours__buttons--single {
    margin-top: 1.5625rem;
  }
}

.visit-table {
  width: 100%;
  border-collapse: collapse;
}

.visit-table th {
  height: 36px;
  height: 2.25rem;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  background-color: rgba(222, 211, 151, .4);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .visit-table th {
    height: 2.75rem;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
}

.visit-table td {
  height: 71px;
  height: 4.4375rem;
  border-bottom: 1px solid #aaa;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .visit-table td {
    height: 6.0625rem;
  }
}

.visit-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.1875rem;
     -moz-column-gap: 1.1875rem;
          column-gap: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .visit-table__row {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.visit-table__label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
@media screen and (min-width: 768px) {
  .visit-table__label {
    font-size: 1.125rem;
  }
}

.visit-table__time {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .visit-table__time {
    font-size: 1.75rem;
  }
}

.visit-table__note {
  display: block;
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .visit-table__note {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.news-area {
  padding-top: 74px;
  padding-top: 4.625rem;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, .5);
}
@media screen and (min-width: 768px) {
  .news-area {
    margin-top: 7.6875rem;
    padding-top: 5.875rem;
    padding-bottom: 7.125rem;
  }
}

.news__body {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .news__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 4.25rem;
       -moz-column-gap: 4.25rem;
            column-gap: 4.25rem;
    margin-top: 3.9375rem;
  }
}

.news__side {
  position: relative;
}
@media screen and (min-width: 768px) {
  .news__side {
    width: 13.6875rem;
  }
}

.news__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5625rem;
     -moz-column-gap: 0.5625rem;
          column-gap: 0.5625rem;
  row-gap: 13px;
  row-gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .news__filter {
    display: block;
  }
}

.news__filter-item {
  width: calc(50% - 0.28125rem);
}
@media screen and (min-width: 768px) {
  .news__filter-item {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .news__filter-item + .news__filter-item {
    margin-top: 1.25rem;
  }
}

.news__filter-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 35px;
  height: 2.1875rem;
  padding-right: 8px;
  padding-right: 0.5rem;
  padding-left: 8px;
  padding-left: 0.5rem;
  border-radius: 999px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: 0;
  text-align: center;
}
.news__filter-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  left: 0;
  width: calc(100% + 1.25rem);
  height: calc(100% + 4px);
  background-color: #dfefad;
  -webkit-transform: skewX(-10deg) scale(0, 1);
          transform: skewX(-10deg) scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1), -webkit-transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) {
  .news__filter-btn:hover {
    opacity: 1;
  }
  .news__filter-btn:hover::after {
    -webkit-transform: skewX(-10deg) scale(1, 1);
            transform: skewX(-10deg) scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media screen and (min-width: 768px) {
  .news__filter-btn {
    height: 3.125rem;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.news__filter-btn.is-active {
  background-color: #dfefad;
}

.news__illust {
  position: absolute;
  bottom: 100%;
  left: 1px;
  left: 0.0625rem;
  width: 70px;
  width: 4.375rem;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .news__illust {
    position: static;
    bottom: auto;
    left: auto;
    width: 8.3125rem;
    margin-top: 2.0625rem;
    margin-bottom: 0;
    margin-left: 2.8125rem;
  }
}

.news .inner {
  position: relative;
}

.news__main {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .news__main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-top: 0;
  }
}

.news__scroll {
  height: 651px;
  height: 40.6875rem;
  padding-right: 29px;
  padding-right: 1.8125rem;
  overflow-y: auto;
  scrollbar-color: #a38a51 #fff;
  scrollbar-width: auto;
}
@media screen and (min-width: 768px) {
  .news__scroll {
    height: 26.6875rem;
    padding-right: 3.0625rem;
    overflow-y: auto;
    scrollbar-color: #a38a51 #fff;
  }
}

.news__scroll::-webkit-scrollbar {
  width: 19px;
  width: 1.1875rem;
  background-color: #fff;
}

.news__scroll::-webkit-scrollbar-track {
  border-radius: 1.25rem;
  background-color: #fff;
}

.news__scroll::-webkit-scrollbar-thumb {
  border: 4px solid #fff;
  border: 0.25rem solid #fff;
  border-radius: 1.25rem;
  background-color: #a38a51;
}

.news__item {
  border-top: 1px solid #b4aea3;
}

.news__item:last-child {
  border-bottom: 1px solid #b4aea3;
}

.news__item.is-last-visible {
  border-bottom: 1px solid #b4aea3;
}

.news__link {
  display: block;
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .news__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1.375rem;
    padding-bottom: 0.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .news__link:hover {
    opacity: 1;
    background-color: #f9ffe8;
  }
}

.news__date {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .news__date {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 8.9375rem;
    font-size: 1.125rem;
  }
}

.news__category {
  display: inline-block;
  margin-left: 16px;
  margin-left: 1rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #a38a51;
  margin-right: 16px;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .news__category {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 10.5625rem;
    margin-left: 0;
    font-size: 0.875rem;
  }
}

.news__text {
  display: block;
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.571;
  letter-spacing: 0.1em;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .news__text {
    color: #5a5a5a;
    line-height: 1.625;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-top: 0;
    font-size: 1rem;
  }
}

.news__more {
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding-right: 29px;
  padding-right: 1.8125rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .news__more {
    margin-top: 0.625rem;
    padding-right: 3.0625rem;
  }
}

.news__more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.news__more-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
  border: 1px solid #5a5a5a;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .news__more-arrow {
    width: 1.3125rem;
    height: 1.3125rem;
  }
}

.news__more-arrow::before {
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-top: 1px solid #5a5a5a;
  border-right: 1px solid #5a5a5a;
  -webkit-transform: translateX(-0.125rem) rotate(45deg);
          transform: translateX(-0.125rem) rotate(45deg);
}

.pickup {
  margin-top: 67px;
  margin-top: 4.1875rem;
}
@media screen and (min-width: 768px) {
  .pickup {
    margin-top: 5rem;
  }
}

.pickup__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  width: 100%;
  max-width: 1361px;
  max-width: 85.0625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .pickup__row {
    -webkit-column-gap: 1.6875rem;
       -moz-column-gap: 1.6875rem;
            column-gap: 1.6875rem;
  }
}

.pickup__panel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 1200px;
  max-width: 75rem;
  padding: 0 32px 40px;
  padding: 0 2rem 2.5rem;
  background-color: #fff;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, .16);
          box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, .16);
}
@media screen and (min-width: 768px) {
  .pickup__panel {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .pickup__panel {
    padding-bottom: 2.9375rem;
  }
}

.pickup__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  margin-top: -7px;
  margin-top: -0.4375rem;
}
@media screen and (min-width: 768px) {
  .pickup__head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 2.1875rem;
       -moz-column-gap: 2.1875rem;
            column-gap: 2.1875rem;
    margin-top: -0.5rem;
    -webkit-transform: translateX(-0.625rem);
            transform: translateX(-0.625rem);
  }
}

.pickup__title {
  margin-bottom: -7px;
  margin-bottom: -0.4375rem;
}
@media screen and (min-width: 768px) {
  .pickup__title {
    margin-bottom: 0;
  }
}

.pickup__title .section-title__ja {
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.pickup__ribbon {
  width: 57px;
  width: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .pickup__ribbon {
    width: 4.125rem;
  }
}

.pickup__slider {
  margin-top: 28px;
  margin-top: 1.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .pickup__slider {
    margin-top: 1.5625rem;
  }
}

.pickup__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pickup__item {
    width: 16.4375rem;
  }
}

.pickup__link {
  display: block;
  max-width: 263px;
  max-width: 16.4375rem;
  margin-right: auto;
  margin-left: auto;
}
.pickup__link:hover {
  opacity: 0.7;
}

.pickup__figure {
  display: block;
  overflow: hidden;
  border: 1px solid #c9c9c9;
  border-radius: 0.625rem;
}

.pickup__image {
  display: block;
  width: 100%;
  aspect-ratio: 263/200;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (any-hover: hover) {
  .pickup__link:hover {
    opacity: 1;
  }
  .pickup__link:hover .pickup__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.pickup__date {
  display: block;
  margin-top: 12px;
  margin-top: 0.75rem;
  padding-left: 7px;
  padding-left: 0.4375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .pickup__date {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.pickup__text {
  display: block;
  margin-top: 4px;
  margin-top: 0.25rem;
  padding-left: 7px;
  padding-left: 0.4375rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.857;
  letter-spacing: 0.1em;
  color: #707070;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .pickup__text {
    font-size: 1rem;
    line-height: 1.625;
    color: #5a5a5a;
  }
}

.pickup__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33px;
  width: 2.0625rem;
  height: 33px;
  height: 2.0625rem;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .8);
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 225px;
  margin-top: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .pickup__arrow {
    z-index: auto;
    -ms-flex-item-align: center;
        align-self: center;
    width: 3.3125rem;
    height: 3.3125rem;
    margin-top: 0;
  }
}

.pickup__arrow--prev {
  margin-right: -39px;
  margin-right: -2.4375rem;
  margin-left: 6px;
  margin-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .pickup__arrow--prev {
    margin-right: 0;
    margin-left: 0;
  }
}

.pickup__arrow--next {
  margin-right: 6px;
  margin-right: 0.375rem;
  margin-left: -39px;
  margin-left: -2.4375rem;
}
@media screen and (min-width: 768px) {
  .pickup__arrow--next {
    margin-right: 0;
    margin-left: 0;
  }
}

.pickup__arrow::before {
  content: "";
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  border-top: 3px solid #a38a51;
  border-right: 3px solid #a38a51;
}
@media screen and (min-width: 768px) {
  .pickup__arrow::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.pickup__arrow--prev::before {
  -webkit-transform: translateX(0.1875rem) rotate(-135deg);
          transform: translateX(0.1875rem) rotate(-135deg);
}

.pickup__arrow--next::before {
  -webkit-transform: translateX(-0.1875rem) rotate(45deg);
          transform: translateX(-0.1875rem) rotate(45deg);
}

.about {
  overflow: hidden;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 9.0625rem;
  }
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: flex;
    -webkit-column-gap: 3.625rem;
       -moz-column-gap: 3.625rem;
            column-gap: 3.625rem;
    max-width: 120rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10.875rem;
    padding-left: 4.75rem;
  }
}

.about__photos {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 31px;
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .about__photos {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 58.5rem;
    margin-top: 0;
  }
}

.about__photo {
  border-radius: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about__photo {
    border-radius: 3.5rem;
  }
}

.about__photo--01 {
  width: 302px;
  width: 18.875rem;
  margin-left: 25px;
  margin-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about__photo--01 {
    width: 44.5rem;
    margin-left: 12rem;
  }
}

.about__photo--02 {
  width: 203px;
  width: 12.6875rem;
  margin-top: -23px;
  margin-top: -1.4375rem;
  margin-left: -37px;
  margin-left: -2.3125rem;
}
@media screen and (min-width: 768px) {
  .about__photo--02 {
    width: 31.9375rem;
    margin-top: -3.8125rem;
    margin-left: 0;
  }
}

.about__photo--03 {
  width: 169px;
  width: 10.5625rem;
  margin-top: -104px;
  margin-top: -6.5rem;
  margin-left: auto;
  margin-right: -31px;
  margin-right: -1.9375rem;
}
@media screen and (min-width: 768px) {
  .about__photo--03 {
    width: 27.875rem;
    margin-top: -12.3125rem;
    margin-right: 0;
    margin-left: 30.625rem;
  }
}

.about__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .about__body {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

.about__heading {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 273px;
  width: 17.0625rem;
  max-width: 100%;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .about__heading {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 35.75rem;
    margin-top: 1.75rem;
    margin-left: 0;
  }
}

.about__text {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-right: -25px;
  margin-right: -1.5625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .about__text {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 2.1875rem;
    margin-right: 0;
    margin-left: 0.625rem;
    font-size: 1.125rem;
    line-height: 2.222;
    letter-spacing: 0.1em;
  }
}

.about__btn {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin-top: 48px;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .about__btn {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 3.75rem;
    margin-right: 0;
    margin-left: 0.5rem;
  }
}

.about__diagram {
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .about__diagram {
    margin-top: -12.875rem;
  }
}

.about__diagram-top {
  width: 47.1875%;
  margin-left: auto;
}

.about__diagram-sp {
  width: 100%;
}

.about__diagram-band {
  width: 100%;
}

.about__diagram-caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
}

.video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 71px;
  margin-top: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .video {
    display: block;
    margin-top: 3.0625rem;
  }
}

.video__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-left: 43px;
  padding-left: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .video__head {
    display: none;
  }
}

.video__catch-sp {
  width: 217px;
  width: 13.5625rem;
}

.video__icon-sp {
  width: 82px;
  width: 5.125rem;
  margin-top: -7px;
  margin-top: -0.4375rem;
}

.video__row {
  display: contents;
}
@media screen and (min-width: 768px) {
  .video__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 120rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 13.0625rem;
    padding-left: 12.5rem;
  }
}

.video__frame {
  width: calc(100% - 3.125rem);
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 6px;
  padding: 0.375rem;
  background-color: #fff;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.625rem rgba(0, 0, 0, .16);
          box-shadow: 0.3125rem 0.3125rem 0.625rem rgba(0, 0, 0, .16);
}
@media screen and (min-width: 768px) {
  .video__frame {
    width: 63.75rem;
    max-width: none;
    margin-top: 0.25rem;
    margin-right: 0;
    margin-left: 1.375rem;
    padding: 1.25rem;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.video__link {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
}

.video__thumb,
.video__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 980/552;
}

.video__iframe {
  border: none;
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 41px;
  width: 2.5625rem;
  height: 41px;
  height: 2.5625rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .video__play {
    width: 7.9375rem;
    height: 8rem;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.video__play::before {
  content: "";
  margin-left: 3px;
  margin-left: 0.1875rem;
  border-top: 7px solid transparent;
  border-top: 0.4375rem solid transparent;
  border-bottom: 7px solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 11px solid #b2d677;
  border-left: 0.6875rem solid #b2d677;
}
@media screen and (min-width: 768px) {
  .video__play::before {
    margin-left: 0.5rem;
    border-top-width: 1.1875rem;
    border-bottom-width: 1.1875rem;
    border-left-width: 1.875rem;
  }
}

.video__side {
  display: none;
}
@media screen and (min-width: 768px) {
  .video__side {
    display: block;
    width: 11.9375rem;
    margin-left: 3.125rem;
  }
}

.video__catch {
  width: 145px;
  width: 9.0625rem;
}

.video__illust--right {
  width: 191px;
  width: 11.9375rem;
  margin-top: 43px;
  margin-top: 2.6875rem;
}

.video__illust--left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  width: 110px;
  width: 6.875rem;
  margin-top: 23px;
  margin-top: 1.4375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .video__illust--left {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 14.25rem;
    margin-top: 33.4375rem;
    margin-right: 0;
    margin-left: 0;
  }
}

.video__btn {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: 51px;
  margin-top: 3.1875rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .video__btn {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: -5.125rem;
  }
}

.recruit {
  display: block;
  margin-top: 42px;
  margin-top: 2.625rem;
  padding-top: 9.6vw;
  padding-bottom: 156px;
  padding-bottom: 9.75rem;
  background-color: #fff;
  background-image: url(../images/page/top/recruit-bg-sp.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .recruit {
    margin-top: 9.375rem;
    padding-top: 6.5625rem;
    padding-bottom: 28.3125rem;
    background-color: transparent;
    background-image: url(../images/page/top/recruit-bg.jpg);
  }
}

.recruit .section-title__en {
  font-size: 10.1333333333vw;
}
@media screen and (min-width: 768px) {
  .recruit .section-title__en {
    font-size: 3.4375rem;
  }
}

.recruit .section-title__ja {
  margin-top: 2.1333333333vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .recruit .section-title__ja {
    margin-top: 0.625rem;
    font-size: 1.375rem;
  }
}

.recruit__catch {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 73.6vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit__catch {
    margin-top: 1.6875rem;
  }
}

.recruit__catch img {
  width: 285px;
  width: 17.8125rem;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .recruit__catch img {
    width: 68.6875rem;
  }
}

.recruit__text {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit__text {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 2.5;
  }
}

.recruit__link {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 6.9333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit__link {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 3.625rem;
  }
}

.recruit__link-circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 17.8666666667vw;
  height: 17.8666666667vw;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .recruit__link-circle {
    width: 4.1875rem;
    height: 4.1875rem;
  }
}

.recruit__link-circle img {
  width: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .recruit__link-circle img {
    width: 1.5625rem;
  }
}

.recruit .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .recruit .inner {
    display: block;
  }
}

.recruit .section-title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.access {
  margin-top: 0;
  padding-top: 43px;
  padding-top: 2.6875rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .access {
    margin-top: 9.75rem;
    padding-top: 0;
  }
}

.access__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .access__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 5rem;
  }
}

.access__info {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .access__info {
    width: 45.5%;
    margin-top: 0;
  }
}

.access__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .access__subtitle {
    -webkit-column-gap: 1.1875rem;
       -moz-column-gap: 1.1875rem;
            column-gap: 1.1875rem;
    font-size: 1.25rem;
  }
}

.access__icon {
  width: 27px;
  width: 1.6875rem;
}

.access__subtitle--car .access__icon {
  width: 30px;
  width: 1.875rem;
}

.access__list {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .access__list {
    margin-top: 0.5rem;
  }
}

.access__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.429;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .access__item {
    padding-left: 2.6875rem;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.1em;
  }
}

.access__item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-right: 4px;
  margin-right: 0.25rem;
  border-radius: 50%;
  background-color: #a38a51;
}
@media screen and (min-width: 768px) {
  .access__item::before {
    width: 1rem;
    height: 1rem;
  }
}

.access__bus {
  height: auto;
  max-width: 270px;
  max-width: 16.875rem;
  min-height: 60px;
  min-height: 3.75rem;
  margin-top: 23px;
  margin-top: 1.4375rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .access__bus {
    height: 3.125rem;
    max-width: 30.1875rem;
    min-height: 0;
    margin-top: 0.75rem;
    margin-right: 0;
    margin-left: 2.25rem;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1.4375rem;
  }
}

.access__bus .btn-outline__arrow {
  margin-right: -16px;
  margin-right: -1rem;
  margin-left: 13px;
  margin-left: 0.8125rem;
}

.access__bus-text {
  font-family: "M PLUS 2", sans-serif;
  line-height: 1.429;
}

.access__list--second {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .access__list--second {
    margin-top: 1.1875rem;
  }
}

.access__list--second .access__item {
  white-space: nowrap;
}

.access__divider {
  width: 465px;
  width: 29.0625rem;
  max-width: 100%;
  margin: 45px 0 0;
  margin: 2.8125rem 0 0;
  border: none;
  border-top: 1px dashed #b4aea3;
}
@media screen and (min-width: 768px) {
  .access__divider {
    margin-top: 2.5rem;
    margin-left: 2.6875rem;
  }
}

.access__subtitle--car {
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .access__subtitle--car {
    margin-top: 2rem;
  }
}

.access__text {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.429;
  letter-spacing: 0.1em;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .access__text {
    line-height: 1.625;
    margin-top: 0.75rem;
    margin-left: 2.6875rem;
    font-size: 1rem;
  }
}

.access__map {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: -1px;
  margin-right: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .access__map {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-right: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 54.5%;
    margin-top: 0;
  }
}

.access__map-frame {
  display: block;
  width: 100%;
  aspect-ratio: 326/249;
  border: none;
}
@media screen and (min-width: 768px) {
  .access__map-frame {
    aspect-ratio: 654/479;
  }
}

.access__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 48px;
  row-gap: 3rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .access__foot {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 4.1875rem;
    margin-left: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .access__foot {
    margin-right: -8.5rem;
  }
}

.access__illust {
  width: 285px;
  width: 17.8125rem;
}
@media screen and (min-width: 768px) {
  .access__illust {
    width: 31.1875rem;
  }
}

.hospital {
  margin-top: 48px;
  margin-top: 3rem;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 49px;
  padding-bottom: 3.0625rem;
  background-color: rgba(255, 255, 255, .5);
}
@media screen and (min-width: 768px) {
  .hospital {
    margin-top: 6.25rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .hospital__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 7%;
       -moz-column-gap: 7%;
            column-gap: 7%;
  }
}

@media screen and (min-width: 768px) {
  .hospital__photo {
    width: 50%;
  }
}

.hospital__info {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .hospital__info {
    margin-top: 3.4375rem;
  }
}

.hospital__name {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .hospital__name {
    font-size: 2.1875rem;
  }
}

.hospital__address {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .hospital__address {
    margin-top: 2.25rem;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    color: #5a5a5a;
  }
}

.hospital__tel {
  margin-top: 17px;
  margin-top: 1.0625rem;
  row-gap: 10px;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .hospital__tel {
    margin-top: 1.75rem;
    row-gap: 1.25rem;
  }
}

.hospital__badge {
  width: 224px;
  width: 14rem;
}
@media screen and (min-width: 768px) {
  .hospital__badge {
    width: 14rem;
    height: 1.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
  }
}

.hospital__number {
  -webkit-column-gap: 0.6875rem;
     -moz-column-gap: 0.6875rem;
          column-gap: 0.6875rem;
  font-size: 35px;
  font-size: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .hospital__number {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    font-size: 2.6875rem;
  }
}

.hospital__tel-icon {
  width: 35px;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .hospital__tel-icon {
    width: 2.625rem;
  }
}
/*# sourceMappingURL=styles.css.map */
