@charset "UTF-8";
:root {
  --white: #fff;
  --black: #505050;
  --gray10: #333;
  --gray20: #474747;
  --gray30: #5C5C5C;
  --gray40: #757575;
  --gray50: #9E9E9E;
  --gray60: #C2C2C2;
  --gray70: #E0E0E0;
  --gray80: #F4F4F4;
  --gray90: #FBFBFB;
  --red-primary: #ff0001;
  --blue-primary: #375a75;
  --green-primary: #278880;
  --green-secondary: #c5dfdd;
  --green-tertiary: #edeee8;
  --yellow-primary: #fff3b4;
  --border: #999;
  --accent: var(--primary-red);
  --inactive: var(--gray60);
  --disabled: var(--gray60);
  --japanese-sans-serif:
    "Noto Sans JP",
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN",
    "メイリオ", Meiryo, Arial, sans-serif;
  --english-sans-serif: "Montserrat", var(--japanese-sans-serif);
  --space-xs: clamp(1.25rem, 0.1389rem + 2.3148vw, 1.875rem);
  --space-sm: calc(var(--space-xs) * 1.5);
  --space-md: calc(var(--space-xs) * 2);
  --space-lg: calc(var(--space-xs) * 3);
  --space-xl: calc(var(--space-xs) * 4);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--black);
  font-feature-settings: "palt";
  font-family: var(--english-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  line-break: strict;
  text-align: left;
  margin: 0;
  background-color: #ffffff;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section, a, picture {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

p a {
  display: inline-block;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
  margin: 0;
}

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

ol li,
ul li {
  list-style-position: inside;
  padding: 0;
}

ul li, ol li {
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

a, p a {
  color: var(--active);
  display: block;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--active);
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin: 0;
  overflow: auto;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

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

caption {
  color: var(--black);
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin: 0;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  vertical-align: top;
  padding: 0.2rem 0.5rem;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=submit] {
  outline: none;
  border: 1px solid var(--border);
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

button, input[type=submit], input[type=button] {
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button, select, input {
  color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}
button::-moz-placeholder, select::-moz-placeholder, input::-moz-placeholder {
  color: var(--black);
}
button::placeholder, select::placeholder, input::placeholder {
  color: var(--black);
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.l-main {
  width: 100%;
  padding-bottom: 60px;
  margin-top: 60px;
  transition: all 0.5s var(--easeOutQuint);
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .l-main {
    padding-bottom: 100px;
    margin-top: 0;
  }
}

.l-main--top {
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .l-main--top {
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1024px) {
  .l-sticky {
    display: flex;
  }
}

.l-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
}
.l-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 25px;
  background-color: var(--green-secondary);
}
.l-header__logo {
  margin: 0;
}
.l-header__nav {
  display: none;
  width: 100%;
}
.l-header__button {
  display: none;
}
.l-header__sideMenu {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 80px;
  }
  .l-header__inner {
    padding: 0 35px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header {
    position: -webkit-sticky;
    position: sticky;
    max-width: 300px;
    height: 100vh;
    z-index: 100;
  }
  .l-header__inner {
    padding: 3rem 0;
    flex-direction: column;
  }
  .l-header__nav {
    display: block;
    margin-top: 3rem;
  }
  .l-header__button {
    width: 100%;
    max-width: 170px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    margin: 3.5rem auto 0;
    transition: all 0.35s ease;
  }
  .l-header__button:hover {
    opacity: 0.5;
  }
  .l-header__button > img {
    max-width: 146px;
    margin: 0 auto;
  }
  .l-header__button > span {
    width: 100%;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
    padding: 1em 0;
    margin: 1em auto 0;
    border-radius: 35px;
    color: var(--blue-primary);
    background-color: var(--white);
  }
  .l-header__button > span i {
    font-style: normal;
    text-align: right;
    position: absolute;
    top: 50%;
    right: 0.8em;
    transform: translateY(-50%);
  }
  .l-header__sideMenu {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .l-header {
    max-width: 330px;
  }
}

.l-footer {
  position: relative;
  z-index: 101;
  padding-top: 50px;
  padding-bottom: 85px;
  background-color: var(--green-tertiary);
}
.l-footer__inner {
  max-width: 1280px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer__column {
  display: flex;
  flex-direction: column;
  position: relative;
}
.l-footer__column + * {
  padding-top: 45px;
  margin-top: 40px;
  border-top: 1px solid var(--blue-primary);
}
.l-footer__logo {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.l-footer__logo:hover {
  opacity: 0.5;
}
.l-footer__address {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  line-height: 1.3;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 1.5em auto 0;
  color: var(--black);
}
.l-footer__address a {
  display: inline-block;
  transition: all 0.35s ease;
}
.l-footer__address a:hover {
  opacity: 0.5;
}
.l-footer__buttons {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 2em auto 0;
}
.l-footer__nav {
  display: none;
}
.l-footer__calendar {
  margin: 0;
}
.l-footer__title {
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.0527734977rem + 0.3081664099vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue-primary);
}
.l-footer__note {
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1em;
  color: var(--black);
}
.l-footer__icon {
  display: none;
  max-width: 160px;
  position: absolute;
  bottom: -70px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding-left: 35px;
    padding-right: 35px;
  }
  .l-footer__logo {
    max-width: 200px;
  }
  .l-footer__buttons {
    max-width: 500px;
    flex-direction: row;
    gap: 20px;
  }
  .l-footer__calendar {
    width: 50%;
    margin: 0 auto;
  }
  .l-footer__icon {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding-top: 65px;
  }
  .l-footer__inner {
    padding-left: 50px;
    padding-right: 50px;
  }
  .l-footer__column {
    flex-direction: row;
  }
  .l-footer__logo {
    margin: 0;
  }
  .l-footer__address {
    margin: 0 0 0 3.5%;
  }
  .l-footer__nav {
    display: block;
    width: 37%;
  }
  .l-footer__calendar {
    width: 38%;
    margin: 0 0 0 4%;
  }
  .l-footer__icon {
    max-width: 184px;
    bottom: -55px;
    left: inherit;
    right: 0;
  }
  .l-footer__buttons {
    margin: 0 0 0 auto;
  }
}

.c-logo {
  display: block;
  line-height: 1;
  max-width: 120px;
}
@media screen and (min-width: 768px) {
  .c-logo {
    max-width: 140px;
  }
}
@media screen and (min-width: 1024px) {
  .c-logo {
    max-width: 165px;
  }
}

a.c-logo {
  transition: all 0.35s ease;
}
a.c-logo:hover {
  color: var(--blue-primary);
  opacity: 0.5;
}

.c-globalNav__list {
  display: flex;
  flex-direction: column;
}
.c-globalNav__item {
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  padding: 1em 0;
  transition: all 0.35s ease;
}
.c-globalNav__item.has-child:hover {
  background-color: var(--green-primary);
}
.c-globalNav__item.has-child:hover a {
  color: var(--white);
}
.c-globalNav__item.has-child a {
  pointer-events: none;
}
.c-globalNav__item.has-child a::after {
  content: "〉";
  display: block;
  width: 1em;
  height: 1em;
  text-align: right;
  margin-left: auto;
}
.c-globalNav__item:not(.has-child):hover a {
  opacity: 0.5;
}
.c-globalNav__item:not(:first-of-type) {
  margin-top: 1.2rem;
}
.c-globalNav__item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: inherit;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  max-width: 10em;
  margin: 0 auto;
  color: var(--black);
  transition: all 0.35s ease;
}
.c-globalSideMenu {
  width: 100%;
  max-width: 280px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
  z-index: 1;
  height: 100%;
  background-color: var(--green-primary);
  transition: all 0.8s var(--easeOutQuint);
}
.c-globalSideMenu.is-active {
  left: 100%;
}
.c-globalSideMenu__inner {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
}
.c-globalSideMenu__inner.is-active {
  opacity: 1;
  visibility: visible;
}
.c-globalSideMenu__nav {
  width: 100%;
  padding: 0 25px;
  margin: 195px auto auto;
  position: relative;
  transition: all 0.35s ease;
}
.c-globalSideMenu__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.1583204931rem + 0.9244992296vw, 1.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-bottom: 1.2em;
  color: var(--green-secondary);
  border-bottom: 1px solid var(--green-secondary);
}
.c-globalSideMenu__list {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.0527734977rem + 0.3081664099vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.05em;
  padding-left: 0.5em;
  margin-top: 2em;
}
.c-globalSideMenu__item a {
  color: var(--white);
  position: relative;
  padding-left: 0.8em;
  transition: all 0.35s ease;
}
.c-globalSideMenu__item a:hover {
  opacity: 0.5;
}
.c-globalSideMenu__item a::after {
  content: "";
  display: block;
  width: 6px;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-globalSideMenu__item:not(:first-of-type) {
  margin-top: 2em;
}
.c-offcanvas {
  width: 100%;
  height: 100%;
}
.c-offcanvas.is-active .c-offcanvas__hamburger {
  background-color: transparent;
}
.c-offcanvas.is-active .c-offcanvas__hamburger::before {
  margin-top: 0;
  transform: rotate(135deg);
}
.c-offcanvas.is-active .c-offcanvas__hamburger::after {
  margin-top: 0;
  transform: rotate(-135deg);
}
.c-offcanvas.is-active .c-offcanvas__body {
  right: 0;
}
.c-offcanvas__button {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 2003;
  margin: 0;
  padding: 0;
  border: none;
  transform: translateY(calc(-50% - 0.5em));
}
.c-offcanvas__hamburger {
  display: block;
  width: 32px;
  height: 2px;
  margin: auto 0;
  background-color: var(--blue-primary);
  transform-origin: center;
  transition: all 0.35s var(--easeOutQuint);
}
.c-offcanvas__hamburger::before, .c-offcanvas__hamburger::after {
  display: block;
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--blue-primary);
  transform-origin: center;
  transition: all 0.35s ease 0.1s;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.c-offcanvas__hamburger::before {
  transform: translateY(8px);
}
.c-offcanvas__hamburger::after {
  transform: translateY(-8px);
}
.c-offcanvas__menu {
  display: block;
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  position: absolute;
  top: 100%;
  left: 50%;
  color: var(--blue-primary);
  transform: translateX(-50%);
}
.c-offcanvas__body {
  width: 80%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 20px 2em;
  background: var(--green-secondary);
  transition: all 0.5s ease;
  position: fixed;
  right: -101%;
  top: 0;
  z-index: 2002;
}
.c-offcanvas__overlay {
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.5s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2001;
}
.c-offcanvas__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-offcanvas__list {
  display: flex;
  flex-direction: column;
  margin: auto 0;
}
.c-offcanvas__item {
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.8194337442rem + 0.7704160247vw, 1.3125rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  list-style: none;
  padding: 0;
}
.c-offcanvas__item a {
  color: var(--black);
  display: block;
  padding: 0.3em 0;
  transition: all 0.35s ease;
}
.c-offcanvas__item a:hover {
  opacity: 0.5;
}
.c-offcanvas__listSub {
  line-height: 1.5;
  margin-top: -0.4em;
  margin-bottom: 0.6rem;
}
.c-offcanvas__itemSub {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-left: 0.8em;
}
.c-offcanvas__itemSub::after {
  content: "";
  display: block;
  width: 6px;
  height: 2px;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-offcanvas__button {
    right: 35px;
  }
  .c-offcanvas__body {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .c-offcanvas {
    display: none;
  }
}

.c-buttonBlueBase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.0527734977rem + 0.3081664099vw, 1.25rem);
  padding: 1.25em 0;
  border-radius: 35px;
  color: var(--white);
  background-color: var(--blue-primary);
  transition: all 0.35s ease;
}
.c-buttonBlueBase:hover {
  opacity: 0.5;
  color: var(--white);
}
.c-buttonBlueBase__title {
  line-height: 1;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: inherit;
}
.c-buttonBlueBase__icon {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-style: normal;
  font-size: inherit;
  color: inherit;
}
.c-footerNav {
  margin: 0 auto;
}
.c-footerNav__columns {
  display: flex;
  flex-direction: column;
}
.c-footerNav__list {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-footerNav__item {
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
}
.c-footerNav__item + * {
  margin-top: 0.8em;
}
.c-footerNav__item > a {
  color: var(--black);
  position: relative;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-left: 0.6em;
  transition: all 0.35s ease;
}
.c-footerNav__item > a:hover {
  opacity: 0.5;
}
.c-footerNav__item > a::after {
  content: "";
  display: block;
  width: 4px;
  height: 2px;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-footerNav__item--external {
  margin-top: auto;
}
.c-footerNav__item--external > a {
  padding-left: 0.8em;
  color: var(--blue-primary);
}
.c-footerNav__item--external > a::after {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--blue-primary);
}
.c-footerNav__title {
  color: var(--blue-primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.8em;
}
.c-footerNav__subList {
  padding-left: 0.5em;
  margin: 1em 0 1em 0.5em;
  border-left: 2px solid var(--black);
}
.c-footerNav__subItem + * {
  margin-top: 0.8em;
}
.c-footerNav__subItem > a {
  color: var(--black);
  position: relative;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-left: 0.5em;
  transition: all 0.35s ease;
}
.c-footerNav__subItem > a:hover {
  opacity: 0.5;
}
.c-footerNav__subItem > a::after {
  content: "";
  display: block;
  width: 4px;
  height: 2px;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-footerNav__columns {
    flex-direction: row;
    justify-content: space-between;
  }
}

.c-tableCalendar {
  width: 100%;
  margin-top: 20px;
}
.c-tableCalendar thead tr th, .c-tableCalendar thead tr td {
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 500;
  text-align: center;
  color: var(--black);
  border: 1px solid var(--black);
  background-color: var(--yellow-primary);
}
.c-tableCalendar thead tr th {
  padding: 0.65em 0.3em;
}
.c-tableCalendar thead tr td {
  padding: 0.65em 0.8em;
}
.c-tableCalendar tbody tr th, .c-tableCalendar tbody tr td {
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  color: var(--black);
  border: 1px solid var(--black);
  background-color: var(--white);
}
.c-tableCalendar tbody tr th {
  padding: 0.65em 0.3em;
}
.c-tableCalendar tbody tr td {
  padding: 0.65em 0.8em;
}
.c-buttonToTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 101;
  display: block;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.c-buttonToTop:hover {
  opacity: 0.5;
}
.c-buttonToTop__circle {
  position: relative;
  display: block;
  margin: 0;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  width: 4em;
  height: 4em;
  background-color: var(--blue-primary);
  border-radius: 100%;
}
.c-buttonToTop__circle::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.625em;
  height: 0.625em;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 2px 0 0 0;
  transform: rotate(45deg);
  transform-origin: left top;
}
@media screen and (min-width: 1024px) {
  .c-buttonToTop {
    bottom: 20px;
    right: 20px;
  }
}

.c-buttonGreenBase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.0527734977rem + 0.3081664099vw, 1.25rem);
  padding: 1.25em 0;
  border-radius: 35px;
  color: var(--blue-primary);
  background-color: var(--green-secondary);
  transition: all 0.35s ease;
}
.c-buttonGreenBase:hover {
  color: var(--white);
  background-color: var(--blue-primary);
}
.c-buttonGreenBase__title {
  line-height: 1;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: inherit;
}
.c-buttonGreenBase__icon {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-style: normal;
  font-size: inherit;
  color: inherit;
}
.c-pageHeroImage {
  overflow: hidden;
  border-radius: 20px;
}
.c-pageHeroImage > img {
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .c-pageHeroImage {
    border-radius: 30px;
  }
}

.c-titleTypeH1 {
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.7083012327rem + 2.311248074vw, 2.1875rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 0.05em 0 0.05em 0.5em;
  margin-bottom: 1.2em;
  color: var(--green-primary);
  border-left: 0.28em solid var(--green-primary);
}
.c-titleTypeH1 span {
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.6916409861rem + 1.8489984592vw, 1.875rem);
}
@media screen and (min-width: 1024px) {
  .c-titleTypeH1 {
    letter-spacing: 0.1em;
  }
}

.c-titleTypeH2 {
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0694337442rem + 0.7704160247vw, 1.5625rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 0 0 0.38em;
  color: var(--green-primary);
  border-bottom: 1px solid var(--green-primary);
}
.c-titleTypeH2 span {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  display: block;
  margin-top: 0.5em;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .c-titleTypeH2 span {
    display: inline;
    margin-top: 0;
    letter-spacing: inherit;
  }
}

.c-tableTypeA {
  width: 100%;
  margin-top: 25px;
  border-bottom: 1px solid #999999;
}
.c-tableTypeA tbody tr th, .c-tableTypeA tbody tr td {
  display: block;
  width: 100%;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  border: 1px solid #999999;
}
.c-tableTypeA tbody tr th {
  text-align: left;
  padding: 0.4em 1em;
  border-bottom: none;
  background-color: var(--yellow-primary);
}
.c-tableTypeA tbody tr td {
  padding: 0.4em 1em;
  border-bottom: none;
}
.c-tableTypeA tbody tr td > p {
  text-align: justify;
}
.c-tableTypeA tbody tr td > p a {
  display: inline;
}
.c-tableTypeA tbody tr td > p span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-tableTypeA tbody tr th, .c-tableTypeA tbody tr td {
    display: table-cell;
  }
  .c-tableTypeA tbody tr th {
    width: auto;
    min-width: 118px;
    text-align: center;
    vertical-align: top;
    padding: 0.4em 0;
    border-bottom: 1px solid #999999;
  }
  .c-tableTypeA tbody tr td {
    padding: 0.4em 2em;
    border-bottom: 1px solid #999999;
  }
  .c-tableTypeA tbody tr td > p span {
    display: inline;
  }
}

