@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

/* buttonの完全リセット */
button {
  /* 外観のリセット */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 枠線・背景のリセット */
  border: none;
  background: none;
  background-color: transparent;
  /* 余白のリセット */
  padding: 0;
  margin: 0;
  /* フォントの継承 */
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  /* カーソル */
  cursor: pointer;
  /* アウトラインのリセット */
  outline: none;
  /* その他 */
  text-align: inherit;
  text-decoration: none;
  vertical-align: baseline;
  /* ボックスモデル */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* フォーカス時のアウトラインを完全に削除 */
button:focus {
  outline: none;
}

/* アクティブ時の影を削除（iOS Safari） */
button:active {
  opacity: 1;
}

/* タップハイライトを削除（モバイル） */
button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

:root {
  --color-font-base: #373C38;
  --color-font-sub: #36563C;
  --color-font-secondary: #DBE5D6;
  --color-font-white: #FBF6E8;
}

@media screen and (max-width: 1199px) and (min-width: 767px) {
  html {
    font-size: calc(1600vw / 1200);
  }
}
@media screen and (max-width: 766px) {
  html {
    font-size: calc(1600vw / 375);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho";
  color: var(--color-font-base);
  text-decoration: none;
  list-style: none;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

a {
  color: var(--color-font-base);
  text-decoration: none;
}

address {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ヘッダー */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
}

.l-header__inner {
  padding: 3rem 4rem 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}

.l-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6.75rem;
  min-height: 0;
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    gap: 1rem;
  }
}

.l-header__menu-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  text-decoration: none;
  cursor: pointer;
}
.l-header__menu-map img {
  width: 2.5rem;
  height: 2.5rem;
  min-height: 0;
}
@media screen and (max-width: 767px) {
  .l-header__menu-map img {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.l-header__menu-map-text {
  color: var(--color-font-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .l-header__menu-map-text {
    font-size: 0.875rem;
  }
}

/* メニューアイコン */
.l-header__menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 6.25rem;
  aspect-ratio: 1/1;
  min-height: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header__menu-icon {
    width: 3.125rem;
  }
}
.l-header__menu-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ナビゲーションメニュー */
.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  background: var(--color-font-sub);
  color: white;
  z-index: 1000;
  visibility: hidden;
  -webkit-clip-path: circle(0% at calc(100% - 80px) 50px);
          clip-path: circle(0% at calc(100% - 80px) 50px);
  overflow-y: auto;
  will-change: clip-path;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    -webkit-clip-path: circle(0% at calc(100% - 60px) 40px);
            clip-path: circle(0% at calc(100% - 60px) 40px);
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    -webkit-clip-path: circle(0% at calc(100% - 40px) 35px);
            clip-path: circle(0% at calc(100% - 40px) 35px);
  }
}
.l-header__nav.is-active {
  visibility: visible;
}
.l-header__nav::-webkit-scrollbar {
  width: 6px;
}
.l-header__nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.l-header__nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.l-header__nav-sublist > li {
  will-change: opacity, transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.l-header__nav-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  padding: 1.5625rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-header__nav-close {
    padding: 0.625rem;
    padding-bottom: 0;
  }
}
.l-header__nav-close img {
  width: 6.25rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .l-header__nav-close img {
    width: 3.125rem;
  }
}

.l-header__nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-content {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-content {
    margin-top: 0;
  }
}

.l-header__nav-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-sublist {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-sublist {
    gap: 1rem;
  }
}
.l-header__nav-sublist > li {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.l-header__nav-link {
  color: var(--color-font-white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-link {
    font-size: 1.125rem;
  }
}

.l-header__nav-item--parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.l-header__nav-item--parent .l-header__nav-link {
  cursor: default;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--parent .l-header__nav-link {
    font-size: 1.125rem;
  }
}

.l-header__nav-sublist-nested {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-sublist-nested {
    gap: 0.5rem;
  }
}

.l-header__nav-link-sub {
  color: var(--color-font-white);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  padding-left: 2rem;
}
.l-header__nav-link-sub::before {
  content: "―";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-header__nav-link-sub {
    font-size: 1rem;
  }
}

.l-header__nav-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-sns {
    margin-inline: auto;
  }
}

.l-header__nav-sns-link {
  display: inline-block;
  text-decoration: none;
}
.l-header__nav-sns-link img {
  width: 1.5rem;
  height: 1.5rem;
}

.l-header__nav-img-button {
  margin-top: 1.5rem;
  margin-inline: auto;
  width: 12.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-img-button {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-img-button {
    width: 6.25rem;
    margin-top: 0.625rem;
  }
}
.l-header__nav-img-button img {
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__nav-img-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

/* アーカイブヘッダー */
.l-header__inner--news-archive,
.l-header__inner--news-single {
  height: 12.5rem;
  background: var(--color-font-sub);
  padding-block: 3rem;
  padding-inline: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-header__inner--news-archive,
  .l-header__inner--news-single {
    height: 11.25rem;
    padding-block: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner--news-archive,
  .l-header__inner--news-single {
    height: 6.25rem;
    padding-block: 1.5rem;
  }
}

.l-header__menu--archive,
.l-header__menu--single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(79rem, 100%);
  padding-inline: 32px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-header__menu--archive,
  .l-header__menu--single {
    padding-inline: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}

.l-header__menu-logo--archive,
.l-header__menu-logo--single {
  width: 28.1875rem;
  height: auto;
  aspect-ratio: 451/111;
  rotate: -5deg;
}
@media screen and (max-width: 767px) {
  .l-header__menu-logo--archive,
  .l-header__menu-logo--single {
    width: 18.75rem;
    rotate: 0deg;
  }
}

.l-header__menu-map--archive,
.l-header__menu-map--single {
  display: none;
}

/* フッター */
.l-footer {
  position: relative;
  background: url("../img/footer_img.png") no-repeat center center/cover;
  z-index: 1;
  overflow: hidden;
  padding-block: 4rem 2rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-inline: 1.25rem;
  }
}

.l-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#36563c), to(rgba(54, 86, 60, 0)));
  background: linear-gradient(180deg, #36563c 0%, rgba(54, 86, 60, 0) 100%);
  z-index: -1;
}

.l-footer__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  width: min(77.5rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0;
  }
}

.l-footer__inner {
  margin-inline: auto;
}
.l-footer__title {
  color: var(--color-font-white);
  font-size: 2.5rem;
  line-height: 1.2;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__title {
    text-align: center;
  }
}

.l-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  row-gap: 0.625rem;
  margin-top: 3rem;
}

.l-footer__link {
  color: var(--color-font-white);
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .l-footer__link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    font-size: 1.125rem;
  }
}

