@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: var(--color-black);
  /* 収まらない場合に折り返す */
  word-break: normal;
  overflow-wrap: anywhere;
  text-rendering: optimizespeed;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
}

html:has(body.is-fixed),
body.is-fixed {
  overflow: hidden;
}

main {
  flex: 1;
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  transition: opacity 0.3s;
}

img,
svg {
  vertical-align: middle;
}

:where(:-moz-any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

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

/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  color: inherit;
}

address,
em {
  font-style: normal;
}

:root {
  /* inner */
  --inner: min(1200px, 100%);
  --inner-sp: min(600px, 100%);
  --padding-inner: 25px;
  --padding-inner-sp: 20px;
  --sub-main-space-block: 120px;
  --sub-main-space-block-sp: 80px;
  /* z-index */
  --z-index-header: 1001;
  --z-index-hamburger: 999;
  --z-index-drawer: 900;
  --z-index-pagetop: 800;
  /* font-family */
  --base-font-family: "Noto Sans JP", serif;
  --second-font-family: "Zen Maru Gothic", sans-serif;
  --en-font-family: "Roboto", sans-serif;
  /* font-weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* color */
  --color-black: #1F201C;
  --color-white: #FFF;
  --color-gray: #DDD;
  --color-gray2: #B3B3B3;
  --color-gray3: #353534;
  --color-green: #FAFFE9;
  --color-green2: #9FC91B;
  --color-green3: #8EB513;
  --color-orange: #EE8F00;
  --color-gradation: 17 17 17;
  --border-line: linear-gradient(
      to right,
      rgb(var(--color-gradation) / 100%) 0,
      rgb(var(--color-gradation) / 100%) 20%,
      rgb(var(--color-gradation) / 20%) 20%,
      rgb(var(--color-gradation) / 20%) 100%
    )
    bottom / 100% 2px no-repeat;
  /* header height */
  --header-height: 90px;
  /* fixed header actual offset (JS may override) */
  --scroll-offset: var(--header-height);
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 60px;
  }
}
:root {
  /* transition */
  --duration: 0.3s;
  /* easing */
  --ease-base: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-soft: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-strong: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-aggressive: cubic-bezier(0.77, 0, 0.175, 1);
}

.l-header {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-header);
}

.l-inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-inner);
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: calc(var(--inner-sp) + var(--padding-inner) * 2);
  }
}

.l-main {
  margin-block-start: var(--header-height);
}

.l-sub-inner {
  max-width: 57.5rem;
  margin-inline: auto;
}

.l-sub-main {
  padding-block: var(--sub-main-space-block);
}
@media screen and (max-width: 767px) {
  .l-sub-main {
    padding-block: var(--sub-main-space-block-sp);
  }
}

.c-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}

@media (prefers-reduced-motion: no-preference) {
  .c-accordion::details-content {
    transition: grid-template-rows 0.3s ease-out;
  }
}
.c-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}

.c-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion__group {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-accordion__group {
    gap: 0.75rem;
    margin-top: 2rem;
  }
}

.c-accordion {
  background-color: var(--color-green);
  border-radius: 0.625rem;
}

.c-accordion__summary {
  position: relative;
  padding: 1.5rem 3.5rem 1.5rem 3.875rem;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-black);
  letter-spacing: 0.05em;
  list-style: none;
  cursor: pointer;
  background-image: linear-gradient(#3D3E39, #3D3E39), linear-gradient(#3D3E39, #3D3E39);
  background-repeat: no-repeat;
  background-position: right 1.5rem center, right 1.9375rem center;
  background-size: 1rem 0.125rem, 0.125rem 1rem;
  transition: background-size var(--duration) var(--ease-base);
}
@media screen and (max-width: 767px) {
  .c-accordion__summary {
    padding: 1.125rem 3rem 1.125rem 3.25rem;
    font-size: 1rem;
    background-position: right 1rem center, right 1.4375rem center;
  }
}

.c-accordion__summary::-webkit-details-marker {
  display: none;
}

.c-accordion__summary::before {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  content: "Q";
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-green3);
}
@media screen and (max-width: 767px) {
  .c-accordion__summary::before {
    top: 1.125rem;
    left: 1.25rem;
    font-size: 1rem;
  }
}

.c-accordion[open] .c-accordion__summary {
  background-size: 1rem 0.125rem, 0.125rem 0;
}

.c-accordion__body {
  overflow: hidden;
}

.c-accordion__wrap {
  position: relative;
  padding: 1.5rem 3.875rem;
}
@media screen and (max-width: 767px) {
  .c-accordion__wrap {
    padding: 1.125rem 3.25rem;
  }
}

.c-accordion__wrap::before {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  content: "A";
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-green3);
}
@media screen and (max-width: 767px) {
  .c-accordion__wrap::before {
    top: 1.125rem;
    left: 1.25rem;
    font-size: 1rem;
  }
}

.c-accordion__contents {
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-black);
  letter-spacing: 0.05em;
  margin: 0;
}

.c-accordion__list {
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-black);
  letter-spacing: 0.05em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-accordion__list-item {
  position: relative;
  padding-left: 1.75em;
}

.c-accordion__list-item + .c-accordion__list-item {
  margin-top: 0.5rem;
}

.c-accordion__list--kana .c-accordion__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
}

.c-accordion__list--kana .c-accordion__list-item:nth-child(1)::before {
  content: "ア";
}

.c-accordion__list--kana .c-accordion__list-item:nth-child(2)::before {
  content: "イ";
}

.c-accordion__list--kana .c-accordion__list-item:nth-child(3)::before {
  content: "ウ";
}

.c-accordion__list--kana .c-accordion__list-item:nth-child(4)::before {
  content: "エ";
}

.c-accordion__list--kana .c-accordion__list-item:nth-child(5)::before {
  content: "オ";
}

.c-attention-text {
  position: relative;
  display: block;
  padding-left: 1rem;
}

.c-attention-text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  line-height: inherit;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.75rem;
}

.breadcrumb > span {
  display: inline-flex;
  align-items: center;
  color: var(--color-black);
  font-family: var(--base-font-family);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: var(--fw-regular);
}

.breadcrumb__between {
  display: inline-block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-inline: 0.5rem;
  background-color: var(--color-gray2);
  -webkit-mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
  mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
}