.c-tabNavi {
  display: flex;
  justify-content: space-between;
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.8722072419rem + 1.0785824345vw, 1.5625rem);
  font-weight: 500;
  margin: 0 -1.5%;
}
.c-tabNavi__item {
  width: 30.33333%;
  margin: 0 1.5%;
}
.c-tabNavi__button {
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding: 0.5em 0;
  border-radius: 6px;
  color: var(--green-primary);
  background-color: var(--green-tertiary);
  transition: all 0.35s ease;
}
.c-tabNavi__button:hover {
  opacity: 0.5;
}
.c-tabNavi__button.is-active {
  color: var(--white);
  background-color: var(--green-primary);
}
@media screen and (min-width: 768px) {
  .c-tabNavi {
    margin: 0 -1%;
  }
  .c-tabNavi__item {
    width: 31.33333%;
    margin: 0 1%;
  }
  .c-tabNavi__button {
    border-radius: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .c-tabNavi {
    margin: 0 -1.5%;
  }
  .c-tabNavi__item {
    width: 30.33333%;
    margin: 0 1.5%;
  }
  .c-tabNavi__button {
    border-radius: 10px;
  }
}

.c-textHasThumbs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-textHasThumbs__text > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
.c-textHasThumbs__thumbnails {
  margin: 1rem auto 0;
}
.c-textHasThumbs__thumbnails > figcaption {
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0.5em 0 0;
  color: var(--black);
}
.c-textHasThumbs__thumbnails > img + img {
  margin-top: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .c-textHasThumbs {
    flex-direction: row;
  }
  .c-textHasThumbs__text {
    padding-right: 2em;
  }
  .c-textHasThumbs__thumbnails {
    margin: 0.5rem 0 0 auto;
  }
}

.c-iconTriangle {
  display: inline-block;
  font-style: normal;
}
.c-iconTriangle::after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 8px 13px 8px;
  border-color: transparent transparent #000000 transparent;
  transform: rotate(0deg);
}
.c-descListType2 {
  padding: 8% 6%;
  border: 1px solid var(--green-primary);
  border-radius: 20px;
}
.c-descListType2__list > * + * {
  margin-top: 1em;
}
.c-descListType2__item {
  display: flex;
  align-items: center;
}
.c-descListType2__title {
  min-width: 5.5em;
  line-height: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--green-primary);
}
.c-descListType2__desc {
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6680469954rem + 0.6163328197vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .c-descListType2 {
    padding: 35px 45px;
  }
}