.l-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  row-gap: 0.625rem;
  margin-top: 3rem;
}

.l-footer__link {
  color: var(--color-font-white);
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .l-footer__link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    font-size: 1.125rem;
  }
}

.l-footer__nav-item--parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.l-footer__nav-link {
  color: var(--color-font-white);
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1.125rem;
  }
}

.l-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__links {
    gap: 0.75rem;
  }
}

.l-footer__link {
  color: var(--color-font-white);
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .l-footer__link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    font-size: 1.125rem;
  }
}

.l-footer__nav-item--parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item--parent {
    gap: 0.625rem;
  }
}

.l-footer__nav-link {
  color: var(--color-font-white);
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1.125rem;
  }
}

.l-footer__nav-sublist-nested {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-sublist-nested {
    gap: 0.625rem;
    padding-left: 1rem;
  }
}

.l-footer__nav-link-sub {
  color: var(--color-font-white);
  font-size: 1.25rem;
  line-height: 1.2;
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-link-sub {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link-sub {
    font-size: 1.125rem;
    padding-left: 1rem;
  }
}
.l-footer__nav-link-sub::before {
  content: "−";
  position: absolute;
  left: 0;
}
.l-footer__nav-link-sub:hover {
  opacity: 0.8;
}

.l-footer__center {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__center {
    margin-top: 1.5rem;
  }
}

.l-footer__sub-title {
  color: var(--color-font-white);
  font-size: 1.375rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1023px) {
  .l-footer__sub-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sub-title {
    font-size: 1.25rem;
  }
}

.l-footer__address {
  color: var(--color-font-white);
  font-size: 1.125rem;
  line-height: 1.2;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__address {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    font-size: 1rem;
  }
}

.l-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__social {
    margin-top: 1rem;
    gap: 1rem;
  }
}

.l-footer__sns-link {
  width: 1.5rem;
  aspect-ratio: 1/1;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .l-footer__sns-link {
    width: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns-link {
    width: 1.25rem;
  }
}

.l-footer__right {
  width: 80%;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (min-width: 1500px) {
  .l-footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 31.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__right {
    display: none;
  }
}

.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: auto;
  font-size: 0.875rem;
  color: var(--color-font-white);
  letter-spacing: 0.03em;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    margin-top: 4rem;
    font-size: 0.75rem;
  }
}

.scroll-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  position: fixed;
  bottom: 2.5rem;
  right: 1.5rem;
  background: rgba(54, 86, 60, 0.8);
  border-radius: 50%;
  width: 7.8125rem;
  aspect-ratio: 1/1;
  z-index: 999;
  color: var(--color-font-white);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .scroll-top {
    width: 3.75rem;
    font-size: 1rem;
  }
}
.scroll-top a {
  position: absolute;
  top: 3.125rem;
  min-height: 0;
}
.scroll-top::before {
  content: "";
  position: absolute;
  top: 16%;
  width: 1.75rem;
  height: 1.75rem;
  min-height: 0;
  background-image: url(../img/svg/page-top__btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .scroll-top::before {
    top: 0;
  }
}

.scroll-top.hidden {
  opacity: 0;
  visibility: hidden;
}

.l-inner {
  padding-block: clamp(4rem, 8.8vw, 8rem);
  padding-inline: clamp(1.25rem, 2.77vw, 2.5rem);
  width: min(1240px, 100%);
  margin-inline: auto;
}

.c-spacer {
  display: block;
  width: 100%;
  height: 48px;
}
.c-spacer--size-8 {
  height: 8px;
}
.c-spacer--size-16 {
  height: 16px;
}
.c-spacer--size-24 {
  height: 24px;
}
.c-spacer--size-32 {
  height: 32px;
}
.c-spacer--size-48 {
  height: 48px;
}
.c-spacer--size-64 {
  height: 64px;
}
.c-spacer--size-80 {
  height: 80px;
}
.c-spacer--size-96 {
  height: 96px;
}
.c-spacer--size-128 {
  height: 128px;
}
.c-spacer--size-100-50 {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .c-spacer--size-24 {
    height: 20px;
  }
  .c-spacer--size-32 {
    height: 30px;
  }
  .c-spacer--size-48 {
    height: 45px;
  }
  .c-spacer--size-64 {
    height: 60px;
  }
  .c-spacer--size-80 {
    height: 70px;
  }
  .c-spacer--size-96 {
    height: 80px;
  }
  .c-spacer--size-128 {
    height: 100px;
  }
}

.c-section-title__title {
  color: var(--color-font-sub);
  font-size: 3.625rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-section-title__title {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
}

.c-section-title__text {
  margin-top: 1rem;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-section-title__text {
    margin-top: 0.5rem;
    font-size: 1.25rem;
  }
}

.c-section-title__text-span {
  color: var(--color-font-sub);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-section-title__text-span {
    font-size: 1.25rem;
  }
}

.c-section-title__title--white,
.c-section-title__text--white {
  color: var(--color-font-white);
}

.c-section-title__text-span--archive {
  display: block;
}

.container {
  background-color: #333;
}

.c-section-title--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-section-title--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.5rem;
  }
}

.c-section-title__img {
  width: 3.375rem;
  aspect-ratio: 1/1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.c-section-title__title--vertical {
  color: var(--color-font-white);
  text-align: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .c-section-title__title--vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 2rem;
  }
}

.c-section-title__text--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 767px) {
  .c-section-title__text--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem;
    margin-top: 0;
  }
}