.breadcrumb__between:has(+ .current-item),
.breadcrumb__between:has(+ span .current-item) {
  background-color: var(--color-black);
}

.breadcrumb a,
.breadcrumb [property=name] {
  color: var(--color-gray2);
}

.breadcrumb .current-item,
.breadcrumb .current-item[property=name],
.breadcrumb .current-item [property=name] {
  color: var(--color-black);
}

.breadcrumb > span:first-of-type [property=name] {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb > span:first-of-type [property=name]::before {
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../images/common/home-icon.svg") center/contain no-repeat;
  mask: url("../images/common/home-icon.svg") center/contain no-repeat;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 17.5rem;
  min-height: 3.5rem;
  padding: 1rem 1.5rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: var(--color-green2);
  border: 1px solid var(--color-green2);
  border-radius: 0.5rem;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    max-width: 17.5rem;
  }
}

@media (any-hover: hover) {
  .c-btn:hover {
    color: var(--color-green2);
    background-color: var(--color-white);
    opacity: 1;
  }
}
.c-btn::after {
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
  mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
}

.c-news {
  position: relative;
  background-color: var(--color-white);
}

.c-news--top {
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .c-news--top {
    padding-bottom: 8.75rem;
  }
}

@media screen and (max-width: 767px) {
  .c-news--archive {
    padding-bottom: 7.5rem;
  }
}

.c-news__heading {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-green2);
}

.c-news__heading-en {
  font-family: var(--second-font-family);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}

.c-news__heading-ja {
  margin-top: 1.0625rem;
  font-family: var(--second-font-family);
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-news__heading-ja {
    margin-top: 0.75rem;
    font-size: 2rem;
  }
}

.c-news__content {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.c-news__list,
.c-news__empty {
  border-top: 1px solid var(--color-gray);
}

.c-news--archive .c-news__list {
  border-top: none;
}

.c-news__item {
  border-bottom: 1px solid var(--color-gray);
}

.c-news__link,
.c-news__empty {
  display: block;
  padding: 1.875rem 2.5rem;
  transition: background-color var(--duration) var(--ease-base);
}
@media screen and (max-width: 767px) {
  .c-news__link,
  .c-news__empty {
    padding: 1.5rem 1rem;
  }
}

@media (any-hover: hover) {
  .c-news__link:hover,
  .c-news__link:focus-visible {
    background-color: var(--color-green);
    opacity: 1;
  }
}
.c-news__date {
  display: block;
  font-family: var(--en-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-gray3);
  letter-spacing: 0.05em;
}

.c-news__text {
  display: -webkit-box;
  margin-top: 0.5rem;
  overflow: hidden;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.c-news__empty {
  color: var(--color-gray3);
  font-size: 1rem;
  font-weight: var(--fw-regular);
}

.c-news__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.c-news__img-right {
  position: absolute;
  top: 8%;
  right: 9%;
  max-width: 16.25rem;
  width: 100%;
  height: auto;
  aspect-ratio: 260/107;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-news__img-right {
    top: 1rem;
    right: 2%;
    max-width: 8rem;
  }
}

.c-news__img-left {
  position: absolute;
  left: 9%;
  bottom: 0;
  max-width: 7.125rem;
  width: 100%;
  height: auto;
  aspect-ratio: 114/120;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-news__img-left {
    max-width: 4.125rem;
  }
}

.c-news__img-right img,
.c-news__img-left img {
  display: block;
  width: 100%;
  height: auto;
}

.c-number-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.c-number-list__item {
  position: relative;
  list-style: none;
  counter-increment: item;
  padding-left: 1em;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-number-list__item + .c-number-list__item {
  margin-top: 0.125rem;
}

.c-number-list__item::before {
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--c-number-list-marker-width);
  font-family: var(--en-font-family);
  font-weight: var(--fw-regular);
  color: var(--color-gray3);
  line-height: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

.c-number-list__item > p {
  margin: 0;
}

.c-page-top {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  z-index: var(--z-index-pagetop);
}

.c-page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  background: var(--color-white);
  border: solid 2px var(--color-black);
  border-radius: 50%;
  transition: transform 0.3s ease-out;
}

.c-page-top a span {
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 3px solid currentcolor;
  border-right: 3px solid currentcolor;
  transform: translateY(20%) rotate(-45deg);
}

@media (any-hover: hover) {
  .c-page-top a:hover {
    opacity: 1;
    transform: scale(1.1);
  }
}
.c-pagenavi {
  margin-top: 3.125rem;
  display: flex;
  justify-content: center;
}

.c-pagenavi__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-pagenavi__nav {
    gap: 0.5rem;
  }
}

.c-pagenavi .page-numbers,
.c-pagenavi__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 2.25rem;
  border: 1px solid var(--color-green2);
  border-radius: 0.5rem;
  color: var(--color-green2);
  background-color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color var(--duration-base) var(--ease-base), background-color var(--duration-base) var(--ease-base), border-color var(--duration-base) var(--ease-base), opacity var(--duration-base) var(--ease-base);
}
@media screen and (max-width: 767px) {
  .c-pagenavi .page-numbers,
  .c-pagenavi__control {
    width: 1.75rem;
    height: 2.125rem;
    font-size: 0.875rem;
  }
}

.c-pagenavi .page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-green2);
}

.c-pagenavi .page-numbers.dots {
  width: auto;
  min-width: 0.875rem;
  height: 2.25rem;
  padding-inline: 0.25rem;
  border: none;
  border-radius: 0;
  color: var(--color-gray);
  background-color: transparent;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-pagenavi .page-numbers.dots {
    height: 2.125rem;
    font-size: 1rem;
  }
}

.c-pagenavi__control img {
  display: block;
  width: auto;
  height: auto;
}

.c-pagenavi__control.is-disabled {
  border-color: var(--color-gray);
  opacity: 0.45;
}

@media (any-hover: hover) {
  .c-pagenavi a:hover {
    color: var(--color-white);
    background-color: var(--color-green2);
    opacity: 1;
  }
  .c-pagenavi a.c-pagenavi__control:hover img {
    filter: brightness(0) invert(1);
  }
}
.mt-16 {
  margin-top: 2rem;
}