.c-descListType1 {
  color: var(--black);
}
.c-descListType1__title {
  display: table;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: 0.2em;
}
.c-descListType1__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: var(--yellow-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.c-descListType1__desc {
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-top: 0.5em;
}
.c-descListType1__desc > p {
  font-size: inherit;
  color: inherit;
}
.c-cardPhilosophy {
  padding: 8% 6%;
  border-radius: 20px;
  border: 1px solid var(--green-primary);
}
.c-cardPhilosophy__column {
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
}
.c-cardPhilosophy__column + * {
  margin-top: 2.2em;
}
.c-cardPhilosophy__column > * + * {
  margin-top: 0.6em;
}
.c-cardPhilosophy__title {
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0694337442rem + 0.7704160247vw, 1.5625rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 0 0 0.38em;
  color: var(--green-primary);
  border-bottom: 1px solid var(--green-primary);
}
.c-cardPhilosophy__desc {
  line-height: 2;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .c-cardPhilosophy {
    padding: 40px 45px;
  }
}

.c-listDiscGreen {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.c-listDiscGreen__wrapper {
  display: flex;
  flex-direction: column;
}
.c-listDiscGreen > li {
  line-height: 2.2;
  position: relative;
  padding-left: 1.2em;
}
.c-listDiscGreen > li::before {
  content: "●";
  width: 1em;
  height: 2.2em;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green-secondary);
}
.c-listDiscGreen > li a {
  display: inline-block;
  color: var(--blue-primary);
  text-decoration: underline;
  transition: all 0.35s ease;
}
.c-listDiscGreen > li a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .c-listDiscGreen__wrapper {
    flex-direction: row;
  }
  .c-listDiscGreen__wrapper > * + * {
    margin-top: 0;
    margin-left: 4em;
  }
}