.c-section-title__text-span--vertical {
  color: var(--color-font-white);
  text-align: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .c-section-title__text-span--vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 1.125rem;
    text-align: left;
  }
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4375rem;
  padding: 1rem 1.5rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid var(--color-font-sub);
}
.c-button::after {
  content: "";
  background-image: url("../img/svg/btn_icon-primary.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.625rem;
  height: 0.625rem;
}

.c-button__text {
  color: var(--color-font-sub);
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  font-family: "Shippori Mincho";
}

.c-button--secondary {
  padding: 0.5rem 1rem;
  border-radius: 0.3125rem;
}
.c-button--secondary::after {
  background-image: url("../img/svg/btn_icon-outline.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.125rem;
  height: 1.125rem;
}

.c-button__text--secondary {
  font-size: 1rem;
}

.c-button--tertiary {
  padding: 1.25rem 1.5625rem;
  border-radius: 0.625rem;
}
.c-button--tertiary::after {
  background-image: url("../img/svg/btn_icon-down.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.75rem;
  height: 1.75rem;
}

.c-button--send {
  padding: 1rem 1.5rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid var(--color-font-white);
  background: var(--color-font-sub);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.c-button--send::after {
  content: "";
  background-image: url("../img/svg/btn_icon-send.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.wpcf7-form .wpcf7-submit.c-button--send {
  cursor: pointer;
}
.wpcf7-form .wpcf7-submit.c-button--send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.c-button__text--send {
  color: var(--color-font-white);
}

.c-button--archive {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  color: var(--color-font-sub);
  text-align: center;
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--100, #36563C);
  text-decoration: none;
  background-color: transparent;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-button--archive {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}
.c-button--archive::after {
  background-image: url("../img/svg/news_archive-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  width: 0.625rem;
  height: 0.5625rem;
}

.c-button__text--archive {
  color: var(--color-font-sub);
  text-align: center;
  font-size: 1.25rem;
  line-height: 1;
}

.c-button--single {
  padding: 1rem 1.5rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid var(--color-font-sub);
  text-decoration: none;
  background-color: transparent;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0.4375rem;
}
.c-button--single::after {
  content: "";
  background-image: url("../img/svg/news_archive-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.625rem;
  height: 0.5625rem;
}

.c-button__text--single {
  color: var(--color-font-sub);
  text-align: center;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-button__text--single {
    font-size: 1rem;
  }
}

.c-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding-block: 8rem;
}
@media screen and (max-width: 1023px) {
  .c-card {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-card {
    padding-block: 4rem;
    gap: 2rem;
  }
}

.c-card__item {
  max-width: 21.875rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .c-card__item {
    max-width: 100%;
  }
}
.c-card__item:not(:has(> .c-card__link)) {
  gap: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .c-card__item:not(:has(> .c-card__link)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .c-card__item:not(:has(> .c-card__link)) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

.c-card__img {
  width: 100%;
}

.c-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 1023px) {
  .c-card__link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .c-card__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

.c-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-card__content {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card__content {
    gap: 1rem;
  }
}

.c-card__title {
  color: var(--color-font-base);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: 1rem;
  }
}

.c-card__tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.c-card__tag {
  color: var(--color-font-white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.125rem 0.75rem;
  border-radius: 0.625rem;
  background: var(--color-font-sub);
}

.c-card__tag--archive {
  background: transparent;
  color: var(--color-font-sub);
  border: 1px solid var(--color-font-sub);
}

.c-card__time {
  color: var(--color-font-base);
  font-family: "Work Sans";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  margin-top: auto;
}

.c-card__button {
  margin-top: auto;
  margin-left: auto;
}

.c-card-spot {
  padding-block: 4rem 3rem;
}

.c-card-spot__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  border-radius: 0.625rem;
  border: 1px solid var(--color-font-sub);
  background: var(--color-font-white);
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-card-spot__inner:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-card-spot__inner:not(:first-child) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card-spot__inner {
    gap: 0;
  }
}

.c-card-spot__inner.is-hidden {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.c-card-spot__inner.is-visible {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-spot__btn.is-hidden {
  display: none;
}

.c-card-spot__toggle {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-card-spot__toggle {
    display: block;
  }
}
.c-card-spot__toggle:focus-visible {
  outline: 2px solid var(--color-font-sub);
  outline-offset: -2px;
}

.c-card-spot__toggle-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-card-spot__toggle-icon {
    display: block;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1.875rem;
    height: 1.875rem;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    border-radius: 50px;
    background: var(--color-font-white);
  }
  .c-card-spot__toggle-icon::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: var(--color-font-sub);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
@media screen and (max-width: 767px) {
  [aria-expanded=true] .c-card-spot__toggle-icon::after {
    content: "";
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 0.625rem;
    height: 0.0625rem;
    background: var(--color-font-sub);
  }
}

@media screen and (max-width: 767px) {
  .c-card-spot__body {
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 0.5s ease;
    transition: grid-template-rows 0.5s ease;
    transition: grid-template-rows 0.5s ease, -ms-grid-rows 0.5s ease;
  }
}
@media screen and (max-width: 767px) {
  .c-card-spot__body.is-open {
    grid-template-rows: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .c-card-spot__body-inner {
    overflow: hidden;
    min-height: 0;
  }
}

.c-card-spot__image-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
  padding: 2rem 3rem;
}
@media screen and (max-width: 1023px) {
  .c-card-spot__image-wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-card-spot__image-wrapper {
    padding: 1rem 1rem 1.5rem;
  }
}

.c-card-spot__image {
  max-width: 36rem;
  height: auto;
  aspect-ratio: 576/400;
}
@media screen and (max-width: 1023px) {
  .c-card-spot__image {
    max-width: 100%;
  }
}
.c-card-spot__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card-spot__title {
  width: 25rem;
  height: 4.375rem;
  padding: 0.0625rem 3.125rem;
  border-radius: 0 0 1.875rem 0;
  background: var(--color-font-sub);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-card-spot__title {
    width: 100%;
    padding: 0.0625rem 1.5625rem;
    padding-right: 3.125rem;
    border-radius: 0;
  }
}

.c-card-spot__title-text {
  color: var(--color-font-white);
  font-family: "Shippori Mincho";
  font-size: 1.375rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-card-spot__title-text {
    font-size: 1.125rem;
  }
}

.c-card-spot__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.c-card-spot__item {
  display: grid;
  grid-template-columns: 8.125rem 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-card-spot__item {
    grid-template-columns: 6.25rem 1fr;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 375px) {
  .c-card-spot__item {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .c-card-spot__item--recommend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

.c-card-spot__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.625rem;
  border: 1px solid var(--color-font-sub);
  width: 8.125rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .c-card-spot__label {
    width: 6.25rem;
    height: 1.75rem;
  }
}

.c-card-spot__label-text {
  color: var(--color-font-sub);
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-size: 1rem;
}

.c-card-spot__text {
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-card-spot__text {
    letter-spacing: 0.03em;
    margin-top: 0.1875rem;
  }
}

.c-card-spot__text-span {
  display: block;
}

.c-card-spot__link-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
}
.c-card-spot__link-text::after {
  content: "";
  display: block;
  background-image: url("../img/svg/spot_mappin.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1rem;
  height: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-card-spot__social {
  margin-left: 10.125rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-card-spot__social {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.c-card-spot__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-card-spot__sns {
    gap: 0.5rem;
  }
}

.c-card-spot__sns-link {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5625rem;
  height: 1.5625rem;
}
.c-card-spot__sns-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-news-archive__filter {
  margin-top: 4rem;
  width: min(77.5rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-archive__filter {
    margin-top: 3rem;
    padding-inline: 0;
  }
}

.c-filter__title {
  color: var(--color-font-sub);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-filter__title {
    font-size: 1.125rem;
    text-align: left;
  }
}

.c-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-filter__list {
    gap: 0.75rem;
    margin-top: 1rem;
  }
}

.c-filter__btn {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  color: var(--color-font-sub);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid var(--color-font-sub);
  background: var(--color-font-white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-filter__btn {
    font-size: 1rem;
    padding: 0.375rem 1rem;
  }
}
.c-filter__btn:hover {
  background: var(--color-font-sub);
  color: var(--color-font-white);
}
.c-filter__btn.is-active {
  background: var(--color-font-sub);
  color: var(--color-font-white);
}
.c-filter__btn:focus-visible {
  outline: 2px solid var(--color-font-sub);
  outline-offset: 2px;
}

.c-card__item {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-card__item.is-hidden {
  display: none;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.c-pagination {
  margin-top: 2.5rem;
  text-align: center;
}
.c-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-pagination li {
  margin: 0;
}
.c-pagination a,
.c-pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding-inline: 0.75rem;
  border: 0.0625rem solid var(--color-font-secondary);
  border-radius: 0.25rem;
  text-decoration: none;
  color: var(--color-font-base);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination a,
  .c-pagination span {
    min-width: 2rem;
    height: 2rem;
    padding-inline: 0.5rem;
    font-size: 0.875rem;
  }
}
.c-pagination a:hover,
.c-pagination span:hover {
  background-color: #f0f0f0;
  border-color: #999;
}
.c-pagination .current {
  background-color: var(--color-font-sub);
  color: var(--color-font-white);
  border-color: var(--color-font-sub);
  pointer-events: none;
}
.c-pagination .prev a,
.c-pagination .next a {
  font-weight: 600;
}
.c-pagination .dots {
  border: none;
  pointer-events: none;
}
.c-pagination .dots:hover {
  background-color: transparent;
}

/*section-title*/
/* FV */
.p-top__fv {
  position: relative;
  overflow: hidden;
}

.p-top__fv-title {
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  max-width: 81.25rem;
  width: 100%;
  height: auto;
  min-height: 0;
  rotate: -5deg;
}
.p-top__fv-title img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top__fv-title {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 25rem;
  }
}

.p-top__fv-inner {
  position: relative;
}

.p-top__swiper-container {
  position: relative;
  width: 100%;
}

.p-top__swiper {
  width: 100%;
  height: 100svh;
}
@media screen and (max-width: 767px) {
  .p-top__swiper {
    height: 800px;
  }
}
@media screen and (max-width: 425px) {
  .p-top__swiper {
    height: 500px;
  }
}

.p-top__swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-top__swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__fv-caption {
  position: absolute;
  bottom: 10%;
  left: 2%;
  color: var(--color-font-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.25rem 0.75rem;
}
@media screen and (max-width: 1023px) {
  .p-top__fv-caption {
    font-size: 20px;
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-top__fv-caption {
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

.p-top__swiper .swiper-button-prev,
.p-top__swiper .swiper-button-next {
  color: var(--color-font-white);
}
@media screen and (max-width: 767px) {
  .p-top__swiper .swiper-button-prev,
  .p-top__swiper .swiper-button-next {
    display: none;
  }
}

.p-top__swiper .swiper-pagination {
  bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top__swiper .swiper-pagination {
    bottom: 40px;
  }
}
.p-top__swiper .swiper-pagination-bullet {
  background-color: var(--color-font-white);
  opacity: 0.5;
}
.p-top__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* introduction*/
.p-introduction {
  padding-block: 8rem;
  background: var(--color-font-white);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-introduction {
    padding-block: 2rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 425px) {
  .p-introduction {
    padding-top: 4rem;
  }
}

.p-introduction__container-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  margin-bottom: 4.8125rem;
  position: relative;
  z-index: 1;
  padding-inline: 2rem;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__container-top {
    gap: 1.5rem;
    padding-inline: 1.25rem;
    padding-top: 0;
  }
}

.p-introduction__container-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8125rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-left {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-introduction__container-left img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-left img {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-left img {
    width: 53%;
  }
}

.p-introduction__container-left img:nth-of-type(2) {
  width: 65%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-left img:nth-of-type(2) {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-left img:nth-of-type(2) {
    width: 40%;
    margin-left: 60%;
    margin-top: 30%;
    position: absolute;
  }
}

.p-introduction__container-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 2.3;
  text-align: left;
  gap: 1.5rem;
  margin-top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__container-center {
    width: 100%;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
}

.p-introduction__container-center-text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.375rem;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-center-text-content {
    font-size: 1.25rem;
    margin-top: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-center-text-content {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    margin-top: 0;
    font-size: 1.125rem;
  }
}

.p-introduction__container-center-text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .p-introduction__container-center-text-span {
    display: block;
  }
  .p-introduction__container-center-text-span:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.p-introduction__container-center-title {
  font-size: 3.625rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-center-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-center-title {
    font-size: 1.625rem;
    margin-top: 0;
  }
}

.p-introduction__container-right {
  padding-top: 73px;
  width: calc(50% - 191.5px);
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-right {
    padding-top: 100px;
  }
}
.p-introduction__container-right .p-introduction__container-right-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-introduction__container-right .p-introduction__container-right-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.5rem;
  }
}
.p-introduction__container-right .p-introduction__container-right-inner img {
  display: block;
  margin-left: auto;
  width: 65%;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-right .p-introduction__container-right-inner img {
    width: 50%;
    margin-left: 15%;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-right .p-introduction__container-right-inner img {
    margin-left: 0;
  }
}
.p-introduction__container-right .p-introduction__container-right-inner img:nth-of-type(2) {
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: -21%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-right .p-introduction__container-right-inner img:nth-of-type(2) {
    width: 30%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-right .p-introduction__container-right-inner img:nth-of-type(2) {
    margin-left: 20%;
  }
}

.p-introduction__container-bottom {
  position: relative;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__container-bottom {
    padding-inline: 1.25rem;
  }
}
.p-introduction__container-bottom .p-introduction__container-map {
  position: absolute;
  bottom: -30%;
  right: 9%;
  width: 39%;
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-bottom .p-introduction__container-map {
    bottom: 100%;
    right: 2%;
    width: 45%;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-bottom .p-introduction__container-map {
    bottom: 165%;
    width: 65%;
  }
}
.p-introduction__container-bottom img {
  position: relative;
  display: block;
  width: 47%;
  height: auto;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 1023px) {
  .p-introduction__container-bottom img {
    width: 60%;
    margin-left: 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__container-bottom img {
    width: 80%;
    margin-left: auto;
    margin-top: 20%;
  }
}

/* point*/
.firefly-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.firefly {
  position: absolute;
  width: 0.4vw;
  height: 0.4vw;
  background-color: yellow;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 2vw 0.4vw yellow;
          box-shadow: 0 0 2vw 0.4vw yellow;
  opacity: 0;
  -webkit-animation: drift ease alternate infinite, flash ease infinite;
          animation: drift ease alternate infinite, flash ease infinite;
}

@-webkit-keyframes drift {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes drift {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes flash {
  0%, 30%, 100% {
    opacity: 0;
    -webkit-box-shadow: 0 0 0vw 0vw yellow;
            box-shadow: 0 0 0vw 0vw yellow;
  }
  5% {
    opacity: 1;
    -webkit-box-shadow: 0 0 2vw 0.4vw yellow;
            box-shadow: 0 0 2vw 0.4vw yellow;
  }
}
@keyframes flash {
  0%, 30%, 100% {
    opacity: 0;
    -webkit-box-shadow: 0 0 0vw 0vw yellow;
            box-shadow: 0 0 0vw 0vw yellow;
  }
  5% {
    opacity: 1;
    -webkit-box-shadow: 0 0 2vw 0.4vw yellow;
            box-shadow: 0 0 2vw 0.4vw yellow;
  }
}
/* セクション全体の設定 */
.p-point {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 10;
}

.p-point__back-img {
  overflow: hidden;
  width: 100%;
  height: auto;
  background-color: var(--color-font-white);
}
.p-point__back-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-block: -1px;
}

.p-point__wrapper {
  background: var(--color-font-sub);
}

.p-point__inner {
  background-color: var(--color-font-sub);
  width: min(75rem + 40px, 100%);
  padding-inline: 4rem;
  margin-inline: auto;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-point__inner {
    padding-inline: 1.25rem;
    padding-bottom: 4rem;
  }
}

.p-point__container--vertical {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .p-point__container--vertical {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    margin-left: 0;
  }
}

.p-point__container-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 1023px) {
  .p-point__container-wrapper {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__container-wrapper {
    gap: 0;
  }
}

.p-point__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8rem;
  min-height: min(43.75rem, 100%);
  padding-top: 8rem;
}
@media screen and (max-width: 1023px) {
  .p-point__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__container {
    padding-top: 2rem;
  }
}

.p-point__image-wrapper {
  max-width: 50rem;
  width: 100%;
  aspect-ratio: 800/450;
  position: relative;
}
.p-point__image-wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .p-point__image-wrapper {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-point__image-wrapper {
    aspect-ratio: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-point__image-wrapper img {
    height: auto;
    aspect-ratio: 800/450;
  }
}

.p-point__subtitle {
  position: absolute;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  top: -9%;
  right: 2%;
  color: var(--color-font-white);
  font-size: 2.5rem;
  letter-spacing: 0.3em;
  display: inline-block;
  background: rgba(55, 60, 56, 0.6);
  padding: 1.25rem 0.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-point__subtitle {
    position: static;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 0.3125rem 0.25rem 0.3125rem 0.625rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__subtitle {
    text-align: left;
  }
}

.p-point__subtitle-text {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-point__subtitle-text {
    display: inline;
  }
}

.p-point__text {
  color: var(--color-font-white);
  font-size: 1.375rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-point__text {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-point__content {
    margin-top: 0;
  }
}

.p-point__section--nature--l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .p-point__section--nature--l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-point__image-wrapper {
  max-width: 50rem;
  width: 100%;
  aspect-ratio: 800/450;
  position: relative;
}
.p-point__image-wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .p-point__image-wrapper {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-point__image-wrapper {
    aspect-ratio: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-point__image-wrapper img {
    height: auto;
    aspect-ratio: 800/450;
  }
}

.p-point__subtitle {
  position: absolute;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  top: -9%;
  right: 2%;
  color: var(--color-font-white);
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  display: inline-block;
  background: rgba(55, 60, 56, 0.6);
  padding: 1.25rem 0.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-point__subtitle {
    position: static;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    text-align: left;
    padding: 0.3125rem 0.25rem 0.3125rem 0.625rem;
    margin-top: 0.5rem;
  }
}

.p-point__subtitle-text {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-point__subtitle-text {
    display: inline;
  }
}

.p-point__text {
  color: var(--color-font-white);
  font-size: 1.375rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-point__text {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 1023px) {
  .p-point__section--space {
    height: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__section--space {
    height: 2rem;
  }
}

/* news*/
.news {
  background: var(--color-font-white);
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .news {
    padding-block: 4rem;
  }
}

.news__inner {
  width: min(83rem, 100%);
  padding-inline: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .news__inner {
    padding-inline: 1.25rem;
  }
}

.news__btn {
  text-align: center;
}

.p-event {
  background: var(--color-font-secondary);
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-event {
    padding-block: 4rem;
  }
}

.p-event__inner {
  width: min(83rem, 100%);
  padding-inline: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-event__inner {
    padding-inline: 1.25rem;
  }
}
@media (max-width: 375px) {
  .p-event__inner {
    padding-inline: 0.625rem;
  }
}

.p-event__calendar {
  margin-top: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-event__calendar {
    padding-inline: 0;
    min-width: 300px;
  }
}
.p-event__calendar iframe {
  width: 100%;
  height: 800px;
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-event__calendar iframe {
    height: 700px;
  }
}
@media (max-width: 425px) {
  .p-event__calendar iframe {
    height: 500px;
  }
}

.p-event__note {
  margin-top: 1.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-event__note {
    font-size: 0.8125rem;
    margin-top: 1rem;
  }
}

.p-spot {
  padding-block: 8rem;
  background: var(--color-font-white);
}
@media screen and (max-width: 767px) {
  .p-spot {
    padding-block: 4rem;
  }
}
.p-spot--kougei {
  background: var(--color-font-secondary);
}
.p-spot--shukuhaku {
  background: var(--color-font-secondary);
}

.p-spot__inner {
  width: min(83rem, 100%);
  padding-inline: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-spot__inner {
    padding-inline: 1.25rem;
  }
}

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

.p-spot__item--social {
  margin-top: 1rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-spot__item--social {
    grid-template-columns: 8.125rem 1fr;
  }
}
@media screen and (max-width: 375px) {
  .p-spot__item--social {
    grid-template-columns: 1fr;
  }
}

.p-spot__label--social {
  width: 8.125rem;
  height: 2rem;
}

.p-spot__label-text--social {
  font-size: 0.875rem;
}

.p-form {
  padding-block: 8rem;
  background: var(--color-font-sub);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-form {
    padding-block: 4rem;
  }
}

.p-form__inner {
  width: min(83rem, 100%);
  padding-inline: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-form__inner {
    padding-inline: 1.25rem;
  }
}

.p-form__container {
  margin-top: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-form__container {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-form__container {
    margin-top: 2rem;
  }
}

.p-form__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-form__items {
    grid-template-columns: 1fr;
  }
}

.p-form__item {
  max-width: 36.875rem;
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-form__item {
    max-width: 100%;
    width: 100%;
  }
}
.p-form__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Contact Form 7 フォーム全体 */
.wpcf7 {
  width: 100%;
}

.wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-inline: 0;
}
@media screen and (max-width: 1023px) {
  .wpcf7-form {
    padding-inline: 0;
  }
}

/* Contact Form 7 各フィールドグループ */
.wpcf7-form p {
  width: 100%;
  margin-inline: auto;
}

/* ラベルスタイル */
.wpcf7-form label {
  display: block;
  font-size: 1.25rem;
  color: var(--color-font-white);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .wpcf7-form label {
    font-size: 1rem;
  }
}

/* 必須マーク */
.wpcf7-form .required {
  color: rgb(251, 92, 92);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Contact Form 7 フィールドラッパー */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* 入力フィールド共通スタイル */
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form textarea {
  width: 100%;
  margin-inline: auto;
  padding: 0.75rem 0 0.75rem 1.5rem;
  border: 1px solid var(--color-font-sub);
  background-color: var(--color-font-white);
  border-radius: 0.625rem;
  margin-top: 0.625rem;
  font-size: 1rem;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  -webkit-box-shadow: inset 0 0 0 1px var(--color-font-sub);
          box-shadow: inset 0 0 0 1px var(--color-font-sub);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border: 1px solid rgb(251, 92, 92);
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  -webkit-box-shadow: inset 0 0 0 1px rgb(251, 92, 92);
          box-shadow: inset 0 0 0 1px rgb(251, 92, 92);
}

.wpcf7-form textarea {
  height: 12.5rem;
  resize: vertical;
}

/* バリデーションエラー時の入力フィールド */
.wpcf7-form .wpcf7-not-valid {
  border: 1px solid rgb(251, 92, 92);
  -webkit-box-shadow: inset 0 0 0 1px rgb(251, 92, 92);
          box-shadow: inset 0 0 0 1px rgb(251, 92, 92);
}

/* バリデーションエラーメッセージ */
.wpcf7-form .wpcf7-not-valid-tip {
  color: rgb(251, 92, 92);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

/* 送信ボタンエリア */
.wpcf7-form .p-form__btn {
  margin-top: 1.5rem;
  text-align: center;
}

.wpcf7-form .send-button-wrapper {
  display: inline-block;
}

/* Contact Form 7の送信ボタンに既存のc-buttonスタイルを適用 */
.wpcf7-form .wpcf7-submit.c-button.c-button--send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 送信中のスピナー */
.wpcf7-form .wpcf7-spinner {
  margin-left: 0.625rem;
}

/* フォーム送信後のメッセージ */
.wpcf7-form .wpcf7-response-output {
  margin: 1.25rem 0;
  padding: 0.9375rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-font-white);
}

/* 送信成功メッセージ */
.wpcf7-form .wpcf7-mail-sent-ok {
  background-color: var(--color-font-sub);
  border: 1px solid var(--color-font-secondary);
  color: var(--color-font-white);
  font-size: 1.125rem;
}

/* 送信失敗・バリデーションエラーメッセージ */
.wpcf7-form .wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-acceptance-missing {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: var(--color-font-white);
  font-size: 1.125rem;
}

/* プライバシーポリシーテキスト */
.p-form__privacy {
  color: var(--color-font-white);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 0.25rem solid var(--color-font-secondary);
}
.p-form__privacy a {
  color: var(--color-font-white);
  font-weight: bold;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-form__privacy a:hover {
  color: var(--color-font-secondary);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-form__privacy {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0.75rem;
  }
}

/* Contact Form 7のデフォルトスタイルをリセット */
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

/* reCAPTCHA調整（もし使用する場合） */
.wpcf7-form .wpcf7-recaptcha {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-news-archive__inner {
  width: min(83rem, 100%);
  padding-inline: 4rem;
  padding-bottom: 8rem;
  margin-inline: auto;
  margin-top: 20.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-news-archive__inner {
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news-archive__inner {
    margin-top: 9.375rem;
    padding-inline: 1.25rem;
  }
}

.p-news-archive__new {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__new {
    grid-template-columns: 1fr;
  }
}

.p-news-archive__new-image {
  max-width: 39.375rem;
  width: 100%;
  height: auto;
  aspect-ratio: 630/450;
}
.p-news-archive__new-image img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-news-archive__new-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__new-title-wrapper {
    margin-top: 2rem;
  }
}

.p-news-archive__new-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.p-news-archive__new-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-news-archive__new-title {
    font-size: 1.125rem;
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-archive__new-title {
    font-size: 1rem;
  }
}

.p-news-archive__new-tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(8px, 1vw, 16px);
}

.p-news-archive__new-tag {
  border-radius: 10px;
  border: 1px solid var(--color-font-sub);
  padding: 0.125rem 0.75rem;
  color: var(--color-font-sub);
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-news-archive__new-tag {
    font-size: 0.875rem;
  }
}

.p-news-archive__new-date {
  font-family: "Work Sans";
  font-size: 1rem;
}

.p-news-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: clamp(32px, 5vw, 48px);
  -webkit-column-gap: clamp(16px, 5vw, 48px);
     -moz-column-gap: clamp(16px, 5vw, 48px);
          column-gap: clamp(16px, 5vw, 48px);
  margin-block: clamp(48px, 10vw, 114px);
}
@media screen and (max-width: 1023px) {
  .p-news-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .p-news-archive__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-news-archive__list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media (max-width: 700px) {
  .p-news-archive__list-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 16px;
  }
  .p-news-archive__list-inner:first-child {
    padding-top: 0;
  }
}

.p-news-archive__list-image {
  max-width: 350px;
  width: 100%;
}
.p-news-archive__list-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-news-archive__list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 8px;
}
@media screen and (max-width: 1023px) {
  .p-news-archive__list-content {
    padding: 0 16px 0 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-archive__list-content {
    padding: 0;
  }
}

.p-news-archive__list-title {
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.48px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-archive__list-title {
    font-size: 0.875rem;
  }
}

.p-news-archive__list-tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
}

.p-news-archive__list-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 8px;
}

.p-news-archive__list-tag {
  border-radius: 10px;
  border: 1px solid var(--color-font-sub);
  padding: 2px 12px;
  color: var(--color-font-sub);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.42px;
}
@media screen and (max-width: 767px) {
  .p-news-archive__list-tag {
    font-size: 0.6875rem;
    padding: 3px 5px;
  }
}

.p-news-archive__list-date {
  font-family: "Work Sans";
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__list-date {
    font-size: 0.75rem;
  }
}

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

.p-single {
  padding-top: 12.5rem;
}
@media screen and (max-width: 1023px) {
  .p-single {
    padding-top: 9.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-top: 6.25rem;
  }
}
@media screen and (max-width: 375px) {
  .p-single {
    padding-top: 5rem;
  }
}

.p-single__container-1 {
  padding-top: 4rem;
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-font-sub)), color-stop(50%, var(--color-font-sub)), color-stop(50%, var(--color-font-white)), to(var(--color-font-white)));
  background: linear-gradient(180deg, var(--color-font-sub) 0%, var(--color-font-sub) 50%, var(--color-font-white) 50%, var(--color-font-white) 100%);
}
@media screen and (max-width: 767px) {
  .p-single__container-1 {
    padding-top: 3.125rem;
    padding-inline: 1.25rem;
  }
}

.p-single__header {
  text-align: left;
  color: var(--color-font-white);
  max-width: 56.25rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 0.0625rem var(--color-font-white);
  padding-bottom: 1rem;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-single__header {
    display: block;
    border-bottom: solid 0.5px;
  }
}

.p-single__header-title {
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__header-title {
    font-size: 1rem;
    text-align: left;
  }
}

.p-single__header-time {
  font-size: 1.25rem;
  display: block;
  font-family: "Work Sans";
  text-align: right;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-single__header-time {
    font-size: 1rem;
  }
}

.p-single_img {
  width: 100%;
  max-width: 43.75rem;
  margin: 0.9375rem auto;
}
.p-single_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  border-top: solid 0.03125rem var(--color-font-base);
  border-bottom: solid 0.03125rem var(--color-font-base);
  padding: 1rem 2rem;
  margin: 1rem auto 0;
  max-width: 56.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__tags {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-block: 0.625rem;
    padding-inline: 0;
  }
}

.p-single__container-2 {
  background-color: var(--color-font-white);
  padding-bottom: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-single__container-2 {
    padding-bottom: 4rem;
    padding-inline: 1.25rem;
  }
}

.p-single__txt {
  max-width: 56.25rem;
  width: 100%;
  margin: 0 auto 5rem;
  font-size: 1.25rem;
  padding-top: 1.5625rem;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-single__txt {
    letter-spacing: 0.03em;
    padding-top: 1rem;
    font-size: 1rem;
  }
}
.p-single__txt a {
  text-decoration: underline;
  color: inherit;
}
.p-single__txt a:hover {
  opacity: 0.7;
}

.p-privacy {
  padding-block: 20.625rem 8rem;
  background-color: var(--color-bg-white, #ffffff);
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding-block: 2.5rem;
  }
}

.p-privacy__inner {
  width: min(58rem, 100%);
  padding-inline: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-privacy__inner {
    padding-inline: 1.25rem;
  }
}

.p-privacy article h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-font-primary, #333);
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--color-font-sub, #333);
}
@media screen and (max-width: 767px) {
  .p-privacy article h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom-width: 2px;
  }
}
.p-privacy article > div {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-font-primary, #333);
}
@media screen and (max-width: 767px) {
  .p-privacy article > div {
    font-size: 0.875rem;
  }
}
.p-privacy article h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-font-primary, #333);
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--color-font-sub, #333);
}
.p-privacy article h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-privacy article h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left-width: 3px;
  }
}
.p-privacy article h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-font-primary, #333);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border, #e0e0e0);
}
@media screen and (max-width: 767px) {
  .p-privacy article h3 {
    font-size: 1.125rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }
}
.p-privacy article p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-privacy article p {
    margin-bottom: 1rem;
    line-height: 1.7;
  }
}
.p-privacy article p:last-child {
  margin-bottom: 0;
}
.p-privacy article ul,
.p-privacy article ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-privacy article ul,
  .p-privacy article ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }
}
.p-privacy article ul li,
.p-privacy article ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-privacy article ul li,
  .p-privacy article ol li {
    margin-bottom: 0.5rem;
  }
}
.p-privacy article ul li:last-child,
.p-privacy article ol li:last-child {
  margin-bottom: 0;
}
.p-privacy article ul {
  list-style-type: disc;
}
.p-privacy article ul li::marker {
  color: var(--color-font-sub, #333);
}
.p-privacy article ol {
  list-style-type: decimal;
}
.p-privacy article ol li::marker {
  color: var(--color-font-sub, #333);
  font-weight: 600;
}
.p-privacy article a {
  color: var(--color-link, #007bff);
  text-decoration: underline;
  font-weight: 600;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.p-privacy article a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.p-privacy article a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23007bff' viewBox='0 0 16 16'%3E%3Cpath d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.p-privacy article strong,
.p-privacy article b {
  font-weight: 700;
  color: var(--color-font-primary, #333);
}
.p-privacy article em,
.p-privacy article i {
  font-style: italic;
}
.p-privacy article blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background-color: var(--color-bg-light, #f8f9fa);
  border-left: 4px solid var(--color-font-sub, #333);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-privacy article blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
  }
}
.p-privacy article blockquote p {
  margin-bottom: 0.75rem;
}
.p-privacy article blockquote p:last-child {
  margin-bottom: 0;
}
.p-privacy article code {
  padding: 0.125rem 0.375rem;
  background-color: var(--color-bg-light, #f8f9fa);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 0.25rem;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: var(--color-font-code, #e83e8c);
}
@media screen and (max-width: 767px) {
  .p-privacy article br {
    display: none;
  }
}
.p-privacy article hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid var(--color-border, #e0e0e0);
}
@media screen and (max-width: 767px) {
  .p-privacy article hr {
    margin: 2rem 0;
  }
}
.p-404 {
  padding-bottom: 5rem;
  padding-inline: 1.25rem;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  margin-top: 20.625rem;
}
@media screen and (max-width: 1023px) {
  .p-404 {
    padding-inline: 2.5rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-404 {
    margin-top: 9.375rem;
  }
}

.p-404__inner {
  max-width: 50rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

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

.p-404__heading {
  margin-bottom: 2.5rem;
}

.p-404__title {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--color-font-sub);
  line-height: 1;
  margin-bottom: 1rem;
}

.p-404__subtitle {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 500;
  color: var(--color-font-base);
  line-height: 1.5;
}

.p-404__message {
  margin-bottom: 3rem;
}

.p-404__text {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--color-font-base);
  line-height: 1.8;
}

.p-404__search {
  margin-bottom: 3.75rem;
}

.p-404__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 31.25rem;
  margin-inline: auto;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 3.125rem;
  overflow: hidden;
  background: var(--color-font-white);
}

.p-404__search-label .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.p-404__search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
}

.p-404__search-input::-webkit-input-placeholder {
  color: var(--color-font-base);
}

.p-404__search-input::-moz-placeholder {
  color: var(--color-font-base);
}

.p-404__search-input:-ms-input-placeholder {
  color: var(--color-font-base);
}

.p-404__search-input::-ms-input-placeholder {
  color: var(--color-font-base);
}

.p-404__search-input::placeholder {
  color: var(--color-font-base);
}

.p-404__search-button {
  padding: 16px 32px;
  background: var(--color-font-sub);
  border: none;
  color: var(--color-font-white);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.p-404__navigation {
  margin-bottom: 3.75rem;
}

.p-404__nav-title {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-font-base);
}

.p-404__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  max-width: 25rem;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-404__nav-list {
    gap: 1rem;
  }
}

.p-404__nav-item {
  list-style: none;
}

.p-404__nav-link {
  display: block;
  padding: 0.75rem 1.25rem;
  background: var(--color-font-white);
  border: 2px solid var(--color-font-secondary);
  border-radius: 0.5rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-404__nav-link:hover {
  background: var(--color-font-sub);
  border-color: var(--color-font-sub);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-404__nav-link:hover .p-404__nav-link-text {
  color: var(--color-font-white);
}

.p-404__nav-link-text {
  display: block;
  color: var(--color-font-base);
  font-size: 0.9375rem;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-404__button {
  margin-top: 40px;
}

.p-404__decoration {
  position: absolute;
  bottom: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 37.5rem;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-404__decoration {
    bottom: -150px;
    max-width: 50rem;
  }
}

.p-404__decoration-img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */