@charset "UTF-8";
/*
 * 基本設計について
 * このプロジェクトは、基本的にPCファーストで設計されています。
 * 詳細は、_global/_breakpoints.scssを参照してください。
 */
/*
 * リセットCSSについて
 * ブラウザのデフォルトスタイルをリセットします。
 */
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*
 * フォントについて
 * フォントの定義を行います。
 */
/*
 * 変数について
 * プロジェクト全体で使用される変数を定義します。
 */
:root {
  --font-size__base: 10;
  --font-family__base: "Noto Sans JP", sans-serif;
  --font-family__noto-color-emoji: "Noto Color Emoji", sans-serif;
  --max-width__base: 1920;
  --width__contents: 1280;
  --space-inline__base: 25;
  --space__section--base: 60;
  --width__breakpoint: calc(
    var(--width__contents) + (var(--space-inline__base) * 2)
  );
  --js-height__header: 80px;
  --color__text: #000;
  --color__white: #fff;
  --color__gray: #ebebeb;
  --color__gray-light: #efefef;
  --color__beige-light: #f8f6eb;
  --color__border-gray: #eee;
  --color__yellow: #ffe103;
  --color__yellow-light: #fff49e;
  --color__blue: #00abff;
  --color__blue-light: #a6e6ff;
  --color__beige: #ece8dc;
  --color__error: #e53e3e;
  --color__error-light: #fed7d7;
  --color__warning: #dd6b20;
  --color__warning-light: #feebc8;
  --color__success: #38a169;
  --color__success-light: #c6f6d5;
  --color__gray-900: #1a222c;
  --color__gray-600: #090a0c;
  --color__gray-300: #b9bcbf;
  --color__gray-200: #e3e3e3;
  --color__gray-100: #f5f5f5;
  --color__line: #06c755;
  --color__x: #000;
  --color__instagram: #ff0069;
  --color__facebook: #0866ff;
  --color__youtube: #f03;
  --opacity__hover: 0.7;
  --duration__base: 0.3s;
  --radius__base: 26;
}

/*
 * ベースについて
 * 全体の基本的なスタイルを定義します。
 * フォント、色、共通の要素などの基本設定が含まれています。
 */
html {
  --_font-size: var(--font-size__base);
  --_width: var(--width__breakpoint);
  font-size: calc(var(--_font-size) * 1px);
  overscroll-behavior: none;
}

body {
  font-family: var(--font-family__base);
  color: var(--color__text);
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0;
}

img,
svg {
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
}

:focus-visible {
  outline: 2px solid var(--color__main);
  outline-offset: 2px;
}

/*
 * スクリプトについて
 * JavaScriptと連携するスタイルを定義します。
 * JSで追加されるクラスやアニメーション関連のスタイルが含まれています。
 * クラス名は、js-accordionのように命名します。
 */
.js-lottie {
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
}

.js-accordion__panel {
  display: grid;
  grid-template-rows: 0fr; /* 初期状態で高さを0に */
  transition: grid-template-rows var(--duration__base); /* スムーズなアニメーション */
}

.js-accordion__panel > div {
  overflow: hidden; /* 子要素がはみ出ないように */
}

.js-accordion__panel:not([hidden]) {
  grid-template-rows: 1fr; /* 開いた状態では高さを自動調整 */
}

/*
 * レイアウトについて
 * ページの構造を形成するレイアウト要素を定義します。
 * インナー、その他汎用的なレイアウトなどが含まれています。
 * クラス名は、l-innerのように命名します。
 */
.l-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100dvh;
}

.l-page__content {
  position: relative;
  margin-top: var(--js-height__header);
}

.l-page__content--gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.l-page__content--blue-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__blue-light);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.l-inner {
  --_max-width: var(--width__contents, 800);
  --_padding-inline: var(--space-inline__base, 25);
  --_padding-right: var(--_padding-inline);
  --_padding-left: var(--_padding-inline);
  --_padding-inline__total: calc(var(--_padding-right) + var(--_padding-left));
  max-width: calc(var(--_max-width) * 1px + var(--_padding-inline__total) * 1rem / var(--font-size__base));
  margin-inline: auto;
  padding-right: calc(var(--_padding-right) * 1rem / var(--font-size__base));
  padding-left: calc(var(--_padding-left) * 1rem / var(--font-size__base));
}

.l-inner--fluid {
  max-width: calc(var(--_max-width) * 1rem / var(--font-size__base) + var(--_padding-inline__total) * 1rem / var(--font-size__base));
}

.l-grid {
  --_max-width: 1200;
  --_min-width__column: 300;
  --_column-gap: 40;
  --_row-gap: 30;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(var(--_min-width__column) * 1px), 1fr));
  -moz-column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
       column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  row-gap: min(var(--_row-gap) / var(--_max-width) * 100vw, var(--_row-gap) * 1px);
}

.l-container--sidebar {
  display: grid;
  grid-template-columns: 1fr calc(300 * 1rem / var(--font-size__base));
  -moz-column-gap: calc(32 * 1rem / var(--font-size__base));
       column-gap: calc(32 * 1rem / var(--font-size__base));
}

.l-2-columns {
  --_width__left: 700;
  --_width__right: 450;
  --_column-gap: 50;
  --_width__total: calc(
    var(--_width__left) + var(--_column-gap) + var(--_width__right)
  );
  display: grid;
  grid-template-columns: calc(var(--_width__left) / var(--_width__total) * 100%) calc(var(--_width__right) / var(--_width__total) * 100%);
  -moz-column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
       column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
}

.l-2-columns--release-left {
  margin-left: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
}

.l-2-columns--release-right {
  margin-right: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
}

.l-2-columns--reverse {
  grid-template-columns: calc(var(--_width__right) / var(--_width__total) * 100%) calc(var(--_width__left) / var(--_width__total) * 100%);
}

.l-2-columns--reverse > *:last-child {
  order: -1;
}

.l-2-columns--release-left.l-2-columns--reverse {
  margin-right: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
  margin-left: auto;
}

.l-2-columns--release-right.l-2-columns--reverse {
  margin-right: auto;
  margin-left: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
}

.l-2-columns-pc {
  --_width__left: 700;
  --_width__right: 450;
  --_column-gap: 50;
  --_width__total: calc(
    var(--_width__left) + var(--_column-gap) + var(--_width__right)
  );
}

/*
 * モジュールについて
 * 再利用可能なUIモジュールを定義します。
 * ボタン、フォーム、モーダルなどのモジュールが含まれています。
 * クラス名は、m-buttonのように命名します。
 */
.m-what {
  padding-top: calc(60 * 1rem / var(--font-size__base));
  padding-bottom: calc(30 * 1rem / var(--font-size__base));
  background-color: var(--color__yellow-light);
}

.m-what__right-heading {
  text-align: center;
}

.m-what__right-title {
  font-size: calc(25 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.2;
}

.m-what__right-text {
  font-feature-settings: "palt" 1;
  line-height: 1.75;
  letter-spacing: 0.04em;
  padding-top: calc(16 * 1rem / var(--font-size__base));
}

.m-what__right-contents {
  padding-top: calc(23 * 1rem / var(--font-size__base));
}

.m-what__right-item-close {
  display: grid;
  justify-content: center;
  padding-top: calc(8 * 1rem / var(--font-size__base));
}

.m-what__right-item-close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * 1rem / var(--font-size__base));
  font-size: calc(18 * 1rem / var(--font-size__base));
  line-height: 1;
  font-weight: 700;
  padding-left: calc(38 * 1rem / var(--font-size__base));
}

.m-what__right-item-close-button-icon {
  width: calc(27 * 1rem / var(--font-size__base));
  height: calc(26 * 1rem / var(--font-size__base));
  aspect-ratio: 27/26;
  -o-object-fit: contain;
     object-fit: contain;
}

.m-what__right-item-open {
  display: grid;
  justify-content: center;
  padding-top: calc(8 * 1rem / var(--font-size__base));
}

.m-what__right-item-open-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * 1rem / var(--font-size__base));
  font-size: calc(18 * 1rem / var(--font-size__base));
  line-height: 1;
  font-weight: 700;
}

.m-what__right-item-open-button-icon {
  width: calc(27 * 1rem / var(--font-size__base));
  height: calc(26 * 1rem / var(--font-size__base));
  aspect-ratio: 27/26;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(180deg);
}

.js-accordion[aria-expanded=false] .m-what__right-item-close {
  display: none;
}

.js-accordion[aria-expanded=true] .m-what__right-item-open {
  display: none;
}

.m-what-item {
  padding-top: calc(29 * 1rem / var(--font-size__base));
}

.js-accordion__panel .m-what-item {
  padding-top: calc(50 * 1rem / var(--font-size__base));
}

.m-what-item__wrapper {
  position: relative;
  background-color: #fff;
  border-radius: calc(30 * 1rem / var(--font-size__base));
  border: 1px solid #000;
  padding-top: calc(75 * 1rem / var(--font-size__base));
  padding-bottom: calc(46 * 1rem / var(--font-size__base));
}