.c-cardContact {
  padding: 8% 6%;
  border-radius: 20px;
  background-color: var(--yellow-primary);
}
.c-cardContact__column {
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
}
.c-cardContact__column + * {
  margin-top: 2.2em;
}
.c-cardContact__column > * + * {
  margin-top: 0.8em;
}
.c-cardContact__title {
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0694337442rem + 0.7704160247vw, 1.5625rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 0 0 0.38em;
  color: var(--green-primary);
  border-bottom: 1px solid var(--green-primary);
}
.c-cardContact__desc {
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
.c-cardContact__desc a {
  display: inline;
  transition: all 0.35s ease;
}
.c-cardContact__desc a:hover {
  opacity: 0.5;
}
.c-cardContact__desc span {
  display: block;
}
.c-cardContact__desc br.pcbr {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-cardContact__desc span {
    display: inline;
  }
  .c-cardContact__desc br.pcbr {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .c-cardContact {
    padding: 40px 45px;
  }
}

.c-cardAdmission {
  padding: 8% 6%;
  border-radius: 20px;
  border: 1px solid var(--green-primary);
}
.c-cardAdmission__column {
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
}
.c-cardAdmission__column + * {
  margin-top: 2.2em;
}
.c-cardAdmission__column > * + * {
  margin-top: 0.6em;
}
.c-cardAdmission__title {
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.7833204931rem + 0.9244992296vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 0.6em;
  color: var(--green-primary);
  border-bottom: 1px solid var(--green-primary);
}
.c-cardAdmission__number {
  line-height: 1;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.4972072419rem + 1.0785824345vw, 2.1875rem);
  margin: 0.6em auto 0;
  color: #000;
  transition: all 0.35s ease;
}
.c-cardAdmission__number:hover {
  opacity: 0.5;
}
.c-cardAdmission__number .icon {
  display: inline-flex;
  width: 0.91428em;
  max-width: 32px;
  height: auto;
  margin-right: 0.3em;
}
.c-cardAdmission__number .tel {
  display: inline-block;
  font-size: inherit;
  font-weight: 700;
}
.c-cardAdmission__list {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  letter-spacing: 0.05em;
  margin: 1em auto 0;
  color: var(--black);
}
.c-cardAdmission__item {
  display: inline-flex;
  align-items: center;
}
.c-cardAdmission__item > dt {
  color: var(--green-primary);
  font-weight: 700;
}
.c-cardAdmission__item > dd {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-cardAdmission__title {
    line-height: 1;
  }
  .c-cardAdmission__list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
  }
}
@media screen and (min-width: 1024px) {
  .c-cardAdmission {
    padding: 32px 45px;
  }
}

.c-listFigure__list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.c-listFigure__item {
  width: calc(50% - 10px);
  margin: 10px 5px;
}
.c-listFigure__thumbnail {
  display: block;
}
.c-listFigure__thumbnail figcaption {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0.2em;
}
@media screen and (min-width: 1024px) {
  .c-listFigure__list {
    margin: 30px -0.5% 0;
  }
  .c-listFigure__item {
    width: 24%;
    margin: 0 0.5%;
  }
}

.c-listDot {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.c-listDot__wrapper {
  display: flex;
  flex-direction: column;
}
.c-listDot > li {
  line-height: 2.2;
  position: relative;
  padding-left: 1.2em;
}
.c-listDot > li::before {
  content: "・";
  width: 1em;
  height: 2.2em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--black);
}
.c-listDot > li a {
  display: inline-block;
  color: var(--blue-primary);
  text-decoration: underline;
  transition: all 0.35s ease;
}
.c-listDot > li a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .c-listDot__wrapper {
    flex-direction: row;
  }
  .c-listDot__wrapper > * + * {
    margin-top: 0;
    margin-left: 4em;
  }
}

.c-descListType3 {
  padding: 8% 6%;
  border: 1px solid var(--green-primary);
  border-radius: 20px;
}
.c-descListType3__list {
  margin-top: 1.5em;
}
.c-descListType3__list > * + * {
  margin-top: 1em;
}
.c-descListType3__item {
  display: flex;
}
.c-descListType3__heading {
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.8722072419rem + 1.0785824345vw, 1.5625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: 0.8em;
  color: var(--green-primary);
  border-bottom: 1px solid var(--green-primary);
}
.c-descListType3__title {
  min-width: 5.5em;
  line-height: 1.8;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6680469954rem + 0.6163328197vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green-primary);
}
.c-descListType3__desc {
  line-height: 1.8;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6680469954rem + 0.6163328197vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
}
.c-descListType3__desc a, .c-descListType3__desc span {
  display: inline;
}
.c-descListType3__desc a {
  color: var(--blue-primary);
  text-decoration: underline;
  transition: all 0.35s ease;
}
.c-descListType3__desc a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .c-descListType3 {
    padding: 35px 45px;
  }
}

.c-tableTypeB {
  width: 100%;
  margin-top: 25px;
  border-bottom: 1px solid #999999;
}
.c-tableTypeB thead tr th, .c-tableTypeB thead tr td {
  display: block;
  width: 100%;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  border: 1px solid #999999;
}
.c-tableTypeB thead tr th {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  text-align: left;
  padding: 0.4em 1em;
  border-bottom: none;
  color: var(--white);
  background-color: var(--green-primary);
}
.c-tableTypeB thead tr td {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  padding: 0.4em 1em;
  color: var(--green-primary);
  background-color: var(--yellow-primary);
  border-bottom: none;
}
.c-tableTypeB thead tr td > p {
  text-align: justify;
}
.c-tableTypeB thead tr td > p a {
  display: inline;
}
.c-tableTypeB thead tr td > p span {
  display: block;
}
.c-tableTypeB tbody tr th, .c-tableTypeB tbody tr td {
  display: block;
  width: 100%;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  border: 1px solid #999999;
}
.c-tableTypeB tbody tr th {
  text-align: left;
  padding: 0.4em 1em;
  border-bottom: none;
  background-color: var(--green-secondary);
}
.c-tableTypeB tbody tr td {
  padding: 0.4em 1em;
  border-bottom: none;
}
.c-tableTypeB tbody tr td > p {
  text-align: justify;
}
.c-tableTypeB tbody tr td > p a {
  display: inline;
}
.c-tableTypeB tbody tr td > p span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-tableTypeB thead tr th, .c-tableTypeB thead tr td {
    display: table-cell;
  }
  .c-tableTypeB thead tr th {
    width: auto;
    min-width: 128px;
    padding: 0.6em 1em;
    border-bottom: 1px solid #999999;
  }
  .c-tableTypeB thead tr td {
    padding: 0.6em 1.5em;
    border-bottom: 1px solid #999999;
  }
  .c-tableTypeB thead tr td > p span {
    display: inline;
  }
  .c-tableTypeB tbody tr th, .c-tableTypeB tbody tr td {
    display: table-cell;
  }
  .c-tableTypeB tbody tr th {
    width: auto;
    min-width: 128px;
    vertical-align: top;
    padding: 0.6em 1em;
    border-bottom: 1px solid #999999;
  }
  .c-tableTypeB tbody tr td {
    padding: 0.6em 1.5em;
    border-bottom: 1px solid #999999;
  }
  .c-tableTypeB tbody tr td > p span {
    display: inline;
  }
}