.c-sidebar {
  width: 100%;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.c-sidebar__nav {
  flex: 0 0 14.75rem;
  min-width: 0;
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}
@media screen and (max-width: 767px) {
  .c-sidebar__nav {
    flex-basis: auto;
    width: 100%;
    position: static;
  }
}

.c-sidebar__content {
  flex: 1 1 auto;
  min-width: 0;
}

.c-sidebar__list {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #fcfff1;
  border-radius: 0.5rem;
}

.c-sidebar__item {
  list-style: none;
}

.c-sidebar__link {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  width: 100%;
  font-family: var(--base-font-family);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  color: var(--color-gray2);
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-decoration: none;
  transition: color var(--duration) var(--ease-base);
}
@media screen and (max-width: 767px) {
  .c-sidebar__link {
    font-size: 1.125rem;
  }
}

.c-sidebar__link::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: currentColor;
  -webkit-mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
  mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
}

.c-sidebar__label {
  grid-column: 2;
  min-width: 0;
}

.c-sidebar__link.is-current {
  color: var(--color-green3);
}

@media (any-hover: hover) {
  .c-sidebar__link:hover,
  .c-sidebar__link:focus-visible {
    color: var(--color-green3);
  }
}
.c-sidebar__content-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-green3);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  text-underline-offset: 0.08em;
  width: -moz-fit-content;
  width: fit-content;
  transition: color var(--duration) var(--ease-base);
}

.c-sidebar__content-link-icon {
  flex-shrink: 0;
}

@media (any-hover: hover) {
  .c-sidebar__content-link:hover,
  .c-sidebar__content-link:focus-visible {
    color: var(--color-green2);
  }
}
.c-sidebar__content figure iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 715/400;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 2.0625rem 0;
}

.c-sidebar__section {
  scroll-margin-top: 0;
}

.c-sidebar__section + .c-sidebar__section {
  margin-top: 3rem;
}

.c-sidebar__heading {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: normal;
  letter-spacing: 0.05em;
  background-color: var(--color-green2);
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar__heading {
    font-size: 1.125rem;
  }
}

.c-sidebar__sub-heading {
  display: grid;
  grid-template-columns: 0.25rem minmax(0, 1fr);
  align-items: start;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  font-family: var(--base-font-family);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-green2);
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  margin-top: 2.0625rem;
}

.c-sidebar__sub-heading::before {
  content: "";
  width: 0.25rem;
  height: 1.375rem;
  border-radius: 62.4375rem;
  background-color: var(--color-green2);
  margin-top: 0.375rem;
}

.c-sidebar__sub-title {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: var(--color-green2);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 2.0625rem;
}

.c-sidebar__sub-title::before {
  content: "";
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.5rem;
  background-color: var(--color-green2);
  margin-top: calc((1.6em - 0.625rem) / 2);
}

.c-sidebar__video-wrap {
  margin-top: 1.9375rem;
}

.c-sidebar__video-wrap video,
.c-sidebar__video-wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 916/442;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-sidebar__video-wrap video {
  background-color: var(--color-gray2);
}

.c-sidebar__text-wrap {
  margin-top: 1.9375rem;
}

.c-sidebar__content-list {
  margin-top: 0.625rem;
}

.c-sidebar__content-list-item {
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr);
  align-items: start;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, var(--color-green2) 0, var(--color-green2) 10.5rem, var(--color-gray2) 10.5rem, var(--color-gray2) 100%) 1;
     border-image: linear-gradient(to right, var(--color-green2) 0, var(--color-green2) 10.5rem, var(--color-gray2) 10.5rem, var(--color-gray2) 100%) 1;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .c-sidebar__content-list-item {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }
}

.c-number-list__item p {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-sidebar__content-list-item dt,
.c-sidebar__content-list-item dd {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-sidebar__content-list-item dt {
  font-weight: var(--fw-medium);
}

.c-sidebar__content-list-item dd {
  font-weight: var(--fw-regular);
  padding-left: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar__content-list-item dd {
    padding-left: 0;
  }
}

.c-sidebar__content-list-item dd ol {
  margin: 0;
  padding: 0;
}

.c-sidebar__content-list-item dd ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-sidebar__content-list-item dd ol li {
  list-style: none;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-sidebar__content-list-item dd ul li {
  display: grid;
  grid-template-columns: max-content 1fr;
  -moz-column-gap: 0.125rem;
       column-gap: 0.125rem;
  align-items: start;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-sidebar__content-list-item dd ol li + li {
  margin-top: 0.125rem;
}

.c-sidebar__content-list-item dd ul li + li {
  margin-top: 0.125rem;
}

.c-sidebar__content-list-item dd ul li::before {
  content: "・";
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  line-height: 1.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.c-sidebar__content-list-item dd ul li > * {
  grid-column: 2;
}

.c-sidebar__content-list-item dd ul li > p {
  margin: 0;
}

.c-sidebar__content-list-item figure figcaption {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.c-sidebar__content-list-item figure img {
  max-width: 7.5rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  margin-top: 0.5rem;
}

.c-sidebar__text {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-sidebar__text.c-sidebar__text--medium {
  font-size: 1.25rem;
  margin-top: 2.0625rem;
}

.c-sidebar__contact-content {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.c-sidebar__contact-item dt,
.c-sidebar__contact-item dd {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0;
}

.c-sidebar__contact-item dt {
  font-weight: var(--fw-medium);
}

.c-sidebar__contact-item dd {
  font-weight: var(--fw-regular);
}

.c-sidebar__contact-address-wrap {
  display: flex;
  align-items: start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar__contact-address-wrap {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }
}

.c-sidebar__contact-address,
.c-sidebar__contact-list {
  margin-top: 0;
}

.c-sidebar__contact-list {
  padding-left: 0;
  list-style: none;
}

.c-sidebar__contact-list li + li {
  margin-top: 0.25rem;
}

.c-sidebar__contact-address a,
.c-sidebar__contact-list a {
  color: inherit;
  text-decoration: none;
}

.c-sidebar__text .c-sidebar__text-large {
  color: var(--color-green3);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1;
}
@media screen and (max-width: 399px) {
  .c-sidebar__text .c-sidebar__text-large {
    font-size: 1.125rem;
  }
}

.c-sidebar__text .c-sidebar__text-strong {
  color: var(--color-green3);
}

.c-sidebar__table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.c-sidebar__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.c-sidebar__table--schedule-3col {
  min-width: 57.25rem;
}

.c-sidebar__table--schedule-4col {
  min-width: 57.25rem;
}

.c-sidebar__table--schedule-3col .c-sidebar__table-col--round,
.c-sidebar__table--schedule-4col .c-sidebar__table-col--round {
  width: 7.375rem;
}

.c-sidebar__table--schedule-3col .c-sidebar__table-col--application {
  width: 24.9375rem;
}

.c-sidebar__table--schedule-3col .c-sidebar__table-col--transfer {
  width: 24.9375rem;
}

.c-sidebar__table--schedule-4col .c-sidebar__table-col--application,
.c-sidebar__table--schedule-4col .c-sidebar__table-col--reception,
.c-sidebar__table--schedule-4col .c-sidebar__table-col--transfer {
  width: 16.625rem;
}

.c-sidebar__table th,
.c-sidebar__table td {
  padding: 0.5rem 1rem;
  font-family: var(--base-font-family);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  border: 0;
  border-top: 1px solid var(--color-gray2);
  border-right: 1px solid var(--color-gray2);
}

.c-sidebar__table th:first-child,
.c-sidebar__table td:first-child {
  border-left: 1px solid var(--color-gray2);
}

.c-sidebar__table thead th {
  background-color: var(--color-green);
  color: var(--color-green3);
  font-weight: var(--fw-medium);
}

.c-sidebar__table thead th:first-child {
  border-top-left-radius: 0.5rem;
}

.c-sidebar__table thead th:last-child {
  border-top-right-radius: 0.5rem;
}

.c-sidebar__table tbody th[scope=row] {
  background-color: var(--color-green);
  color: var(--color-green3);
  font-weight: var(--fw-medium);
}

.c-sidebar__table tbody td {
  color: var(--color-black);
  font-weight: var(--fw-regular);
}

.c-sidebar__table tbody tr:last-child th,
.c-sidebar__table tbody tr:last-child td {
  border-bottom: 1px solid var(--color-gray2);
}

.c-sidebar__table tbody tr:last-child th {
  border-bottom-left-radius: 0.5rem;
}

.c-sidebar__table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.5rem;
}

.c-sidebar__body {
  margin-top: 2rem;
  padding: 2.5rem;
  background-color: var(--color-green);
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar__body {
    padding: 1.5rem;
  }
}

.c-sidebar__body p {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.c-sidebar__content-img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .c-sidebar__content-img-wrap {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
    max-width: 25rem;
    margin: 2.5rem auto 0;
  }
}

.c-sidebar__content-img-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 403/189;
}

.c-sub-mv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--color-gray);
  height: 19.375rem;
  background: url("../images/common/sub-mv-bg.webp") no-repeat center center/cover;
}

.c-sub-mv__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.625rem;
  height: inherit;
}

.c-sub-mv__heading__ja-title {
  font-family: var(--second-font-family);
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  color: var(--color-green2);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-sub-mv__heading__ja-title {
    font-size: clamp(1.625rem, 0.9986rem + 3.132vw, 2.5rem);
  }
}

.p-404 {
  text-align: center;
}

.p-404 h2 {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-green2);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-404 h2 {
    font-size: clamp(1.125rem, 0.140659843rem + 4.9217002237vw, 2.5rem);
  }
}

.p-404 p {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}
@media screen and (max-width: 399px) {
  .p-404 p {
    text-align: left;
  }
}

.p-404 .c-btn {
  margin-top: 2.5rem;
}

.p-contact__form-wrap {
  margin-top: 3.5rem;
}

.p-contact__text-wrap p {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-contact__text-wrap p + p {
  margin-top: 1.5rem;
}

.p-contact__form {
  width: 100%;
}

.p-form__wrap {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  width: 100%;
  margin: 0;
}

.p-form__wrap + .p-form__wrap {
  margin-top: 2rem;
}

.p-form__label,
.p-form__input,
.p-form__textarea {
  margin: 0;
}

.p-form__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-form__label::after {
  content: "*";
  color: #EE0000;
  font-size: 1em;
  line-height: 1;
}

.p-form__input input,
.p-form__textarea textarea {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--color-gray);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  transition: border-color var(--duration) var(--ease-base), box-shadow var(--duration) var(--ease-base);
}

.p-form__input input::-moz-placeholder, .p-form__textarea textarea::-moz-placeholder {
  color: var(--color-gray2);
  opacity: 1;
}

.p-form__input input::placeholder,
.p-form__textarea textarea::placeholder {
  color: var(--color-gray2);
  opacity: 1;
}

.p-form__input input:focus,
.p-form__textarea textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 0.1875rem rgba(238, 143, 0, 0.15);
}

.p-form__textarea textarea {
  min-height: 15.8125rem;
  resize: vertical;
}

.p-contact__form-privacy {
  margin-top: 2rem;
}

.p-contact__form-privacy label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.p-contact__form-privacy input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.p-contact__form-privacy input + span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 0.9375rem;
  padding-left: 1.4375rem;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  border: 1px solid var(--color-gray);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  transform: translateY(-50%);
  transition: border-color var(--duration) var(--ease-base), box-shadow var(--duration) var(--ease-base);
}

.p-contact__form-privacy input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 0.5rem;
  height: 0.25rem;
  border-bottom: 0.125rem solid var(--color-orange);
  border-left: 0.125rem solid var(--color-orange);
  transform: translateY(-65%) rotate(-45deg);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-base);
}

.p-contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.p-contact__form-privacy input:focus-visible + span::before {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 0.1875rem rgba(238, 143, 0, 0.15);
}

.p-contact__form-privacy input + span a {
  color: var(--color-orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.p-form__submit {
  position: relative;
  width: 100%;
  max-width: 17.5rem;
  margin: 2rem auto 0;
  text-align: center;
  margin-top: 3.5rem;
}

.p-form__submit input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  min-height: 3.5rem;
  padding: 1rem 3rem 1rem 1.5rem;
  margin: 0;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: var(--color-green2);
  border: 1px solid var(--color-green2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.p-form__submit input:disabled {
  cursor: not-allowed;
}

.p-form__submit input.back_button {
  padding: 1rem 1.5rem 1rem 3rem;
  color: var(--color-green2);
  background-color: var(--color-white);
  border-color: var(--color-green2);
}

.p-form__submit::after {
  content: "";
  position: absolute;
  top: 1.875rem;
  right: 5.5rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-white);
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
  mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
}

.p-form__submit:has(.back_button)::after {
  right: auto;
  left: 5.5rem;
  background-color: var(--color-green2);
  transform: translateY(-50%) scaleX(-1);
}

@media (any-hover: hover) {
  .p-form__submit input:not(:disabled):hover {
    color: var(--color-green2);
    background-color: var(--color-white);
    opacity: 1;
  }
  .p-form__submit:has(input:not(:disabled):hover)::after {
    background-color: var(--color-green2);
  }
  .p-form__submit input.back_button:hover {
    color: var(--color-white);
    background-color: var(--color-green2);
  }
  .p-form__submit:has(input.back_button:hover)::after {
    background-color: var(--color-white);
  }
}
.p-form__submit:focus-within {
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(238, 143, 0, 0.15);
}

.p-form__submit .wpcf7-spinner {
  display: block;
  margin: 0.5rem auto 0;
}

.p-footer {
  position: relative;
}

.p-footer__main {
  background-color: var(--color-green2);
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    padding: 3.5rem 0;
  }
}

.p-footer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__head {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}

.p-footer__brand {
  width: min(100%, 20rem);
}

.p-footer__logo {
  background-color: var(--color-white);
  padding: 0.375rem;
  border-radius: 0.125rem;
}

.p-footer__logo img {
  max-width: 11.6875rem;
  width: 100%;
  height: auto;
  aspect-ratio: 187/55;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

.p-footer__contact-btn {
  margin-top: 1.75rem;
  border-radius: 0.125rem;
}

.p-footer__contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.53125rem 0.625rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-decoration: none;
  background-color: var(--color-gray3);
  transition: opacity var(--duration) var(--ease-base);
}
@media screen and (max-width: 767px) {
  .p-footer__contact-btn a .p-footer__contact-btn a {
    min-height: 3.5rem;
    font-size: 0.875rem;
  }
}

.p-footer__contact-btn img {
  max-width: 1.25rem;
  width: 100%;
  height: auto;
  aspect-ratio: 20/13;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__nav {
  flex: 1;
  max-width: 35.625rem;
}

.p-footer__nav-columns {
  display: flex;
  gap: 3.375rem;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
    justify-content: stretch;
  }
}

.p-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 9rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    gap: 1.75rem;
    min-width: 0;
  }
}

.p-footer__nav-item {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.p-footer__nav-link,
.p-footer__nav-child-link {
  color: var(--color-white);
  text-decoration: none;
}

.p-footer__nav-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 399px) {
  .p-footer__nav-link {
    font-size: 0.875rem;
  }
}

.p-footer__nav-child-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0.25rem;
}

.p-footer__nav-child-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-footer__nav-child-marker {
  display: inline-block;
  width: 0.5rem;
  height: 0.0625rem;
  background-color: var(--color-white);
  flex-shrink: 0;
}

.p-footer__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.125rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__cards {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-footer__card {
  flex: 1 1 calc((100% - 3.125rem) / 2);
  min-width: 0;
  padding: 3.1875rem 3.75rem;
  background-color: var(--color-white);
  border-radius: 0.125rem;
}
@media screen and (max-width: 999px) {
  .p-footer__card {
    padding: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__card {
    padding: 1.5rem;
  }
}

.p-footer__card-title {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  color: var(--color-black);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__card-title {
    font-size: 1.1875rem;
  }
}

.p-footer__contact-list {
  margin-top: 0.4375rem;
}

.p-footer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-row {
    flex-wrap: wrap;
    gap: 0 0.625rem;
  }
}

.p-footer__contact-row:not(:first-child) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-row:not(:first-child) {
    margin-top: 0.5rem;
  }
}

.p-footer__contact-label,
.p-footer__contact-value {
  color: var(--color-black);
  line-height: 1;
  font-size: clamp(11px, 6.333px + 0.608vw, 18px);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-label,
  .p-footer__contact-value {
    white-space: normal;
  }
}

.p-footer__contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-label {
    font-size: 0.875rem;
  }
}

.p-footer__contact-label img {
  flex-shrink: 0;
}

.p-footer__contact-label--tel {
  gap: 0.25rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-label--tel {
    font-size: 1.25rem;
  }
}

.p-footer__contact-value {
  min-width: 0;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-value {
    font-size: 0.875rem;
  }
}

.p-footer__contact-value a {
  color: inherit;
  text-decoration: none;
}

.p-footer__contact-value--tel {
  font-family: var(--en-font-family);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-value--tel {
    font-size: 1.375rem;
  }
}

.p-footer__page-top {
  position: fixed;
  top: auto;
  right: 2.3%;
  bottom: 36rem;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-green2);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 0.4s var(--ease-base), transform 0.4s var(--ease-base), visibility 0.4s var(--ease-base);
}
@media screen and (max-width: 999px) {
  .p-footer__page-top {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__page-top {
    bottom: 25rem;
  }
}

.p-footer__page-top.is-footer-area {
  color: var(--color-white);
  mix-blend-mode: normal;
}

.p-footer__page-top.is-footer-area::before {
  background-color: var(--color-white);
}

.p-footer__page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.p-footer__page-top::before {
  content: "";
  display: block;
  width: 0.375rem;
  flex-shrink: 0;
  aspect-ratio: 6/20;
  background-color: var(--color-green2);
  -webkit-mask: url("../images/common/page-top-icon.svg") no-repeat center/contain;
  mask: url("../images/common/page-top-icon.svg") no-repeat center/contain;
}

.p-footer__page-top img {
  display: none;
}

.p-footer__page-top-text {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-footer__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__img.p-footer__img--left {
  max-width: 5.6875rem;
  aspect-ratio: 91/110;
}
@media screen and (max-width: 767px) {
  .p-footer__img.p-footer__img--left {
    left: 0.75rem;
    bottom: 1.75rem;
    max-width: 3.125rem;
  }
}

.p-footer__img.p-footer__img--center {
  max-width: 29.125rem;
  aspect-ratio: 466/112;
}
@media screen and (max-width: 767px) {
  .p-footer__img.p-footer__img--center {
    right: 2.75rem;
    bottom: 1.125rem;
    max-width: 11.25rem;
  }
}

.p-footer__img.p-footer__img--right {
  max-width: 1.6875rem;
  aspect-ratio: 27/110;
}
@media screen and (max-width: 767px) {
  .p-footer__img.p-footer__img--right {
    max-width: 0.875rem;
    right: 0.75rem;
    bottom: 1.375rem;
  }
}

.p-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--color-white);
}