.m-what-item__wrapper::before {
  position: absolute;
  top: calc(-18 * 1rem / var(--font-size__base));
  right: calc(34 * 1rem / var(--font-size__base));
  content: "";
  width: calc(87 * 1rem / var(--font-size__base));
  height: calc(105 * 1rem / var(--font-size__base));
  aspect-ratio: 87/105;
  background-image: url("../img/tsudoeo/what-item-tsudoi.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.m-what-item__speech {
  position: absolute;
  top: calc(-29 * 1rem / var(--font-size__base));
  left: calc(8 * 1rem / var(--font-size__base));
  display: grid;
  grid-template-columns: calc(28 * 1rem / var(--font-size__base)) auto;
  justify-content: center;
  align-items: center;
  -moz-column-gap: calc(6 * 1rem / var(--font-size__base));
       column-gap: calc(6 * 1rem / var(--font-size__base));
  max-width: calc(275 * 1rem / var(--font-size__base));
  max-height: calc(93 * 1rem / var(--font-size__base));
  height: 100%;
  aspect-ratio: 275/93;
  font-feature-settings: "palt" 1;
  padding-left: calc(20 * 1rem / var(--font-size__base));
  padding-right: calc(20 * 1rem / var(--font-size__base));
  padding-bottom: calc(36 * 1rem / var(--font-size__base));
}

.m-what-item__speech::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../img/tsudoeo/speech-tsudoi.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

.m-what-item__speech-icon {
  position: relative;
  z-index: 1;
}

.m-what-item__speech-text {
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.m-what-item__body {
  padding-inline: calc(26 * 1rem / var(--font-size__base));
}

.m-what-item__date {
  color: #999;
  font-size: calc(15 * 1rem / var(--font-size__base));
  line-height: 1;
  font-feature-settings: "palt" 1;
}

.m-what-item__title {
  font-feature-settings: "palt" 1;
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.4;
}

* + .m-what-item__title {
  padding-top: calc(22 * 1rem / var(--font-size__base));
}

.m-what-item__title-highlight {
  font-size: calc(26 * 1rem / var(--font-size__base));
}

.m-what-item__subtitle {
  font-feature-settings: "palt" 1;
  line-height: 1.625;
  padding-top: calc(12 * 1rem / var(--font-size__base));
  margin: 0;
}

.m-what-item__divider {
  display: block;
  max-height: calc(2 * 1rem / var(--font-size__base));
  margin-top: calc(24 * 1rem / var(--font-size__base));
}

.m-what-item__contents {
  display: grid;
  grid-template-columns: calc(140 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
       column-gap: calc(20 * 1rem / var(--font-size__base));
  padding-top: calc(24 * 1rem / var(--font-size__base));
}

.m-what-item__image img {
  border: 1px solid #000;
}

.m-what-item__result-header {
  display: grid;
  grid-template-columns: calc(32 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(6 * 1rem / var(--font-size__base));
       column-gap: calc(6 * 1rem / var(--font-size__base));
  align-items: center;
  border-bottom: 2px solid #000;
  padding-bottom: calc(8 * 1rem / var(--font-size__base));
}

.m-what-item__bulb-icon {
  font-size: calc(24 * 1rem / var(--font-size__base));
  line-height: 1;
}

.m-what-item__result-title {
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.2;
}

.m-what-item__result-text {
  font-feature-settings: "palt" 1;
  line-height: 1.625;
  padding-top: calc(16 * 1rem / var(--font-size__base));
}

.m-what-item__event-info-list {
  font-feature-settings: "palt" 1;
  padding-top: calc(20 * 1rem / var(--font-size__base));
}

.m-what-item__event-info {
  padding-block: calc(8 * 1rem / var(--font-size__base));
  border-top: 1px solid #dadada;
  padding-inline: calc(8 * 1rem / var(--font-size__base));
}

.m-what-item__event-info:last-child {
  border-bottom: 1px solid #dadada;
}

.m-what-item__button-wrapper {
  display: flex;
  justify-content: center;
  padding-top: calc(16 * 1rem / var(--font-size__base));
}

.m-what-item__button {
  display: inline-flex;
  align-items: center;
  gap: calc(12 * 1rem / var(--font-size__base));
  background-color: #2d2d2d;
  color: #fff;
  padding-block: calc(16 * 1rem / var(--font-size__base));
  padding-inline: calc(40 * 1rem / var(--font-size__base));
  border-radius: calc(50 * 1rem / var(--font-size__base));
  text-decoration: none;
  transition: opacity var(--duration__base);
}

.m-what-item__button-text {
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
}

.m-what-item__button-arrow {
  font-size: calc(20 * 1rem / var(--font-size__base));
  line-height: 1;
  font-weight: 700;
}

.m-what-header + .m-what-item--tsudoi:nth-of-type(n + 2) {
  padding-top: calc(30 * 1rem / var(--font-size__base));
}

.m-what-header + .m-what-item--manabi:nth-of-type(n + 2) {
  padding-top: calc(30 * 1rem / var(--font-size__base));
}

.m-what-item--manabi .m-what-item__wrapper::before {
  top: calc(-22 * 1rem / var(--font-size__base));
  right: calc(28 * 1rem / var(--font-size__base));
  width: calc(92 * 1rem / var(--font-size__base));
  height: calc(102 * 1rem / var(--font-size__base));
  aspect-ratio: 92/102;
  background-image: url("../img/tsudoeo/what-item-manabi.webp");
}

.m-what-item--manabi .m-what-item__speech::before {
  background-image: url("../img/tsudoeo/speech-manabi.webp");
}

.m-what-header + .m-what-item--kenkyu:nth-of-type(n + 2) {
  padding-top: calc(20 * 1rem / var(--font-size__base));
}

.m-what-item--kenkyu {
  padding-top: calc(60 * 1rem / var(--font-size__base));
}

.m-what-item--kenkyu .m-what-item__wrapper::before {
  top: calc(-15 * 1rem / var(--font-size__base));
  right: calc(31 * 1rem / var(--font-size__base));
  width: calc(107 * 1rem / var(--font-size__base));
  height: calc(97 * 1rem / var(--font-size__base));
  aspect-ratio: 107/97;
  background-image: url("../img/tsudoeo/what-item-kenkyu.webp");
}

.m-what-item--kenkyu .m-what-item__speech::before {
  background-image: url("../img/tsudoeo/speech-kenkyu.webp");
}

.m-what-item--tanoshi .m-what-item__wrapper::before {
  top: calc(-18 * 1rem / var(--font-size__base));
  right: calc(20 * 1rem / var(--font-size__base));
  width: calc(101 * 1rem / var(--font-size__base));
  height: calc(108 * 1rem / var(--font-size__base));
  aspect-ratio: 101/108;
  background-image: url("../img/tsudoeo/what-item-tanoshi.webp");
}

.m-what-item--tanoshi .m-what-item__speech::before {
  background-image: url("../img/tsudoeo/speech-tanoshi.webp");
}

.m-what-header + .m-what-item--tanoshi:nth-of-type(n + 2) {
  padding-top: calc(41 * 1rem / var(--font-size__base));
}

.m-what-item--event .m-what-item__title {
  font-feature-settings: unset;
}

.m-what-item--event .m-what-item__subtitle {
  font-feature-settings: unset;
}

.m-what-item--event .m-what-item__wrapper::before {
  top: calc(-18 * 1rem / var(--font-size__base));
  right: calc(56 * 1rem / var(--font-size__base));
  width: calc(73 * 1rem / var(--font-size__base));
  height: calc(83 * 1rem / var(--font-size__base));
  aspect-ratio: 73/83;
  background-image: url("../img/tsudoeo/what-item-event-01.webp");
}

.m-what-item--event .m-what-item__speech {
  left: calc(15 * 1rem / var(--font-size__base));
  max-width: calc(202 * 1rem / var(--font-size__base));
  max-height: calc(88 * 1rem / var(--font-size__base));
  aspect-ratio: 202/88;
  padding-inline: calc(20 * 1rem / var(--font-size__base));
  padding-bottom: calc(29 * 1rem / var(--font-size__base));
}

.m-what-item--event .m-what-item__speech::before {
  background-image: url("../img/tsudoeo/speech-event.webp");
}

.m-what-item--event .m-what-item__speech-text {
  padding-bottom: calc(3 * 1rem / var(--font-size__base));
}

.m-what-item--event:nth-child(even) .m-what-item__wrapper::before {
  top: calc(-23 * 1rem / var(--font-size__base));
  right: calc(35 * 1rem / var(--font-size__base));
  width: calc(97 * 1rem / var(--font-size__base));
  height: calc(85 * 1rem / var(--font-size__base));
  aspect-ratio: 97/85;
  background-image: url("../img/tsudoeo/what-item-event-02.webp");
}

.m-what-header {
  display: grid;
  grid-template-columns: calc(254 * 1rem / var(--font-size__base)) 1fr;
  align-items: start;
}

.m-what-header__left {
  display: grid;
  grid-template-columns: calc(67 * 1rem / var(--font-size__base)) 1fr;
  align-items: center;
  -moz-column-gap: calc(8 * 1rem / var(--font-size__base));
       column-gap: calc(8 * 1rem / var(--font-size__base));
  row-gap: calc(2 * 1rem / var(--font-size__base));
}

.m-what-header__title {
  font-size: calc(25 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.2;
}

.m-what-header__question {
  display: grid;
  grid-template-columns: calc(24 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(6 * 1rem / var(--font-size__base));
       column-gap: calc(6 * 1rem / var(--font-size__base));
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: calc(4 * 1rem / var(--font-size__base));
}

.m-what-header__question-icon {
  display: grid;
  place-items: center;
  width: calc(24 * 1rem / var(--font-size__base));
  height: calc(24 * 1rem / var(--font-size__base));
  aspect-ratio: 1;
  color: #fff;
  border-radius: 50%;
  background-color: #000;
  font-size: calc(14 * 1rem / var(--font-size__base));
  line-height: 1;
}

.m-what-header__question-text {
  font-feature-settings: "palt" 1;
  position: relative;
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
  padding-top: calc(2 * 1rem / var(--font-size__base));
}

.m-what-header__question-text:has(.eo) {
  padding-top: 0;
}

.m-what-header__question-text::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: calc(1 * 1rem / var(--font-size__base));
  background-color: #000;
}

@supports (-webkit-touch-callout: none) {
  .m-what-header__question-text::after {
    bottom: calc(-4 * 1rem / var(--font-size__base));
  }
}
.m-what-header--tsudoi .m-what-header__left {
  padding-top: calc(135 * 1rem / var(--font-size__base));
}
.m-what-header--tsudoi .m-what-header__right {
  margin-right: calc(-9 * 1rem / var(--font-size__base));
  margin-left: calc(-25 * 1rem / var(--font-size__base));
}

.m-what-header--manabi {
  padding-top: calc(91 * 1rem / var(--font-size__base));
}
.m-what-header--manabi .m-what-header__left {
  padding-top: calc(44 * 1rem / var(--font-size__base));
}

.m-what-header--kenkyu {
  padding-top: calc(2 * 1rem / var(--font-size__base));
}
.m-what-header--kenkyu .m-what-header__left {
  padding-top: calc(34 * 1rem / var(--font-size__base));
}
.m-what-header--tanoshi .m-what-header__left {
  padding-top: calc(40 * 1rem / var(--font-size__base));
}
.m-what-header--tanoshi .m-what-header__right {
  margin-left: calc(-18 * 1rem / var(--font-size__base));
}

/**
 * ソウゾウの木モーダル
 * つどイオセクション用のモーダルコンポーネント
 * @see source/js/modules/overlay.js
 */
/* モーダル全体のラッパー */
.m-tsudoeo-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  visibility: hidden;
}

/* 表示状態 */
.m-tsudoeo-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* 背景オーバーレイ */
.m-tsudoeo-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* モーダルコンテナ */
.m-tsudoeo-modal__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-block: calc(100 * 1rem / var(--font-size__base));
}

/* モーダルコンテンツ */
.m-tsudoeo-modal__content {
  max-width: calc(420 * 1rem / var(--font-size__base));
  border-radius: calc(30 * 1rem / var(--font-size__base));
  background-color: var(--color__gray-100);
  margin-inline: auto;
  padding-top: calc(30 * 1rem / var(--font-size__base));
  padding-bottom: calc(38 * 1rem / var(--font-size__base));
  padding-inline: calc(28 * 1rem / var(--font-size__base));
}

/* ヘッダー */
/* バッジ（集マーク） */
.m-tsudoeo-modal__badge {
  width: calc(80 * 1rem / var(--font-size__base));
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ボディ */
/* イメージ */
.m-tsudoeo-modal__image {
  margin-top: calc(-38 * 1rem / var(--font-size__base));
}

.m-tsudoeo-modal__image img {
  display: block;
  width: 100%;
  max-width: calc(234 * 1rem / var(--font-size__base));
  margin-inline: auto;
}

/* タイトル */
.m-tsudoeo-modal__title {
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  padding-top: calc(10 * 1rem / var(--font-size__base));
}

/* 説明文 */
.m-tsudoeo-modal__description {
  font-feature-settings: "palt" 1;
  line-height: 1.7;
  padding-top: calc(6 * 1rem / var(--font-size__base));
  padding-inline: calc(20 * 1rem / var(--font-size__base));
}

/* ボタンラッパー */
.m-tsudoeo-modal__button-wrapper {
  display: grid;
  place-items: center;
  padding-top: calc(16 * 1rem / var(--font-size__base));
}

/* フッター */
.m-tsudoeo-modal__footer {
  text-align: center;
  padding-top: calc(10 * 1rem / var(--font-size__base));
}

/* 閉じるボタン */
.m-tsudoeo-modal__close {
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.m-title {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.3;
}

.m-news-ticker {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.m-news-ticker__inner {
  --_padding-inline: 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.m-news-ticker__label {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  max-width: calc(102 * 1rem / var(--font-size__base));
  width: 100%;
  height: calc(40 * 1rem / var(--font-size__base));
  background-color: var(--color__yellow);
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__text);
}

.m-news-ticker__wrapper {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.m-news-ticker__text {
  flex-shrink: 0;
  font-size: calc(15 * 1rem / var(--font-size__base));
  color: var(--color__text);
  white-space: nowrap;
  padding-inline: calc(40 * 1rem / var(--font-size__base));
  will-change: transform;
}

.m-news-ticker__text.is-animated-first {
  animation: ticker-slide-first var(--ticker-duration-first) linear;
}

.m-news-ticker__text.is-animated {
  animation: ticker-slide var(--ticker-duration-loop) linear infinite;
}

@keyframes ticker-slide-first {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--ticker-end));
  }
}
@keyframes ticker-slide {
  0% {
    transform: translateX(var(--ticker-start));
  }
  100% {
    transform: translateX(var(--ticker-end));
  }
}
.m-mv {
  max-width: calc(var(--max-width__base) * 1rem / var(--font-size__base));
  margin-inline: auto;
  padding-top: min(38 / 1920 * 100vw, 38px);
}

.m-mv__contents {
  position: relative;
}

.m-mv__title {
  position: absolute;
  top: 0;
  left: min(490 / 1920 * 100vw, 490px);
  max-width: min(279 / 1920 * 100vw, 279px);
}

.m-mv__image-wrapper {
  position: relative;
}

.m-mv__image {
  position: relative;
  top: min(15 / 1920 * 100vw, 15px);
}

.m-mv__cloud-balloon {
  position: absolute;
  top: 0;
  left: min(9 / 1920 * 100vw, 9px);
  transform: translateY(min(16 / 1920 * 100vw, 16px));
  width: calc(100% - min(32 / 1920 * 100vw, 32px));
  height: 100%;
}

.m-mv__pins {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-mv__pin {
  position: absolute;
  max-width: min(77 / 1920 * 100vw, 77px);
  max-height: min(91 / 1920 * 100vw, 91px);
  aspect-ratio: 77/91;
  transform: translateY(-50%) translateX(-50%);
  cursor: pointer;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

.m-mv__pin-image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.m-mv__pin-image--default {
  z-index: 1;
}

.m-mv__pin-link {
  position: absolute;
  top: max(-187 / 1920 * 100vw, -187px);
  left: max(-79 / 1920 * 100vw, -79px);
  z-index: 2;
  max-width: min(236 / 1920 * 100vw, 236px);
  max-height: min(278 / 1920 * 100vw, 278px);
  width: min(236 / 1920 * 100vw, 236px);
  height: min(278 / 1920 * 100vw, 278px);
  opacity: 0;
  transform: translateY(20%);
  transition: opacity var(--duration__base), transform var(--duration__base);
  pointer-events: none;
}

.m-mv__pin-image--hover {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.m-mv__pin.is-active .m-mv__pin-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.m-mv__pin--manabi {
  top: min(367 / 1920 * 100vw, 367px);
  left: min(604 / 1920 * 100vw, 604px);
}

.m-mv__pin--tsudoi {
  z-index: 1;
  top: min(363 / 1920 * 100vw, 363px);
  left: min(920 / 1920 * 100vw, 920px);
}

.m-mv__pin--tanoshi {
  top: min(560 / 1920 * 100vw, 560px);
  left: min(1149 / 1920 * 100vw, 1149px);
}

.m-mv__pin--kenkyu {
  top: min(330 / 1920 * 100vw, 330px);
  left: min(1322 / 1920 * 100vw, 1322px);
}

.m-modal {
  --_duration: 0.3s;
  position: fixed;
  z-index: 1000;
  inset: 0;
  transition: visibility var(--_duration);
  visibility: hidden;
}

.m-modal__backdrop {
  position: fixed;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity var(--_duration), visibility var(--_duration);
  opacity: 0;
  visibility: hidden;
}

.m-modal__inner {
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: opacity var(--_duration), visibility var(--_duration);
  opacity: 0;
  visibility: hidden;
}

.m-modal__content {
  overflow-y: auto;
  max-height: 80vh;
  background-color: #fff;
  padding-block: calc(50 * 1rem / var(--font-size__base));
  padding-inline: calc(30 * 1rem / var(--font-size__base));
}

/* 開いた時 */
.m-modal.is-visible .m-modal__backdrop {
  opacity: 1;
  visibility: visible;
}

.m-modal.is-visible .m-modal__inner {
  opacity: 1;
  visibility: visible;
}

.m-modal.m-modal--fade-up .m-modal__inner {
  transition: transform var(--_duration), opacity var(--_duration), visibility var(--_duration);
  transform: translate(-50%, calc(-50% + 30px));
}

.m-modal.m-modal--fade-up.is-visible .m-modal__inner {
  transform: translate(-50%, -50%);
}

.m-modal.m-modal--fade-down .m-modal__inner {
  transition: transform var(--_duration), opacity var(--_duration), visibility var(--_duration);
  transform: translate(-50%, calc(-50% - 30px));
}

.m-modal.m-modal--fade-down.is-visible .m-modal__inner {
  transform: translate(-50%, -50%);
}

.m-modal.m-modal--fade-left .m-modal__inner {
  transition: transform var(--_duration), opacity var(--_duration), visibility var(--_duration);
  transform: translate(calc(-50% + 30px), -50%);
}

.m-modal.m-modal--fade-left.is-visible .m-modal__inner {
  transform: translate(-50%, -50%);
}

.m-modal.m-modal--fade-right .m-modal__inner {
  transition: transform var(--_duration), opacity var(--_duration), visibility var(--_duration);
  transform: translate(calc(-50% - 30px), -50%);
}

.m-modal.m-modal--fade-right.is-visible .m-modal__inner {
  transform: translate(-50%, -50%);
}

/**
 * 無限ループスライダー
 * 画像が右から左に無限ループで流れるスライダー
 */
.m-loop-image-slider {
  --_speed: 40s;
  --_delay: 0s;
  --_width__viewport: 1920;
  --_width__slide: 473;
  --_space__gap: 41;
  --_width__container: calc(var(--_width__slide) + var(--_space__gap));
  display: flex;
  overflow: hidden;
}

.m-loop-image-slider__items {
  flex-shrink: 0;
  animation: loop-slider-left var(--_speed) infinite linear var(--_delay) both;
  display: flex;
}

.m-loop-image-slider__item {
  flex-shrink: 0;
  max-width: calc(var(--_width__container) * 1rem / var(--font-size__base));
  width: calc(var(--_width__container) / var(--_width__viewport) * 100vw);
  padding-inline: calc(var(--_space__gap) / 2 / var(--_width__viewport) * 100vw);
  display: grid;
  grid-template-columns: calc(118 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(41 * 1rem / var(--font-size__base));
       column-gap: calc(41 * 1rem / var(--font-size__base));
  align-items: center;
}

.m-loop-image-slider__item .js-lottie svg {
  max-width: calc(118 * 1rem / var(--font-size__base));
}

.m-loop-image-slider__item img {
  display: block;
  width: 100%;
}

@keyframes loop-slider-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.m-left-heading {
  border: 1px solid #000;
  border-radius: calc(30 * 1rem / var(--font-size__base));
  background-color: var(--color__white);
  padding-top: calc(42 * 1rem / var(--font-size__base));
  padding-bottom: calc(45 * 1rem / var(--font-size__base));
  padding-inline: calc(16 * 1rem / var(--font-size__base));
}

.m-left-heading__top {
  display: grid;
  grid-template-columns: calc(90 * 1rem / var(--font-size__base)) auto calc(92 * 1rem / var(--font-size__base));
  justify-content: center;
  align-items: end;
  -moz-column-gap: calc(11 * 1rem / var(--font-size__base));
       column-gap: calc(11 * 1rem / var(--font-size__base));
}

.m-left-heading__title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(25 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.2;
}

.m-left-heading__text {
  font-feature-settings: "palt" 1;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: center;
  padding-top: calc(36 * 1rem / var(--font-size__base));
}

.m-left-heading__image {
  max-width: calc(233 * 1rem / var(--font-size__base));
  margin-inline: auto;
  padding-top: calc(16 * 1rem / var(--font-size__base));
}

.m-icon {
  display: grid;
  place-items: center;
}

.m-icon-link {
  display: grid;
  place-items: center;
  transition: color var(--duration__base);
}
.m-icon-link--line:focus-visible {
  color: var(--color__line);
}
.m-icon-link--x:focus-visible {
  color: var(--color__x);
}
.m-icon-link--instagram:focus-visible {
  color: var(--color__instagram);
}
.m-icon-link--facebook:focus-visible {
  color: var(--color__facebook);
}
.m-icon-link--youtube:focus-visible {
  color: var(--color__youtube);
}

.m-icon-button {
  position: relative;
  max-width: calc(280 * 1rem / var(--font-size__base));
  width: 100%;
  color: #fff;
  background-color: #000;
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-radius: 9999px;
  text-align: center;
  filter: drop-shadow(calc(4.24 * 1rem / var(--font-size__base)) calc(4.24 * 1rem / var(--font-size__base)) calc(6 * 1rem / var(--font-size__base)) rgba(0, 0, 0, 0.2));
  touch-action: manipulation;
  font-weight: 700;
  line-height: 1.3;
  transition: filter var(--duration__base), opacity var(--duration__base);
  padding-block: calc(18 * 1rem / var(--font-size__base));
  padding-left: calc(28 * 1rem / var(--font-size__base));
  padding-right: calc(34 * 1rem / var(--font-size__base));
}
.m-icon-button:focus-visible {
  color: #fff;
  filter: none;
  opacity: var(--opacity__hover);
}

.m-icon-button::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  right: calc(25 * 1rem / var(--font-size__base));
  top: 50%;
  transform: translateY(-50%);
  width: calc(8 * 1rem / var(--font-size__base));
  height: calc(12 * 1rem / var(--font-size__base));
  aspect-ratio: 8/12;
  background-image: url("../img/tsudoeo/icon-arrow-right.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: calc(1 * 1rem / var(--font-size__base));
}

.m-icon-button--external::after {
  right: calc(31 * 1rem / var(--font-size__base));
  width: calc(12 * 1rem / var(--font-size__base));
  height: calc(12 * 1rem / var(--font-size__base));
  aspect-ratio: 1;
  background-image: url("../img/tsudoeo/icon-external.webp");
  margin-top: 0;
}

.m-header {
  --_z-index--header-items: 100;
  --_z-index--header-drawer: 99;
  position: fixed;
  z-index: var(--_z-index--header-items);
  top: var(--wp-admin--admin-bar--height, 0);
  width: 100%;
  background-color: var(--color__white);
}

.m-header__inner {
  display: grid;
  grid-template-columns: calc(150 * 1rem / var(--font-size__base)) 1fr;
  align-items: center;
  -moz-column-gap: calc(10 * 1rem / var(--font-size__base));
       column-gap: calc(10 * 1rem / var(--font-size__base));
}

.m-header__logo {
  position: relative;
  z-index: var(--_z-index--header-items);
}

.m-header__menu {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: calc(30 * 1rem / var(--font-size__base));
       column-gap: calc(30 * 1rem / var(--font-size__base));
}

.m-header__links {
  display: flex;
  align-items: center;
}

.m-header__links li {
  height: 100%;
}

.m-header__link {
  display: grid;
  align-items: center;
  transition: color var(--duration__base);
  padding-inline: calc(10 * 1rem / var(--font-size__base));
  padding-block: calc(25 * 1rem / var(--font-size__base));
}

.m-header__buttons {
  display: flex;
  align-items: center;
}

.m-header__buttons li {
  min-width: calc(200 * 1rem / var(--font-size__base));
}
.m-hamburger {
  --_width--hamburger: 50;
  --_height--hamburger: 40;
  --_color--hamburger-line: blue;
  --_spacing--hamburger-line: 7;
  --_width--hamburger-line: 20;
  --_height--hamburger-line: 2;
  --_duration: var(--duration__base);
  position: relative;
  width: calc(var(--_width--hamburger) * 1rem / var(--font-size__base));
  height: calc(var(--_height--hamburger) * 1rem / var(--font-size__base));
}

.m-hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  transition: top var(--_duration), rotate var(--_duration), opacity var(--_duration);
  width: calc(var(--_width--hamburger-line) * 1rem / var(--font-size__base));
  height: calc(var(--_height--hamburger-line) * 1rem / var(--font-size__base));
  background-color: var(--_color--hamburger-line, currentColor);
}

.m-hamburger__line:nth-of-type(1) {
  top: calc(50% - var(--_spacing--hamburger-line) * 1rem / var(--font-size__base));
}

.m-hamburger__line:nth-of-type(3) {
  top: calc(50% + var(--_spacing--hamburger-line) * 1rem / var(--font-size__base));
}

.m-hamburger[aria-expanded=true] .m-hamburger__line:nth-of-type(1) {
  top: 50%;
  rotate: 45deg;
}

.m-hamburger[aria-expanded=true] .m-hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.m-hamburger[aria-expanded=true] .m-hamburger__line:nth-of-type(3) {
  top: 50%;
  rotate: -45deg;
}

.m-future-event {
  background-color: var(--color__blue-light);
  padding-top: calc(50 * 1rem / var(--font-size__base));
  padding-bottom: calc(56 * 1rem / var(--font-size__base));
}

.m-future-event__header {
  position: relative;
  text-align: center;
}

.m-future-event__image {
  position: absolute;
  top: 50%;
  right: calc(125 * 1rem / var(--font-size__base));
  transform: translateY(-50%);
  width: calc(185 * 1rem / var(--font-size__base));
  height: calc(120 * 1rem / var(--font-size__base));
  aspect-ratio: 185/120;
}

.m-future-event__title {
  font-size: calc(25 * 1rem / var(--font-size__base));
  font-weight: 700;
}

.m-future-event__text {
  line-height: 1.75;
  padding-top: calc(14 * 1rem / var(--font-size__base));
}

.m-future-event__coming-soon {
  text-align: center;
  padding-top: calc(90 * 1rem / var(--font-size__base));
  padding-bottom: calc(185 * 1rem / var(--font-size__base));
}

.m-future-event__coming-soon-text {
  color: var(--color__white);
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
}

.m-future-event__coming-soon-image {
  max-width: calc(167 * 1rem / var(--font-size__base));
  margin-inline: auto;
  padding-top: calc(10 * 1rem / var(--font-size__base));
}

.m-form-table {
  --_color__border: rgb(from var(--color__main) r g b / 0.5);
}

.m-form-table__items {
  padding-top: calc(48 * 1rem / var(--font-size__base));
}

.m-form-table__item {
  --_width__left: 158;
  --_width__right: 512;
  --_column-gap: 50;
}

.m-form-table__item:not(:first-child) {
  padding-top: calc(32 * 1rem / var(--font-size__base));
}

.m-form-table__item.m-form-table__item--recaptcha {
  padding-top: calc(8 * 1rem / var(--font-size__base));
}

.m-form-table__item.m-form-table__item--recaptcha p {
  line-height: 1.4;
}

.m-form-table__label {
  display: inline-flex;
  -moz-column-gap: calc(8 * 1rem / var(--font-size__base));
       column-gap: calc(8 * 1rem / var(--font-size__base));
  line-height: 1.4;
  padding-top: calc(12 * 1rem / var(--font-size__base));
}

.m-form-table__label::before {
  content: "＊";
  color: var(--color__accent);
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
}

.m-form-table__recaptcha {
  font-size: calc(10 * 1rem / var(--font-size__base));
}

.m-form-table__item:has([aria-required=true]) .m-form-table__label::before {
  opacity: 1;
  visibility: visible;
}

.wpcf7-select,
.wpcf7-text,
.wpcf7-textarea {
  border: 1px solid var(--_color__border);
  border-radius: calc(8 * 1rem / var(--font-size__base));
  background-color: #fff;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding-top: calc(19 * 1rem / var(--font-size__base));
  padding-bottom: calc(17 * 1rem / var(--font-size__base));
  padding-inline: calc(16 * 1rem / var(--font-size__base));
}

.wpcf7-select {
  max-width: calc(300 * 1rem / var(--font-size__base));
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.724976L5.54 5.27498L10.08 0.724976' stroke='%23A59C5F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right calc(16 * 1rem / var(--font-size__base)) center;
  background-repeat: no-repeat;
  background-size: calc(9 * 1rem / var(--font-size__base)) calc(4.5 * 1rem / var(--font-size__base));
}

.wpcf7-text {
  width: 100%;
}

.wpcf7-textarea {
  width: 100%;
  height: calc(240 * 1rem / var(--font-size__base));
  resize: vertical;
}

.wpcf7-text::-moz-placeholder, .wpcf7-textarea::-moz-placeholder {
  color: rgb(from #000 r g b/0.3);
}

.wpcf7-select option:first-child,
.wpcf7-select[name=your-inquiry]:has(option:checked[value=""]),
.wpcf7-text::placeholder,
.wpcf7-textarea::placeholder {
  color: rgb(from #000 r g b/0.3);
}

.wpcf7-select option:not(:first-child) {
  color: var(--color__text);
}

.m-form-table__acceptance {
  display: flex;
  align-items: center;
}

.m-form-table__acceptance input[type=checkbox] {
  width: calc(24 * 1rem / var(--font-size__base));
  height: calc(24 * 1rem / var(--font-size__base));
  border: 1px solid var(--_color__border);
  border-radius: calc(4 * 1rem / var(--font-size__base));
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.m-form-table__acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(14 * 1rem / var(--font-size__base));
  height: calc(9 * 1rem / var(--font-size__base));
  background: url('data:image/svg+xml,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 2.5L6 8L13 1" stroke="%23a59c5f" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  background-size: contain;
}

.m-form-table__acceptance .wpcf7-list-item {
  margin-left: 0;
}

.m-form-table__acceptance-text {
  padding-left: calc(16 * 1rem / var(--font-size__base));
}

.m-form-table__acceptance a {
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.m-form-table__acceptance a:focus-visible {
  color: var(--color__accent);
  text-decoration: none;
}

.m-form-table__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: calc(16 * 1rem / var(--font-size__base));
       column-gap: calc(16 * 1rem / var(--font-size__base));
  padding-top: calc(40 * 1rem / var(--font-size__base));
}

.m-form-table__submit {
  max-width: calc(282 * 1rem / var(--font-size__base));
  width: 100%;
}

.m-form-table__submit > p {
  position: relative;
  border-radius: calc(infinity * 1px);
  background-color: var(--color__accent);
  cursor: pointer;
  transition: background-color var(--duration__base);
}
.m-form-table__submit > p:focus-visible::after {
  background: #f5e88a;
  box-shadow: 0 0 12px rgba(245, 232, 138, 0.8);
}

.m-form-table__submit > p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(35 * 1rem / var(--font-size__base));
  transform: translateY(-50%);
  display: block;
  width: calc(32 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
  background-color: rgb(from #fff r g b/0.8);
  border-radius: 50%;
}

.m-form-table__submit > p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(47 * 1rem / var(--font-size__base));
  translate: 0 -50%;
  display: block;
  width: calc(8 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
  background-color: #f5e88a;
  border-radius: 50%;
}

.m-form-table__submit > p:has(input[disabled]) {
  opacity: 0.5;
}

.m-form-table__submit > p:has(input[disabled])::before {
  cursor: not-allowed;
}

.m-form-table__submit > p:has(input[disabled])::after {
  cursor: not-allowed;
}

.wpcf7-submit {
  width: 100%;
  line-height: 1.4;
  border-radius: inherit;
  padding-top: calc(18 * 1rem / var(--font-size__base));
  padding-bottom: calc(20 * 1rem / var(--font-size__base));
  padding-left: calc(43 * 1rem / var(--font-size__base));
}

.m-form-table__confirm-button {
  max-width: calc(282 * 1rem / var(--font-size__base));
  width: 100%;
  border: none;
  border-radius: calc(infinity * 1px);
  background-color: #a59c5f;
  font-weight: 500;
  font-size: inherit;
  line-height: 1.4;
  padding-top: calc(18 * 1rem / var(--font-size__base));
  padding-bottom: calc(20 * 1rem / var(--font-size__base));
  padding-left: calc(43 * 1rem / var(--font-size__base));
  margin-inline: auto;
  cursor: pointer;
  display: block;
}

.m-form-table__confirm-button:disabled {
  background-color: rgb(from #a59c5f r g b/0.5);
  cursor: not-allowed;
}

.m-form-table__confirm-button:disabled::before {
  background-color: rgb(from #fff r g b/0.4);
}

.m-form-table__confirm-button:disabled::after {
  background-color: rgb(from #f5e88a r g b/0.5);
}
.m-form-table__confirm-button:not(:disabled):focus-visible::after {
  background: #f5e88a;
  box-shadow: 0 0 12px rgba(245, 232, 138, 0.8);
}

.m-form-table__back-button {
  border: 2px solid #a59c5f;
  border-radius: calc(infinity * 1px);
  background-color: transparent;
  font-family: var(--font-family__zen-old-mincho);
  font-weight: 600;
  font-size: inherit;
  line-height: 1.4;
  padding-top: calc(16 * 1rem / var(--font-size__base));
  padding-bottom: calc(18 * 1rem / var(--font-size__base));
  padding-inline: calc(43 * 1rem / var(--font-size__base));
  cursor: pointer;
  transition: background-color var(--duration__base);
}
.m-form-table__back-button:focus-visible {
  background-color: #a59c5f;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  font-family: var(--font-family__base);
}

.m-form-table--confirm {
  display: none;
  margin-top: calc(40 * 1rem / var(--font-size__base));
}

.m-form-table--confirm .m-form-table__label {
  padding-top: 0;
}

.m-form-table--confirm .m-form-table__input span {
  display: block;
  font-weight: 500;
}

.m-footer {
  padding-top: calc(12 * 1rem / var(--font-size__base));
  padding-bottom: calc(42 * 1rem / var(--font-size__base));
}

.m-footer__inner {
  --_max-width: 1240;
}

.m-footer__logo {
  display: grid;
  justify-items: center;
  row-gap: calc(26 * 1rem / var(--font-size__base));
}

.m-footer__logo-line {
  display: block;
  width: 100%;
  height: calc(10 * 1rem / var(--font-size__base));
  background: linear-gradient(to right, #738792 calc(50 * 1rem / var(--font-size__base)), #fabe00 calc(50 * 1rem / var(--font-size__base)), #fabe00 calc(100 * 1rem / var(--font-size__base)), #738792 calc(100 * 1rem / var(--font-size__base)));
}

.m-footer__logo-link {
  display: inline-block;
}
.m-footer__logo-link img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 181/50;
  width: calc(181 * 1rem / var(--font-size__base));
}

.m-footer__copyright {
  display: grid;
  justify-items: center;
}

.m-footer__copyright-text {
  font-size: calc(11 * 1rem / var(--font-size__base));
  color: #526d7b;
  line-height: 1;
  letter-spacing: 0;
}

.m-footer-menu {
  padding-top: calc(16 * 1rem / var(--font-size__base));
  padding-bottom: calc(32 * 1rem / var(--font-size__base));
}

.m-footer-menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: calc(12 * 1rem / var(--font-size__base));
       column-gap: calc(12 * 1rem / var(--font-size__base));
}

.m-footer-menu__item {
  position: relative;
  display: grid;
}
.m-footer-menu__item::before {
  content: "/";
  position: absolute;
  top: 50%;
  left: calc(-8 * 1rem / var(--font-size__base));
  transform: translateY(-50%);
  font-weight: bold;
  color: #fabe00;
}

.m-footer-menu__item:first-child::before {
  display: none;
}

.m-footer-menu__link {
  font-size: calc(12 * 1rem / var(--font-size__base));
  color: #526d7b;
  line-height: 1;
  letter-spacing: 0;
  padding: calc(2 * 1rem / var(--font-size__base)) calc(3 * 1rem / var(--font-size__base));
}

.m-event-voice {
  padding-bottom: calc(131 * 1rem / var(--font-size__base));
}

.m-event-voice__wrapper {
  margin-top: calc(48 * 1rem / var(--font-size__base));
}

.m-event-voice__contents {
  display: grid;
  row-gap: calc(30 * 1rem / var(--font-size__base));
  padding-inline: calc(50 * 1rem / var(--font-size__base));
}

.m-event-voice__button {
  display: grid;
  justify-items: center;
  margin-top: calc(60 * 1rem / var(--font-size__base));
}

.m-event-voice-card {
  display: grid;
  grid-template-columns: calc(90 * 1rem / var(--font-size__base)) 1fr;
  align-items: center;
  -moz-column-gap: calc(30 * 1rem / var(--font-size__base));
       column-gap: calc(30 * 1rem / var(--font-size__base));
}

.m-event-voice-card__icon {
  display: grid;
}
.m-event-voice-card__icon img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-event-voice-card__content {
  display: grid;
  row-gap: calc(15 * 1rem / var(--font-size__base));
}

.m-event-voice-card__user-info {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.m-event-voice-card__comment {
  line-height: 1.5;
  letter-spacing: 0;
}

.m-event-section-header {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
       column-gap: calc(20 * 1rem / var(--font-size__base));
}

.m-event-section-header__title {
  position: relative;
  font-size: calc(30 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-left: calc(36 * 1rem / var(--font-size__base));
}
.m-event-section-header__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(18 * 1rem / var(--font-size__base));
  height: calc(5 * 1rem / var(--font-size__base));
  background-color: var(--color__text);
}

.m-event-section-header__subtitle {
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: 0;
}

.m-event-movie__contents {
  display: grid;
  margin-top: calc(25 * 1rem / var(--font-size__base));
}
.m-event-movie__contents iframe {
  aspect-ratio: 800/450;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.m-event-button {
  position: relative;
  display: grid;
  place-items: center;
  max-width: calc(240 * 1rem / var(--font-size__base));
  width: 100%;
  color: var(--_color__text);
  line-height: 1;
  letter-spacing: 0;
  background-color: var(--color__white);
  border-width: 1px;
  border-style: solid;
  border-color: var(--_color__text);
  border-radius: 9999px;
  transform: translateZ(0);
  touch-action: manipulation;
  padding-block: calc(22 * 1rem / var(--font-size__base));
  padding-left: calc(9 * 1rem / var(--font-size__base));
  transition: opacity var(--duration__base);
}
.m-event-button::before {
  content: "";
  position: absolute;
  top: 52%;
  left: calc(24 * 1rem / var(--font-size__base));
  transform: translateY(-50%);
  background-image: url("../img/common/icon_arrow_left.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(8 * 1rem / var(--font-size__base));
  height: calc(12 * 1rem / var(--font-size__base));
  z-index: -1;
}
.m-event-button:focus-visible {
  color: var(--_color__text);
  opacity: var(--opacity__hover);
}

.m-event-about {
  padding-top: calc(34 * 1rem / var(--font-size__base));
}

.m-event-about__contents + .m-event-about__contents {
  margin-top: calc(40 * 1rem / var(--font-size__base));
}

.m-event-about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(22 * 1rem / var(--font-size__base));
  margin-top: calc(30 * 1rem / var(--font-size__base));
}

.m-event-about__image {
  display: grid;
}
.m-event-about__image img {
  aspect-ratio: 340/254;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-event-about__wrapper {
  position: relative;
  padding-top: calc(50 * 1rem / var(--font-size__base));
  padding-bottom: calc(43 * 1rem / var(--font-size__base));
  padding-inline: calc(50 * 1rem / var(--font-size__base));
  margin-top: calc(68 * 1rem / var(--font-size__base));
}
.m-event-about__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border: 1px solid var(--color__text);
  border-radius: calc(30 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-event-about__contents-header {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(24 * 1rem / var(--font-size__base));
       column-gap: calc(24 * 1rem / var(--font-size__base));
  padding-bottom: calc(16 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__text);
}

.m-event-about__contents-header-item {
  display: grid;
  grid-template-columns: calc(16 * 1rem / var(--font-size__base)) 1fr;
  align-items: center;
  -moz-column-gap: calc(10 * 1rem / var(--font-size__base));
       column-gap: calc(10 * 1rem / var(--font-size__base));
}

.m-event-about__contents-header-icon {
  display: grid;
  font-family: var(--font-family__noto-color-emoji);
  font-size: calc(16 * 1rem / var(--font-size__base));
  line-height: 1;
}

.m-event-about__contents-header-text {
  line-height: 1;
  letter-spacing: 0;
  margin-top: calc(-2 * 1rem / var(--font-size__base));
}

.m-event-about__title-wrapper {
  margin-top: calc(40 * 1rem / var(--font-size__base));
}

.m-event-about__title {
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
}

.m-event-about__text-wrapper {
  margin-top: calc(30 * 1rem / var(--font-size__base));
}

.m-event-about__text {
  letter-spacing: 0;
}

.m-event-about__text-link {
  display: inline-grid;
  grid-template-columns: 1fr calc(14 * 1rem / var(--font-size__base));
  align-items: center;
  -moz-column-gap: calc(4 * 1rem / var(--font-size__base));
       column-gap: calc(4 * 1rem / var(--font-size__base));
  color: var(--color__blue);
}
.m-event-about__text-link:focus-visible {
  color: var(--color__blue);
}
.m-event-about__text-link picture {
  display: grid;
  place-items: center;
}
.m-event-about__text-link img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(14 * 1rem / var(--font-size__base));
}

.m-event-about-header__top {
  display: grid;
  grid-template-columns: calc(128 * 1rem / var(--font-size__base)) auto calc(133 * 1rem / var(--font-size__base));
  align-items: center;
  -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
       column-gap: calc(20 * 1rem / var(--font-size__base));
}

.m-event-about-header__top-left {
  font-weight: 700;
  line-height: 1.1825;
  letter-spacing: 0;
}

.m-event-about-header__top-line {
  display: grid;
  width: 100%;
  height: calc(1 * 1rem / var(--font-size__base));
  background-color: var(--color__text);
}

.m-event-about-header__top-right {
  display: grid;
  justify-items: end;
}
.m-event-about-header__top-right img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 125/33;
  width: calc(125 * 1rem / var(--font-size__base));
}

.m-event-about-header__date-wrapper {
  text-align: center;
  margin-top: calc(58 * 1rem / var(--font-size__base));
}

.m-event-about-header__date {
  line-height: 1;
  letter-spacing: 0;
}

.m-event-about-header__title-wrapper {
  margin-top: calc(48 * 1rem / var(--font-size__base));
}

.m-event-about-header__title {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}

.m-drawer {
  --_duration: var(--duration__base);
  position: fixed;
  z-index: var(--_z-index--header-drawer, 99);
  inset: 0;
  display: grid;
  place-items: center;
  transition: visibility var(--_duration);
  visibility: hidden;
  margin-top: var(--wp-admin--admin-bar--height, 0);
}

.m-drawer__backdrop {
  position: fixed;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity var(--_duration), visibility var(--_duration);
  opacity: 0;
  visibility: hidden;
}

.m-drawer__content {
  --_padding-block: 60;
  overflow-y: auto;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding-top: calc(var(--js-height__header, 0px) + var(--_padding-block) * 1rem / var(--font-size__base));
  padding-bottom: calc(var(--_padding-block) * 1rem / var(--font-size__base));
  transition: opacity var(--_duration), visibility var(--_duration);
  opacity: 0;
  visibility: hidden;
}

.m-drawer__nav {
  display: grid;
  justify-content: center;
  row-gap: calc(20 * 1rem / var(--font-size__base));
}

.m-drawer__links {
  text-align: center;
}

.m-drawer__links li {
  border-top: 1px solid var(--color__gray);
}

.m-drawer__links li:last-of-type {
  border-bottom: 1px solid var(--color__gray);
}

.m-drawer__link {
  display: block;
  line-height: 3;
}

.m-drawer__buttons {
  display: grid;
  justify-content: center;
  row-gap: calc(15 * 1rem / var(--font-size__base));
}

.m-drawer__button {
  min-width: calc(200 * 1rem / var(--font-size__base));
}

/* 開いた時 */
.m-drawer.is-visible .m-drawer__backdrop {
  opacity: 1;
  visibility: visible;
}

.m-drawer.is-visible .m-drawer__content {
  opacity: 1;
  visibility: visible;
}

.m-category {
  background-color: var(--color__gray-100);
  padding-top: calc(13 * 1rem / var(--font-size__base));
  padding-bottom: calc(12 * 1rem / var(--font-size__base));
}

.m-category__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: calc(16 * 1rem / var(--font-size__base));
       column-gap: calc(16 * 1rem / var(--font-size__base));
  align-items: center;
}

.m-category__contents {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(6 * 1rem / var(--font-size__base));
}

.m-category__title {
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.4;
}

.m-category__item {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: calc(3 * 1rem / var(--font-size__base));
       column-gap: calc(3 * 1rem / var(--font-size__base));
  background-color: #fff;
  border: 1px solid currentcolor;
  border-radius: calc(infinity * 1px);
  font-size: calc(14 * 1rem / var(--font-size__base));
  line-height: 1;
  white-space: nowrap;
  padding-block: calc(9 * 1rem / var(--font-size__base));
  padding-inline: calc(12 * 1rem / var(--font-size__base));
}
.m-category__item:focus-visible {
  color: var(--color__text);
}

.m-category__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(14 * 1rem / var(--font-size__base));
  font-family: var(--font-family__noto-color-emoji);
  font-size: calc(14 * 1rem / var(--font-size__base));
  line-height: 1;
}

.m-category__text {
  line-height: 1;
}

.m-category__text:has(.eo) {
  margin-top: calc(-4 * 1rem / var(--font-size__base));
}

.m-button {
  --_color__main-default: var(--color__main);
  --_color__sub-default: #fff;
  --_color__main: var(--_color__main-default);
  --_color__sub: var(--_color__sub-default);
  --_duration: var(--duration__base);
  display: grid;
  place-items: center;
  max-width: calc(250 * 1rem / var(--font-size__base));
  width: 100%;
  color: var(--_color__sub);
  font-size: calc(16 * 1rem / var(--font-size__base));
  background-color: var(--_color__main);
  border-width: 1px;
  border-style: solid;
  border-color: var(--_color__main);
  border-radius: 9999px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
  transition: color var(--_duration), background-color var(--_duration), border-color var(--_duration), filter var(--_duration);
  touch-action: manipulation;
  padding-block: calc(10 * 1rem / var(--font-size__base));
  padding-inline: calc(10 * 1rem / var(--font-size__base));
}
.m-button:focus-visible {
  color: var(--_color__main);
  background-color: var(--_color__sub);
  filter: unset;
}

.m-button--invert {
  --_color__main: var(--_color__sub-default);
  --_color__sub: var(--_color__main-default);
  border-color: var(--_color__sub);
}

.m-button--sub {
  --_color__main-default: var(--color__sub);
  --_color__sub-default: white;
}

.m-breadcrumb {
  padding-block: calc(20 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__border-gray);
}

.m-breadcrumb__inner {
  --_max-width: 980;
}

.m-breadcrumb__items {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(24 * 1rem / var(--font-size__base));
       column-gap: calc(24 * 1rem / var(--font-size__base));
}

.m-breadcrumb__item {
  position: relative;
  display: grid;
}
.m-breadcrumb__item::before {
  content: ">";
  position: absolute;
  top: 50%;
  right: calc(-16 * 1rem / var(--font-size__base));
  transform: translateY(-50%);
  font-size: calc(14 * 1rem / var(--font-size__base));
  line-height: 1;
  letter-spacing: 0.04em;
}

.m-breadcrumb__item:last-child::before {
  display: none;
}

.m-breadcrumb__link {
  font-size: calc(14 * 1rem / var(--font-size__base));
  line-height: 1;
  letter-spacing: 0.04em;
}

.m-bottom-nav {
  --_z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  display: grid;
  justify-items: end;
  left: 100%;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: calc(20 * 1rem / var(--font-size__base));
  padding-bottom: calc(17 * 1rem / var(--font-size__base));
  z-index: var(--_z-index);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.m-bottom-nav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.m-bottom-nav__items-wrapper {
  background-color: var(--color__gray-100);
  box-shadow: 0 0 calc(14 * 1rem / var(--font-size__base)) rgb(from var(--color__text) r g b/0.1);
  padding-block: calc(10 * 1rem / var(--font-size__base));
  padding-left: calc(18 * 1rem / var(--font-size__base));
  padding-right: calc(16 * 1rem / var(--font-size__base));
  border-radius: calc(16 * 1rem / var(--font-size__base));
}

.m-bottom-nav__items {
  display: flex;
  -moz-column-gap: calc(12 * 1rem / var(--font-size__base));
       column-gap: calc(12 * 1rem / var(--font-size__base));
}

.m-bottom-nav__link {
  display: grid;
  justify-items: center;
  row-gap: calc(6 * 1rem / var(--font-size__base));
  color: var(--color__text);
  transition: opacity var(--duration__base);
}
.m-bottom-nav__link:focus-visible {
  color: var(--color__text);
  opacity: var(--opacity__hover);
}

.m-bottom-nav__icon {
  display: grid;
  max-width: calc(39 * 1rem / var(--font-size__base));
}
.m-bottom-nav__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: inherit;
}

.m-bottom-nav__icon--36 {
  max-width: calc(36 * 1rem / var(--font-size__base));
}

.m-bottom-nav__text {
  font-size: calc(13 * 1rem / var(--font-size__base));
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  font-feature-settings: "palt" 1;
}

.m-bottom-nav__text:has(.eo) {
  margin-top: calc(-3 * 1rem / var(--font-size__base));
}

.m-accordion {
  --_duration: var(--duration__base);
  border-top: 1px solid #333;
}

.m-accordion:last-of-type {
  border-bottom: 1px solid #333;
}

.m-accordion__button {
  display: grid;
  grid-template-columns: calc(30 * 1rem / var(--font-size__base)) 1fr calc(30 * 1rem / var(--font-size__base));
  -moz-column-gap: calc(10 * 1rem / var(--font-size__base));
       column-gap: calc(10 * 1rem / var(--font-size__base));
  align-items: center;
  width: 100%;
  padding-block: calc(20 * 1rem / var(--font-size__base));
  padding-inline: calc(20 * 1rem / var(--font-size__base));
}

.m-accordion__button-title {
  color: var(--color__main);
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
}

.m-accordion__button-icon {
  position: relative;
  width: calc(27 * 1rem / var(--font-size__base));
  height: calc(27 * 1rem / var(--font-size__base));
  background-color: #a1ace6;
  border-radius: 50%;
  transition: background-color var(--_duration);
}

.m-accordion__button-icon::before,
.m-accordion__button-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(12 * 1rem / var(--font-size__base));
  height: calc(2 * 1rem / var(--font-size__base));
  background-color: #fff;
  border-radius: 99px;
  translate: -50% -50%;
}

.m-accordion__button-icon::after {
  transition: rotate var(--_duration);
  rotate: -90deg;
}

.m-accordion__panel-content {
  display: grid;
  grid-template-columns: calc(30 * 1rem / var(--font-size__base)) 1fr calc(30 * 1rem / var(--font-size__base));
  -moz-column-gap: calc(10 * 1rem / var(--font-size__base));
       column-gap: calc(10 * 1rem / var(--font-size__base));
  border-top: 1px solid #aaa;
  padding-block: calc(18 * 1rem / var(--font-size__base));
  padding-inline: calc(22 * 1rem / var(--font-size__base));
}

.m-accordion__panel-title {
  color: var(--color__sub);
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
}

.m-accordion__button:has(+ .js-accordion__panel:not([hidden])) .m-accordion__button-icon {
  background-color: #bfbfbf;
}

.m-accordion__button:has(+ .js-accordion__panel:not([hidden])) .m-accordion__button-icon::after {
  rotate: 0deg;
}

.m-about {
  padding-top: calc(38 * 1rem / var(--font-size__base));
  padding-bottom: calc(31 * 1rem / var(--font-size__base));
}

.m-about__text {
  font-size: calc(18 * 1rem / var(--font-size__base));
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt" 1;
}

.m-about__text:not(:first-of-type) {
  padding-top: calc(18 * 1rem / var(--font-size__base));
}

.m-about__text--sp {
  display: contents;
}

.l-page .footer-pagetop img {
  max-width: 56px;
}

/*
 * ページについて
 * 各ページ固有のスタイルを定義します。
 * ページごとのユニークなスタイルや、ページ固有のコンポーネントが含まれています。
 * クラス名は、p-home-blockのように命名します。
 */

.p-tsudoeo__category {
  margin-top: calc(-4 * 1rem / var(--font-size__base));
}

.p-tsudoeo__future {
  padding-block: calc(20 * 1rem / var(--font-size__base));
}

.p-event__movie {
  margin-top: calc(62 * 1rem / var(--font-size__base));
}

.p-event__voice {
  margin-top: calc(58 * 1rem / var(--font-size__base));
}

/*
 * ユーティリティについて
 * 再利用可能なユーティリティクラスを定義します。
 * ユーティリティクラスは、コンポーネントやページのスタイルを簡潔に記述するために使用されます。
 * クラス名は、u-brのように命名します。
 */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* PCでのみ表示 */
/* スマホでのみ表示 */
.u-hover--opacity {
  transition: opacity var(--duration__base);
}
.u-hover--opacity:focus-visible {
  opacity: var(--opacity__hover);
}

.u-hover--drop-shadow {
  transition: filter var(--duration__base);
}
.u-hover--drop-shadow:focus-visible {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
}

.u-hover--color-main {
  transition: color var(--duration__base);
}
.u-hover--color-main:focus-visible {
  color: var(--color__main);
}

.u-hover--underline-1px {
  position: relative;
}
.u-hover--underline-1px:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.u-hover--underline-1px::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: currentcolor;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration__base);
}

.u-hover--underline-2px {
  position: relative;
}
.u-hover--underline-2px:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.u-hover--underline-2px::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: currentcolor;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration__base);
}

.u-font-weight--100 {
  font-weight: 100;
}

.u-font-weight--200 {
  font-weight: 200;
}

.u-font-weight--300 {
  font-weight: 300;
}

.u-font-weight--400 {
  font-weight: 400;
}

.u-font-weight--500 {
  font-weight: 500;
}

.u-font-weight--600 {
  font-weight: 600;
}

.u-font-weight--700 {
  font-weight: 700;
}

.u-font-weight--800 {
  font-weight: 800;
}

.u-font-weight--900 {
  font-weight: 900;
}

.u-eo-text {
  font-size: 1.3em;
  line-height: 0.7;
}

.u-br {
  display: inline-block;
}

.u-bg--main {
  background-color: var(--color__main);
}

.u-bg--main-light {
  background-color: var(--color__main-light);
}

.u-bg--white {
  background-color: var(--color__white);
}

.u-bg--blue-light {
  background-color: var(--color__blue-light);
}

@media (min-width: 768px){
  .l-inner--800 {
    --_max-width: 800;
  }
  .l-inner--1024 {
    --_max-width: 1024;
  }
  .l-2-columns-pc {
    display: grid;
    grid-template-columns: calc(var(--_width__left) / var(--_width__total) * 100%) calc(var(--_width__right) / var(--_width__total) * 100%);
    -moz-column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
         column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
  }
  .l-2-columns-pc--release-left {
    margin-left: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
  }
  .l-2-columns-pc--release-right {
    margin-right: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
  }
  .l-2-columns-pc--reverse {
    grid-template-columns: calc(var(--_width__right) / var(--_width__total) * 100%) calc(var(--_width__left) / var(--_width__total) * 100%);
  }
  .l-2-columns-pc--reverse > *:last-child {
    order: -1;
  }
  .l-2-columns-pc--release-left.l-2-columns-pc--reverse {
    margin-right: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
    margin-left: auto;
  }
  .l-2-columns-pc--release-right.l-2-columns-pc--reverse {
    margin-right: auto;
    margin-left: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
  }
  .m-what__contents {
    display: grid;
    grid-template-columns: calc(340 * 1rem / var(--font-size__base)) 1fr;
    -moz-column-gap: calc(60 * 1rem / var(--font-size__base));
         column-gap: calc(60 * 1rem / var(--font-size__base));
  }
  .m-what__left {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--js-height__header) + 60 * 1rem / var(--font-size__base));
    align-self: start;
  }
  .m-what__right-contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: calc(40 * 1rem / var(--font-size__base));
         column-gap: calc(40 * 1rem / var(--font-size__base));
    row-gap: calc(60 * 1rem / var(--font-size__base));
  }
  .m-mv__image-wrapper {
    display: contents;
  }
  .m-future-event__contents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: calc(40 * 1rem / var(--font-size__base));
         column-gap: calc(40 * 1rem / var(--font-size__base));
    padding-top: calc(38 * 1rem / var(--font-size__base));
  }
  .p-tsudoeo__animation .l-inner {
    --_max-width: 680;
  }
  .u-only--sp {
    display: none;
  }
}

@media (max-width: 1330px){
  html {
    font-size: calc(var(--_font-size) / var(--_width) * 100vw);
  }
}

@media (max-width: 767px){
  :root {
    --js-height__header: 60px;
    --width__breakpoint: 375;
    --space-inline__base: 15;
    --max-width__base: 400;
    --space__section--base: 30;
    --radius__base: 13;
  }
  html {
    font-size: calc(var(--_font-size) * 1px);
  }
  .l-page__content--gray::before {
    background-color: var(--color__gray-light);
  }
  .l-inner {
    --_max-width: var(--max-width__base, 600);
  }
  .l-container--sidebar {
    grid-template-columns: unset;
    row-gap: calc(32 * 1rem / var(--font-size__base));
  }
  .m-what {
    padding-top: calc(31 * 1rem / var(--font-size__base));
    padding-bottom: calc(48 * 1rem / var(--font-size__base));
  }
  .m-what__right {
    padding-top: calc(38 * 1rem / var(--font-size__base));
  }
  .m-what__right-text {
    padding-top: calc(8 * 1rem / var(--font-size__base));
    text-align: left;
  }
  .m-what__right-item-close {
    padding-top: calc(4 * 1rem / var(--font-size__base));
  }
  .m-what__right-item-close-button {
    font-size: calc(15 * 1rem / var(--font-size__base));
    padding-left: 0;
  }
  .m-what__right-item-close-button-icon {
    width: calc(20 * 1rem / var(--font-size__base));
  }
  .m-what__right-item-open-button {
    font-size: calc(15 * 1rem / var(--font-size__base));
  }
  .m-what__right-item-open-button-icon {
    width: calc(20 * 1rem / var(--font-size__base));
  }
  .m-what-item__wrapper {
    border-radius: calc(20 * 1rem / var(--font-size__base));
    padding-top: calc(56 * 1rem / var(--font-size__base));
    padding-bottom: calc(30 * 1rem / var(--font-size__base));
  }
  .m-what-item__wrapper::before {
    top: calc(-21 * 1rem / var(--font-size__base));
    right: calc(22 * 1rem / var(--font-size__base));
    width: calc(70 * 1rem / var(--font-size__base));
  }
  .m-what-item__speech {
    top: calc(-30 * 1rem / var(--font-size__base));
    left: calc(18 * 1rem / var(--font-size__base));
    grid-template-columns: calc(18 * 1rem / var(--font-size__base)) auto;
    max-width: calc(219 * 1rem / var(--font-size__base));
    max-height: calc(74 * 1rem / var(--font-size__base));
    padding-left: calc(10 * 1rem / var(--font-size__base));
    padding-right: calc(13 * 1rem / var(--font-size__base));
    padding-bottom: calc(24 * 1rem / var(--font-size__base));
  }
  .m-what-item__speech-text {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  * + .m-what-item__title {
    padding-top: calc(16 * 1rem / var(--font-size__base));
  }
  .m-what-item__subtitle {
    padding-top: calc(10 * 1rem / var(--font-size__base));
  }
  .m-what-item__divider {
    margin-top: calc(18 * 1rem / var(--font-size__base));
  }
  .m-what-item__contents {
    grid-template-columns: calc(120 * 1rem / var(--font-size__base)) 1fr;
    -moz-column-gap: calc(8 * 1rem / var(--font-size__base));
         column-gap: calc(8 * 1rem / var(--font-size__base));
    padding-top: calc(18 * 1rem / var(--font-size__base));
  }
  .m-what-item__result-header {
    grid-template-columns: calc(26 * 1rem / var(--font-size__base)) 1fr;
    -moz-column-gap: calc(4 * 1rem / var(--font-size__base));
         column-gap: calc(4 * 1rem / var(--font-size__base));
  }
  .m-what-item__result-text {
    padding-top: calc(12 * 1rem / var(--font-size__base));
  }
  .m-what-item__event-info {
    font-size: calc(15 * 1rem / var(--font-size__base));
    padding-inline: 0;
  }
  .m-what-item__button-wrapper {
    padding-top: calc(10 * 1rem / var(--font-size__base));
  }
  .m-what-item__event-info-list + .m-what-item__button-wrapper {
    padding-top: calc(16 * 1rem / var(--font-size__base));
  }
  .m-what-header + .m-what-item--tsudoi:nth-of-type(n + 2) {
    padding-top: calc(20 * 1rem / var(--font-size__base));
  }
  .m-what-header + .m-what-item--manabi:nth-of-type(n + 2) {
    padding-top: calc(30 * 1rem / var(--font-size__base));
  }
  .m-what-item--manabi .m-what-item__wrapper::before {
    top: calc(-23 * 1rem / var(--font-size__base));
    right: calc(26 * 1rem / var(--font-size__base));
    width: calc(81 * 1rem / var(--font-size__base));
  }
  .m-what-header + .m-what-item--kenkyu:nth-of-type(n + 2) {
    padding-top: calc(28 * 1rem / var(--font-size__base));
  }
  .m-what-item--kenkyu {
    padding-top: calc(42 * 1rem / var(--font-size__base));
  }
  .m-what-item--kenkyu .m-what-item__wrapper::before {
    top: calc(-18 * 1rem / var(--font-size__base));
    right: calc(26 * 1rem / var(--font-size__base));
    width: calc(81 * 1rem / var(--font-size__base));
  }
  .m-what-item--tanoshi .m-what-item__wrapper::before {
    width: calc(88 * 1rem / var(--font-size__base));
  }
  .m-what-header + .m-what-item--tanoshi:nth-of-type(n + 2) {
    padding-top: calc(40 * 1rem / var(--font-size__base));
  }
  .m-what-item--event {
    padding-top: calc(52 * 1rem / var(--font-size__base));
  }
  .m-what-item--event .m-what-item__wrapper {
    padding-top: calc(62 * 1rem / var(--font-size__base));
  }
  .m-what-item--event .m-what-item__subtitle {
    font-feature-settings: "palt" 1;
  }
  .m-what-item--event .m-what-item__wrapper::before {
    top: calc(-24 * 1rem / var(--font-size__base));
    right: calc(30 * 1rem / var(--font-size__base));
    width: calc(68 * 1rem / var(--font-size__base));
  }
  .m-what-item--event .m-what-item__speech {
    left: calc(27 * 1rem / var(--font-size__base));
    max-width: calc(170 * 1rem / var(--font-size__base));
    padding-inline: calc(20 * 1rem / var(--font-size__base));
    padding-bottom: calc(23 * 1rem / var(--font-size__base));
  }
  .m-what-item--event:nth-child(even) .m-what-item__wrapper::before {
    top: calc(-24 * 1rem / var(--font-size__base));
    right: calc(30 * 1rem / var(--font-size__base));
    width: calc(88 * 1rem / var(--font-size__base));
  }
  .m-what-header {
    grid-template-columns: auto 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .m-what-header__left {
    grid-template-columns: calc(55 * 1rem / var(--font-size__base)) 1fr;
    margin-left: calc(-7 * 1rem / var(--font-size__base));
  }
  .m-what-header__question {
    grid-template-columns: calc(20 * 1rem / var(--font-size__base)) 1fr;
    margin-top: calc(6 * 1rem / var(--font-size__base));
    padding-left: 0;
  }
  .m-what-header__question-icon {
    width: calc(20 * 1rem / var(--font-size__base));
    height: calc(20 * 1rem / var(--font-size__base));
    font-size: calc(10 * 1rem / var(--font-size__base));
  }
  .m-what-header__question-text {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-what-header--tsudoi .m-what-header__left {
    padding-top: calc(62 * 1rem / var(--font-size__base));
  }
  .m-what-header--tsudoi .m-what-header__right {
    margin-left: calc(4 * 1rem / var(--font-size__base));
    padding-left: calc(4 * 1rem / var(--font-size__base));
  }
  .m-what-header--manabi {
    padding-top: calc(44 * 1rem / var(--font-size__base));
  }
  .m-what-header--manabi .m-what-header__question {
    margin-top: calc(-6 * 1rem / var(--font-size__base));
  }
  .m-what-header--manabi .m-what-header__left {
    padding-top: calc(22 * 1rem / var(--font-size__base));
  }
  .m-what-header--manabi .m-what-header__right {
    margin-right: calc(-5 * 1rem / var(--font-size__base));
    padding-left: calc(18 * 1rem / var(--font-size__base));
  }
  .m-what-header--kenkyu {
    padding-top: calc(50 * 1rem / var(--font-size__base));
  }
  .m-what-header--kenkyu .m-what-header__left {
    padding-top: calc(4 * 1rem / var(--font-size__base));
  }
  .m-what-header--kenkyu .m-what-header__right {
    margin-right: calc(-8 * 1rem / var(--font-size__base));
    margin-left: calc(2 * 1rem / var(--font-size__base));
  }
  .m-what-header--tanoshi {
    padding-top: calc(56 * 1rem / var(--font-size__base));
  }
  .m-what-header--tanoshi .m-what-header__left {
    padding-top: calc(6 * 1rem / var(--font-size__base));
  }
  .m-what-header--tanoshi .m-what-header__right {
    margin-right: calc(4 * 1rem / var(--font-size__base));
    margin-left: calc(20 * 1rem / var(--font-size__base));
  }
  .m-tsudoeo-modal__container {
    display: block;
    padding-block: calc(60 * 1rem / var(--font-size__base));
    padding-inline: calc(var(--space-inline__base) * 1rem / var(--font-size__base));
  }
  .m-tsudoeo-modal__badge {
    width: calc(62 * 1rem / var(--font-size__base));
  }
  .m-tsudoeo-modal__image {
    margin-top: calc(-28 * 1rem / var(--font-size__base));
  }
  .m-tsudoeo-modal__image img {
    max-width: calc(165 * 1rem / var(--font-size__base));
  }
  .m-tsudoeo-modal__image--manabi img {
    max-width: calc(180 * 1rem / var(--font-size__base));
  }
  .m-tsudoeo-modal__image--kenkyu img {
    max-width: calc(200 * 1rem / var(--font-size__base));
  }
  .m-tsudoeo-modal__image--tanoshi img {
    max-width: calc(200 * 1rem / var(--font-size__base));
  }
  .m-tsudoeo-modal__description {
    padding-inline: 0;
  }
  .m-news-ticker__inner {
    max-width: 100%;
  }
  .m-news-ticker__label {
    max-width: calc(56 * 1rem / var(--font-size__base));
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-news-ticker__text {
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-mv {
    max-width: 100%;
  }
  .m-mv__inner {
    overflow-x: clip;
  }
  .m-mv__title {
    position: static;
    max-width: calc(244 * 1rem / var(--font-size__base));
    margin-inline: auto;
    padding-top: calc(24 * 1rem / var(--font-size__base));
  }
  .m-mv__image {
    top: calc(20 / 375 * 100vw);
  }
  .m-mv__cloud-balloon {
    left: 0;
    transform: translateY(calc(5 / 375 * 100vw));
    width: 100%;
  }
  .m-mv__pin {
    max-width: calc(63 / 375 * 100vw);
    max-height: calc(74.5 / 375 * 100vw);
    aspect-ratio: 63/74.5;
  }
  .m-mv__pin-link {
    top: calc(-155 / 375 * 100vw);
    left: calc(-67 / 375 * 100vw);
    max-width: calc(195 / 375 * 100vw);
    max-height: calc(231 / 375 * 100vw);
    width: calc(195 / 375 * 100vw);
    height: calc(231 / 375 * 100vw);
  }
  .m-mv__pin--manabi {
    z-index: 2;
    top: calc(440 / 375 * 100vw);
    left: calc(98 / 375 * 100vw);
  }
  .m-mv__pin--tsudoi {
    z-index: 1;
    top: calc(230 / 375 * 100vw);
    left: calc(145 / 375 * 100vw);
  }
  .m-mv__pin--tanoshi {
    z-index: 4;
    top: calc(600 / 375 * 100vw);
    left: calc(277 / 375 * 100vw);
  }
  .m-mv__pin--kenkyu {
    z-index: 3;
    top: calc(375 / 375 * 100vw);
    left: calc(280 / 375 * 100vw);
  }
  .m-loop-image-slider {
    --_width__viewport: 375;
    --_width__slide: 377;
    --_space__gap: 31;
  }
  .m-loop-image-slider__item {
    grid-template-columns: calc(104 * 1rem / var(--font-size__base)) 1fr;
    -moz-column-gap: calc(31 * 1rem / var(--font-size__base));
         column-gap: calc(31 * 1rem / var(--font-size__base));
  }
  .m-loop-image-slider__item .js-lottie svg {
    max-width: calc(104 * 1rem / var(--font-size__base));
  }
  .m-left-heading {
    border-radius: calc(20 * 1rem / var(--font-size__base));
    padding-top: calc(33 * 1rem / var(--font-size__base));
    padding-bottom: calc(30 * 1rem / var(--font-size__base));
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-left-heading__top {
    grid-template-columns: calc(81 * 1rem / var(--font-size__base)) auto calc(84 * 1rem / var(--font-size__base));
    -moz-column-gap: calc(4 * 1rem / var(--font-size__base));
         column-gap: calc(4 * 1rem / var(--font-size__base));
  }
  .m-left-heading__text {
    font-size: calc(15 * 1rem / var(--font-size__base));
    line-height: 1.8666666667;
    padding-top: calc(16 * 1rem / var(--font-size__base));
  }
  .m-left-heading__image {
    padding-top: calc(10 * 1rem / var(--font-size__base));
  }
  .m-icon-button {
    max-width: calc(250 * 1rem / var(--font-size__base));
    font-size: calc(14 * 1rem / var(--font-size__base));
    padding-block: calc(18 * 1rem / var(--font-size__base));
    padding-left: calc(24 * 1rem / var(--font-size__base));
    padding-right: calc(28 * 1rem / var(--font-size__base));
  }
  .m-icon-button::after {
    right: calc(16 * 1rem / var(--font-size__base));
    width: calc(5 * 1rem / var(--font-size__base));
  }
  .m-icon-button--external::after {
    width: calc(14 * 1rem / var(--font-size__base));
    right: calc(26 * 1rem / var(--font-size__base));
  }
  .m-header__inner {
    grid-template-columns: calc(100 * 1rem / var(--font-size__base)) 1fr;
    padding-right: 0;
  }
  .m-header__logo {
    padding-block: calc(10 * 1rem / var(--font-size__base));
  }
  .m-header__hamburger {
    z-index: var(--_z-index--header-items);
    justify-self: end;
  }
  .m-future-event {
    padding-top: calc(36 * 1rem / var(--font-size__base));
    padding-bottom: calc(48 * 1rem / var(--font-size__base));
  }
  .m-future-event__image {
    position: static;
    transform: translateY(0);
    width: calc(180 * 1rem / var(--font-size__base));
    margin-inline: auto;
    margin-top: calc(18 * 1rem / var(--font-size__base));
  }
  .m-future-event__text {
    font-feature-settings: "palt" 1;
    text-align: left;
    padding-top: calc(2 * 1rem / var(--font-size__base));
  }
  .m-future-event__coming-soon {
    padding-top: calc(107 * 1rem / var(--font-size__base));
    padding-bottom: calc(246 * 1rem / var(--font-size__base));
  }
  .m-form-table__items {
    padding-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-form-table .l-2-columns {
    grid-template-columns: auto;
    row-gap: calc(6 * 1rem / var(--font-size__base));
  }
  .m-form-table__item:not(:first-child) {
    padding-top: calc(18 * 1rem / var(--font-size__base));
  }
  .m-form-table__item.m-form-table__item--recaptcha .m-form-table__label {
    display: none;
  }
  .m-form-table__item--no-label .m-form-table__label {
    display: none;
  }
  .m-form-table__label {
    font-weight: 500;
    padding-top: 0;
  }
  .m-form-table__label::before {
    order: 1;
  }
  .m-form-table__acceptance {
    display: grid;
    place-items: center;
  }
  .m-form-table__back-button {
    width: 100%;
  }
  .m-form-table--confirm .m-form-table__input span {
    font-weight: 400;
  }
  .m-footer__inner {
    --_max-width: var(--max-width__base, 600);
  }
  .m-event-voice {
    padding-bottom: calc(158 * 1rem / var(--font-size__base));
  }
  .m-event-voice__wrapper {
    margin-top: calc(34 * 1rem / var(--font-size__base));
  }
  .m-event-voice__contents {
    padding-inline: 0;
  }
  .m-event-voice__button {
    margin-top: calc(45 * 1rem / var(--font-size__base));
  }
  .m-event-voice-card {
    align-items: start;
    -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
         column-gap: calc(20 * 1rem / var(--font-size__base));
  }
  .m-event-voice-card__content {
    row-gap: calc(22 * 1rem / var(--font-size__base));
  }
  .m-event-voice-card__comment {
    line-height: 1.5625;
  }
  .m-event-section-header {
    -moz-column-gap: calc(8 * 1rem / var(--font-size__base));
         column-gap: calc(8 * 1rem / var(--font-size__base));
  }
  .m-event-section-header__title {
    font-size: calc(24 * 1rem / var(--font-size__base));
    padding-left: calc(22 * 1rem / var(--font-size__base));
  }
  .m-event-section-header__title::before {
    width: calc(14 * 1rem / var(--font-size__base));
  }
  .m-event-section-header__subtitle {
    font-size: calc(15 * 1rem / var(--font-size__base));
    line-height: 1.8666666667;
  }
  .m-event-movie__contents iframe {
    aspect-ratio: 345/195;
  }
  .m-event-button::before {
    left: calc(33 * 1rem / var(--font-size__base));
    width: calc(5 * 1rem / var(--font-size__base));
    height: calc(9 * 1rem / var(--font-size__base));
  }
  .m-event-button {
    font-size: calc(15 * 1rem / var(--font-size__base));
    max-width: calc(250 * 1rem / var(--font-size__base));
    padding-block: calc(23 * 1rem / var(--font-size__base));
  }
  .m-event-about__contents + .m-event-about__contents {
    margin-top: calc(24 * 1rem / var(--font-size__base));
  }
  .m-event-about__images {
    grid-template-columns: 1fr;
    gap: calc(20 * 1rem / var(--font-size__base));
  }
  .m-event-about__wrapper {
    padding-top: calc(32 * 1rem / var(--font-size__base));
    padding-bottom: calc(32 * 1rem / var(--font-size__base));
    padding-inline: calc(20 * 1rem / var(--font-size__base));
    margin-top: calc(26 * 1rem / var(--font-size__base));
  }
  .m-event-about__contents-header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: calc(13 * 1rem / var(--font-size__base));
  }
  .m-event-about__contents-header-item {
    row-gap: calc(10 * 1rem / var(--font-size__base));
  }
  .m-event-about__contents-header-text {
    font-size: calc(15 * 1rem / var(--font-size__base));
    font-weight: 700;
    line-height: 1;
  }
  .m-event-about__contents-header-text span {
    font-weight: 400;
  }
  .m-event-about__title-wrapper {
    margin-top: calc(30 * 1rem / var(--font-size__base));
  }
  .m-event-about__title {
    line-height: 1.5;
  }
  .m-event-about__text-wrapper {
    margin-top: calc(18 * 1rem / var(--font-size__base));
  }
  .m-event-about-header__top {
    grid-template-columns: calc(128 * 1rem / var(--font-size__base)) auto calc(104 * 1rem / var(--font-size__base));
    -moz-column-gap: calc(14 * 1rem / var(--font-size__base));
         column-gap: calc(14 * 1rem / var(--font-size__base));
  }
  .m-event-about-header__top-right img {
    width: calc(104 * 1rem / var(--font-size__base));
  }
  .m-event-about-header__date-wrapper {
    margin-top: calc(50 * 1rem / var(--font-size__base));
  }
  .m-event-about-header__date {
    font-size: calc(15 * 1rem / var(--font-size__base));
  }
  .m-event-about-header__title-wrapper {
    margin-top: calc(40 * 1rem / var(--font-size__base));
  }
  .m-event-about-header__title {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-category {
    padding-top: calc(27 * 1rem / var(--font-size__base));
    padding-bottom: calc(30 * 1rem / var(--font-size__base));
  }
  .m-category__inner {
    grid-template-columns: unset;
    row-gap: calc(4 * 1rem / var(--font-size__base));
  }
  .m-category__contents {
    gap: calc(6 * 1rem / var(--font-size__base));
  }
  .m-category__title {
    text-align: center;
  }
  .m-breadcrumb__inner {
    --_max-width: var(--max-width__base, 600);
    padding-inline: calc(19 * 1rem / var(--font-size__base));
  }
  .m-breadcrumb__items {
    -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
         column-gap: calc(20 * 1rem / var(--font-size__base));
  }
  .m-breadcrumb__item::before {
    right: calc(-14 * 1rem / var(--font-size__base));
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-breadcrumb__link {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-bottom-nav {
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }
  .m-bottom-nav__items-wrapper {
    width: 100%;
    padding-top: calc(6 * 1rem / var(--font-size__base));
    padding-bottom: calc(8 * 1rem / var(--font-size__base));
    padding-left: calc(20 * 1rem / var(--font-size__base));
    padding-right: calc(17 * 1rem / var(--font-size__base));
    border-radius: 0;
  }
  .m-bottom-nav__items {
    justify-content: space-between;
    max-width: calc(var(--max-width__base) * 1rem / var(--font-size__base));
    margin-inline: auto;
  }
  .m-bottom-nav__icon {
    max-width: calc(27 * 1rem / var(--font-size__base));
  }
  .m-bottom-nav__icon--36 {
    max-width: calc(25 * 1rem / var(--font-size__base));
  }
  .m-bottom-nav__text {
    font-size: calc(10 * 1rem / var(--font-size__base));
  }
  .m-accordion__button {
    -moz-column-gap: calc(3 * 1rem / var(--font-size__base));
         column-gap: calc(3 * 1rem / var(--font-size__base));
    grid-template-columns: calc(22 * 1rem / var(--font-size__base)) 1fr calc(22 * 1rem / var(--font-size__base));
  }
  .m-accordion__button-title {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-accordion__button-icon {
    width: calc(22 * 1rem / var(--font-size__base));
    height: calc(22 * 1rem / var(--font-size__base));
  }
  .m-accordion__button-icon::before,
  .m-accordion__button-icon::after {
    width: calc(11 * 1rem / var(--font-size__base));
  }
  .m-accordion__panel-content {
    -moz-column-gap: calc(3 * 1rem / var(--font-size__base));
         column-gap: calc(3 * 1rem / var(--font-size__base));
  }
  .m-accordion__panel-title {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-about {
    padding-top: min(55 / 375 * 100vw, 100 * 1rem / var(--font-size__base));
  }
  .m-about__inner {
    --_padding-inline: 20;
  }
  .m-about__text {
    font-size: calc(16 * 1rem / var(--font-size__base));
    line-height: 1.4;
    text-align: left;
  }
  .m-about__text--sp {
    display: block;
    padding-top: calc(16 * 1rem / var(--font-size__base));
  }
  .l-page .footer-pagetop.on {
    bottom: calc(64 * 1rem / var(--font-size__base));
  }
  .p-tsudoeo__animation {
    overflow-x: hidden;
  }
  .p-tsudoeo__animation .l-inner {
    --_padding-inline: 0;
  }
  .p-tsudoeo__category {
    margin-top: calc(-4 * 1rem / var(--font-size__base));
  }
  .p-event__movie {
    margin-top: calc(40 * 1rem / var(--font-size__base));
  }
  .p-event__voice {
    margin-top: calc(40 * 1rem / var(--font-size__base));
  }
  .u-only--pc {
    display: none;
  }
}

@media (max-width: 375px){
  html {
    font-size: calc(var(--_font-size) / var(--_width) * 100vw);
  }
}

@media (any-hover: hover){
  .m-icon-link--line:hover {
    color: var(--color__line);
  }
  .m-icon-link--x:hover {
    color: var(--color__x);
  }
  .m-icon-link--instagram:hover {
    color: var(--color__instagram);
  }
  .m-icon-link--facebook:hover {
    color: var(--color__facebook);
  }
  .m-icon-link--youtube:hover {
    color: var(--color__youtube);
  }
  .m-icon-button:hover {
    color: #fff;
    filter: none;
    opacity: var(--opacity__hover);
  }
  .m-form-table__acceptance a:hover {
    color: var(--color__accent);
    text-decoration: none;
  }
  .m-form-table__submit > p:hover::after {
    background: #f5e88a;
    box-shadow: 0 0 12px rgba(245, 232, 138, 0.8);
  }
  .m-form-table__confirm-button:not(:disabled):hover::after {
    background: #f5e88a;
    box-shadow: 0 0 12px rgba(245, 232, 138, 0.8);
  }
  .m-form-table__back-button:hover {
    background-color: #a59c5f;
  }
  .m-event-button:hover {
    color: var(--_color__text);
    opacity: var(--opacity__hover);
  }
  .m-event-about__text-link:hover {
    color: var(--color__blue);
  }
  .m-category__item:hover {
    color: var(--color__text);
  }
  .m-button:hover {
    color: var(--_color__main);
    background-color: var(--_color__sub);
    filter: unset;
  }
  .m-bottom-nav__link:hover {
    color: var(--color__text);
    opacity: var(--opacity__hover);
  }
  .u-hover--opacity:hover {
    opacity: var(--opacity__hover);
  }
  .u-hover--drop-shadow:hover {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    transform: translateZ(0);
  }
  .u-hover--color-main:hover {
    color: var(--color__main);
  }
  .u-hover--underline-1px:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .u-hover--underline-2px:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}