.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination__item {
  line-height: 1.4;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 2px;
}
.c-pagination__item a {
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-primary);
  transition: all 0.35s ease;
}
.c-pagination__item a:hover {
  opacity: 0.5;
}
.c-pagination__item a.is-inactive {
  color: var(--blue-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c7d0dc;
  background-color: #c7d0dc;
}
.c-pagination__item a.is-inactive:hover {
  color: #ffffff;
  opacity: 1;
  border: 1px solid var(--blue-primary);
  background-color: var(--blue-primary);
}
.c-pagination__item span {
  color: var(--blue-primary);
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #c7d0dc;
}
.c-pagination__item span.is-current {
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--blue-primary);
  background-color: var(--blue-primary);
}
.c-pagination__icon {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0;
}
.c-pagination__icon--prev::after {
  position: absolute;
  top: auto;
  bottom: auto;
  left: 2px;
  right: auto;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #c7d0dc;
  border-left: 1px solid #c7d0dc;
  transform: rotate(45deg);
  transform-origin: center;
  transition: border 0.2s ease;
}
.c-pagination__icon--next::after {
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: 2px;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #c7d0dc;
  border-right: 1px solid #c7d0dc;
  transform: rotate(45deg);
  transform-origin: center;
  transition: border 0.2s ease;
}
.c-pagination__icon--first::before {
  position: absolute;
  top: auto;
  bottom: auto;
  left: 4px;
  right: auto;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #c7d0dc;
  border-left: 1px solid #c7d0dc;
  transform: rotate(45deg);
  transform-origin: center;
  transition: border 0.2s ease;
}
.c-pagination__icon--first::after {
  position: absolute;
  top: auto;
  bottom: auto;
  left: -1px;
  right: auto;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #c7d0dc;
  border-left: 1px solid #c7d0dc;
  transform: rotate(45deg);
  transform-origin: center;
  transition: border 0.2s ease;
}
.c-pagination__icon--last::before {
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: 4px;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #c7d0dc;
  border-right: 1px solid #c7d0dc;
  transform: rotate(45deg);
  transform-origin: center;
  transition: border 0.2s ease;
}
.c-pagination__icon--last::after {
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: -1px;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #c7d0dc;
  border-right: 1px solid #c7d0dc;
  transform: rotate(45deg);
  transform-origin: center;
  transition: border 0.2s ease;
}
@media screen and (min-width: 768px) {
  .c-pagination__item {
    font-size: 16px;
    font-size: 1rem;
  }
  .c-pagination__item a {
    width: 50px;
    height: 50px;
  }
  .c-pagination__item span {
    width: 50px;
    height: 50px;
  }
}
.c-pager__list {
  position: relative;
  min-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pager__item {
  line-height: 1.4;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  white-space: nowrap;
}
.c-pager__item--prev {
  text-align: left;
  margin: 0 auto 0 0;
}
.c-pager__item--archive {
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-pager__item--next {
  text-align: right;
  margin: 0 0 0 auto;
}
.c-pager__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: opacity 0.35s ease;
}
.c-pager__link:hover {
  opacity: 0.5;
}
.c-pager__icon {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0;
}
.c-pager__icon--prev::after {
  position: absolute;
  top: auto;
  bottom: auto;
  left: 2px;
  right: auto;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--blue-primary);
  border-left: 1px solid var(--blue-primary);
  transform: rotate(45deg);
  transform-origin: center;
  transition: border 0.2s ease;
}
.c-pager__icon--next::after {
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: 2px;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--blue-primary);
  border-right: 1px solid var(--blue-primary);
  transform: rotate(45deg);
  transform-origin: center;
  transition: border 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .c-pager__item {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-formContact table {
  border-top: 1px solid #E6E6E6;
}
.c-formContact table tbody tr th, .c-formContact table tbody tr td {
  display: block;
  line-height: 1.6;
  font-feature-settings: "palt";
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  letter-spacing: 0;
}
.c-formContact table tbody tr th {
  min-width: 13em;
  font-weight: 700;
  white-space: nowrap;
  vertical-align: middle;
  padding: 1em 0 0;
  color: #333333;
}
.c-formContact table tbody tr th .require {
  line-height: 1;
  display: inline-block;
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding: 0.2em 0.5em 0.1em;
  margin-left: 1em;
  border-radius: 4px;
  color: #fff;
  background-color: var(--blue-primary);
  border: 1px solid var(--blue-primary);
}
.c-formContact table tbody tr td {
  color: #333333;
  width: 100%;
  font-weight: 400;
  padding: 0.5em 0 1.5em;
  border-bottom: 1px solid #E6E6E6;
}
.c-formContact table tbody tr td select {
  color: #333333;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.5em 0.5em;
  border: 1px solid #E6E6E6;
  outline: none;
}
.c-formContact table tbody tr td input[type=text], .c-formContact table tbody tr td input[type=tel], .c-formContact table tbody tr td input[type=email] {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.8em 1em;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: #333333;
  background-color: var(--white);
}
.c-formContact table tbody tr td input[type=text]::-moz-placeholder, .c-formContact table tbody tr td input[type=tel]::-moz-placeholder, .c-formContact table tbody tr td input[type=email]::-moz-placeholder {
  color: #999999;
}
.c-formContact table tbody tr td input[type=text]::placeholder, .c-formContact table tbody tr td input[type=tel]::placeholder, .c-formContact table tbody tr td input[type=email]::placeholder {
  color: #999999;
}
.c-formContact table tbody tr td input[type=text]:focus, .c-formContact table tbody tr td input[type=tel]:focus, .c-formContact table tbody tr td input[type=email]:focus {
  border: 1px solid var(--blue-primary);
}
.c-formContact table tbody tr td textarea {
  color: #333333;
  width: 100%;
  min-height: 120px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.8em 1em;
  border: none;
  outline: none;
  border: 1px solid var(--border);
  border-radius: 5px;
  background-color: var(--white);
}
.c-formContact table tbody tr td textarea:focus {
  border: 1px solid var(--blue-primary);
}
.c-formContact table tbody tr td p {
  line-height: 1.6;
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 1em 0 0;
}
.c-formContact table tbody tr td p > a {
  color: var(--black);
  display: inline-block;
  text-decoration: underline;
  margin: 0 0.2em;
}
.c-formContact__agree {
  display: table;
  text-align: center;
  margin: 1em auto 0;
}
.c-formContact__button {
  display: table;
  margin: 1.2em auto 0;
}
@media screen and (min-width: 1024px) {
  .c-formContact table {
    border-top: 1px solid #E6E6E6;
  }
  .c-formContact table tbody tr th, .c-formContact table tbody tr td {
    display: table-cell;
    vertical-align: top;
    font-size: 17px;
    font-size: 1.0625rem;
    padding: 1.5em 1em;
    border-bottom: 1px solid #E6E6E6;
  }
  .c-formContact table tbody tr th {
    padding: 1.8em 0;
  }
  .c-formContact table tbody tr th .require {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .c-formContact table tbody tr td select {
    font-size: 16px;
    font-size: 1rem;
  }
  .c-formContact table tbody tr td input[type=text], .c-formContact table tbody tr td input[type=tel], .c-formContact table tbody tr td input[type=email] {
    font-size: 16px;
    font-size: 1rem;
  }
  .c-formContact table tbody tr td textarea {
    min-height: 270px;
    font-size: 16px;
    font-size: 1rem;
  }
  .c-formContact table tbody tr td p {
    font-size: 16px;
    font-size: 1rem;
  }
  .c-formContact__agree {
    margin: 2em auto 0;
  }
}

.c-checkbox {
  display: table;
  text-align: center;
  margin: 2em auto 0;
}
.c-checkbox__input {
  display: none;
}
.c-checkbox__label {
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 0 0 2em;
  position: relative;
  width: auto;
}
.c-checkbox__label::before {
  background: #fff;
  border: 1px solid var(--gray60);
  border-radius: 3px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  left: 0;
  margin-top: -9px;
  position: absolute;
  top: 50%;
}
.c-checkbox__label::after {
  opacity: 0;
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  margin-top: -8px;
  border-right: 3px solid var(--blue-primary);
  border-bottom: 3px solid var(--blue-primary);
  position: absolute;
  top: 50%;
  left: 5px;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.c-checkbox__label > a {
  color: var(--green01);
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-checkbox__label {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-checkbox__label {
    font-size: 16px;
    font-size: 1rem;
  }
}

input[type=checkbox]:checked + .c-checkbox__label::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1, 1, 1);
}

.c-buttonSubmit {
  width: auto;
  position: relative;
  display: table-cell;
  transition: opacity 0.35s ease;
}
.c-buttonSubmit::after {
  opacity: 0.5;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  border: 2px solid var(--white);
  background-color: var(--blue-primary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.c-buttonSubmit.is-submit-ok::after {
  opacity: 1;
}
.c-buttonSubmit.is-submit-ok:hover {
  opacity: 0.5;
}
.c-buttonSubmit.is-submit-ok .c-buttonSubmit__icon {
  opacity: 1;
}
.c-buttonSubmit input[type=submit], .c-buttonSubmit input[type=button] {
  color: var(--white);
  position: relative;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-weight: 700;
  padding: 1.8em 4em;
  border: none;
  outline: none;
  transition: opacity 0.2s ease;
}
.c-buttonSubmit input[type=submit]:disabled, .c-buttonSubmit input[type=button]:disabled {
  pointer-events: none;
  opacity: 0.2;
}
.c-buttonSubmit__icon {
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 2em;
  z-index: 2;
  transform: translateY(-50%);
}
.c-buttonSubmit__icon::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 0.125em solid var(--white);
  border-right: 0.125em solid var(--white);
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .c-buttonSubmit input[type=submit], .c-buttonSubmit input[type=button] {
    padding: 1.8em 6em;
  }
}
@media screen and (min-width: 1024px) {
  .c-buttonSubmit input[type=submit], .c-buttonSubmit input[type=button] {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 1.8em 5em;
  }
  .c-buttonSubmit__icon {
    right: 3em;
  }
  .c-buttonSubmit__icon::before {
    width: 0.625em;
    height: 0.625em;
  }
}

.p-overview {
  padding-top: var(--space-md);
}
.p-overview__lead {
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 2.5em 0 0;
  color: var(--black);
}
.p-overview__body {
  margin-top: var(--space-md);
}
.p-overview__columns > * + * {
  margin-top: var(--space-md);
}
.p-overview__column > * + * {
  margin-top: 0.6em;
}
.p-overview__column > * + *.c-tableTypeA {
  margin-top: 25px;
}
.p-overview__column > p {
  line-height: 2;
  font-size: 17px;
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.9541602465rem + 0.4622496148vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .p-overview {
    padding-top: 80px;
  }
  .p-overview__body {
    padding: 0 15px;
    margin-top: 70px;
  }
  .p-overview__columns > * + * {
    margin-top: 70px;
  }
}

.p-medical {
  padding-top: var(--space-md);
}
.p-medical__body {
  margin-top: var(--space-md);
}
.p-medical__columns > * + * {
  margin-top: var(--space-md);
}
.p-medical__column > * + * {
  margin-top: 0.6em;
}
.p-medical__column > * + *.c-tableCalendar {
  max-width: 580px;
  margin-top: 25px;
}
.p-medical__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .p-medical {
    padding-top: 80px;
  }
  .p-medical__body {
    padding: 0 15px;
    margin-top: 70px;
  }
  .p-medical__columns > * + * {
    margin-top: 70px;
  }
}

.p-department {
  padding-top: var(--space-md);
}
.p-department__body {
  margin-top: var(--space-md);
}
.p-department__columns > * + * {
  margin-top: var(--space-md);
}
.p-department__column > * + * {
  margin-top: 1em;
}
.p-department__column > * + *.c-tableCalendar {
  max-width: 580px;
  margin-top: 25px;
}
.p-department__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
  margin-top: 0.6em;
}
.p-department__philosophy {
  padding: 35px 45px;
  border-radius: 20px;
  background-color: var(--yellow-primary);
}
.p-department__philosophy > p {
  line-height: 2;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
.p-department__grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -48px -15px;
}
.p-department__gridCol {
  width: calc(50% - 96px);
  margin: 15px 48px;
}
.p-department__thumbnail > figcaption {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-top: 0.8em;
  color: var(--green-primary);
}
.p-department__text {
  margin-top: 0.6em;
}
.p-department__desc {
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .p-department {
    padding-top: 80px;
  }
  .p-department__body {
    padding: 0 15px;
    margin-top: 70px;
  }
  .p-department__columns > * + * {
    margin-top: 70px;
  }
}

.p-access {
  padding-top: var(--space-md);
}
.p-access__body {
  margin-top: var(--space-md);
}
.p-access__columns > * + * {
  margin-top: var(--space-md);
}
.p-access__column > * + * {
  margin-top: 1em;
}
.p-access__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
  margin-top: 0.6em;
}
.p-access__column > p a {
  display: inline;
  text-decoration: underline;
  color: var(--blue-primary);
  transition: all 0.35s ease;
}
.p-access__column > p a:hover {
  opacity: 0.5;
}
.p-access__map {
  width: 100%;
  position: relative;
  padding-top: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__map {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1024px) {
  .p-access {
    padding-top: 80px;
  }
  .p-access__body {
    padding: 0 15px;
    margin-top: 70px;
  }
  .p-access__columns > * + * {
    margin-top: 70px;
  }
}

.p-hospitalization {
  padding-top: var(--space-md);
}
.p-hospitalization__lead {
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 2.5em 0 0;
  color: var(--black);
}
.p-hospitalization__body {
  margin-top: var(--space-sm);
}
.p-hospitalization__columns {
  margin-top: var(--space-sm);
}
.p-hospitalization__columns > * + * {
  margin-top: var(--space-md);
}
.p-hospitalization__column > * + * {
  margin-top: 1em;
}
.p-hospitalization__column > * + *.c-cardContact {
  margin-top: 3em;
}
.p-hospitalization__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .p-hospitalization {
    padding-top: 80px;
  }
  .p-hospitalization__body {
    padding: 0 15px;
    margin-top: 55px;
  }
  .p-hospitalization__columns {
    margin-top: 45px;
  }
  .p-hospitalization__columns > * + * {
    margin-top: 50px;
  }
}

.p-iryouin {
  padding-top: var(--space-md);
}
.p-iryouin__lead {
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 2.5em 0 0;
  color: var(--black);
}
.p-iryouin__body {
  margin-top: var(--space-sm);
}
.p-iryouin__columns > * + * {
  margin-top: var(--space-md);
}
.p-iryouin__column > * + * {
  margin-top: 1em;
}
.p-iryouin__column > * + *.c-tableTypeA {
  margin-top: 1.5em;
}
.p-iryouin__column > * + *.c-cardContact {
  margin-top: 3em;
}
.p-iryouin__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .p-iryouin {
    padding-top: 80px;
  }
  .p-iryouin__body {
    padding: 0 15px;
    margin-top: 55px;
  }
  .p-iryouin__columns > * + * {
    margin-top: 70px;
  }
}

.p-living {
  padding-top: var(--space-md);
}
.p-living__lead {
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 2.5em 0 0;
  color: var(--black);
}
.p-living__body {
  margin-top: var(--space-sm);
}
.p-living__columns > * + * {
  margin-top: var(--space-md);
}
.p-living__column > * + * {
  margin-top: 1em;
}
.p-living__column > * + *.c-cardContact {
  margin-top: 3em;
}
.p-living__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
.p-living__figureWrap {
  display: flex;
}
.p-living__figureWrap > figure + * {
  margin-left: 6%;
}
.p-living__figureWrap > figure > figcaption {
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0.5em 0 0;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .p-living {
    padding-top: 80px;
  }
  .p-living__body {
    padding: 0 15px;
    margin-top: 55px;
  }
  .p-living__columns > * + * {
    margin-top: 50px;
  }
  .p-living__figureWrap > figure + * {
    margin-left: 40px;
  }
}