.p-footer__copyright {
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.625rem 0;
}

@media (any-hover: hover) {
  .p-footer__contact-btn a:hover,
  .p-footer__nav-link:hover,
  .p-footer__nav-child-link:hover,
  .p-footer__contact-value a:hover,
  .p-footer__page-top:hover {
    opacity: 0.8;
  }
}
.p-footer__img-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: calc(var(--inner) + 22rem);
  padding: 0 1.25rem 0 8rem;
}
@media screen and (max-width: 1399px) {
  .p-footer__img-wrap {
    bottom: 0;
    padding: 0 1.25rem;
  }
}

.p-footer__img-wrap-inner {
  display: flex;
  gap: 1.9375rem;
  align-items: center;
}

.p-header {
  height: var(--header-height);
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-header {
    height: var(--header-height);
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding-left: 3rem;
  gap: 0.625rem;
}
@media screen and (max-width: 1399px) {
  .p-header__inner {
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: 0.5rem;
  }
}

.p-header__logo {
  width: 100%;
  height: inherit;
  max-width: 12.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 9.375rem;
  }
}

.p-header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__tel-inner {
  display: inline-flex;
  flex-direction: column;
  flex: 0 1 auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
}

.p-header__tel-text {
  color: var(--color-green2);
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-header__tel-text-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  min-width: 0;
}

.p-header__tel-sub-text {
  color: var(--color-green2);
  font-family: var(--base-font-family);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  letter-spacing: 0.05em;
  min-width: 0;
  white-space: nowrap;
}

.p-header__tel-sub-text span {
  font-family: var(--en-font-family);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-header__tel-area {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 0.25rem;
  min-width: 0;
}

.p-header__tel-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.p-header__tel-wrap img {
  max-width: 1.5rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__tel {
  color: var(--color-green2);
  font-family: var(--en-font-family);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.p-header__nav-wrap {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  margin-right: 3rem;
}
@media screen and (max-width: 1399px) {
  .p-header__nav {
    margin-right: 1.25rem;
  }
}
@media screen and (max-width: 999px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 3.25rem;
}
@media screen and (max-width: 1399px) {
  .p-header__nav-list {
    gap: 1.25rem;
  }
}

.p-header__nav-item > a {
  height: inherit;
  display: flex;
  align-items: center;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  transition: opacity var(--duration) var(--ease-base);
}

.p-header__nav-item.p-header__nav-item--use a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.p-header__nav-item {
  position: relative;
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--use::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  min-width: 9.25rem;
  height: 1rem;
  translate: -50% 0;
}

.p-header__nav-sub-list {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0.25rem 0.5rem;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  translate: -50% -13%;
  transition: opacity var(--duration) var(--ease-base), visibility var(--duration) var(--ease-base);
}

.p-header__nav-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: opacity var(--duration) var(--ease-base);
}
.p-header__nav-sub-link:hover, .p-header__nav-sub-link:focus-visible {
  opacity: 1;
}

.p-header__nav-sub-marker {
  width: 0.5rem;
  height: 0.0625rem;
  background-color: #3d3e39;
  flex-shrink: 0;
}

.p-header__nav-item.p-header__nav-item--use:hover > a,
.p-header__nav-item.p-header__nav-item--use:focus-within > a {
  opacity: 0.8;
}
.p-header__nav-item.p-header__nav-item--use:hover .p-header__nav-sub-list,
.p-header__nav-item.p-header__nav-item--use:focus-within .p-header__nav-sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-header__nav-item.p-header__nav-item--contact a {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  background-color: var(--color-green2);
  padding: 1.09375rem 2rem;
}
@media screen and (max-width: 1399px) {
  .p-header__nav-item.p-header__nav-item--contact a {
    padding: 0.875rem 1.25rem;
  }
}

.p-header__nav-item.p-header__nav-item--use a img {
  max-width: 1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: rotate var(--duration) var(--ease-base);
}

.p-header__nav-item.p-header__nav-item--use:hover a img,
.p-header__nav-item.p-header__nav-item--use:focus-within a img {
  rotate: 180deg;
}

.p-header__nav-item.p-header__nav-item--contact {
  min-width: 10rem;
}
@media screen and (max-width: 999px) {
  .p-header__nav-item.p-header__nav-item--contact {
    display: none;
  }
}

.p-header__nav-item.p-header__nav-item--contact a img {
  max-width: 3rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav-item.p-header__nav-item--contact a span {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-header__hamburger {
  display: none;
  position: relative;
  z-index: 999;
  aspect-ratio: 1/1;
  height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--color-green2);
  outline: none;
  cursor: pointer;
  transition: background-color var(--duration);
}
@media screen and (max-width: 999px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: 2.5rem;
  height: 2px;
  background-color: var(--color-white);
  translate: -50% 0;
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67);
}
.p-header__hamburger span:nth-of-type(1) {
  top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span:nth-of-type(1) {
    top: -0.5rem;
  }
}
.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}
.p-header__hamburger span:nth-of-type(3) {
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span:nth-of-type(3) {
    top: 0.5rem;
  }
}

.p-header__hamburger.is-open span {
  background-color: var(--color-green2);
}
.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  rotate: 45deg;
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.225rem;
  rotate: -45deg;
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__drawer {
  position: absolute;
  inset: var(--header-height) 0 0;
  z-index: var(--z-index-drawer);
  display: none;
  overflow-y: auto;
  width: 100%;
  height: calc(100svh - var(--header-height));
  background-color: #faffe9;
  opacity: 0;
  scrollbar-width: none;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
  min-height: 100%;
  padding: 2.625rem 1.5rem 4rem;
}

.p-header__drawer-nav {
  width: 100%;
}

.p-header__drawer-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 20.4375rem;
  margin-inline: auto;
}

.p-header__drawer-item {
  color: var(--color-green2);
}

.p-header__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  color: inherit;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.p-header__drawer-arrow {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
  mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
  transition: rotate var(--duration) var(--ease-base);
}

.p-header__drawer-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}

@media (prefers-reduced-motion: no-preference) {
  .p-header__drawer-accordion::details-content {
    transition: grid-template-rows 0.3s ease-out;
  }
}
.p-header__drawer-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}

.p-header__drawer-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.p-header__drawer-summary {
  list-style: none;
  cursor: pointer;
}
.p-header__drawer-summary .p-header__drawer-arrow {
  rotate: 90deg;
}

.p-header__drawer-summary::-webkit-details-marker {
  display: none;
}

.p-header__drawer-sub-body {
  overflow: hidden;
}

.p-header__drawer-sub-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-inline: 0.4375rem;
}

.p-header__drawer-accordion[open] .p-header__drawer-arrow {
  rotate: -90deg;
}

.p-header__drawer-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: inherit;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-header__drawer-sub-marker {
  width: 0.5rem;
  height: 0.0625rem;
  background-color: currentColor;
  flex-shrink: 0;
}

.p-header__drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.p-header__drawer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  color: var(--color-green2);
  text-align: center;
}

.p-header__drawer-contact-title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.p-header__drawer-contact-text {
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.p-header__drawer-contact-text span {
  margin-left: 0.125rem;
  font-family: var(--en-font-family);
  font-weight: var(--fw-bold);
}

.p-header__drawer-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  width: 100%;
}

.p-header__drawer-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 17.5rem;
  min-height: 3.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  color: var(--color-white);
}

.p-header__drawer-contact-button--tel {
  background-color: var(--color-green2);
}

.p-header__drawer-contact-button--mail {
  background-color: var(--color-orange);
}

.p-header__drawer-contact-icon {
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
}

.p-header__drawer-contact-icon--tel {
  width: 1.25rem;
  height: 1.25rem;
  -webkit-mask: url("../images/common/tel-icon.svg") center/contain no-repeat;
  mask: url("../images/common/tel-icon.svg") center/contain no-repeat;
}

.p-header__drawer-contact-button--mail img {
  width: 1.25rem;
  height: 0.875rem;
}

.p-header__drawer-contact-button--tel span {
  font-family: var(--en-font-family);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-header__drawer-contact-button--mail span {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-news-single__date {
  font-family: var(--en-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-gray3);
  letter-spacing: 0.05em;
}

.p-news-single__title {
  font-family: var(--base-font-family);
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-green2);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 1.75rem;
  }
}

.p-news-single__content {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content {
    margin-top: 1.875rem;
  }
}

.p-news-single__content img {
  width: 100%;
  height: auto;
  aspect-ratio: 917/464;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-single__content h2 {
  font-family: var(--base-font-family);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.05em;
  background-color: var(--color-green2);
  padding: 0.4375rem 1rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h2 {
    font-size: 1.25rem;
  }
}

.p-news-single__content p {
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 1.5rem 0;
}

.p-news-single__content a {
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-green3);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 1.5rem 0;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-green3);
          text-decoration-color: var(--color-green3);
}

.p-news-single__content h3 {
  position: relative;
  font-family: var(--base-font-family);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-green2);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-left: 0.875rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h3 {
    font-size: 1.125rem;
  }
}

.p-news-single__content h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 1.375rem;
  border-radius: 62.4375rem;
  background-color: var(--color-green2);
  margin-top: calc((1.6em - 1.375rem) / 2);
}

.p-news-single__content ol {
  counter-reset: item;
  margin: 1.5rem 0;
}

.p-news-single__content ol li {
  counter-increment: item;
  display: grid;
  grid-template-columns: max-content 1fr;
  -moz-column-gap: 0.125rem;
       column-gap: 0.125rem;
  align-items: start;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-news-single__content ol li::before {
  content: counter(item) ".";
  font-family: var(--en-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-gray3);
  letter-spacing: 0.05em;
  line-height: 1.6;
  white-space: nowrap;
}

.p-news-single__content ol li > p {
  margin: 0;
}

.p-news-single__content ul {
  margin: 1.5rem 0;
}

.p-news-single__content ul li {
  display: grid;
  grid-template-columns: 0.25rem 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: start;
  padding-inline: 0.25rem;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-news-single__content ul li::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #3D3E39;
  margin-top: calc((1.6em - 0.25rem) / 2);
}

.p-news-single__content ul li > p {
  margin: 0;
}

.p-news-single__content h4 {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: var(--color-green2);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h4 {
    font-size: 1rem;
  }
}

.p-news-single__content h4::before {
  content: "";
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.5rem;
  background-color: var(--color-green2);
  margin-top: calc((1.6em - 0.625rem) / 2);
}

.p-news-single__content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.p-news-single__content th,
.p-news-single__content td {
  padding: 0.5rem 1rem;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  border: 0;
  border-top: 1px solid var(--color-gray2);
  border-right: 1px solid var(--color-gray2);
}

.p-news-single__content th:first-child,
.p-news-single__content td:first-child {
  border-left: 1px solid var(--color-gray2);
}

.p-news-single__content thead th {
  background-color: var(--color-green);
  font-weight: var(--fw-medium);
  color: var(--color-green3);
}

.p-news-single__content thead th:first-child {
  border-top-left-radius: 0.5rem;
}

.p-news-single__content thead th:last-child {
  border-top-right-radius: 0.5rem;
}

.p-news-single__content tbody td {
  font-weight: var(--fw-regular);
  color: var(--color-black);
}

.p-news-single__content tbody tr:last-child td {
  border-bottom: 1px solid var(--color-gray2);
}

.p-news-single__content tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.5rem;
}

.p-news-single__content tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.5rem;
}

.p-news-single__content th > p,
.p-news-single__content td > p {
  margin: 0;
}