.p-admission {
  padding-top: var(--space-md);
}
.p-admission__lead {
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 2.5em 0 0;
  color: var(--black);
}
.p-admission__body {
  margin-top: var(--space-sm);
}
.p-admission__columns > * + * {
  margin-top: var(--space-md);
}
.p-admission__column > * + * {
  margin-top: 1em;
}
.p-admission__column > * + *.c-tableTypeA {
  margin-top: 1.5em;
}
.p-admission__column > * + *.c-cardContact {
  margin-top: 3em;
}
.p-admission__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
@media screen and (min-width: 1024px) {
  .p-admission {
    padding-top: 80px;
  }
  .p-admission__body {
    padding: 0 15px;
    margin-top: 55px;
  }
  .p-admission__columns > * + * {
    margin-top: 70px;
  }
  .p-admission__column > p {
    line-height: 2.2;
  }
}

.p-facility {
  padding-top: var(--space-md);
}
.p-facility__body {
  margin-top: var(--space-md);
}
.p-facility__columns > * + * {
  margin-top: var(--space-md);
}
.p-facility__column > * + * {
  margin-top: 0.6em;
}
.p-facility__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
}
.p-facility__column > p a {
  display: inline;
  text-decoration: underline;
  color: var(--blue-primary);
  transition: all 0.35s ease;
}
.p-facility__column > p a:hover {
  opacity: 0.5;
}
.p-facility__grid {
  display: flex;
  flex-direction: column;
}
.p-facility__gridCol {
  display: flex;
  flex-direction: column;
}
.p-facility__gridCol + .p-facility__gridCol {
  margin-top: var(--space-md);
}
.p-facility__thumbnail {
  max-width: 350px;
  margin: 0 auto 0 0;
}
.p-facility__text {
  margin: 1em 0 0;
}
.p-facility__title {
  line-height: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7930469954rem + 0.6163328197vw, 1.1875rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-primary);
}
.p-facility__desc {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0.5em 0 0;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .p-facility__gridCol {
    flex-direction: row;
  }
  .p-facility__gridCol + .p-facility__gridCol {
    margin-top: 30px;
  }
  .p-facility__thumbnail {
    width: 38.8888%;
    margin: 0;
  }
  .p-facility__text {
    width: calc(61.11112% - 20px);
    margin: 0 0 0 20px;
  }
  .p-facility__desc {
    margin: 1.5em 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-facility {
    padding-top: 80px;
  }
  .p-facility__body {
    padding: 0 15px;
    margin-top: 70px;
  }
  .p-facility__columns > * + * {
    margin-top: 70px;
  }
}

.p-recruit {
  padding-top: var(--space-md);
}
.p-recruit__body {
  margin-top: var(--space-md);
}
.p-recruit__columns > * + * {
  margin-top: var(--space-md);
}
.p-recruit__column > * + * {
  margin-top: 1em;
}
.p-recruit__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
  margin-top: 0.6em;
}
.p-recruit__column > p a {
  display: inline;
  text-decoration: underline;
  color: var(--blue-primary);
  transition: all 0.35s ease;
}
.p-recruit__column > p a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .p-recruit {
    padding-top: 80px;
  }
  .p-recruit__body {
    padding: 0 15px;
    margin-top: 70px;
  }
  .p-recruit__columns > * + * {
    margin-top: 70px;
  }
}

.p-gallery {
  padding-top: var(--space-md);
}
.p-gallery__heroImage {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.p-gallery__heroImage img {
  min-height: 275px;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.p-gallery__heroText {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-gallery__heroHeading {
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8888674884rem + 1.5408320493vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.8em;
  color: var(--blue-primary);
}
.p-gallery__heroSubheading {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin: 1em 0 0;
  color: var(--black);
}
.p-gallery__body {
  margin-top: var(--space-md);
}
.p-gallery__list {
  display: flex;
  flex-wrap: wrap;
  margin: -3% -1.5%;
}
.p-gallery__item {
  width: 47%;
  margin: 3% 1.5%;
}
.p-gallery__link {
  display: block;
  transition: opacity 0.35s ease;
}
.p-gallery__link:hover {
  opacity: 0.8;
}
.p-gallery__link:hover .p-gallery__thumbnail img {
  transform: scale(1.05);
}
.p-gallery__thumbnail {
  overflow: hidden;
}
.p-gallery__thumbnail img {
  transition: all 0.5s ease;
}
.p-gallery__title {
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 1em 0 0;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .p-gallery__heroImage img {
    max-height: none;
  }
  .p-gallery__heroText {
    top: 50%;
    left: inherit;
    right: 2.5rem;
    transform: translateY(-50%);
  }
  .p-gallery__list {
    margin: -15px -1.20266%;
  }
  .p-gallery__item {
    width: 30.928%;
    margin: 15px 1.20266%;
  }
}
@media screen and (min-width: 1024px) {
  .p-gallery {
    padding-top: 80px;
  }
  .p-gallery__heroImage {
    border-radius: 30px;
  }
  .p-gallery__body {
    margin-top: 70px;
  }
}

.p-newsArchive {
  padding-top: var(--space-md);
}
.p-newsArchive__heroImage {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.p-newsArchive__heroImage img {
  min-height: 275px;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.p-newsArchive__heroText {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-newsArchive__heroHeading {
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8888674884rem + 1.5408320493vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--blue-primary);
}
.p-newsArchive__heroSubheading {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin: 1em 0 0;
  color: var(--black);
}
.p-newsArchive__body {
  margin-top: var(--space-md);
}
.p-newsArchive__list {
  display: flex;
  flex-wrap: wrap;
  margin: -3% -1.5%;
}
.p-newsArchive__item {
  width: 47%;
  margin: 3% 1.5%;
}
.p-newsArchive__link {
  display: block;
  transition: opacity 0.35s ease;
}
.p-newsArchive__link:hover {
  opacity: 0.8;
}
.p-newsArchive__link:hover .p-newsArchive__thumbnail img {
  transform: scale(1.05);
}
.p-newsArchive__thumbnail {
  overflow: hidden;
  border: 1px solid var(--gray70);
}
.p-newsArchive__thumbnail img {
  transition: all 0.5s ease;
}
.p-newsArchive__meta {
  display: flex;
  align-items: center;
  margin-top: 0.8em;
}
.p-newsArchive__meta > * + * {
  margin-left: 1em;
}
.p-newsArchive__date {
  display: block;
  line-height: 1;
  font-size: 11px;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.6152734977rem + 0.3081664099vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
}
.p-newsArchive__title {
  line-height: 1.4;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0.5em 0 0;
  color: var(--black);
}
.p-newsArchive__pagination {
  margin: var(--space-md) 0 0;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__heroImage img {
    max-height: none;
  }
  .p-newsArchive__heroText {
    top: 50%;
    left: inherit;
    right: 5rem;
    transform: translateY(-50%);
  }
  .p-newsArchive__list {
    margin: -15px -1.20266%;
  }
  .p-newsArchive__item {
    width: 30.928%;
    margin: 15px 1.20266%;
  }
}
@media screen and (min-width: 1024px) {
  .p-newsArchive {
    padding-top: 80px;
  }
  .p-newsArchive__heroImage {
    border-radius: 30px;
  }
  .p-newsArchive__body {
    margin-top: 70px;
  }
}

.p-newsSingle {
  padding-top: var(--space-md);
}
.p-newsSingle__heroImage {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.p-newsSingle__heroImage img {
  min-height: 275px;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.p-newsSingle__heroText {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-newsSingle__heroHeading {
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8888674884rem + 1.5408320493vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--blue-primary);
}
.p-newsSingle__heroSubheading {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin: 1em 0 0;
  color: var(--black);
}
.p-newsSingle__body {
  margin-top: var(--space-md);
}
.p-newsSingle__date {
  display: block;
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6416602465rem + 0.4622496148vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
}
.p-newsSingle__title {
  line-height: 1.4;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.1055469954rem + 0.6163328197vw, 1.5rem);
  font-weight: 700;
  text-align: justify;
  letter-spacing: 0.05em;
  padding: 0 0 0.5em;
  margin: 0.5em 0 0;
  border-bottom: 1px solid var(--green-primary);
  color: var(--black);
}
.p-newsSingle__post {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  padding: 2em 0 0;
}
.p-newsSingle__post > * + * {
  margin: 2em 0 0;
}
.p-newsSingle__post h2 {
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9805469954rem + 0.6163328197vw, 1.375rem);
  margin-bottom: -1em;
  color: var(--green-primary);
}
.p-newsSingle__post h3 {
  line-height: 1.2;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9277734977rem + 0.3081664099vw, 1.125rem);
  margin-bottom: -1em;
  color: var(--green-primary);
}
.p-newsSingle__post p {
  font-size: inherit;
}
.p-newsSingle__post a {
  display: inline-block;
  word-break: break-all;
  color: var(--blue-primary);
}
.p-newsSingle__post img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border: 1px solid var(--gray70);
}
.p-newsSingle__pager {
  margin: var(--space-md) 0 0;
}
@media screen and (min-width: 768px) {
  .p-newsSingle__heroImage img {
    max-height: none;
  }
  .p-newsSingle__heroText {
    top: 50%;
    left: inherit;
    right: 5rem;
    transform: translateY(-50%);
  }
  .p-newsSingle__post img {
    width: auto;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .p-newsSingle {
    padding-top: 80px;
  }
  .p-newsSingle__heroImage {
    border-radius: 30px;
  }
  .p-newsSingle__body {
    margin-top: 70px;
  }
  .p-newsSingle__title {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
  .p-newsSingle__post {
    padding: 2em 0 1em;
  }
}

.p-contact {
  padding-top: var(--space-md);
}
.p-contact__body {
  margin-top: var(--space-md);
}
.p-contact__columns > * + * {
  margin-top: var(--space-md);
}
.p-contact__column > * + * {
  margin-top: 3em;
}
.p-contact__column > p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7666602465rem + 0.4622496148vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--black);
  margin-top: 0.6em;
}
.p-contact__column > p a {
  display: inline;
  text-decoration: underline;
  color: var(--blue-primary);
  transition: all 0.35s ease;
}
.p-contact__column > p a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .p-contact {
    padding-top: 80px;
  }
  .p-contact__body {
    padding: 0 15px;
    margin-top: 70px;
  }
  .p-contact__columns > * + * {
    margin-top: 70px;
  }
}

.u-container {
  width: 100%;
  max-width: 1030px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .u-container {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .u-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.js-scrollBottomIn {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(20px);
  transition: all 1.5s var(--easeOutQuint);
}
.js-scrollBottomIn.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
/*!
 * Luminous v2.3.5
 * Copyright 2015-2021, Zebrafish Labs
 * Licensed under BSD-2 (https://github.com/imgix/luminous/blob/main/LICENSE.md)
**/
@keyframes a {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes b {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes c {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-1turn);
  }
}
@keyframes d {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(6px);
  }
  25% {
    transform: scale(1.3) translateX(8px);
  }
  40% {
    transform: scale(1.2) translateX(6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(6px);
  }
  75% {
    transform: scale(0.7) translateX(8px);
  }
  90% {
    transform: scale(0.8) translateX(6px);
  }
  to {
    transform: scale(1);
  }
}
@keyframes e {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(-6px);
  }
  25% {
    transform: scale(1.3) translateX(-8px);
  }
  40% {
    transform: scale(1.2) translateX(-6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(-6px);
  }
  75% {
    transform: scale(0.7) translateX(-8px);
  }
  90% {
    transform: scale(0.8) translateX(-6px);
  }
  to {
    transform: scale(1);
  }
}
.lum-lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lum-lightbox-inner {
  bottom: 2.5%;
  left: 2.5%;
  right: 2.5%;
  top: 2.5%;
}

.lum-lightbox-inner img {
  position: relative;
}

.lum-lightbox-inner .lum-lightbox-caption {
  color: #fff;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}

.lum-loading .lum-lightbox-loader {
  animation: c 1.8s linear infinite;
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
}

.lum-lightbox-loader:after, .lum-lightbox-loader:before {
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 20px;
  content: "";
  display: block;
  height: 20px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}

.lum-lightbox-loader:before {
  animation: d 1.8s linear infinite;
  left: 0;
}

.lum-lightbox-loader:after {
  animation: e 1.8s linear infinite;
  animation-delay: -0.9s;
  right: 0;
}

.lum-lightbox.lum-opening {
  animation: a 0.18s ease-out;
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
  animation: b 0.18s ease-out;
}

.lum-lightbox.lum-closing {
  animation: a 0.3s ease-in;
  animation-direction: reverse;
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
  animation: b 0.3s ease-in;
  animation-direction: reverse;
}

.lum-img {
  transition: opacity 0.12s ease-out;
}

.lum-loading .lum-img {
  opacity: 0;
}

.lum-gallery-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 100px;
  margin: 0;
  max-height: 100%;
  outline: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-indent: 150%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  width: 60px;
}

.lum-close-button {
  height: 32px;
  opacity: 0.3;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
}

.lum-close-button:hover {
  opacity: 1;
}

.lum-close-button:after, .lum-close-button:before {
  background-color: #fff;
  content: " ";
  height: 33px;
  left: 15px;
  position: absolute;
  width: 2px;
}

.lum-close-button:before {
  transform: rotate(45deg);
}

.lum-close-button:after {
  transform: rotate(-45deg);
}

.lum-previous-button {
  left: 12px;
}

.lum-next-button {
  right: 12px;
}

.lum-gallery-button:after {
  border-top: 4px solid hsla(0, 0%, 100%, 0.8);
  content: "";
  display: block;
  height: 36px;
  position: absolute;
  top: 50%;
  width: 36px;
}

.lum-previous-button:after {
  border-left: 4px solid hsla(0, 0%, 100%, 0.8);
  border-radius: 3px 0 0 0;
  box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  transform: translateY(-50%) rotate(-45deg);
}

.lum-next-button:after {
  border-radius: 0 3px 0 0;
  border-right: 4px solid hsla(0, 0%, 100%, 0.8);
  box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    -webkit-overflow-scrolling: touch;
    display: flex;
    overflow: auto;
  }
  .lum-lightbox-caption {
    bottom: 0;
    position: absolute;
    width: 100%;
  }
  .lum-lightbox-position-helper {
    margin: auto;
  }
  .lum-lightbox-inner img {
    max-height: none;
    max-width: none;
  }
}
.lum-previous-button:after, .lum-next-button:after {
  box-shadow: none;
}

.lum-lightbox {
  z-index: 1001;
  background: rgba(0, 0, 0, 0.8);
}

.lum-lightbox-position-helper {
  max-width: 900px;
  display: block;
  margin: auto;
}

.lum-lightbox-inner .lum-lightbox-caption {
  font-size: clamp(1.125rem, 1.0527734977rem + 0.3081664099vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 1em auto 0;
}