.p-news-single__btn {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.p-news-single__btn-back {
  width: 100%;
  max-width: 17.5rem;
}

.wp-block-table {
  margin: 1.5rem 0;
}

.p-privacy-policy p {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-privacy-policy__list {
  margin-top: 2rem;
}

.p-privacy-policy__list .c-number-list__item + .c-number-list__item {
  margin-top: 2rem;
}

.p-privacy-policy__info {
  margin-top: 3.5rem;
}

.p-privacy-policy__info p {
  text-align: right;
}

.p-privacy-policy__contact {
  background-color: #F9F9F9;
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.p-thanks {
  text-align: center;
}

.p-thanks h2 {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-green2);
  letter-spacing: 0.05em;
}

.p-thanks__text-wrap {
  margin-top: 2rem;
}

.p-thanks p {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 399px) {
  .p-thanks p {
    text-align: left;
  }
}

.p-thanks .c-btn {
  margin: 2.5rem auto 0;
}

.p-top-mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 31.25rem;
  aspect-ratio: 1920/660;
  background-image: url("../images/top/mv-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    min-height: 40.625rem;
  }
}

.p-top-mv__content {
  width: 62%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-mv__content {
    width: 95%;
  }
}

.p-top-mv__text {
  display: block;
  max-width: 73.0625rem;
  width: 100%;
}

.p-top-mv__text img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1169/221;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-mv__text img {
    aspect-ratio: 885/289;
  }
}

.p-top-mv__date {
  max-width: 40.5625rem;
  width: 100%;
  height: auto;
  aspect-ratio: 649/107;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 3.875rem;
}

.p-top-mv__btn {
  max-width: 20.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 4.25rem;
  margin-top: 2.9375rem;
  padding: 1.25rem 2rem;
  border-radius: 0.5rem;
  background-image: linear-gradient(180deg, rgb(255, 199, 56) 0%, rgb(255, 196, 69) 7.786%, rgb(255, 204, 93) 16.879%, rgb(255, 183, 76) 27.567%, rgb(255, 173, 21) 37.458%, rgb(235, 142, 13) 73.336%, rgb(215, 126, 9) 87.5%, rgb(180, 93, 0) 100%);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-mv__btn {
    max-width: 17.5rem;
    min-height: 3.75rem;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
  }
}

.p-top-mv__btn-label {
  display: inline-block;
}

.p-top-mv__btn-arrow {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .p-top-mv__btn:hover .p-top-mv__btn-arrow {
    transform: translateX(0.25rem);
  }
}
@media (any-hover: hover) {
  .p-top-mv__btn:hover {
    opacity: 1;
  }
}
.p-top-mv__img-left,
.p-top-mv__img-right {
  position: absolute;
  bottom: 7%;
  max-width: 30rem;
  width: 25%;
  height: auto;
  aspect-ratio: 480/274;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-mv__img-left,
  .p-top-mv__img-right {
    bottom: initial;
    top: 42%;
    max-width: 15rem;
  }
}

.p-top-mv__img-left {
  left: 3%;
}

.p-top-mv__img-right {
  right: 3%;
}

.p-top-news {
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 5rem 0;
  }
}

.p-top-use {
  position: relative;
  padding: 7.5rem 0;
  overflow: clip;
  background: var(--color-green);
}
@media screen and (max-width: 767px) {
  .p-top-use {
    padding: 5rem 0 7.5rem;
  }
}

.p-top-use__inner {
  position: relative;
  z-index: 1;
  max-width: calc(75rem + var(--padding-inner) * 2);
}

.p-top-use__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 23.875rem));
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-use__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 23.875rem;
    margin-inline: auto;
  }
}

.p-top-use__card {
  position: relative;
  min-height: 21.5625rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-top-use__card-label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.0625rem;
  padding: 0.625rem 1.5rem;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  background-color: var(--color-green2);
  border: 1px solid var(--color-green2);
  border-radius: 0.5rem 0 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-use__card-label {
    min-height: 2.75rem;
    font-size: 1.25rem;
  }
}

.p-top-use__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 4.5rem 2.5rem 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-use__card-inner {
    padding: 4.5rem 1.5rem 2rem;
  }
}

.p-top-use__card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 18.5rem;
  width: 100%;
  min-height: 8.25rem;
}

.p-top-use__card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 296/132;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-use__card-text {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-top-use__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 17.5rem;
  min-height: 3.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.p-top-use__btn::after {
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
  mask: url("../images/common/btn-arrow.svg") center/contain no-repeat;
}

.p-top-use__btn--outline {
  margin-top: 1rem;
  color: var(--color-green2);
  background-color: var(--color-white);
  border: 1px solid var(--color-green2);
}

@media (any-hover: hover) {
  .p-top-use__btn--outline:hover {
    color: var(--color-white);
    background-color: var(--color-green2);
    opacity: 1;
  }
}
.p-top-use__btn--solid {
  color: var(--color-white);
  background-color: var(--color-gray3);
  border: 1px solid var(--color-gray3);
}

@media (any-hover: hover) {
  .p-top-use__btn--solid:hover {
    color: var(--color-black);
    background-color: var(--color-white);
    border: none;
    opacity: 1;
  }
}
.p-top-use__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  margin-top: 3.75rem;
  padding: 5rem 5.5rem;
  background-color: var(--color-orange);
  border-radius: 0.5rem;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-top-use__cta {
    width: 100%;
    max-width: 31.25rem;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem auto 0;
    padding: 3rem 1.5rem;
  }
}

.p-top-use__cta-visual {
  max-width: 18.5rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-use__cta-visual {
    width: 80%;
  }
}

.p-top-use__cta-visual img {
  aspect-ratio: 296/132;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-use__cta-content {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-use__cta-content {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }
}

.p-top-use__cta-text {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-use__cta-text {
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-top-use__ornament {
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.p-top-use__ornament img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-use__ornament--left {
  left: 10%;
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-use__ornament--left {
    left: 0.75rem;
    width: 2.5rem;
  }
}

.p-top-use__ornament--right {
  right: 6%;
  width: 8.5625rem;
  height: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-use__ornament--right {
    right: 0.5rem;
    width: 6rem;
    height: 4.75rem;
  }
}

.p-top-use__ornament-piece {
  position: absolute;
}

.p-top-use__ornament-piece--right-1 {
  top: 0.025rem;
  left: 0;
  width: 2.3125rem;
}

.js-fadein {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.2, 0.6, 0.2, 1), transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
  transform: translateY(2.5rem);
}

.js-fadein.is-scrolled {
  opacity: 1;
  transform: translateY(0);
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
