@charset "UTF-8";
:root {
  --transition: 0.5s ease-in-out;
  --scrollbar: 12px;
  --w-100vw: calc(100dvw - var(--scrollbar));
  --color-sub: var(--color-main);
  --color-accent: var(--color-main);
  --color-main_base: #84671e;
  --color-main_light: #d6ad45;
  --color-main_dark: #695c3d;
  --color-text-base: #444;
  --color-text-title: #222;
  --color-text_white: #fff;
  --color-text_light-white: #fff;
  --color-text_dark-white: #3c3c3c;
  --color-bg_white: #f2f2f2;
  --color-bg_dark: #222;
  --color-bg_light: rgba(243, 233, 214, 0.15);
  --color-button_gray: var(--color-text-base);
  --color-border: var(--color-main_base);
  --color-border_light: rgba(243, 233, 214, 0.4);
  --color-border_table-head: #dfd8cb;
  --color-border_table-body: #eae5d6;
  --color-blockquote: #f6f3ee;
  --text-thin: 100;
  --text-normal: 500;
  --text-bold: 700;
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-sub: "Noto Serif JP", "游明朝", "Yu Mincho", yumincho, "Hiragino Mincho ProN", "HGS明朝E", serif;
  --font-sub_light: "Libre Caslon Display", "Noto Serif JP", "游明朝", "Yu Mincho", yumincho, "Hiragino Mincho ProN", "HGS明朝E", serif;
  --font-title: "Squada One", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --text-xs: calc(12 / 375 * (100dvw - var(--scrollbar)));
  --text-sm: calc(14 / 375 * (100dvw - var(--scrollbar)));
  --text-md: calc(13 / 375 * (100dvw - var(--scrollbar)));
  --text-lg_sm: calc(18 / 375 * (100dvw - var(--scrollbar)));
  --text-lg: calc(24 / 375 * (100dvw - var(--scrollbar)));
  --text-xl: calc(32 / 375 * (100dvw - var(--scrollbar)));
  --section-m_xs: 16px;
  --section-m_sm: 32px;
  --section-m_md: 40px;
  --section-m_lg: calc(40 / 375 * (100dvw - var(--scrollbar)));
  --section-m_xl: calc(56 / 375 * (100dvw - var(--scrollbar)));
  --sp-section-m: 20px;
  --contents-m_xs: 5px;
  --contents-m_sm: 8px;
  --contents-m_md: 16px;
  --contents-m_lg: 24px;
  --contents-m_xl: 32px;
  --header-logo_w: 110px;
  --header-logo_h: 78px;
  --border-w: 1px;
  --border: var(--border-w) solid var(--color-border);
  --border_table-head: var(--border-w) solid var(--color-border_table-head);
  --border_table-body: var(--border-w) solid var(--color-border_table-body);
  --button-border: var(--button-border-w) solid var(--color-text-title);
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  --img-logo: url(/files/94/secp/assets/img/common/logo.png);
  --img-bg: url(/files/94/secp/assets/img/common/bg.jpg);
  --img-contents-rich-card_bg: url(/files/94/secp/assets/img/page/common/contents-rich-card_bg.jpg);
  --icon_arrow-left: url(/files/94/secp/assets/img/common/icon/icon_arrow-left.svg);
  --icon_arrow-right: url(/files/94/secp/assets/img/common/icon/icon_arrow-right.svg);
  --icon_arrow-angles-left: url(/files/94/secp/assets/img/common/icon/icon_arrow-angles-left.svg);
  --icon_arrow-angles-right: url(/files/94/secp/assets/img/common/icon/icon_arrow-angles-right.svg);
  --icon_accordion-toggle: url(/files/94/secp/assets/img/common/icon/icon_accordion-toggle.svg);
  --icon_link-blank: url(/files/94/secp/assets/img/common/icon/icon_link-blank.svg);
}

html {
  --mq-sp: 480px;
  --mq-tb: 800px;
  --mq-pc: 1200px;
  --mq-base: 800px;
  --header_h: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-size-adjust: ex-height 0.499;
}

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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  width: 100%;
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

picture {
  display: block;
}

picture img {
  width: 100%;
  height: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border-style: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 350px;
  min-height: 100vh;
  font-family: var(--font-base);
  font-size: var(--text-md);
  font-weight: var(--text-normal);
  line-height: normal;
  color: var(--color-text-base);
  letter-spacing: 0.06;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  color: var(--color-text_light-white);
  background-color: var(--color-main_base);
}

::selection {
  color: var(--color-text_light-white);
  background-color: var(--color-main_base);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 6px;
  margin: -1px;
  background: var(--color-text_white);
  border: var(--border);
  border-color: var(--color-border_light);
}

*::-webkit-scrollbar-thumb {
  background: var(--color-main_base);
}

body::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  margin: -1px;
  background: var(--color-main_dark);
  border: var(--border);
  border-color: var(--color-border_light);
}

body::-webkit-scrollbar-thumb {
  background: var(--color-border_light);
}

section {
  position: relative;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  opacity: 0;
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.main {
  flex: 1;
  background-color: var(--color-bg_white);
}

.section-inner {
  flex: 1;
}

.section-container {
  position: relative;
  z-index: 1;
  padding: var(--section-m_lg) var(--section-m_side) var(--section-m_xl);
  overflow: hidden;
}

.section-container--dark {
  color: var(--color-text_white);
  background-color: var(--color-bg_dark);
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}

a {
  color: var(--color-text-base);
  word-break: break-all;
  transition: var(--transition);
}

a img {
  transition: var(--transition);
}

a:hover img {
  opacity: 0.7;
}

::-moz-placeholder {
  color: var(--color-main_light);
}

:-ms-input-placeholder {
  color: var(--color-main_light);
}

::placeholder {
  color: var(--color-main_light);
}

table a {
  font-family: var(--font-sub);
  font-weight: var(--text-bold);
  color: var(--color-main_base);
  text-decoration: underline;
  transition: var(--transition);
}

table a:hover {
  opacity: 0.7;
}

table a[target="_blank"]::after {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  content: "";
  background-image: var(--icon_link-blank);
  background-size: contain;
  transform: translateY(0.15em);
}

.button {
  display: block;
  width: 100%;
  font-weight: var(--text-bold);
  color: var(--color-main_light);
  text-align: center;
  background-color: var(--color-bg_dark);
  border-color: var(--color-main_light);
  border-style: solid;
  border-radius: 1000px;
}

.button:hover {
  color: var(--color-bg_dark);
  background-color: var(--color-main_light);
  border-color: var(--color-main_light);
}

.button.--sm {
  display: table;
  width: auto;
  min-width: 300px;
  padding: 0.95em;
  margin-right: auto;
  margin-left: auto;
  font-size: 1em;
}

.button--active {
  color: var(--color-bg_dark);
  background-color: var(--color-main_light);
  border-color: var(--color-main_light);
}

.button--border {
  color: var(--color-text_white);
  background-color: var(--color-bg_dark);
  border: var(--button-border);
  border-color: var(--color-text_white);
}

.button--border:hover {
  color: var(--color-bg_dark);
  background-color: var(--color-text_white);
  border-color: var(--color-text_white);
}

.button--gray {
  color: var(--color-text_white);
  pointer-events: none;
  background-color: var(--color-button_gray);
  border-color: var(--color-button_gray);
}

.btn-center {
  margin-right: auto !important;
  margin-left: auto !important;
}

.btn-worning-text {
  margin-top: 0.5em;
  font-size: 0.9em;
  text-align: center;
}

.accordion {
  margin: -1px;
  margin-right: 0;
  border: var(--border);
}

.accordion__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-main_base);
  cursor: pointer;
}

.accordion__title::after {
  content: "";
  background-image: var(--icon_accordion-toggle);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.accordion__title:has(+ .accordion__open)::after {
  rotate: 180deg;
}

.faq-link .accordion__title::after {
  rotate: -90deg;
}

.faq-link[target="_blank"] .accordion__title::after {
  rotate: 0deg;
  background-image: var(--icon_link-blank);
  background-size: contain;
  transform: translateY(0.15em);
}

.accordion__title-text {
  display: flex;
  flex-direction: column;
}

.accordion__title-main {
  font-family: var(--font-title);
}

.accordion__title-sub {
  font-family: var(--font-sub);
  font-weight: var(--text-bold);
}

.accordion__contents {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}

.accordion__open.accordion__contents {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.accordion__contents-main {
  border-top: var(--border-w) solid var(--color-border_table-head);
}

.accordion__contents-main-text p {
  white-space: pre-line;
}

.accordion__contents-main-text + .accordion {
  margin-top: 1.25em;
}

.accordion--sm .accordion__title-text {
  gap: 0.15em;
}

.accordion--sm .accordion__title-main {
  font-size: var(--text-lg_sm);
}

.accordion--sm .accordion__title-sub {
  font-size: var(--text-md);
}

.accordion--xs .accordion__title-text {
  gap: 0.15em;
}

.accordion--xs .accordion__title-main {
  font-size: var(--text-lg_sm);
}

.accordion--xs .accordion__title-sub {
  font-size: var(--text-md);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0.8em var(--section-m_side);
  margin-top: -1px;
  border: var(--border);
  border-right: 0;
  border-left: 0;
}

.breadcrumb:not(:has(.breadcrumb__item)) {
  padding: 0;
  border-top: 0;
}

.breadcrumb__item {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.breadcrumb__item::after {
  display: block;
  width: 0.8em;
  height: 0.8em;
  margin-top: 0.1em;
  content: "";
  background-image: var(--icon_arrow-right);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.breadcrumb__item:last-of-type::after {
  display: none;
}

a.breadcrumb__item-text:hover {
  color: var(--color-main_base);
}

.footer a.breadcrumb__item-text:hover {
  color: var(--color-text_light-white);
}

.breadcrumb__item-text {
  display: block;
}

.breadcrumb__item--current {
  color: var(--color-main_base);
}

.cms-tag {
  position: fixed;
  right: 20px;
  bottom: 36px;
  z-index: 999;
  width: 300px;
  background: #fff;
  transition: var(--transition);
}

.cms-tag:has(.accordion__open) {
  width: 90%;
}

.cms-tag .accordion__contents-main {
  max-height: 80dvh;
  overflow-y: scroll;
}

.color-main {
  color: var(--color-main);
}

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

.color-main_light {
  color: var(--color-main_light);
}

.bg-main_light {
  background-color: var(--color-main_light);
}

.color-main_light2 {
  color: var(--color-main_light2);
}

.bg-main_light2 {
  background-color: var(--color-main_light2);
}

.color-red {
  color: var(--color-red);
}

.bg-red {
  background-color: var(--color-red);
}

.color-green {
  color: var(--color-green);
}

.bg-green {
  background-color: var(--color-green);
}

.color-text {
  color: var(--color-text);
}

.bg-text {
  background-color: var(--color-text);
}

.color-text2 {
  color: var(--color-text2);
}

.bg-text2 {
  background-color: var(--color-text2);
}

.color-text_white {
  color: var(--color-text_white);
}

.bg-text_white {
  background-color: var(--color-text_white);
}

.color-bg_base {
  color: var(--color-bg_base);
}

.bg-bg_base {
  background-color: var(--color-bg_base);
}

.color-bg_white {
  color: var(--color-bg_white);
}

.bg-bg_white {
  background-color: var(--color-bg_white);
}

.color-table_gray {
  color: var(--color-table_gray);
}

.bg-table_gray {
  background-color: var(--color-table_gray);
}

.color-btn {
  color: var(--color-btn);
}

.bg-btn {
  background-color: var(--color-btn);
}

.color-btn_gray {
  color: var(--color-btn_gray);
}

.bg-btn_gray {
  background-color: var(--color-btn_gray);
}

.color-border {
  color: var(--color-border);
}

.bg-border {
  background-color: var(--color-border);
}

.color-border_table {
  color: var(--color-border_table);
}

.bg-border_table {
  background-color: var(--color-border_table);
}

.bg-table-red {
  background-color: #ffe6e6;
}

.contents-card-box {
  display: flex;
  flex-wrap: wrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.contents-card {
  flex: 0 0 auto;
  width: var(--w-grid-item);
  margin-top: -1px;
  margin-left: -1px;
  border: var(--border);
}

.contents-card__link {
  position: relative;
  display: block;
  height: 100%;
  transition: var(--transition);
}

.contents-card__link:hover {
  color: var(--color-text_light-white);
  background: var(--color-main_base);
  --color-text-base: var(--color-text_light-white);
}

.contents-card__link:hover .contents-tag {
  --color-main_base: var(--color-text_light-white);
}

.contents-card__link:hover .contents-card__img {
  filter: brightness(1.2);
  scale: 1.1;
  opacity: 1;
}

.contents-card__link[target="_blank"] .contents-card__text-box {
  position: relative;
}

.contents-card__link[target="_blank"] .contents-card__text-box::after {
  position: absolute;
  display: block;
  margin: auto;
  content: "";
  background-image: var(--icon_link-blank);
  background-repeat: no-repeat;
  background-size: contain;
}

.contents-card__link[target="_blank"]:hover .contents-card__text-box::after {
  mix-blend-mode: screen;
}

.contents-card__img-box {
  width: 100%;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
}

.video-main__item .contents-card__img-box {
  aspect-ratio: 1920 / 1080;
}

.contents-card__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: var(--transition);
}

.contents-list-box {
  flex: 1;
}

.contents-list {
  flex: 1;
  width: 100%;
  margin-bottom: -1px;
  border-bottom: var(--border);
}

.contents-list__link {
  position: relative;
  display: block;
  transition: var(--transition);
}

.contents-list__link:hover {
  color: var(--color-text_light-white);
  background: var(--color-main_base);
  --color-text-base: var(--color-text_light-white);
}

.contents-list__link:hover .contents-tag {
  --color-main_base: var(--color-text_light-white);
}

.contents-list__link[target="_blank"]::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  content: "";
  background-image: var(--icon_link-blank);
  background-repeat: no-repeat;
  background-size: contain;
}

.contents-list__link[target="_blank"]:hover::after {
  mix-blend-mode: screen;
}

.contents-list__link[target="_blank"] .contents-list__title {
  padding-right: 2em;
}

.contents-list__mult-title-box {
  display: flex;
  flex-direction: column;
  font-weight: var(--text-normal);
  color: var(--color-main_base);
}

.contents-list__link:hover .contents-list__mult-title-box {
  --color-main_base: var(--color-text_light-white);
}

.contents-list__mult-title-main {
  font-family: var(--font-title);
}

.contents-list__mult-title-sub {
  font-family: var(--font-sub);
  font-weight: var(--text-bold);
}

.contents-m--xs {
  margin-top: var(--contents-m_xs);
  margin-bottom: var(--contents-m_xs);
}

.contents-mt--xs {
  margin-top: var(--contents-m_xs);
}

.contents-mb--xs {
  margin-bottom: var(--contents-m_xs);
}

.contents-m--sm {
  margin-top: var(--contents-m_sm);
  margin-bottom: var(--contents-m_sm);
}

.contents-mt--sm {
  margin-top: var(--contents-m_sm);
}

.contents-mb--sm {
  margin-bottom: var(--contents-m_sm);
}

.contents-m--md {
  margin-top: var(--contents-m_md);
  margin-bottom: var(--contents-m_md);
}

.contents-mt--md {
  margin-top: var(--contents-m_md);
}

.contents-mb--md {
  margin-bottom: var(--contents-m_md);
}

.contents-m--lg {
  margin-top: var(--contents-m_lg);
  margin-bottom: var(--contents-m_lg);
}

.contents-mt--lg {
  margin-top: var(--contents-m_lg);
}

.contents-mb--lg {
  margin-bottom: var(--contents-m_lg);
}

.contents-m--xl {
  margin-top: var(--contents-m_xl);
  margin-bottom: var(--contents-m_xl);
}

.contents-mt--xl {
  margin-top: var(--contents-m_xl);
}

.contents-mb--xl {
  margin-bottom: var(--contents-m_xl);
}

.contents-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contents-meta__cate {
  display: inline-block;
  border: 1px solid var(--color-text-base);
}

a.contents-meta__cate:hover {
  color: var(--color-text_light-white);
  background: var(--color-main_base);
  border-color: var(--color-main_base);
}

.contents-meta__date {
  display: flex;
  gap: 0.25em;
}

.contents-meta__date-text {
  margin-left: 0.5em;
}

.contents-not {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: var(--text-lg);
  color: var(--color-main_base);
  text-align: center;
}

.contents-p--xs {
  padding-top: var(--contents-m_xs);
  padding-bottom: var(--contents-m_xs);
}

.contents-pt--xs {
  padding-top: var(--contents-m_xs);
}

.contents-pb--xs {
  padding-bottom: var(--contents-m_xs);
}

.contents-p--sm {
  padding-top: var(--contents-m_sm);
  padding-bottom: var(--contents-m_sm);
}

.contents-pt--sm {
  padding-top: var(--contents-m_sm);
}

.contents-pb--sm {
  padding-bottom: var(--contents-m_sm);
}

.contents-p--md {
  padding-top: var(--contents-m_md);
  padding-bottom: var(--contents-m_md);
}

.contents-pt--md {
  padding-top: var(--contents-m_md);
}

.contents-pb--md {
  padding-bottom: var(--contents-m_md);
}

.contents-p--lg {
  padding-top: var(--contents-m_lg);
  padding-bottom: var(--contents-m_lg);
}

.contents-pt--lg {
  padding-top: var(--contents-m_lg);
}

.contents-pb--lg {
  padding-bottom: var(--contents-m_lg);
}

.contents-rich-card-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1px;
  overflow-x: auto;
  overflow-y: hidden;
  background-color: rgba(68, 46, 6, 0.1);
}

.contents-rich-card-box::before, .contents-rich-card-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: repeat;
  background-size: 100%;
}

.contents-rich-card-box::before {
  background-image: var(--img-contents-rich-card_bg);
  mix-blend-mode: darken;
  opacity: 0.2;
}

.contents-rich-card {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: var(--w-grid-item);
  margin-bottom: -1px;
  margin-left: -1px;
  background-position: center;
  background-size: cover;
  border: var(--border);
}

.contents-rich-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}

.contents-rich-card::before {
  background-color: rgba(68, 46, 6, 0.451);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.contents-rich-card__link {
  position: relative;
  display: block;
  height: 100%;
  transition: var(--transition);
}

.contents-rich-card__link::before, .contents-rich-card__link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}

.contents-rich-card__link::before {
  background-image: var(--img-contents-rich-card_bg);
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.2;
  transition: var(--transition);
}

.contents-rich-card__link::after {
  background-image: var(--img-logo);
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.1;
}

a.contents-rich-card__link:hover {
  filter: brightness(1.35) sepia(0.1) contrast(1.25);
}

a.contents-rich-card__link:hover .contents-rich-card__img {
  mix-blend-mode: hard-light;
}

.contents-rich-card__img-box {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: var(--border);
}

.contents-rich-card__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 460 / 582;
  background: var(--color-bg_light);
  border: var(--border);
  transition: var(--transition);
  -o-object-fit: contain;
  object-fit: contain;
}

.contents-rich-card__text {
  position: relative;
  z-index: 2;
}

.contents-rich-card .contents-card__text-box {
  position: relative;
  z-index: 2;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  color: var(--color-text-base);
  text-shadow: 0 0 20px var(--color-main_dark);
}

.contents-slide {
  flex-wrap: nowrap;
}

.contents-tag {
  display: flex;
  flex-wrap: wrap;
}

.contents-tag:not(:has(.contents-tag__item)) {
  display: none;
}

.contents-tag__text-box {
  display: flex;
  align-items: baseline;
  color: var(--color-main_base);
}

.contents-tag__text-box::before {
  content: "#";
}

.contents-tag__item--custom .contents-tag__text-box::before {
  display: none;
}

a.contents-tag__text-box:hover {
  opacity: 0.7;
}

.dl-item-box {
  display: flex;
  flex-direction: column;
}

.dl-item {
  display: flex;
  border-top: 1px solid var(--color-main_base);
}

.dl-item:first-of-type {
  border: 0;
}

.dl-item__title {
  padding-right: 2em;
  font-family: var(--font-sub);
  font-size: var(--text-md);
  font-weight: var(--text-bold);
  color: var(--color-main_base);
}

.dl-item--sm .dl-item__title {
  width: 100%;
  max-width: 10em;
  font-family: var(--font-title);
  font-weight: var(--text-normal);
  color: var(--color-text-base);
}

.dl-item__text {
  width: 100%;
  color: var(--color-text-base);
}

.dl-item__text a:not([class]) {
  color: var(--color-accent);
  text-decoration: underline;
}

.dl-item__text a:not([class]):hover {
  filter: brightness(120%);
}

.top-module__btn {
  margin-top: 12px;
}

.form-box {
  max-width: 480px;
  margin: auto;
}

.CpLayoutFormContainer + .CpLayoutFormContainer {
  margin-top: 20px;
}

.CpFormTableRow__header {
  display: flex;
  gap: 1em;
  font-weight: var(--text-bold);
}

.CpLayoutForm {
  position: relative;
  display: block;
}

.CpLayoutForm input[type="text"],
.CpLayoutForm input[type="password"] {
  width: 100%;
  height: 40px;
  padding: 0 calc(5px * 2);
  border: 1px solid #999;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.CpLayoutForm input[type="checkbox"],
.CpLayoutForm input[type="radio"] {
  margin-right: 8px;
}

.CpLayoutForm input[size="3"],
.CpLayoutForm input[size="4"],
.CpLayoutForm input[size="5"] {
  width: auto;
}

.CpLayoutForm textarea {
  min-width: 100%;
  height: 200px;
  padding: 0 calc(5px * 2);
  padding-top: calc(5px * 1);
  border: 1px solid #999;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.CpLayoutForm select {
  z-index: 2;
  width: 100%;
  height: 40px;
  padding: 0 calc(5px * 4) 0 calc(5px * 2);
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.CpLayoutForm .CpIconSelectArrow {
  display: none;
}

.CpLayoutForm select + .CpIconSelectArrow {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: block;
  width: 10px;
  pointer-events: none;
}

.CpLayoutForm .CpAlertBubble {
  position: absolute;
}

.CpLayoutForm > br {
  display: none;
}

.CpLayoutFormWrap .CpAlertBubble,
.CpLayoutFormWrap .CpAlertBubble__base,
.CpLayoutFormWrap .CpAlertBubble__base__main {
  position: relative;
}

.CpLayoutForm label {
  display: block;
}

.CpLayoutForm label + label {
  margin-top: 4px;
}

.CpLayoutForm br + input {
  margin-top: 8px;
}

.display-none {
  display: none !important;
}

.border-none {
  border: 0 !important;
}

.border-none-rb {
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.pagination {
  padding: 1.25em;
  margin-top: -1px;
  font-size: var(--text-lg_sm);
  border-top: var(--border);
}

.pagination__item-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination__item a:hover {
  color: var(--color-main_base);
}

.pagination__item a,
.pagination__item span {
  padding: 0 0.75em;
}

.pagination__item-current {
  color: var(--color-main_base);
}

.pagination__item--back a,
.pagination__item--next a,
.pagination__item--first a,
.pagination__item--last a {
  display: block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pagination__item--back a {
  background-image: var(--icon_arrow-left);
}

.pagination__item--next a {
  background-image: var(--icon_arrow-right);
}

.pagination__item--first a {
  background-image: var(--icon_arrow-angles-left);
}

.pagination__item--last a {
  background-image: var(--icon_arrow-angles-right);
}

.p-relative {
  position: relative;
}

.search {
  z-index: 3;
  min-width: 20%;
  background: var(--color-bg_white);
}

.section-strong--dark .search {
  background: var(--color-bg_dark);
}

.section-strong--dark .search .accordion__title::after {
  filter: brightness(2.5);
}

.search-full > .search {
  max-width: none;
}

.search-full > .search .accordion__title,
.search-full > .search .accordion__open {
  padding-right: var(--section-m_side) !important;
  padding-left: var(--section-m_side) !important;
}

.search-full > .search .search-cate__item-text:hover {
  background: var(--color-main_base);
}

.search-title {
  margin-bottom: 0.5em;
  font-family: var(--font-title);
  color: var(--color-main_base);
}

.search-cate {
  display: flex;
  flex-wrap: wrap;
}

.search-cate__item {
  min-width: calc(100% / 2);
  margin-top: -1px;
  margin-right: -1px;
  border: var(--border);
}

.search-cate__item-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.5em;
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--color-main_base);
  text-align: center;
}

.search-cate__item-text:hover,
.search-cate__item-text--current {
  color: var(--color-text_light-white);
  background: var(--color-main_base);
}

.section-strong--dark .search-cate__item-text:hover, .section-strong--dark
.search-cate__item-text--current {
  color: var(--color-bg_dark);
}

.box-shadow {
  box-shadow: var(--box-shadow) !important;
}

.box-shadow-none {
  box-shadow: none !important;
}

table {
  width: 100%;
  color: var(--color-main_base);
  text-align: left;
}

thead {
  border-bottom: var(--border_table-head);
}

thead th {
  font-weight: var(--text-normal);
}

tr {
  border-bottom: var(--border_table-body);
}

tr:last-of-type {
  border: 0;
}

tbody th {
  font-weight: var(--text-normal);
}

.m-auto-block {
  display: table;
}

.m-auto {
  margin-right: auto;
  margin-left: auto;
}

.ml-auto {
  margin-left: auto;
}

.noborder {
  border: 0 !important;
}

.w-0 {
  width: 0px !important;
}

.max-w-0 {
  width: 100%;
  max-width: 0px !important;
}

.min-w-0 {
  max-width: 0px !important;
}

.w-4 {
  width: 4px !important;
}

.max-w-4 {
  width: 100%;
  max-width: 4px !important;
}

.min-w-4 {
  max-width: 4px !important;
}

.w-8 {
  width: 8px !important;
}

.max-w-8 {
  width: 100%;
  max-width: 8px !important;
}

.min-w-8 {
  max-width: 8px !important;
}

.w-12 {
  width: 12px !important;
}

.max-w-12 {
  width: 100%;
  max-width: 12px !important;
}

.min-w-12 {
  max-width: 12px !important;
}

.w-16 {
  width: 16px !important;
}

.max-w-16 {
  width: 100%;
  max-width: 16px !important;
}

.min-w-16 {
  max-width: 16px !important;
}

.w-20 {
  width: 20px !important;
}

.max-w-20 {
  width: 100%;
  max-width: 20px !important;
}

.min-w-20 {
  max-width: 20px !important;
}

.w-24 {
  width: 24px !important;
}

.max-w-24 {
  width: 100%;
  max-width: 24px !important;
}

.min-w-24 {
  max-width: 24px !important;
}

.w-28 {
  width: 28px !important;
}

.max-w-28 {
  width: 100%;
  max-width: 28px !important;
}

.min-w-28 {
  max-width: 28px !important;
}

.w-32 {
  width: 32px !important;
}

.max-w-32 {
  width: 100%;
  max-width: 32px !important;
}

.min-w-32 {
  max-width: 32px !important;
}

.w-36 {
  width: 36px !important;
}

.max-w-36 {
  width: 100%;
  max-width: 36px !important;
}

.min-w-36 {
  max-width: 36px !important;
}

.w-40 {
  width: 40px !important;
}

.max-w-40 {
  width: 100%;
  max-width: 40px !important;
}

.min-w-40 {
  max-width: 40px !important;
}

.w-44 {
  width: 44px !important;
}

.max-w-44 {
  width: 100%;
  max-width: 44px !important;
}

.min-w-44 {
  max-width: 44px !important;
}

.w-48 {
  width: 48px !important;
}

.max-w-48 {
  width: 100%;
  max-width: 48px !important;
}

.min-w-48 {
  max-width: 48px !important;
}

.w-52 {
  width: 52px !important;
}

.max-w-52 {
  width: 100%;
  max-width: 52px !important;
}

.min-w-52 {
  max-width: 52px !important;
}

.w-56 {
  width: 56px !important;
}

.max-w-56 {
  width: 100%;
  max-width: 56px !important;
}

.min-w-56 {
  max-width: 56px !important;
}

.w-60 {
  width: 60px !important;
}

.max-w-60 {
  width: 100%;
  max-width: 60px !important;
}

.min-w-60 {
  max-width: 60px !important;
}

.w-64 {
  width: 64px !important;
}

.max-w-64 {
  width: 100%;
  max-width: 64px !important;
}

.min-w-64 {
  max-width: 64px !important;
}

.w-68 {
  width: 68px !important;
}

.max-w-68 {
  width: 100%;
  max-width: 68px !important;
}

.min-w-68 {
  max-width: 68px !important;
}

.w-72 {
  width: 72px !important;
}

.max-w-72 {
  width: 100%;
  max-width: 72px !important;
}

.min-w-72 {
  max-width: 72px !important;
}

.w-76 {
  width: 76px !important;
}

.max-w-76 {
  width: 100%;
  max-width: 76px !important;
}

.min-w-76 {
  max-width: 76px !important;
}

.w-80 {
  width: 80px !important;
}

.max-w-80 {
  width: 100%;
  max-width: 80px !important;
}

.min-w-80 {
  max-width: 80px !important;
}

.w-84 {
  width: 84px !important;
}

.max-w-84 {
  width: 100%;
  max-width: 84px !important;
}

.min-w-84 {
  max-width: 84px !important;
}

.w-88 {
  width: 88px !important;
}

.max-w-88 {
  width: 100%;
  max-width: 88px !important;
}

.min-w-88 {
  max-width: 88px !important;
}

.w-92 {
  width: 92px !important;
}

.max-w-92 {
  width: 100%;
  max-width: 92px !important;
}

.min-w-92 {
  max-width: 92px !important;
}

.w-96 {
  width: 96px !important;
}

.max-w-96 {
  width: 100%;
  max-width: 96px !important;
}

.min-w-96 {
  max-width: 96px !important;
}

.w-100 {
  width: 100px !important;
}

.max-w-100 {
  width: 100%;
  max-width: 100px !important;
}

.min-w-100 {
  max-width: 100px !important;
}

.w-104 {
  width: 104px !important;
}

.max-w-104 {
  width: 100%;
  max-width: 104px !important;
}

.min-w-104 {
  max-width: 104px !important;
}

.w-108 {
  width: 108px !important;
}

.max-w-108 {
  width: 100%;
  max-width: 108px !important;
}

.min-w-108 {
  max-width: 108px !important;
}

.w-112 {
  width: 112px !important;
}

.max-w-112 {
  width: 100%;
  max-width: 112px !important;
}

.min-w-112 {
  max-width: 112px !important;
}

.w-116 {
  width: 116px !important;
}

.max-w-116 {
  width: 100%;
  max-width: 116px !important;
}

.min-w-116 {
  max-width: 116px !important;
}

.w-120 {
  width: 120px !important;
}

.max-w-120 {
  width: 100%;
  max-width: 120px !important;
}

.min-w-120 {
  max-width: 120px !important;
}

.w-124 {
  width: 124px !important;
}

.max-w-124 {
  width: 100%;
  max-width: 124px !important;
}

.min-w-124 {
  max-width: 124px !important;
}

.w-128 {
  width: 128px !important;
}

.max-w-128 {
  width: 100%;
  max-width: 128px !important;
}

.min-w-128 {
  max-width: 128px !important;
}

.w-132 {
  width: 132px !important;
}

.max-w-132 {
  width: 100%;
  max-width: 132px !important;
}

.min-w-132 {
  max-width: 132px !important;
}

.w-136 {
  width: 136px !important;
}

.max-w-136 {
  width: 100%;
  max-width: 136px !important;
}

.min-w-136 {
  max-width: 136px !important;
}

.w-140 {
  width: 140px !important;
}

.max-w-140 {
  width: 100%;
  max-width: 140px !important;
}

.min-w-140 {
  max-width: 140px !important;
}

.w-144 {
  width: 144px !important;
}

.max-w-144 {
  width: 100%;
  max-width: 144px !important;
}

.min-w-144 {
  max-width: 144px !important;
}

.w-148 {
  width: 148px !important;
}

.max-w-148 {
  width: 100%;
  max-width: 148px !important;
}

.min-w-148 {
  max-width: 148px !important;
}

.w-152 {
  width: 152px !important;
}

.max-w-152 {
  width: 100%;
  max-width: 152px !important;
}

.min-w-152 {
  max-width: 152px !important;
}

.w-156 {
  width: 156px !important;
}

.max-w-156 {
  width: 100%;
  max-width: 156px !important;
}

.min-w-156 {
  max-width: 156px !important;
}

.w-160 {
  width: 160px !important;
}

.max-w-160 {
  width: 100%;
  max-width: 160px !important;
}

.min-w-160 {
  max-width: 160px !important;
}

.w-164 {
  width: 164px !important;
}

.max-w-164 {
  width: 100%;
  max-width: 164px !important;
}

.min-w-164 {
  max-width: 164px !important;
}

.w-168 {
  width: 168px !important;
}

.max-w-168 {
  width: 100%;
  max-width: 168px !important;
}

.min-w-168 {
  max-width: 168px !important;
}

.w-172 {
  width: 172px !important;
}

.max-w-172 {
  width: 100%;
  max-width: 172px !important;
}

.min-w-172 {
  max-width: 172px !important;
}

.w-176 {
  width: 176px !important;
}

.max-w-176 {
  width: 100%;
  max-width: 176px !important;
}

.min-w-176 {
  max-width: 176px !important;
}

.w-180 {
  width: 180px !important;
}

.max-w-180 {
  width: 100%;
  max-width: 180px !important;
}

.min-w-180 {
  max-width: 180px !important;
}

.w-184 {
  width: 184px !important;
}

.max-w-184 {
  width: 100%;
  max-width: 184px !important;
}

.min-w-184 {
  max-width: 184px !important;
}

.w-188 {
  width: 188px !important;
}

.max-w-188 {
  width: 100%;
  max-width: 188px !important;
}

.min-w-188 {
  max-width: 188px !important;
}

.w-192 {
  width: 192px !important;
}

.max-w-192 {
  width: 100%;
  max-width: 192px !important;
}

.min-w-192 {
  max-width: 192px !important;
}

.w-196 {
  width: 196px !important;
}

.max-w-196 {
  width: 100%;
  max-width: 196px !important;
}

.min-w-196 {
  max-width: 196px !important;
}

.w-200 {
  width: 200px !important;
}

.max-w-200 {
  width: 100%;
  max-width: 200px !important;
}

.min-w-200 {
  max-width: 200px !important;
}

.w-204 {
  width: 204px !important;
}

.max-w-204 {
  width: 100%;
  max-width: 204px !important;
}

.min-w-204 {
  max-width: 204px !important;
}

.w-208 {
  width: 208px !important;
}

.max-w-208 {
  width: 100%;
  max-width: 208px !important;
}

.min-w-208 {
  max-width: 208px !important;
}

.w-212 {
  width: 212px !important;
}

.max-w-212 {
  width: 100%;
  max-width: 212px !important;
}

.min-w-212 {
  max-width: 212px !important;
}

.w-216 {
  width: 216px !important;
}

.max-w-216 {
  width: 100%;
  max-width: 216px !important;
}

.min-w-216 {
  max-width: 216px !important;
}

.w-220 {
  width: 220px !important;
}

.max-w-220 {
  width: 100%;
  max-width: 220px !important;
}

.min-w-220 {
  max-width: 220px !important;
}

.w-224 {
  width: 224px !important;
}

.max-w-224 {
  width: 100%;
  max-width: 224px !important;
}

.min-w-224 {
  max-width: 224px !important;
}

.w-228 {
  width: 228px !important;
}

.max-w-228 {
  width: 100%;
  max-width: 228px !important;
}

.min-w-228 {
  max-width: 228px !important;
}

.w-232 {
  width: 232px !important;
}

.max-w-232 {
  width: 100%;
  max-width: 232px !important;
}

.min-w-232 {
  max-width: 232px !important;
}

.w-236 {
  width: 236px !important;
}

.max-w-236 {
  width: 100%;
  max-width: 236px !important;
}

.min-w-236 {
  max-width: 236px !important;
}

.w-240 {
  width: 240px !important;
}

.max-w-240 {
  width: 100%;
  max-width: 240px !important;
}

.min-w-240 {
  max-width: 240px !important;
}

.w-244 {
  width: 244px !important;
}

.max-w-244 {
  width: 100%;
  max-width: 244px !important;
}

.min-w-244 {
  max-width: 244px !important;
}

.w-248 {
  width: 248px !important;
}

.max-w-248 {
  width: 100%;
  max-width: 248px !important;
}

.min-w-248 {
  max-width: 248px !important;
}

.w-252 {
  width: 252px !important;
}

.max-w-252 {
  width: 100%;
  max-width: 252px !important;
}

.min-w-252 {
  max-width: 252px !important;
}

.w-256 {
  width: 256px !important;
}

.max-w-256 {
  width: 100%;
  max-width: 256px !important;
}

.min-w-256 {
  max-width: 256px !important;
}

.w-260 {
  width: 260px !important;
}

.max-w-260 {
  width: 100%;
  max-width: 260px !important;
}

.min-w-260 {
  max-width: 260px !important;
}

.w-264 {
  width: 264px !important;
}

.max-w-264 {
  width: 100%;
  max-width: 264px !important;
}

.min-w-264 {
  max-width: 264px !important;
}

.w-268 {
  width: 268px !important;
}

.max-w-268 {
  width: 100%;
  max-width: 268px !important;
}

.min-w-268 {
  max-width: 268px !important;
}

.w-272 {
  width: 272px !important;
}

.max-w-272 {
  width: 100%;
  max-width: 272px !important;
}

.min-w-272 {
  max-width: 272px !important;
}

.w-276 {
  width: 276px !important;
}

.max-w-276 {
  width: 100%;
  max-width: 276px !important;
}

.min-w-276 {
  max-width: 276px !important;
}

.w-280 {
  width: 280px !important;
}

.max-w-280 {
  width: 100%;
  max-width: 280px !important;
}

.min-w-280 {
  max-width: 280px !important;
}

.w-284 {
  width: 284px !important;
}

.max-w-284 {
  width: 100%;
  max-width: 284px !important;
}

.min-w-284 {
  max-width: 284px !important;
}

.w-288 {
  width: 288px !important;
}

.max-w-288 {
  width: 100%;
  max-width: 288px !important;
}

.min-w-288 {
  max-width: 288px !important;
}

.w-292 {
  width: 292px !important;
}

.max-w-292 {
  width: 100%;
  max-width: 292px !important;
}

.min-w-292 {
  max-width: 292px !important;
}

.w-296 {
  width: 296px !important;
}

.max-w-296 {
  width: 100%;
  max-width: 296px !important;
}

.min-w-296 {
  max-width: 296px !important;
}

.w-300 {
  width: 300px !important;
}

.max-w-300 {
  width: 100%;
  max-width: 300px !important;
}

.min-w-300 {
  max-width: 300px !important;
}

.w-304 {
  width: 304px !important;
}

.max-w-304 {
  width: 100%;
  max-width: 304px !important;
}

.min-w-304 {
  max-width: 304px !important;
}

.w-308 {
  width: 308px !important;
}

.max-w-308 {
  width: 100%;
  max-width: 308px !important;
}

.min-w-308 {
  max-width: 308px !important;
}

.w-312 {
  width: 312px !important;
}

.max-w-312 {
  width: 100%;
  max-width: 312px !important;
}

.min-w-312 {
  max-width: 312px !important;
}

.w-316 {
  width: 316px !important;
}

.max-w-316 {
  width: 100%;
  max-width: 316px !important;
}

.min-w-316 {
  max-width: 316px !important;
}

.w-320 {
  width: 320px !important;
}

.max-w-320 {
  width: 100%;
  max-width: 320px !important;
}

.min-w-320 {
  max-width: 320px !important;
}

.w-324 {
  width: 324px !important;
}

.max-w-324 {
  width: 100%;
  max-width: 324px !important;
}

.min-w-324 {
  max-width: 324px !important;
}

.w-328 {
  width: 328px !important;
}

.max-w-328 {
  width: 100%;
  max-width: 328px !important;
}

.min-w-328 {
  max-width: 328px !important;
}

.w-332 {
  width: 332px !important;
}

.max-w-332 {
  width: 100%;
  max-width: 332px !important;
}

.min-w-332 {
  max-width: 332px !important;
}

.w-336 {
  width: 336px !important;
}

.max-w-336 {
  width: 100%;
  max-width: 336px !important;
}

.min-w-336 {
  max-width: 336px !important;
}

.w-340 {
  width: 340px !important;
}

.max-w-340 {
  width: 100%;
  max-width: 340px !important;
}

.min-w-340 {
  max-width: 340px !important;
}

.w-344 {
  width: 344px !important;
}

.max-w-344 {
  width: 100%;
  max-width: 344px !important;
}

.min-w-344 {
  max-width: 344px !important;
}

.w-348 {
  width: 348px !important;
}

.max-w-348 {
  width: 100%;
  max-width: 348px !important;
}

.min-w-348 {
  max-width: 348px !important;
}

.w-352 {
  width: 352px !important;
}

.max-w-352 {
  width: 100%;
  max-width: 352px !important;
}

.min-w-352 {
  max-width: 352px !important;
}

.w-356 {
  width: 356px !important;
}

.max-w-356 {
  width: 100%;
  max-width: 356px !important;
}

.min-w-356 {
  max-width: 356px !important;
}

.w-360 {
  width: 360px !important;
}

.max-w-360 {
  width: 100%;
  max-width: 360px !important;
}

.min-w-360 {
  max-width: 360px !important;
}

.w-364 {
  width: 364px !important;
}

.max-w-364 {
  width: 100%;
  max-width: 364px !important;
}

.min-w-364 {
  max-width: 364px !important;
}

.w-368 {
  width: 368px !important;
}

.max-w-368 {
  width: 100%;
  max-width: 368px !important;
}

.min-w-368 {
  max-width: 368px !important;
}

.w-372 {
  width: 372px !important;
}

.max-w-372 {
  width: 100%;
  max-width: 372px !important;
}

.min-w-372 {
  max-width: 372px !important;
}

.w-376 {
  width: 376px !important;
}

.max-w-376 {
  width: 100%;
  max-width: 376px !important;
}

.min-w-376 {
  max-width: 376px !important;
}

.w-380 {
  width: 380px !important;
}

.max-w-380 {
  width: 100%;
  max-width: 380px !important;
}

.min-w-380 {
  max-width: 380px !important;
}

.w-384 {
  width: 384px !important;
}

.max-w-384 {
  width: 100%;
  max-width: 384px !important;
}

.min-w-384 {
  max-width: 384px !important;
}

.w-388 {
  width: 388px !important;
}

.max-w-388 {
  width: 100%;
  max-width: 388px !important;
}

.min-w-388 {
  max-width: 388px !important;
}

.w-392 {
  width: 392px !important;
}

.max-w-392 {
  width: 100%;
  max-width: 392px !important;
}

.min-w-392 {
  max-width: 392px !important;
}

.w-396 {
  width: 396px !important;
}

.max-w-396 {
  width: 100%;
  max-width: 396px !important;
}

.min-w-396 {
  max-width: 396px !important;
}

.w-400 {
  width: 400px !important;
}

.max-w-400 {
  width: 100%;
  max-width: 400px !important;
}

.min-w-400 {
  max-width: 400px !important;
}

.w-404 {
  width: 404px !important;
}

.max-w-404 {
  width: 100%;
  max-width: 404px !important;
}

.min-w-404 {
  max-width: 404px !important;
}

.w-408 {
  width: 408px !important;
}

.max-w-408 {
  width: 100%;
  max-width: 408px !important;
}

.min-w-408 {
  max-width: 408px !important;
}

.w-412 {
  width: 412px !important;
}

.max-w-412 {
  width: 100%;
  max-width: 412px !important;
}

.min-w-412 {
  max-width: 412px !important;
}

.w-416 {
  width: 416px !important;
}

.max-w-416 {
  width: 100%;
  max-width: 416px !important;
}

.min-w-416 {
  max-width: 416px !important;
}

.w-420 {
  width: 420px !important;
}

.max-w-420 {
  width: 100%;
  max-width: 420px !important;
}

.min-w-420 {
  max-width: 420px !important;
}

.w-424 {
  width: 424px !important;
}

.max-w-424 {
  width: 100%;
  max-width: 424px !important;
}

.min-w-424 {
  max-width: 424px !important;
}

.w-428 {
  width: 428px !important;
}

.max-w-428 {
  width: 100%;
  max-width: 428px !important;
}

.min-w-428 {
  max-width: 428px !important;
}

.w-432 {
  width: 432px !important;
}

.max-w-432 {
  width: 100%;
  max-width: 432px !important;
}

.min-w-432 {
  max-width: 432px !important;
}

.w-436 {
  width: 436px !important;
}

.max-w-436 {
  width: 100%;
  max-width: 436px !important;
}

.min-w-436 {
  max-width: 436px !important;
}

.w-440 {
  width: 440px !important;
}

.max-w-440 {
  width: 100%;
  max-width: 440px !important;
}

.min-w-440 {
  max-width: 440px !important;
}

.w-444 {
  width: 444px !important;
}

.max-w-444 {
  width: 100%;
  max-width: 444px !important;
}

.min-w-444 {
  max-width: 444px !important;
}

.w-448 {
  width: 448px !important;
}

.max-w-448 {
  width: 100%;
  max-width: 448px !important;
}

.min-w-448 {
  max-width: 448px !important;
}

.w-452 {
  width: 452px !important;
}

.max-w-452 {
  width: 100%;
  max-width: 452px !important;
}

.min-w-452 {
  max-width: 452px !important;
}

.w-456 {
  width: 456px !important;
}

.max-w-456 {
  width: 100%;
  max-width: 456px !important;
}

.min-w-456 {
  max-width: 456px !important;
}

.w-460 {
  width: 460px !important;
}

.max-w-460 {
  width: 100%;
  max-width: 460px !important;
}

.min-w-460 {
  max-width: 460px !important;
}

.w-464 {
  width: 464px !important;
}

.max-w-464 {
  width: 100%;
  max-width: 464px !important;
}

.min-w-464 {
  max-width: 464px !important;
}

.w-468 {
  width: 468px !important;
}

.max-w-468 {
  width: 100%;
  max-width: 468px !important;
}

.min-w-468 {
  max-width: 468px !important;
}

.w-472 {
  width: 472px !important;
}

.max-w-472 {
  width: 100%;
  max-width: 472px !important;
}

.min-w-472 {
  max-width: 472px !important;
}

.w-476 {
  width: 476px !important;
}

.max-w-476 {
  width: 100%;
  max-width: 476px !important;
}

.min-w-476 {
  max-width: 476px !important;
}

.w-480 {
  width: 480px !important;
}

.max-w-480 {
  width: 100%;
  max-width: 480px !important;
}

.min-w-480 {
  max-width: 480px !important;
}

.w-484 {
  width: 484px !important;
}

.max-w-484 {
  width: 100%;
  max-width: 484px !important;
}

.min-w-484 {
  max-width: 484px !important;
}

.w-488 {
  width: 488px !important;
}

.max-w-488 {
  width: 100%;
  max-width: 488px !important;
}

.min-w-488 {
  max-width: 488px !important;
}

.w-492 {
  width: 492px !important;
}

.max-w-492 {
  width: 100%;
  max-width: 492px !important;
}

.min-w-492 {
  max-width: 492px !important;
}

.w-496 {
  width: 496px !important;
}

.max-w-496 {
  width: 100%;
  max-width: 496px !important;
}

.min-w-496 {
  max-width: 496px !important;
}

.w-500 {
  width: 500px !important;
}

.max-w-500 {
  width: 100%;
  max-width: 500px !important;
}

.min-w-500 {
  max-width: 500px !important;
}

.w-504 {
  width: 504px !important;
}

.max-w-504 {
  width: 100%;
  max-width: 504px !important;
}

.min-w-504 {
  max-width: 504px !important;
}

.w-508 {
  width: 508px !important;
}

.max-w-508 {
  width: 100%;
  max-width: 508px !important;
}

.min-w-508 {
  max-width: 508px !important;
}

.w-512 {
  width: 512px !important;
}

.max-w-512 {
  width: 100%;
  max-width: 512px !important;
}

.min-w-512 {
  max-width: 512px !important;
}

.w-516 {
  width: 516px !important;
}

.max-w-516 {
  width: 100%;
  max-width: 516px !important;
}

.min-w-516 {
  max-width: 516px !important;
}

.w-520 {
  width: 520px !important;
}

.max-w-520 {
  width: 100%;
  max-width: 520px !important;
}

.min-w-520 {
  max-width: 520px !important;
}

.w-524 {
  width: 524px !important;
}

.max-w-524 {
  width: 100%;
  max-width: 524px !important;
}

.min-w-524 {
  max-width: 524px !important;
}

.w-528 {
  width: 528px !important;
}

.max-w-528 {
  width: 100%;
  max-width: 528px !important;
}

.min-w-528 {
  max-width: 528px !important;
}

.w-532 {
  width: 532px !important;
}

.max-w-532 {
  width: 100%;
  max-width: 532px !important;
}

.min-w-532 {
  max-width: 532px !important;
}

.w-536 {
  width: 536px !important;
}

.max-w-536 {
  width: 100%;
  max-width: 536px !important;
}

.min-w-536 {
  max-width: 536px !important;
}

.w-540 {
  width: 540px !important;
}

.max-w-540 {
  width: 100%;
  max-width: 540px !important;
}

.min-w-540 {
  max-width: 540px !important;
}

.w-544 {
  width: 544px !important;
}

.max-w-544 {
  width: 100%;
  max-width: 544px !important;
}

.min-w-544 {
  max-width: 544px !important;
}

.w-548 {
  width: 548px !important;
}

.max-w-548 {
  width: 100%;
  max-width: 548px !important;
}

.min-w-548 {
  max-width: 548px !important;
}

.w-552 {
  width: 552px !important;
}

.max-w-552 {
  width: 100%;
  max-width: 552px !important;
}

.min-w-552 {
  max-width: 552px !important;
}

.w-556 {
  width: 556px !important;
}

.max-w-556 {
  width: 100%;
  max-width: 556px !important;
}

.min-w-556 {
  max-width: 556px !important;
}

.w-560 {
  width: 560px !important;
}

.max-w-560 {
  width: 100%;
  max-width: 560px !important;
}

.min-w-560 {
  max-width: 560px !important;
}

.w-564 {
  width: 564px !important;
}

.max-w-564 {
  width: 100%;
  max-width: 564px !important;
}

.min-w-564 {
  max-width: 564px !important;
}

.w-568 {
  width: 568px !important;
}

.max-w-568 {
  width: 100%;
  max-width: 568px !important;
}

.min-w-568 {
  max-width: 568px !important;
}

.w-572 {
  width: 572px !important;
}

.max-w-572 {
  width: 100%;
  max-width: 572px !important;
}

.min-w-572 {
  max-width: 572px !important;
}

.w-576 {
  width: 576px !important;
}

.max-w-576 {
  width: 100%;
  max-width: 576px !important;
}

.min-w-576 {
  max-width: 576px !important;
}

.w-580 {
  width: 580px !important;
}

.max-w-580 {
  width: 100%;
  max-width: 580px !important;
}

.min-w-580 {
  max-width: 580px !important;
}

.w-584 {
  width: 584px !important;
}

.max-w-584 {
  width: 100%;
  max-width: 584px !important;
}

.min-w-584 {
  max-width: 584px !important;
}

.w-588 {
  width: 588px !important;
}

.max-w-588 {
  width: 100%;
  max-width: 588px !important;
}

.min-w-588 {
  max-width: 588px !important;
}

.w-592 {
  width: 592px !important;
}

.max-w-592 {
  width: 100%;
  max-width: 592px !important;
}

.min-w-592 {
  max-width: 592px !important;
}

.w-596 {
  width: 596px !important;
}

.max-w-596 {
  width: 100%;
  max-width: 596px !important;
}

.min-w-596 {
  max-width: 596px !important;
}

.w-600 {
  width: 600px !important;
}

.max-w-600 {
  width: 100%;
  max-width: 600px !important;
}

.min-w-600 {
  max-width: 600px !important;
}

.w-604 {
  width: 604px !important;
}

.max-w-604 {
  width: 100%;
  max-width: 604px !important;
}

.min-w-604 {
  max-width: 604px !important;
}

.w-608 {
  width: 608px !important;
}

.max-w-608 {
  width: 100%;
  max-width: 608px !important;
}

.min-w-608 {
  max-width: 608px !important;
}

.w-612 {
  width: 612px !important;
}

.max-w-612 {
  width: 100%;
  max-width: 612px !important;
}

.min-w-612 {
  max-width: 612px !important;
}

.w-616 {
  width: 616px !important;
}

.max-w-616 {
  width: 100%;
  max-width: 616px !important;
}

.min-w-616 {
  max-width: 616px !important;
}

.w-620 {
  width: 620px !important;
}

.max-w-620 {
  width: 100%;
  max-width: 620px !important;
}

.min-w-620 {
  max-width: 620px !important;
}

.w-624 {
  width: 624px !important;
}

.max-w-624 {
  width: 100%;
  max-width: 624px !important;
}

.min-w-624 {
  max-width: 624px !important;
}

.w-628 {
  width: 628px !important;
}

.max-w-628 {
  width: 100%;
  max-width: 628px !important;
}

.min-w-628 {
  max-width: 628px !important;
}

.w-632 {
  width: 632px !important;
}

.max-w-632 {
  width: 100%;
  max-width: 632px !important;
}

.min-w-632 {
  max-width: 632px !important;
}

.w-636 {
  width: 636px !important;
}

.max-w-636 {
  width: 100%;
  max-width: 636px !important;
}

.min-w-636 {
  max-width: 636px !important;
}

.w-640 {
  width: 640px !important;
}

.max-w-640 {
  width: 100%;
  max-width: 640px !important;
}

.min-w-640 {
  max-width: 640px !important;
}

.order-0-sp {
  order: 0 !important;
}

.order-minus-0-sp {
  order: 0 !important;
}

.order-1-sp {
  order: 1 !important;
}

.order-minus-1-sp {
  order: -1 !important;
}

.order-2-sp {
  order: 2 !important;
}

.order-minus-2-sp {
  order: -2 !important;
}

.order-3-sp {
  order: 3 !important;
}

.order-minus-3-sp {
  order: -3 !important;
}

.order-4-sp {
  order: 4 !important;
}

.order-minus-4-sp {
  order: -4 !important;
}

.order-5-sp {
  order: 5 !important;
}

.order-minus-5-sp {
  order: -5 !important;
}

.order-6-sp {
  order: 6 !important;
}

.order-minus-6-sp {
  order: -6 !important;
}

.order-7-sp {
  order: 7 !important;
}

.order-minus-7-sp {
  order: -7 !important;
}

.order-8-sp {
  order: 8 !important;
}

.order-minus-8-sp {
  order: -8 !important;
}

.order-9-sp {
  order: 9 !important;
}

.order-minus-9-sp {
  order: -9 !important;
}

.order-10-sp {
  order: 10 !important;
}

.order-minus-10-sp {
  order: -10 !important;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-row-between {
  justify-content: space-between;
}

.flex-row-center {
  justify-content: center;
}

.flex-row-stretch {
  justify-content: stretch;
}

.flex-row-end {
  justify-content: flex-end;
}

.flex-col {
  flex-direction: column;
}

.flex-col-baseline {
  align-items: baseline;
}

.flex-col-center {
  align-items: center;
}

.flex-col-start {
  align-items: flex-start;
}

.flex-col-end {
  align-items: flex-end;
}

.flex-col-base {
  align-items: baseline;
}

.flex-fill {
  flex: 1;
}

.gap-0 {
  gap: 0px !important;
}

.gap-row-0 {
  row-gap: 0px !important;
}

.gap-col-0 {
  -moz-column-gap: 0px !important;
  column-gap: 0px !important;
}

.gap-2 {
  gap: 2px !important;
}

.gap-row-2 {
  row-gap: 2px !important;
}

.gap-col-2 {
  -moz-column-gap: 2px !important;
  column-gap: 2px !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-row-4 {
  row-gap: 4px !important;
}

.gap-col-4 {
  -moz-column-gap: 4px !important;
  column-gap: 4px !important;
}

.gap-6 {
  gap: 6px !important;
}

.gap-row-6 {
  row-gap: 6px !important;
}

.gap-col-6 {
  -moz-column-gap: 6px !important;
  column-gap: 6px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-row-8 {
  row-gap: 8px !important;
}

.gap-col-8 {
  -moz-column-gap: 8px !important;
  column-gap: 8px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-row-10 {
  row-gap: 10px !important;
}

.gap-col-10 {
  -moz-column-gap: 10px !important;
  column-gap: 10px !important;
}

.gap-12 {
  gap: 12px !important;
}

.gap-row-12 {
  row-gap: 12px !important;
}

.gap-col-12 {
  -moz-column-gap: 12px !important;
  column-gap: 12px !important;
}

.gap-14 {
  gap: 14px !important;
}

.gap-row-14 {
  row-gap: 14px !important;
}

.gap-col-14 {
  -moz-column-gap: 14px !important;
  column-gap: 14px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-row-16 {
  row-gap: 16px !important;
}

.gap-col-16 {
  -moz-column-gap: 16px !important;
  column-gap: 16px !important;
}

.gap-18 {
  gap: 18px !important;
}

.gap-row-18 {
  row-gap: 18px !important;
}

.gap-col-18 {
  -moz-column-gap: 18px !important;
  column-gap: 18px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-row-20 {
  row-gap: 20px !important;
}

.gap-col-20 {
  -moz-column-gap: 20px !important;
  column-gap: 20px !important;
}

.gap-22 {
  gap: 22px !important;
}

.gap-row-22 {
  row-gap: 22px !important;
}

.gap-col-22 {
  -moz-column-gap: 22px !important;
  column-gap: 22px !important;
}

.gap-24 {
  gap: 24px !important;
}

.gap-row-24 {
  row-gap: 24px !important;
}

.gap-col-24 {
  -moz-column-gap: 24px !important;
  column-gap: 24px !important;
}

.gap-26 {
  gap: 26px !important;
}

.gap-row-26 {
  row-gap: 26px !important;
}

.gap-col-26 {
  -moz-column-gap: 26px !important;
  column-gap: 26px !important;
}

.gap-28 {
  gap: 28px !important;
}

.gap-row-28 {
  row-gap: 28px !important;
}

.gap-col-28 {
  -moz-column-gap: 28px !important;
  column-gap: 28px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-row-30 {
  row-gap: 30px !important;
}

.gap-col-30 {
  -moz-column-gap: 30px !important;
  column-gap: 30px !important;
}

.gap-32 {
  gap: 32px !important;
}

.gap-row-32 {
  row-gap: 32px !important;
}

.gap-col-32 {
  -moz-column-gap: 32px !important;
  column-gap: 32px !important;
}

.gap-34 {
  gap: 34px !important;
}

.gap-row-34 {
  row-gap: 34px !important;
}

.gap-col-34 {
  -moz-column-gap: 34px !important;
  column-gap: 34px !important;
}

.gap-36 {
  gap: 36px !important;
}

.gap-row-36 {
  row-gap: 36px !important;
}

.gap-col-36 {
  -moz-column-gap: 36px !important;
  column-gap: 36px !important;
}

.gap-38 {
  gap: 38px !important;
}

.gap-row-38 {
  row-gap: 38px !important;
}

.gap-col-38 {
  -moz-column-gap: 38px !important;
  column-gap: 38px !important;
}

.gap-40 {
  gap: 40px !important;
}

.gap-row-40 {
  row-gap: 40px !important;
}

.gap-col-40 {
  -moz-column-gap: 40px !important;
  column-gap: 40px !important;
}

.modal {
  position: fixed;
  top: 0;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.modal.modal-open {
  visibility: visible;
  opacity: 1;
}

.modal__bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content-box {
  position: absolute;
  max-height: 90vh;
  margin: auto;
  background: #fff;
  border-radius: 5px;
  transition: var(--transition);
  transform: translateY(20px);
  -ms-overflow-style: none;
}

.modal__content-box::-webkit-scrollbar {
  display: none;
}

.modal-open .modal__content-box {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.modal__content-inner {
  position: relative;
  padding: 24px;
}

.modal__content-inner img {
  max-height: 60vh;
}

.modal__content-inner p.center {
  width: 100%;
  text-align: center;
}

.modal__content-inner a:not([class]) {
  text-decoration: underline;
}

.modal__close {
  position: absolute;
  top: -30px;
  right: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.modal__close::before, .modal__close::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 2px;
  height: 26px;
  margin: auto;
  margin: auto;
  content: "";
  background: var(--color-bg_white);
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

.modal__close:hover {
  opacity: 0.7;
}

.modal__content_detail {
  display: flex;
  flex-flow: column;
}

.modal-open-body {
  height: 100vh;
  overflow-y: hidden;
}

.modal-open-body::-webkit-scrollbar {
  display: none;
}

.modal-open-body .main::-webkit-scrollbar {
  display: none;
}

.js--modal-open {
  cursor: pointer;
}

.js--modal-open:hover {
  opacity: 0.6;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
}

.footer-menu__item:first-of-type {
  display: none;
}

.footer-menu__item-link {
  transition: var(--transition);
}

.footer-menu__item-link:hover {
  opacity: 0.7;
}

.footer-menu__item-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-menu__item-main {
  font-family: var(--font-title);
}

.footer-menu__item-sub {
  font-family: var(--font-sub);
  font-weight: var(--text-bold);
}

.footer-title {
  font-family: var(--font-title);
  color: var(--color-main_light);
}

.footer-sub-menu {
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-sub-menu__item-link {
  color: var(--color-text_white);
  transition: var(--transition);
}

.footer-sub-menu__item-link:hover {
  opacity: 0.7;
}

.footer {
  border-top: var(--border);
  opacity: 0;
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: var(--door-delay-2);
  animation-delay: var(--door-delay-2);
}

.footer-deco-img {
  display: table;
  margin-left: auto;
}

.footer-logo {
  display: block;
}

.menu-sns {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: var(--border);
}

.menu-sns__title {
  font-family: var(--font-title);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.menu-sns__item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-sns__item-img {
  width: 100%;
  min-width: 24px;
  min-height: 20px;
}

.menu-sns__item-link:hover img {
  opacity: 1;
  scale: 0.885;
}

.header-logo {
  position: relative;
  display: block;
  margin-left: var(--section-m_side);
  font-family: var(--font-title);
  color: var(--color-main_base);
  pointer-events: auto;
}

.header-logo_img {
  height: 100%;
}

.header-menu-btn {
  position: relative;
  pointer-events: auto;
  cursor: pointer;
  background: var(--color-bg_dark);
  transition: background-color var(--transition);
}

.header-menu-btn:hover {
  background-color: var(--color-main_light);
  border-color: var(--color-bg_dark);
}

.header-menu-btn:hover .header-menu-btn__text {
  color: var(--color-bg_dark);
}

.header-menu-btn:hover .header-menu-btn__icon {
  fill: var(--color-bg_dark);
}

.header-menu-btn__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-menu-btn__icon {
  width: auto;
  fill: var(--color-main_light);
}

.header-menu-btn__text {
  font-family: "Rethink Sans", sans-serif;
  font-weight: var(--text-bold);
  line-height: 1;
  color: var(--color-main_light);
}

.header-menu-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  color: var(--color-text_light-white);
  background: var(--color-main_base);
  border: var(--border);
  transition: var(--transition);
}

.header-menu-wrap .section-title {
  color: var(--color-text_light-white);
}

.menu-active .header-menu-wrap {
  max-height: 100dvh;
  overflow-x: clip;
  overflow-y: auto;
  background: var(--color-bg_dark);
}

.header-menu-main {
  position: relative;
  display: flex;
}

.header-menu-main::before, .header-menu-main::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(--img-bg);
  background-position: center;
  background-size: cover;
}

.header-menu-main::after {
  background-image: var(--img-logo);
  filter: invert(1) blur(2px);
  background-size: 260%;
  opacity: 0.12;
}

.header-menu-box {
  position: relative;
  z-index: 2;
  flex: 1;
  margin-right: -1px;
}

.header-menu__item-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1px;
}

.header-menu__item {
  width: 50%;
  margin-bottom: -1px;
  border-top: var(--border);
  border-right: var(--border);
  border-bottom: var(--border);
}

.header-menu__item-link {
  display: block;
}

.header-menu__item--current .header-menu__item-link, .header-menu__item-link:hover {
  color: var(--color-text_light-white);
  background: var(--color-main_base);
  opacity: 1;
}

.header-menu__item-text {
  display: flex;
  flex-direction: column;
  color: var(--color-text_light-white);
}

a.header-menu__item-text {
  transition: var(--transition);
}

a.header-menu__item-text:hover {
  opacity: 0.7;
}

.header-menu__item-main {
  font-family: var(--font-title);
  line-height: 0.9;
}

.header-menu__item-sub {
  font-family: var(--font-sub);
  font-weight: var(--text-bold);
}

.accordion .header-menu__item-main--md {
  font-family: var(--font-title);
}

.header-menu__item-main--md,
.header-menu__item .accordion__title-main {
  font-family: var(--font-title);
}

.header-menu__item .accordion__title::after {
  filter: brightness(2.5);
}

.header-menu__item .accordion__title {
  color: var(--color-text_light-white);
}

.header-menu__item .accordion .header-menu__item {
  width: 100%;
  border-left: var(--border);
}

.header-menu__item .accordion__contents-main {
  border-color: var(--color-border_light);
}

.header-menu-close {
  position: relative;
  z-index: 2;
  cursor: pointer;
  border-bottom: var(--border);
  transition: background-color var(--transition);
}

.header-menu-close:hover {
  background: var(--color-main_base);
}

.header-menu-close__text {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  padding: 0.75em 1em;
  margin-left: auto;
  font-family: var(--font-title);
  font-size: 3em;
  text-align: right;
}

.header-sns {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: var(--border);
}

.header-sns__title {
  font-family: var(--font-title);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.header-sns__item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-sns__item-img {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  pointer-events: none;
  background-color: #fff;
  opacity: 0;
  -webkit-animation: fade-in-down 0.75s cubic-bezier(0, 0.55, 0.45, 1) 0.25s forwards;
  animation: fade-in-down 0.75s cubic-bezier(0, 0.55, 0.45, 1) 0.25s forwards;
}

.top .header {
  position: fixed;
  width: 100%;
  background: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-section {
  position: relative;
}

.section-m--xs {
  margin-top: var(--section-m_xs);
  margin-bottom: var(--section-m_xs);
}

.section-mt--xs {
  margin-top: var(--section-m_xs);
}

.section-mb--xs {
  margin-bottom: var(--section-m_xs);
}

.section-m--sm {
  margin-top: var(--section-m_sm);
  margin-bottom: var(--section-m_sm);
}

.section-mt--sm {
  margin-top: var(--section-m_sm);
}

.section-mb--sm {
  margin-bottom: var(--section-m_sm);
}

.section-m--md {
  margin-top: var(--section-m_md);
  margin-bottom: var(--section-m_md);
}

.section-mt--md {
  margin-top: var(--section-m_md);
}

.section-mb--md {
  margin-bottom: var(--section-m_md);
}

.section-m--lg {
  margin-top: var(--section-m_lg);
  margin-bottom: var(--section-m_lg);
}

.section-mt--lg {
  margin-top: var(--section-m_lg);
}

.section-mb--lg {
  margin-bottom: var(--section-m_lg);
}

.section-p--xs {
  padding-top: var(--section-m_xs);
  padding-bottom: var(--section-m_xs);
}

.section-pt--xs {
  padding-top: var(--section-m_xs);
}

.section-pb--xs {
  padding-bottom: var(--section-m_xs);
}

.section-p--sm {
  padding-top: var(--section-m_sm);
  padding-bottom: var(--section-m_sm);
}

.section-pt--sm {
  padding-top: var(--section-m_sm);
}

.section-pb--sm {
  padding-bottom: var(--section-m_sm);
}

.section-p--md {
  padding-top: var(--section-m_md);
  padding-bottom: var(--section-m_md);
}

.section-pt--md {
  padding-top: var(--section-m_md);
}

.section-pb--md {
  padding-bottom: var(--section-m_md);
}

.section-p--lg {
  padding-top: var(--section-m_lg);
  padding-bottom: var(--section-m_lg);
}

.section-pt--lg {
  padding-top: var(--section-m_lg);
}

.section-pb--lg {
  padding-bottom: var(--section-m_lg);
}

.section-split .section-title__main {
  word-wrap: break-word;
}

.section-split__title-contents {
  position: sticky;
  top: 10vw;
}

.section-split__title-main {
  font-size: var(--text-lg);
}

.section-split__supplement {
  margin-top: 2em;
}

.section-split__main {
  flex: 1;
}

.text-weight-black {
  font-weight: 900 !important;
  letter-spacing: 0.08em;
}

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

.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-md {
  font-size: var(--text-md);
}

.text-lg_sm {
  font-size: var(--text-lg_sm);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-normal {
  font-weight: var(--text-normal);
}

.text-bold {
  font-weight: var(--text-bold);
}

.text-color--main {
  color: var(--color-main);
}

.text-color--sub {
  color: var(--color-sub);
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-nowrap {
  white-space: nowrap;
}

.text-link {
  color: var(--color-main_base);
  text-decoration: underline;
}

.text-link:hover {
  opacity: 0.6;
}

.section-strong .btn-more,
.section-strong .section-strong-title-box {
  position: relative;
}

.section-strong .btn-more::before,
.section-strong .section-strong-title-box::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(--img-bg);
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 1;
}

.section-strong--dark {
  --color-text-base: var(--color-text_white);
  --color-main_base: var(--color-text_white);
  background-color: var(--color-bg_dark);
}

.section-strong--dark .btn-more,
.section-strong--dark .section-strong-title-box {
  background-color: var(--color-bg_dark);
}

.section-strong--dark .btn-more {
  transition: var(--transition);
}

.section-strong--dark .btn-more:hover {
  background-color: var(--color-main_dark);
}

.section-strong-title-box {
  position: relative;
  margin-bottom: -1px;
  border-bottom: var(--border);
}

.section-strong-title__deco {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-strong-title__deco::before, .section-strong-title__deco::after {
  position: absolute;
  display: block;
  content: "";
  background: var(--color-border);
}

.section-strong-title__deco::before {
  left: calc(50% - 50dvw);
  width: 100dvw;
  height: 1px;
}

.section-strong-title__deco::after {
  width: 1px;
  height: 100%;
}

.section-strong-title__deco-text {
  position: absolute;
  display: flex;
  align-items: start;
  overflow: hidden;
  font-family: var(--font-title);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-stroke: var(--border-w) var(--color-border);
}

.section-strong-title__deco-text span {
  display: block;
}

.section-strong-title__deco-text .deco-text--md {
  margin-top: -0.0042em;
}

.section-strong-title__deco-text .deco-text--lg {
  display: block;
  margin-top: -0.016em;
  font-size: 1.007em;
}

.section-strong-title__deco-text .deco-text--none {
  display: none;
}

.section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 0.5em;
  font-family: var(--font-title);
  font-weight: var(--text-bold);
  line-height: 1;
  color: var(--color-text-title);
}

.section-container--dark .section-title {
  color: var(--color-main_light);
}

.article-box .section-title {
  margin-bottom: 0.8em;
}

.section-deco-title {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-title);
  color: var(--color-text_light-white);
  opacity: 0;
  -webkit-animation: fade-in-right 0.95s var(--easeOutQuint) var(--door-delay-2) forwards;
  animation: fade-in-right 0.95s var(--easeOutQuint) var(--door-delay-2) forwards;
}

.section-container--dark .section-deco-title {
  color: var(--color-text_dark-white);
}

.section-container:not(.live-mv, .footer) {
  -webkit-clip-path: inset(0 100% 0 0 round 0);
  clip-path: inset(0 100% 0 0 round 0);
  -webkit-animation: revealX 0.85s var(--easeOutQuint) var(--door-delay-3) forwards;
  animation: revealX 0.85s var(--easeOutQuint) var(--door-delay-3) forwards;
}

.CpSimpleLayout__main__inner {
  -webkit-clip-path: inset(0 100% 0 0 round 0);
  clip-path: inset(0 100% 0 0 round 0);
  -webkit-animation: revealX 0.85s var(--easeOutQuint) var(--door-delay-1) forwards;
  animation: revealX 0.85s var(--easeOutQuint) var(--door-delay-1) forwards;
}

.live-detail__section-box {
  margin-top: 3em;
}

.live-mv {
  position: relative;
  padding: 0;
  -webkit-clip-path: inset(0 0 100% 0 round 0);
  clip-path: inset(0 0 100% 0 round 0);
  -webkit-animation: revealX 0.75s var(--easeOutQuint) var(--door-delay-1) forwards;
  animation: revealX 0.75s var(--easeOutQuint) var(--door-delay-1) forwards;
}

.live-mv__bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0 50% 0 50%);
  clip-path: inset(0 50% 0 50%);
  /* top right bottom left */
  background-color: #8e8e8e;
  -webkit-animation: doorReveal 0.5s var(--door-ease) var(--door-delay-2) forwards;
  animation: doorReveal 0.5s var(--door-ease) var(--door-delay-2) forwards;
}

.live-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(17px);
  background-position: top center;
  background-size: cover;
  opacity: 0.7;
  scale: 1.25;
  -webkit-animation: img-scale-in 1s cubic-bezier(0, 0.55, 0.45, 1) var(--door-delay-2) forwards;
  animation: img-scale-in 1s cubic-bezier(0, 0.55, 0.45, 1) var(--door-delay-2) forwards;
}

.live-mv__inner {
  position: relative;
}

.live-mv__img-wrap {
  position: relative;
  z-index: 10;
  display: table;
  width: auto;
  margin: auto;
  -webkit-clip-path: inset(50% 50% 50% 50% round 0);
  clip-path: inset(50% 50% 50% 50% round 0);
  box-shadow: 0 0 65px rgba(255, 220, 166, 0.09);
  -webkit-animation: rectReveal-shadow 1s cubic-bezier(0.34, 1.106, 0.64, 1) var(--door-delay-3) forwards;
  animation: rectReveal-shadow 1s cubic-bezier(0.34, 1.106, 0.64, 1) var(--door-delay-3) forwards;
}

.live-mv__img-box {
  -webkit-clip-path: inset(50% 50% 50% 50% round 0);
  clip-path: inset(50% 50% 50% 50% round 0);
  -webkit-animation: rectReveal 0.75s cubic-bezier(0.34, 1.106, 0.64, 1) var(--door-delay-2) forwards;
  animation: rectReveal 0.75s cubic-bezier(0.34, 1.106, 0.64, 1) var(--door-delay-2) forwards;
}

.live-mv__img {
  display: block;
  width: auto;
  scale: 1.125;
  filter: brightness(1.5) blur(4px);
  -webkit-animation: img-scale-in 0.95s ease-out var(--door-delay-2) forwards, fade-filter-in 0.95s ease-out var(--door-delay-2) forwards;
  animation: img-scale-in 0.95s ease-out var(--door-delay-2) forwards, fade-filter-in 0.95s ease-out var(--door-delay-2) forwards;
}

@supports (-webkit-touch-callout: none) {
  .live-mv__img {
    filter: none;
  }
}

.live-mv__title {
  display: table;
  margin: auto;
  font-weight: var(--text-bold);
  line-height: 1.15;
  text-align: center;
  word-break: auto-phrase;
  word-break: break-all;
  opacity: 0;
  -webkit-animation: fade-in-up 1s var(--easeOutQuint) var(--door-delay-3) forwards;
  animation: fade-in-up 1s var(--easeOutQuint) var(--door-delay-3) forwards;
}

.live-mv__title-sub-text {
  display: block;
}

.live-mv__title-sub .live-mv__title-sub-text {
  padding: 0.2em 0.25em 0.25em;
  margin-top: 0.35em;
  overflow: hidden;
  -webkit-clip-path: inset(0 50% 0 50%);
  clip-path: inset(0 50% 0 50%);
  /* top right bottom left */
  font-size: 0.7em;
  color: var(--color-bg_dark);
  background: var(--color-bg_white);
  -webkit-animation: doorReveal 0.5s var(--door-ease) var(--door-delay-3) forwards;
  animation: doorReveal 0.5s var(--door-ease) var(--door-delay-3) forwards;
}

.live-schedule__item-box {
  display: flex;
  flex-direction: column;
}

.live-schedule__title-name {
  margin-bottom: -0.2em;
  color: var(--color-main_light);
}

.live-schedule__title-date {
  line-height: normal;
}

.live-schedule__text {
  white-space: pre-line;
}

.live-flow .section-title {
  margin-bottom: 1.16em;
}

.live-flow__item-box {
  display: flex;
  flex-flow: column;
}

.live-flow__num {
  font-weight: var(--text-bold);
  color: var(--color-main_base);
}

.live-flow__title {
  font-weight: var(--text-bold);
  color: var(--color-text-title);
}

.live-flow__text {
  white-space: pre-line;
}

.live-warning__item-box {
  display: flex;
  flex-direction: column;
}

.live-warning__item-box strong {
  color: var(--color-main_light);
}

.live-warning__item {
  display: flex;
}

.live-warning__item:not(:first-of-type) {
  border-top: var(--border);
}

.live-warning__item-title {
  color: var(--color-main_light);
}

.live-link__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--text-bold);
}

.live-link__agree-input {
  position: relative;
  cursor: pointer;
  background-color: var(--color-bg_dark);
  border: 2px solid var(--color-main_light);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.live-link__agree-input:checked {
  background-color: var(--color-main_light);
  border-color: var(--color-main_light);
}

.live-link__agree-input:checked::after {
  position: absolute;
  top: 17%;
  left: 33%;
  width: 30%;
  height: 60%;
  content: "";
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.live-link__agree-text a {
  color: var(--color-main_base);
  text-decoration: underline;
}

.live-link__button {
  display: block;
  width: 100%;
  line-height: 1;
  color: var(--color-main_light);
  text-align: center;
  background-color: var(--color-bg_dark);
  border: 4px solid var(--color-main_light);
  border-radius: 1000px;
}

.live-link__button:hover {
  color: var(--color-bg_dark);
  background-color: var(--color-main_light);
  border-color: var(--color-bg_dark);
}

.live-link__button[disable] {
  color: #fff;
  pointer-events: none;
  background-color: var(--color-button_gray);
  border-color: var(--color-button_gray);
}

.live-form {
  border-color: var(--color-border_light);
  border-top: var(--border);
}

.live-form__button-box {
  display: flex;
  flex-direction: column;
}

.live-item-box {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 3em;
}

.live-item--none-text {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 2em;
  font-weight: var(--text-bold);
  text-align: center;
}

.live-item {
  width: 100%;
  filter: drop-shadow(0 4px 15px rgba(183, 180, 173, 0.25)) drop-shadow(0 1px 8px rgba(248, 245, 238, 0.15));
}

.live-item__link {
  display: flex;
  align-items: stretch;
  background-color: #fff;
}

.live-item__text-box {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.live-item__title {
  font-weight: var(--text-bold);
  color: var(--color-text-title);
  word-break: auto-phrase;
}

.live-item__img-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  overflow: hidden;
  border: 2px solid var(--color-main_light);
}

.live-item__bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  background-size: cover;
  scale: 1.125;
}

.live-item__img {
  position: relative;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.top-mv__title {
  -webkit-clip-path: inset(0 100% 0 0 round 0);
  clip-path: inset(0 100% 0 0 round 0);
  -webkit-animation: revealX 0.85s var(--easeOutQuint) var(--door-delay-1) forwards;
  animation: revealX 0.85s var(--easeOutQuint) var(--door-delay-1) forwards;
}

.top-mv__title-img {
  height: auto;
}

.top-mv__text {
  -webkit-clip-path: inset(0 100% 0 0 round 0);
  clip-path: inset(0 100% 0 0 round 0);
  font-weight: var(--text-bold);
  word-break: auto-phrase;
  -webkit-animation: revealX 0.85s var(--easeOutQuint) var(--door-delay-2) forwards;
  animation: revealX 0.85s var(--easeOutQuint) var(--door-delay-2) forwards;
}

.top .main {
  display: flex;
  flex-direction: column;
  background: none;
}

.top-main {
  flex: 1;
  background-color: var(--color-bg_white);
}

@-webkit-keyframes opacity0 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes opacity0 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    translate: var(--fade-in-up__translateY);
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    translate: var(--fade-in-up__translateY);
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@-webkit-keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fade-in-right {
  0% {
    opacity: 0;
    translate: var(--fade-in-right__translateX);
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    translate: var(--fade-in-right__translateX);
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@-webkit-keyframes fade-loop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-loop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes rotate {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}

@keyframes rotate {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}

@-webkit-keyframes filter-anime {
  0% {
    filter: brightness(1) saturate(100%);
  }
  100% {
    filter: brightness(1.1) saturate(300%);
  }
}

@keyframes filter-anime {
  0% {
    filter: brightness(1) saturate(100%);
  }
  100% {
    filter: brightness(1.1) saturate(300%);
  }
}

@-webkit-keyframes filter-anime2 {
  0% {
    filter: brightness(1) saturate(100%);
  }
  100% {
    filter: brightness(1.2) saturate(300%);
  }
}

@keyframes filter-anime2 {
  0% {
    filter: brightness(1) saturate(100%);
  }
  100% {
    filter: brightness(1.2) saturate(300%);
  }
}

@-webkit-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@-webkit-keyframes animatedgradient2 {
  0% {
    background-position: 50% 0%;
    opacity: 0;
  }
  45% {
    opacity: 0.18;
  }
  95% {
    opacity: 0;
  }
  100% {
    background-position: 50% 100%;
    opacity: 0;
  }
}

@keyframes animatedgradient2 {
  0% {
    background-position: 50% 0%;
    opacity: 0;
  }
  45% {
    opacity: 0.18;
  }
  95% {
    opacity: 0;
  }
  100% {
    background-position: 50% 100%;
    opacity: 0;
  }
}

@-webkit-keyframes slide-out-right {
  0% {
    translate: 0;
  }
  100% {
    translate: 100%;
  }
}

@keyframes slide-out-right {
  0% {
    translate: 0;
  }
  100% {
    translate: 100%;
  }
}

@-webkit-keyframes hue-loop {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes hue-loop {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@-webkit-keyframes width-fade {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes width-fade {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes height-fade {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes height-fade {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@-webkit-keyframes slide-left {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}

@keyframes slide-left {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}

@-webkit-keyframes slide-right {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 100% 0;
  }
}

@keyframes slide-right {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 100% 0;
  }
}

:root {
  --door-duration: 0.5s;
  --door-ease: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --door-delay-1: 0.5s;
  --door-delay-2: 0.6s;
  --door-delay-3: 0.7s;
}

@-webkit-keyframes doorReveal {
  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes doorReveal {
  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@-webkit-keyframes rectReveal {
  to {
    -webkit-clip-path: inset(0 0 0 0 round 0);
    clip-path: inset(0 0 0 0 round 0);
  }
}

@keyframes rectReveal {
  to {
    -webkit-clip-path: inset(0 0 0 0 round 0);
    clip-path: inset(0 0 0 0 round 0);
  }
}

@-webkit-keyframes rectReveal-shadow {
  to {
    -webkit-clip-path: inset(-20% -20% -20% -20% round 0);
    clip-path: inset(-20% -20% -20% -20% round 0);
  }
}

@keyframes rectReveal-shadow {
  to {
    -webkit-clip-path: inset(-20% -20% -20% -20% round 0);
    clip-path: inset(-20% -20% -20% -20% round 0);
  }
}

@-webkit-keyframes img-scale-in {
  to {
    scale: 1;
  }
}

@keyframes img-scale-in {
  to {
    scale: 1;
  }
}

@-webkit-keyframes fade-filter-in {
  to {
    filter: brightness(1) blur(0);
  }
}

@keyframes fade-filter-in {
  to {
    filter: brightness(1) blur(0);
  }
}

@-webkit-keyframes revealX {
  to {
    -webkit-clip-path: inset(0 0 0 0 round 0);
    clip-path: inset(0 0 0 0 round 0);
  }
}

@keyframes revealX {
  to {
    -webkit-clip-path: inset(0 0 0 0 round 0);
    clip-path: inset(0 0 0 0 round 0);
  }
}

.CpLayoutForm {
  position: relative;
  display: block;
}

.CpLayoutForm input[type="text"],
.CpLayoutForm input[type="password"] {
  width: 100%;
  height: 40px;
  padding: 0 calc(5px * 2);
  color: var(--form-font-color);
  background: var(--form-base-bg);
  border: 1px solid var(--form-base-color);
  border-radius: calc(var(--border-radius) * 1);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.CpLayoutForm input[type="checkbox"],
.CpLayoutForm input[type="radio"] {
  margin-right: 8px;
}

.CpLayoutForm input[size="3"],
.CpLayoutForm input[size="4"],
.CpLayoutForm input[size="5"] {
  width: auto;
}

.CpLayoutForm textarea {
  min-width: 100%;
  height: 200px;
  padding: 0 calc(5px * 2);
  padding-top: calc(5px * 1);
  color: var(--form-font-color);
  background: var(--form-base-bg);
  border: 1px solid var(--form-base-color);
  border-radius: calc(var(--border-radius) * 1);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.CpLayoutForm select {
  z-index: 2;
  width: 100%;
  height: 40px;
  padding: 0 calc(5px * 4) 0 calc(5px * 2);
  color: var(--form-font-color);
  cursor: pointer;
  background: var(--form-base-bg);
  background-color: transparent;
  border: 1px solid var(--form-base-color);
  border-radius: calc(var(--border-radius) * 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.CpLayoutForm .CpIconSelectArrow {
  display: none;
}

.CpLayoutForm select + .CpIconSelectArrow {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: block;
  width: 10px;
  pointer-events: none;
}

.CpLayoutForm .CpAlertBubble {
  position: absolute;
}

.CpLayoutForm > br {
  display: none;
}

.CpLayoutFormWrap .CpAlertBubble,
.CpLayoutFormWrap .CpAlertBubble__base,
.CpLayoutFormWrap .CpAlertBubble__base__main {
  position: relative;
}

.CpLayoutForm label {
  display: block;
}

.CpLayoutForm label + label {
  margin-top: 4px;
}

.CpLayoutForm br + input {
  margin-top: 8px;
}

@media screen and (min-width: 800px) {
  :root {
    --max-w: calc(920 / 1760 * (100dvw - var(--scrollbar)));
  }
  :root {
    --w-grid-item: calc(calc(100dvw - var(--scrollbar)) / 3 + 1px);
  }
  :root {
    --text-xs: calc(12 / 1760 * (100dvw - var(--scrollbar)));
    --text-sm: calc(14 / 1760 * (100dvw - var(--scrollbar)));
    --text-md: calc(12px + 4 / 1760 * (100vw - var(--scrollbar)));
    --text-lg_sm: calc(8px + 20 / 1760 * (100vw - var(--scrollbar)));
    --text-lg: calc(8px + 32 / 1760 * (100vw - var(--scrollbar)));
    --text-xl: calc(8px + 56 / 1760 * (100vw - var(--scrollbar)));
  }
  :root {
    --section-m_xs: 24px;
    --section-m_sm: 32px;
    --section-m_lg: calc(80 / 1760 * (100dvw - var(--scrollbar)));
    --section-m_xl: calc(120 / 1760 * (100dvw - var(--scrollbar)));
  }
  :root {
    --section-m_side: calc(64 / 1760 * (100dvw - var(--scrollbar)));
  }
  :root {
    --button-border-w: calc(5 / 1760 * (100dvw - var(--scrollbar)));
  }
  :root {
    --box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
  }
  .button {
    padding: calc(24 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(26 / 1760 * (100dvw - var(--scrollbar)));
    border-width: calc(3 / 1760 * (100dvw - var(--scrollbar)));
  }
  .accordion__title,
  .accordion__open.accordion__contents {
    padding: calc(64 / 1760 * (100dvw - var(--scrollbar))) calc(100 / 1760 * (100dvw - var(--scrollbar)));
    padding-right: calc(74 / 1760 * (100dvw - var(--scrollbar)));
  }
  .accordion__title::after {
    width: calc(38 / 1760 * (100dvw - var(--scrollbar)));
    height: calc(38 / 1760 * (100dvw - var(--scrollbar)));
  }
  .accordion__title-main {
    font-size: calc(64 / 1760 * (100dvw - var(--scrollbar)));
  }
  .accordion__title-sub {
    margin-top: calc(-2 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(8px + 12 / 1760 * (100vw - var(--scrollbar)));
  }
  .accordion__contents-main {
    padding-top: calc(32 / 1760 * (100dvw - var(--scrollbar)));
    padding-bottom: calc(48 / 1760 * (100dvw - var(--scrollbar)));
  }
  .accordion--sm .accordion__title,
  .accordion--sm .accordion__open.accordion__contents {
    padding: calc(40 / 1760 * (100dvw - var(--scrollbar))) calc(64 / 1760 * (100dvw - var(--scrollbar)));
    padding-right: calc(44 / 1760 * (100dvw - var(--scrollbar)));
  }
  .accordion--sm .accordion__title::after {
    width: calc(28 / 1760 * (100dvw - var(--scrollbar)));
  }
  .accordion--xs .accordion__title,
  .accordion--xs .accordion__open.accordion__contents {
    padding: calc(28 / 1760 * (100dvw - var(--scrollbar))) calc(40 / 1760 * (100dvw - var(--scrollbar)));
    padding-right: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .accordion--xs .accordion__title::after {
    width: calc(28 / 1760 * (100dvw - var(--scrollbar)));
  }
  .breadcrumb {
    font-size: calc(16 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-card__link[target="_blank"] .contents-card__text-box::after {
    top: calc(40 / 1760 * (100dvw - var(--scrollbar)));
    right: calc(40 / 1760 * (100dvw - var(--scrollbar)));
    width: calc(24 / 1760 * (100dvw - var(--scrollbar)));
    height: calc(24 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-card__text-box {
    padding: calc(40 / 1760 * (100dvw - var(--scrollbar))) calc(64 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-card__title {
    font-size: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-list__link {
    padding: calc(64 / 1760 * (100dvw - var(--scrollbar))) calc(80 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-list__link[target="_blank"]::after {
    right: calc(80 / 1760 * (100dvw - var(--scrollbar)));
    width: calc(32 / 1760 * (100dvw - var(--scrollbar)));
    height: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-list__title {
    margin-top: calc(20 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-list__mult-title-main {
    font-size: calc(64 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-list__mult-title-sub {
    margin-top: calc(-2 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(8px + 12 / 1760 * (100vw - var(--scrollbar)));
  }
  .contents-meta {
    gap: calc(14 / 1760 * (100dvw - var(--scrollbar)));
    margin-bottom: calc(20 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-meta__cate {
    padding: calc(1 / 1760 * (100dvw - var(--scrollbar))) calc(16 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(14 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-meta__date {
    margin-top: calc(2 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(16 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-rich-card__link {
    padding: calc(82 / 1760 * (100dvw - var(--scrollbar))) calc(80 / 1760 * (100dvw - var(--scrollbar))) calc(69 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-rich-card__img-box {
    padding: calc(10 / 1760 * (100dvw - var(--scrollbar)));
  }
  .contents-tag {
    gap: 0 calc(16 / 1760 * (100dvw - var(--scrollbar)));
    margin-top: calc(28 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(16 / 1760 * (100dvw - var(--scrollbar)));
  }
  .dl-item {
    padding: 48px 36px;
  }
  .dl-item--sm {
    padding: 0;
    border: 0;
  }
  .dl-item--sm + .dl-item--sm {
    margin-top: 1em;
  }
  .dl-item__title {
    width: 100%;
    max-width: 11em;
  }
  .pc-none {
    display: none !important;
  }
  .search {
    max-width: calc(var(--w-grid-item) - var(--section-m_side));
  }
  .section-split__title .search {
    margin-top: 3em;
  }
  .section-title-box .search {
    transform: translateY(-1vw);
  }
  .search-full > .search .search-cate__item {
    min-width: calc(100% / 3);
  }
  thead th {
    padding: calc(16 / 1760 * (100dvw - var(--scrollbar))) calc(24 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(28 / 1760 * (100dvw - var(--scrollbar)));
  }
  tbody th,
  tbody td {
    padding: calc(18 / 1760 * (100dvw - var(--scrollbar))) calc(24 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(22 / 1760 * (100dvw - var(--scrollbar)));
  }
  .flex-fill-pc {
    flex: 1;
  }
  .gap-0-pc {
    gap: 0px !important;
  }
  .gap-row-0-pc {
    row-gap: 0px !important;
  }
  .gap-col-0-pc {
    -moz-column-gap: 0px !important;
    column-gap: 0px !important;
  }
  .gap-0-r {
    gap: 0px !important;
  }
  .gap-2-pc {
    gap: 2px !important;
  }
  .gap-row-2-pc {
    row-gap: 2px !important;
  }
  .gap-col-2-pc {
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }
  .gap-2-r {
    gap: 2px !important;
  }
  .gap-4-pc {
    gap: 4px !important;
  }
  .gap-row-4-pc {
    row-gap: 4px !important;
  }
  .gap-col-4-pc {
    -moz-column-gap: 4px !important;
    column-gap: 4px !important;
  }
  .gap-4-r {
    gap: 4px !important;
  }
  .gap-6-pc {
    gap: 6px !important;
  }
  .gap-row-6-pc {
    row-gap: 6px !important;
  }
  .gap-col-6-pc {
    -moz-column-gap: 6px !important;
    column-gap: 6px !important;
  }
  .gap-6-r {
    gap: 6px !important;
  }
  .gap-8-pc {
    gap: 8px !important;
  }
  .gap-row-8-pc {
    row-gap: 8px !important;
  }
  .gap-col-8-pc {
    -moz-column-gap: 8px !important;
    column-gap: 8px !important;
  }
  .gap-8-r {
    gap: 8px !important;
  }
  .gap-10-pc {
    gap: 10px !important;
  }
  .gap-row-10-pc {
    row-gap: 10px !important;
  }
  .gap-col-10-pc {
    -moz-column-gap: 10px !important;
    column-gap: 10px !important;
  }
  .gap-10-r {
    gap: 10px !important;
  }
  .gap-12-pc {
    gap: 12px !important;
  }
  .gap-row-12-pc {
    row-gap: 12px !important;
  }
  .gap-col-12-pc {
    -moz-column-gap: 12px !important;
    column-gap: 12px !important;
  }
  .gap-12-r {
    gap: 12px !important;
  }
  .gap-14-pc {
    gap: 14px !important;
  }
  .gap-row-14-pc {
    row-gap: 14px !important;
  }
  .gap-col-14-pc {
    -moz-column-gap: 14px !important;
    column-gap: 14px !important;
  }
  .gap-14-r {
    gap: 14px !important;
  }
  .gap-16-pc {
    gap: 16px !important;
  }
  .gap-row-16-pc {
    row-gap: 16px !important;
  }
  .gap-col-16-pc {
    -moz-column-gap: 16px !important;
    column-gap: 16px !important;
  }
  .gap-16-r {
    gap: 16px !important;
  }
  .gap-18-pc {
    gap: 18px !important;
  }
  .gap-row-18-pc {
    row-gap: 18px !important;
  }
  .gap-col-18-pc {
    -moz-column-gap: 18px !important;
    column-gap: 18px !important;
  }
  .gap-18-r {
    gap: 18px !important;
  }
  .gap-20-pc {
    gap: 20px !important;
  }
  .gap-row-20-pc {
    row-gap: 20px !important;
  }
  .gap-col-20-pc {
    -moz-column-gap: 20px !important;
    column-gap: 20px !important;
  }
  .gap-20-r {
    gap: 20px !important;
  }
  .gap-22-pc {
    gap: 22px !important;
  }
  .gap-row-22-pc {
    row-gap: 22px !important;
  }
  .gap-col-22-pc {
    -moz-column-gap: 22px !important;
    column-gap: 22px !important;
  }
  .gap-22-r {
    gap: 22px !important;
  }
  .gap-24-pc {
    gap: 24px !important;
  }
  .gap-row-24-pc {
    row-gap: 24px !important;
  }
  .gap-col-24-pc {
    -moz-column-gap: 24px !important;
    column-gap: 24px !important;
  }
  .gap-24-r {
    gap: 24px !important;
  }
  .gap-26-pc {
    gap: 26px !important;
  }
  .gap-row-26-pc {
    row-gap: 26px !important;
  }
  .gap-col-26-pc {
    -moz-column-gap: 26px !important;
    column-gap: 26px !important;
  }
  .gap-26-r {
    gap: 26px !important;
  }
  .gap-28-pc {
    gap: 28px !important;
  }
  .gap-row-28-pc {
    row-gap: 28px !important;
  }
  .gap-col-28-pc {
    -moz-column-gap: 28px !important;
    column-gap: 28px !important;
  }
  .gap-28-r {
    gap: 28px !important;
  }
  .gap-30-pc {
    gap: 30px !important;
  }
  .gap-row-30-pc {
    row-gap: 30px !important;
  }
  .gap-col-30-pc {
    -moz-column-gap: 30px !important;
    column-gap: 30px !important;
  }
  .gap-30-r {
    gap: 30px !important;
  }
  .gap-32-pc {
    gap: 32px !important;
  }
  .gap-row-32-pc {
    row-gap: 32px !important;
  }
  .gap-col-32-pc {
    -moz-column-gap: 32px !important;
    column-gap: 32px !important;
  }
  .gap-32-r {
    gap: 32px !important;
  }
  .gap-34-pc {
    gap: 34px !important;
  }
  .gap-row-34-pc {
    row-gap: 34px !important;
  }
  .gap-col-34-pc {
    -moz-column-gap: 34px !important;
    column-gap: 34px !important;
  }
  .gap-34-r {
    gap: 34px !important;
  }
  .gap-36-pc {
    gap: 36px !important;
  }
  .gap-row-36-pc {
    row-gap: 36px !important;
  }
  .gap-col-36-pc {
    -moz-column-gap: 36px !important;
    column-gap: 36px !important;
  }
  .gap-36-r {
    gap: 36px !important;
  }
  .gap-38-pc {
    gap: 38px !important;
  }
  .gap-row-38-pc {
    row-gap: 38px !important;
  }
  .gap-col-38-pc {
    -moz-column-gap: 38px !important;
    column-gap: 38px !important;
  }
  .gap-38-r {
    gap: 38px !important;
  }
  .gap-40-pc {
    gap: 40px !important;
  }
  .gap-row-40-pc {
    row-gap: 40px !important;
  }
  .gap-col-40-pc {
    -moz-column-gap: 40px !important;
    column-gap: 40px !important;
  }
  .gap-40-r {
    gap: 40px !important;
  }
  .modal__content-box {
    width: calc(100vw - var(--section-m_md) * 2);
  }
  .modal__content-inner {
    padding: 36px 24px;
  }
  .footer-menu {
    gap: calc(68 / 1760 * (100dvw - var(--scrollbar)));
    max-width: calc(970 / 1760 * (100dvw - var(--scrollbar)));
  }
  .footer-menu__item {
    min-width: calc(140 / 1760 * (100dvw - var(--scrollbar)));
  }
  .footer-menu__item-main {
    font-size: calc(56 / 1760 * (100dvw - var(--scrollbar)));
  }
  .footer-menu__item-sub {
    font-size: calc(16 / 1760 * (100dvw - var(--scrollbar)));
  }
  .footer-title {
    font-size: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .footer-sub-menu {
    font-size: calc(28 / 1760 * (100dvw - var(--scrollbar)));
  }
  .footer {
    padding-bottom: calc(40 / 1760 * (100dvw - var(--scrollbar)));
  }
  .footer-deco-img {
    width: calc(480 / 1760 * (100dvw - var(--scrollbar)));
    margin-top: calc(80 / 1760 * (100dvw - var(--scrollbar)));
    margin-right: calc(-16 / 1760 * (100dvw - var(--scrollbar)));
  }
  .menu-sns {
    gap: calc(38 / 1760 * (100dvw - var(--scrollbar)));
    padding: calc(34 / 1760 * (100dvw - var(--scrollbar))) calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .menu-sns__title {
    font-size: calc(24 / 1760 * (100dvw - var(--scrollbar)));
  }
  .menu-sns__item-box {
    gap: calc(40 / 1760 * (100dvw - var(--scrollbar)));
  }
  .menu-sns__item-img {
    max-width: calc(40 / 1760 * (100dvw - var(--scrollbar)));
    max-height: calc(33 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-logo {
    height: calc(64 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu-btn {
    border: calc(3 / 1760 * (100dvw - var(--scrollbar))) solid var(--color-main_light);
  }
  .header-menu-btn__main {
    padding: calc(30 / 1760 * (100dvw - var(--scrollbar)));
    padding-top: calc(31 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu-btn__icon {
    height: calc(41 / 1760 * (100dvw - var(--scrollbar)));
    margin-bottom: calc(11 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu-btn__text {
    font-size: calc(16 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item-text {
    padding: calc(64 / 1760 * (100dvw - var(--scrollbar))) calc(100 / 1760 * (100dvw - var(--scrollbar)));
    padding-right: calc(74 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item-text--current {
    border-bottom: 3px solid var(--color-border);
  }
  .header-menu__item-main {
    font-size: calc(64 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item-sub {
    margin-top: calc(2 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(8px + 6 / 1760 * (100vw - var(--scrollbar)));
  }
  .accordion .header-menu__item-main--md {
    font-size: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item-main--md,
  .header-menu__item .accordion__title-main {
    font-size: calc(48 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item .accordion__title {
    padding: calc(64 / 1760 * (100dvw - var(--scrollbar))) calc(100 / 1760 * (100dvw - var(--scrollbar)));
    padding-right: calc(74 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item .accordion .header-menu__item-text {
    padding: calc(32 / 1760 * (100dvw - var(--scrollbar))) calc(50 / 1760 * (100dvw - var(--scrollbar)));
    padding-right: calc(36 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-menu-close__text {
    font-size: calc(48 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-sns {
    gap: calc(38 / 1760 * (100dvw - var(--scrollbar)));
    padding: calc(34 / 1760 * (100dvw - var(--scrollbar))) calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-sns__title {
    font-size: calc(24 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-sns__item-box {
    gap: calc(40 / 1760 * (100dvw - var(--scrollbar)));
  }
  .header-sns__item-img {
    max-width: calc(40 / 1760 * (100dvw - var(--scrollbar)));
    max-height: calc(33 / 1760 * (100dvw - var(--scrollbar)));
  }
  .page-section {
    padding: 60px;
    padding-bottom: 100px;
  }
  .section-split {
    display: flex;
  }
  .section-split .section-title__main {
    font-size: calc(80 / 1760 * (100dvw - var(--scrollbar)));
  }
  .section-split__title {
    width: calc(640 / 1760 * (100dvw - var(--scrollbar)));
    min-width: calc(640 / 1760 * (100dvw - var(--scrollbar)));
    padding-top: calc(90 / 1760 * (100dvw - var(--scrollbar)));
    padding-right: 3em;
    padding-bottom: calc(90 / 1760 * (100dvw - var(--scrollbar)));
    padding-left: var(--section-m_side);
    border-right: var(--border);
  }
  .section-split__supplement {
    font-size: calc(18 / 1760 * (100dvw - var(--scrollbar)));
  }
  .text-xs-pc {
    font-size: var(--text-xs);
  }
  .text-sm-pc {
    font-size: var(--text-sm);
  }
  .text-md-pc {
    font-size: var(--text-md);
  }
  .text-lg_sm-pc {
    font-size: var(--text-lg_sm);
  }
  .text-lg-pc {
    font-size: var(--text-lg);
  }
  .text-xl-pc {
    font-size: var(--text-xl);
  }
  .section-strong-title-box {
    padding: calc(247 / 1760 * (100dvw - var(--scrollbar))) var(--section-m_side) calc(88 / 1760 * (100dvw - var(--scrollbar)));
  }
  .section-strong-title__deco::before {
    top: calc(95 / 1760 * (100dvw - var(--scrollbar)));
  }
  .section-strong-title__deco::after {
    left: calc(639 / 1760 * (100dvw - var(--scrollbar)));
  }
  .section-strong-title__deco-text {
    top: calc(-18 / 1760 * (100dvw - var(--scrollbar)));
    left: calc(612 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(558 / 1760 * (100dvw - var(--scrollbar)));
  }
  .disco-section .section-strong-title__deco-text {
    top: calc(-92 / 1760 * (100dvw - var(--scrollbar)));
    left: calc(608 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(645 / 1760 * (100dvw - var(--scrollbar)));
  }
  .disco-section .section-strong-title__deco::before {
    top: calc(39 / 1760 * (100dvw - var(--scrollbar)));
  }
  .section-title {
    font-size: calc(48 / 1760 * (100dvw - var(--scrollbar)));
  }
  .section-title--lg {
    font-size: calc(58 / 1760 * (100dvw - var(--scrollbar)));
  }
  .article-box .section-title__main {
    font-size: calc(80 / 1760 * (100dvw - var(--scrollbar)));
  }
  .section-deco-title {
    top: calc(-82 / 1760 * (100dvw - var(--scrollbar)));
    left: calc(-17 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(369 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-form .section-deco-title {
    font-size: calc(334 / 1760 * (100dvw - var(--scrollbar)));
  }
  .top-main .section-deco-title {
    font-size: calc(360 / 1760 * (100dvw - var(--scrollbar)));
  }
  .group-detail {
    padding-bottom: var(--section-m_lg);
  }
  .live-mv__bg-box {
    height: calc(208 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-mv__inner {
    padding: calc(27 / 1760 * (100dvw - var(--scrollbar))) calc(27 / 1760 * (100dvw - var(--scrollbar))) calc(60 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-mv__img-wrap {
    margin-bottom: calc(39 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-mv__img {
    max-height: calc(331 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-mv__title {
    font-size: calc(47 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-about__text + .live-about__text {
    margin-top: calc(80 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-about__button {
    max-width: calc(500 / 1760 * (100dvw - var(--scrollbar)));
    margin-top: calc(40 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(22 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-schedule__item-box {
    gap: calc(80 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-schedule__title-name {
    font-size: calc(24 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-schedule__title-date {
    font-size: calc(56 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-flow__item-box {
    gap: calc(96 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-flow__num {
    font-size: calc(36 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-flow__title {
    margin-bottom: calc(24 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(40 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-warning__text {
    margin-bottom: calc(64 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-warning__item:not(:first-of-type) {
    padding-top: calc(40 / 1760 * (100dvw - var(--scrollbar)));
    margin-top: calc(40 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-warning__item-title {
    flex: 1;
    padding-right: 1em;
  }
  .live-warning__item-text {
    width: calc(664 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-link__agree {
    gap: calc(16 / 1760 * (100dvw - var(--scrollbar)));
    margin-bottom: calc(28 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(24 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-link__agree-input {
    width: calc(32 / 1760 * (100dvw - var(--scrollbar)));
    height: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-link__button {
    padding: calc(30 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-form__list-title {
    margin-bottom: calc(40 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(48 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-form__button-box {
    gap: calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-form + .live-about {
    padding-bottom: calc(80 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-mypage {
    padding-bottom: calc(68 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-item-box {
    gap: calc(24 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-item__text-box {
    padding: calc(24 / 1760 * (100dvw - var(--scrollbar))) calc(32 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-item__title {
    font-size: calc(24 / 1760 * (100dvw - var(--scrollbar)));
  }
  .live-item__img-box {
    width: calc(124 / 1760 * (100dvw - var(--scrollbar)));
    min-height: calc(124 / 1760 * (100dvw - var(--scrollbar)));
  }
  .top-mv {
    padding: calc(104 / 1760 * (100dvw - var(--scrollbar))) calc(64 / 1760 * (100dvw - var(--scrollbar))) calc(77 / 1760 * (100dvw - var(--scrollbar)));
  }
  .top-mv__title-img {
    width: calc(770 / 1760 * (100dvw - var(--scrollbar)));
  }
  .top-mv__text {
    width: calc(770 / 1760 * (100dvw - var(--scrollbar)));
    margin-top: calc(36 / 1760 * (100dvw - var(--scrollbar)));
    font-size: calc(22 / 1760 * (100dvw - var(--scrollbar)));
  }
  :root {
    --fade-in-up__translateY: 0 calc(20 / 1760 * (100dvw - var(--scrollbar)));
  }
  :root {
    --fade-in-right__translateX: calc(-20 / 1760 * (100dvw - var(--scrollbar))) 0;
  }
}

@media screen and (max-width: 799.9px) {
  :root {
    --w-grid-item: calc(calc(100dvw - var(--scrollbar)) / 2 + 1px);
  }
  :root {
    --section-m_side: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  :root {
    --button-border-w: calc(2 / 375 * (100dvw - var(--scrollbar)));
  }
  .button {
    padding: 12px;
    font-size: 16px;
    border-width: calc(2 / 375 * (100dvw - var(--scrollbar)));
  }
  .accordion__title,
  .accordion__open.accordion__contents {
    padding: calc(16 / 375 * (100dvw - var(--scrollbar))) var(--section-m_side);
  }
  .accordion__title::after {
    width: calc(14 / 375 * (100dvw - var(--scrollbar)));
    height: calc(14 / 375 * (100dvw - var(--scrollbar)));
  }
  .accordion__title-main {
    font-size: calc(28 / 375 * (100dvw - var(--scrollbar)));
  }
  .accordion__title-sub {
    margin-top: calc(-2 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(14 / 375 * (100dvw - var(--scrollbar)));
  }
  .accordion__contents-main {
    padding-top: calc(12 / 375 * (100dvw - var(--scrollbar)));
    padding-bottom: calc(16 / 375 * (100dvw - var(--scrollbar)));
  }
  .accordion--sm .accordion__title,
  .accordion--sm .accordion__open.accordion__contents {
    padding: calc(16 / 375 * (100dvw - var(--scrollbar))) var(--section-m_side);
  }
  .accordion--xs .accordion__title,
  .accordion--xs .accordion__open.accordion__contents {
    padding: calc(16 / 375 * (100dvw - var(--scrollbar))) var(--section-m_side);
  }
  .breadcrumb {
    font-size: calc(11 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-card__link[target="_blank"] .contents-card__text-box::after {
    top: calc(15 / 375 * (100dvw - var(--scrollbar)));
    right: calc(12 / 375 * (100dvw - var(--scrollbar)));
    width: calc(12 / 375 * (100dvw - var(--scrollbar)));
    height: calc(12 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-card__text-box {
    padding: calc(14 / 375 * (100dvw - var(--scrollbar))) calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-card__title {
    font-size: calc(12 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-list__link {
    padding: calc(20 / 375 * (100dvw - var(--scrollbar)));
    padding-right: calc(28 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-list__link[target="_blank"]::after {
    right: calc(28 / 375 * (100dvw - var(--scrollbar)));
    width: calc(20 / 375 * (100dvw - var(--scrollbar)));
    height: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-list__title {
    margin-top: calc(10 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(14 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-list__mult-title-main {
    font-size: calc(28 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-list__mult-title-sub {
    margin-top: calc(-2 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(14 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-m--xs-sp {
    margin-top: var(--contents-m_xs);
    margin-bottom: var(--contents-m_xs);
  }
  .contents-mt--xs-sp {
    margin-top: var(--contents-m_xs);
  }
  .contents-mb--xs-sp {
    margin-bottom: var(--contents-m_xs);
  }
  .contents-m--sm-sp {
    margin-top: var(--contents-m_sm);
    margin-bottom: var(--contents-m_sm);
  }
  .contents-mt--sm-sp {
    margin-top: var(--contents-m_sm);
  }
  .contents-mb--sm-sp {
    margin-bottom: var(--contents-m_sm);
  }
  .contents-m--md-sp {
    margin-top: var(--contents-m_md);
    margin-bottom: var(--contents-m_md);
  }
  .contents-mt--md-sp {
    margin-top: var(--contents-m_md);
  }
  .contents-mb--md-sp {
    margin-bottom: var(--contents-m_md);
  }
  .contents-m--lg-sp {
    margin-top: var(--contents-m_lg);
    margin-bottom: var(--contents-m_lg);
  }
  .contents-mt--lg-sp {
    margin-top: var(--contents-m_lg);
  }
  .contents-mb--lg-sp {
    margin-bottom: var(--contents-m_lg);
  }
  .contents-m--xl-sp {
    margin-top: var(--contents-m_xl);
    margin-bottom: var(--contents-m_xl);
  }
  .contents-mt--xl-sp {
    margin-top: var(--contents-m_xl);
  }
  .contents-mb--xl-sp {
    margin-bottom: var(--contents-m_xl);
  }
  .contents-meta {
    gap: calc(8 / 375 * (100dvw - var(--scrollbar)));
    margin-bottom: calc(10 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(11 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-meta__cate {
    padding: 0 calc(8 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-p--xs-sp {
    padding-top: var(--contents-m_xs);
    padding-bottom: var(--contents-m_xs);
  }
  .contents-pt--xs-sp {
    padding-top: var(--contents-m_xs);
  }
  .contents-pb--xs-sp {
    padding-bottom: var(--contents-m_xs);
  }
  .contents-p--sm-sp {
    padding-top: var(--contents-m_sm);
    padding-bottom: var(--contents-m_sm);
  }
  .contents-pt--sm-sp {
    padding-top: var(--contents-m_sm);
  }
  .contents-pb--sm-sp {
    padding-bottom: var(--contents-m_sm);
  }
  .contents-p--md-sp {
    padding-top: var(--contents-m_md);
    padding-bottom: var(--contents-m_md);
  }
  .contents-pt--md-sp {
    padding-top: var(--contents-m_md);
  }
  .contents-pb--md-sp {
    padding-bottom: var(--contents-m_md);
  }
  .contents-p--lg-sp {
    padding-top: var(--contents-m_lg);
    padding-bottom: var(--contents-m_lg);
  }
  .contents-pt--lg-sp {
    padding-top: var(--contents-m_lg);
  }
  .contents-pb--lg-sp {
    padding-bottom: var(--contents-m_lg);
  }
  .contents-rich-card__link {
    padding: calc(24 / 375 * (100dvw - var(--scrollbar))) calc(23 / 375 * (100dvw - var(--scrollbar))) calc(13 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-rich-card__img-box {
    padding: calc(3 / 375 * (100dvw - var(--scrollbar)));
  }
  .contents-tag {
    gap: calc(4 / 375 * (100dvw - var(--scrollbar)));
    margin-top: calc(12 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(10 / 375 * (100dvw - var(--scrollbar)));
  }
  .dl-item {
    flex-direction: column;
    gap: calc(14px - (((1em * normal) - 1em) / 2));
    padding: var(--section-m_side);
  }
  .dl-item--sm {
    flex-direction: row;
    padding: 0;
    margin-top: 1em;
    border: 0;
  }
  .dl-item__title {
    margin-bottom: 0.25em;
  }
  .dl-item--sm .dl-item__title {
    margin-bottom: 0;
    font-size: 0.9em;
  }
  .dl-item__text {
    font-size: 0.9em;
  }
  .sp-none {
    display: none !important;
  }
  .search {
    margin-top: 1.5em;
  }
  thead th {
    padding: calc(12 / 375 * (100dvw - var(--scrollbar))) calc(10 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(14 / 375 * (100dvw - var(--scrollbar)));
  }
  tbody th,
  tbody td {
    padding: calc(14 / 375 * (100dvw - var(--scrollbar))) calc(10 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(12 / 375 * (100dvw - var(--scrollbar)));
  }
  .flex {
    flex-direction: column;
  }
  .flex-col-sp {
    flex-direction: column;
  }
  .flex-fill-sp {
    flex: 1;
  }
  .gap-0-sp {
    gap: 0px !important;
  }
  .gap-row-0-sp {
    row-gap: 0px !important;
  }
  .gap-col-0-sp {
    -moz-column-gap: 0px !important;
    column-gap: 0px !important;
  }
  .gap-0-r {
    gap: 0px !important;
  }
  .gap-2-sp {
    gap: 2px !important;
  }
  .gap-row-2-sp {
    row-gap: 2px !important;
  }
  .gap-col-2-sp {
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }
  .gap-2-r {
    gap: 1px !important;
  }
  .gap-4-sp {
    gap: 4px !important;
  }
  .gap-row-4-sp {
    row-gap: 4px !important;
  }
  .gap-col-4-sp {
    -moz-column-gap: 4px !important;
    column-gap: 4px !important;
  }
  .gap-4-r {
    gap: 2px !important;
  }
  .gap-6-sp {
    gap: 6px !important;
  }
  .gap-row-6-sp {
    row-gap: 6px !important;
  }
  .gap-col-6-sp {
    -moz-column-gap: 6px !important;
    column-gap: 6px !important;
  }
  .gap-6-r {
    gap: 3px !important;
  }
  .gap-8-sp {
    gap: 8px !important;
  }
  .gap-row-8-sp {
    row-gap: 8px !important;
  }
  .gap-col-8-sp {
    -moz-column-gap: 8px !important;
    column-gap: 8px !important;
  }
  .gap-8-r {
    gap: 4px !important;
  }
  .gap-10-sp {
    gap: 10px !important;
  }
  .gap-row-10-sp {
    row-gap: 10px !important;
  }
  .gap-col-10-sp {
    -moz-column-gap: 10px !important;
    column-gap: 10px !important;
  }
  .gap-10-r {
    gap: 5px !important;
  }
  .gap-12-sp {
    gap: 12px !important;
  }
  .gap-row-12-sp {
    row-gap: 12px !important;
  }
  .gap-col-12-sp {
    -moz-column-gap: 12px !important;
    column-gap: 12px !important;
  }
  .gap-12-r {
    gap: 6px !important;
  }
  .gap-14-sp {
    gap: 14px !important;
  }
  .gap-row-14-sp {
    row-gap: 14px !important;
  }
  .gap-col-14-sp {
    -moz-column-gap: 14px !important;
    column-gap: 14px !important;
  }
  .gap-14-r {
    gap: 7px !important;
  }
  .gap-16-sp {
    gap: 16px !important;
  }
  .gap-row-16-sp {
    row-gap: 16px !important;
  }
  .gap-col-16-sp {
    -moz-column-gap: 16px !important;
    column-gap: 16px !important;
  }
  .gap-16-r {
    gap: 8px !important;
  }
  .gap-18-sp {
    gap: 18px !important;
  }
  .gap-row-18-sp {
    row-gap: 18px !important;
  }
  .gap-col-18-sp {
    -moz-column-gap: 18px !important;
    column-gap: 18px !important;
  }
  .gap-18-r {
    gap: 9px !important;
  }
  .gap-20-sp {
    gap: 20px !important;
  }
  .gap-row-20-sp {
    row-gap: 20px !important;
  }
  .gap-col-20-sp {
    -moz-column-gap: 20px !important;
    column-gap: 20px !important;
  }
  .gap-20-r {
    gap: 10px !important;
  }
  .gap-22-sp {
    gap: 22px !important;
  }
  .gap-row-22-sp {
    row-gap: 22px !important;
  }
  .gap-col-22-sp {
    -moz-column-gap: 22px !important;
    column-gap: 22px !important;
  }
  .gap-22-r {
    gap: 11px !important;
  }
  .gap-24-sp {
    gap: 24px !important;
  }
  .gap-row-24-sp {
    row-gap: 24px !important;
  }
  .gap-col-24-sp {
    -moz-column-gap: 24px !important;
    column-gap: 24px !important;
  }
  .gap-24-r {
    gap: 12px !important;
  }
  .gap-26-sp {
    gap: 26px !important;
  }
  .gap-row-26-sp {
    row-gap: 26px !important;
  }
  .gap-col-26-sp {
    -moz-column-gap: 26px !important;
    column-gap: 26px !important;
  }
  .gap-26-r {
    gap: 13px !important;
  }
  .gap-28-sp {
    gap: 28px !important;
  }
  .gap-row-28-sp {
    row-gap: 28px !important;
  }
  .gap-col-28-sp {
    -moz-column-gap: 28px !important;
    column-gap: 28px !important;
  }
  .gap-28-r {
    gap: 14px !important;
  }
  .gap-30-sp {
    gap: 30px !important;
  }
  .gap-row-30-sp {
    row-gap: 30px !important;
  }
  .gap-col-30-sp {
    -moz-column-gap: 30px !important;
    column-gap: 30px !important;
  }
  .gap-30-r {
    gap: 15px !important;
  }
  .gap-32-sp {
    gap: 32px !important;
  }
  .gap-row-32-sp {
    row-gap: 32px !important;
  }
  .gap-col-32-sp {
    -moz-column-gap: 32px !important;
    column-gap: 32px !important;
  }
  .gap-32-r {
    gap: 16px !important;
  }
  .gap-34-sp {
    gap: 34px !important;
  }
  .gap-row-34-sp {
    row-gap: 34px !important;
  }
  .gap-col-34-sp {
    -moz-column-gap: 34px !important;
    column-gap: 34px !important;
  }
  .gap-34-r {
    gap: 17px !important;
  }
  .gap-36-sp {
    gap: 36px !important;
  }
  .gap-row-36-sp {
    row-gap: 36px !important;
  }
  .gap-col-36-sp {
    -moz-column-gap: 36px !important;
    column-gap: 36px !important;
  }
  .gap-36-r {
    gap: 18px !important;
  }
  .gap-38-sp {
    gap: 38px !important;
  }
  .gap-row-38-sp {
    row-gap: 38px !important;
  }
  .gap-col-38-sp {
    -moz-column-gap: 38px !important;
    column-gap: 38px !important;
  }
  .gap-38-r {
    gap: 19px !important;
  }
  .gap-40-sp {
    gap: 40px !important;
  }
  .gap-row-40-sp {
    row-gap: 40px !important;
  }
  .gap-col-40-sp {
    -moz-column-gap: 40px !important;
    column-gap: 40px !important;
  }
  .gap-40-r {
    gap: 20px !important;
  }
  .modal__content-box {
    width: calc(100vw - var(--sp-section-m) * 2);
  }
  .footer-menu {
    gap: calc(16 / 375 * (100dvw - var(--scrollbar))) calc(32 / 375 * (100dvw - var(--scrollbar)));
    width: calc(100% + calc(8 / 375 * (100dvw - var(--scrollbar))));
  }
  .footer-menu__item {
    min-width: calc(120 / 375 * (100dvw - var(--scrollbar)));
  }
  .footer-menu__item .deco-text--none {
    display: none;
  }
  .footer-menu__item-main {
    font-size: calc(28 / 375 * (100dvw - var(--scrollbar)));
  }
  .footer-menu__item-sub {
    font-size: calc(10 / 375 * (100dvw - var(--scrollbar)));
  }
  .footer-title {
    font-size: calc(11 / 375 * (100dvw - var(--scrollbar)));
  }
  .footer-sub-menu {
    font-size: calc(12 / 375 * (100dvw - var(--scrollbar)));
  }
  .footer {
    padding-top: calc(18 / 375 * (100dvw - var(--scrollbar)));
    padding-bottom: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .footer-deco-img {
    width: calc(216 / 375 * (100dvw - var(--scrollbar)));
    margin-top: calc(32 / 375 * (100dvw - var(--scrollbar)));
  }
  .menu-sns {
    gap: calc(16 / 375 * (100dvw - var(--scrollbar)));
    padding: calc(17 / 375 * (100dvw - var(--scrollbar)));
  }
  .menu-sns__item-box {
    gap: calc(16 / 375 * (100dvw - var(--scrollbar)));
    width: calc(27 / 375 * (100dvw - var(--scrollbar)));
  }
  .menu-sns__item-img {
    max-width: calc(29 / 375 * (100dvw - var(--scrollbar)));
    max-height: calc(25 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-logo {
    height: calc(32 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-menu-btn {
    border: calc(2 / 375 * (100dvw - var(--scrollbar))) solid var(--color-main_light);
  }
  .header-menu-btn__main {
    padding: calc(15 / 375 * (100dvw - var(--scrollbar)));
    padding-top: calc(16 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-menu-btn__icon {
    height: calc(20 / 375 * (100dvw - var(--scrollbar)));
    margin-bottom: calc(5 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-menu-btn__text {
    font-size: calc(8 / 375 * (100dvw - var(--scrollbar)));
  }
  .menu-active .header-menu {
    right: 0;
  }
  .header-menu__item-text {
    padding: calc(16 / 375 * (100dvw - var(--scrollbar))) var(--section-m_side);
  }
  .header-menu__item-main {
    font-size: calc(22 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item-sub {
    margin-top: calc(2 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(11 / 375 * (100dvw - var(--scrollbar)));
  }
  .accordion .header-menu__item-main--md {
    font-size: calc(16 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item-main--md,
  .header-menu__item .accordion__title-main {
    font-size: calc(18 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-menu__item .accordion__title {
    padding: calc(16 / 375 * (100dvw - var(--scrollbar))) var(--section-m_side);
  }
  .header-menu__item .accordion .header-menu__item-text {
    padding: calc(8 / 375 * (100dvw - var(--scrollbar))) var(--section-m_side);
  }
  .header-menu-close__text {
    font-size: calc(24 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-sns {
    gap: calc(16 / 375 * (100dvw - var(--scrollbar)));
    padding: calc(17 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-sns__item-box {
    gap: calc(16 / 375 * (100dvw - var(--scrollbar)));
    width: calc(27 / 375 * (100dvw - var(--scrollbar)));
  }
  .header-sns__item-img {
    max-width: calc(29 / 375 * (100dvw - var(--scrollbar)));
    max-height: calc(25 / 375 * (100dvw - var(--scrollbar)));
  }
  .page-section {
    padding-top: 32px;
  }
  .section-m--xs-sp {
    margin-top: var(--section-m_xs);
    margin-bottom: var(--section-m_xs);
  }
  .section-mt--xs-sp {
    margin-top: var(--section-m_xs);
  }
  .section-mb--xs-sp {
    margin-bottom: var(--section-m_xs);
  }
  .section-m--sm-sp {
    margin-top: var(--section-m_sm);
    margin-bottom: var(--section-m_sm);
  }
  .section-mt--sm-sp {
    margin-top: var(--section-m_sm);
  }
  .section-mb--sm-sp {
    margin-bottom: var(--section-m_sm);
  }
  .section-m--md-sp {
    margin-top: var(--section-m_md);
    margin-bottom: var(--section-m_md);
  }
  .section-mt--md-sp {
    margin-top: var(--section-m_md);
  }
  .section-mb--md-sp {
    margin-bottom: var(--section-m_md);
  }
  .section-m--lg-sp {
    margin-top: var(--section-m_lg);
    margin-bottom: var(--section-m_lg);
  }
  .section-mt--lg-sp {
    margin-top: var(--section-m_lg);
  }
  .section-mb--lg-sp {
    margin-bottom: var(--section-m_lg);
  }
  .section-p--xs-sp {
    padding-top: var(--section-m_xs);
    padding-bottom: var(--section-m_xs);
  }
  .section-pt--xs-sp {
    padding-top: var(--section-m_xs);
  }
  .section-pb--xs-sp {
    padding-bottom: var(--section-m_xs);
  }
  .section-p--sm-sp {
    padding-top: var(--section-m_sm);
    padding-bottom: var(--section-m_sm);
  }
  .section-pt--sm-sp {
    padding-top: var(--section-m_sm);
  }
  .section-pb--sm-sp {
    padding-bottom: var(--section-m_sm);
  }
  .section-p--md-sp {
    padding-top: var(--section-m_md);
    padding-bottom: var(--section-m_md);
  }
  .section-pt--md-sp {
    padding-top: var(--section-m_md);
  }
  .section-pb--md-sp {
    padding-bottom: var(--section-m_md);
  }
  .section-p--lg-sp {
    padding-top: var(--section-m_lg);
    padding-bottom: var(--section-m_lg);
  }
  .section-pt--lg-sp {
    padding-top: var(--section-m_lg);
  }
  .section-pb--lg-sp {
    padding-bottom: var(--section-m_lg);
  }
  .section-split__title {
    padding: var(--section-m_side);
    padding-top: calc(24 / 375 * (100dvw - var(--scrollbar)));
    padding-bottom: calc(24 / 375 * (100dvw - var(--scrollbar)));
    border-bottom: var(--border);
  }
  .section-split__supplement {
    font-size: calc(15 / 375 * (100dvw - var(--scrollbar)));
  }
  .text-xs-sp {
    font-size: var(--text-xs);
  }
  .text-sm-sp {
    font-size: var(--text-sm);
  }
  .text-md-sp {
    font-size: var(--text-md);
  }
  .text-lg_sm-sp {
    font-size: var(--text-lg_sm);
  }
  .text-lg-sp {
    font-size: var(--text-lg);
  }
  .text-xl-sp {
    font-size: var(--text-xl);
  }
  .section-strong-title-box {
    padding: calc(35 / 375 * (100dvw - var(--scrollbar))) var(--section-m_side) calc(10 / 375 * (100dvw - var(--scrollbar)));
  }
  .section-strong-title-box .section-title__main {
    font-size: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .section-strong-title-box .section-title__sub {
    font-size: calc(11 / 375 * (100dvw - var(--scrollbar)));
  }
  .section-strong-title__deco::before {
    top: calc(23 / 375 * (100dvw - var(--scrollbar)));
  }
  .section-strong-title__deco::after {
    left: calc(187 / 375 * (100dvw - var(--scrollbar)));
  }
  .section-strong-title__deco-text {
    top: calc(7 / 375 * (100dvw - var(--scrollbar)));
    left: calc(184 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(81 / 375 * (100dvw - var(--scrollbar)));
  }
  .disco-section .section-strong-title__deco-text {
    top: calc(-1 / 375 * (100dvw - var(--scrollbar)));
    left: calc(182 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(92 / 375 * (100dvw - var(--scrollbar)));
  }
  .disco-section .section-strong-title__deco::before {
    top: calc(17 / 375 * (100dvw - var(--scrollbar)));
  }
  .disco-section .section-strong-title-box {
    padding-bottom: calc(12 / 375 * (100dvw - var(--scrollbar)));
  }
  .section-title {
    font-size: calc(18 / 375 * (100dvw - var(--scrollbar)));
  }
  .section-title--lg {
    font-size: calc(28 / 375 * (100dvw - var(--scrollbar)));
  }
  .article-box .section-title__main {
    font-size: calc(36 / 375 * (100dvw - var(--scrollbar)));
  }
  .section-deco-title {
    top: calc(-24 / 375 * (100dvw - var(--scrollbar)));
    left: calc(-8 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(108 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-form .section-deco-title {
    font-size: calc(96 / 375 * (100dvw - var(--scrollbar)));
  }
  .top-main .section-deco-title {
    font-size: calc(106 / 375 * (100dvw - var(--scrollbar)));
  }
  .group-detail {
    padding-bottom: var(--section-m_lg);
  }
  .live-mv__bg-box {
    height: calc(104 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-mv__inner {
    padding: calc(13 / 375 * (100dvw - var(--scrollbar))) calc(13 / 375 * (100dvw - var(--scrollbar))) calc(30 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-mv__img-wrap {
    margin-bottom: calc(26 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-mv__img {
    max-height: calc(166 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-mv__title {
    font-size: calc(24 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-about__text + .live-about__text {
    margin-top: calc(40 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-about__button {
    margin-top: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-schedule__item-box {
    gap: calc(44 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-schedule__title-name {
    font-size: calc(12 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-schedule__title-date {
    font-size: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-flow__item-box {
    gap: calc(56 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-flow__num {
    font-size: calc(18 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-flow__title {
    margin-bottom: calc(14 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(18 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-warning__text {
    margin-bottom: calc(40 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-warning__item {
    flex-direction: column;
  }
  .live-warning__item:not(:first-of-type) {
    padding-top: calc(40 / 375 * (100dvw - var(--scrollbar)));
    margin-top: calc(40 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-link__agree {
    gap: calc(4 / 375 * (100dvw - var(--scrollbar)));
    margin-bottom: calc(12 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(14 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-link__agree-input {
    width: calc(20 / 375 * (100dvw - var(--scrollbar)));
    height: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-link__button {
    padding: calc(12 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-form__list-title {
    margin-bottom: calc(20 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(20 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-form__button-box {
    gap: calc(16 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-mypage {
    padding-bottom: calc(34 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-item-box {
    gap: calc(12 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-item--none-text {
    font-size: 1.5em;
  }
  .live-item__text-box {
    padding: calc(12 / 375 * (100dvw - var(--scrollbar))) calc(16 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-item__title {
    font-size: calc(12 / 375 * (100dvw - var(--scrollbar)));
  }
  .live-item__img-box {
    width: calc(64 / 375 * (100dvw - var(--scrollbar)));
    min-height: calc(64 / 375 * (100dvw - var(--scrollbar)));
  }
  .top-mv {
    padding: calc(87 / 375 * (100dvw - var(--scrollbar))) calc(20 / 375 * (100dvw - var(--scrollbar))) calc(28 / 375 * (100dvw - var(--scrollbar)));
  }
  .top-mv__title-img {
    width: calc(335 / 375 * (100dvw - var(--scrollbar)));
  }
  .top-mv__text {
    margin-top: calc(20 / 375 * (100dvw - var(--scrollbar)));
    font-size: calc(13 / 375 * (100dvw - var(--scrollbar)));
  }
  :root {
    --fade-in-up__translateY: 0 calc(10 / 375 * (100dvw - var(--scrollbar)));
  }
  :root {
    --fade-in-right__translateX: calc(-10 / 375 * (100dvw - var(--scrollbar))) 0;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --header-logo_w: calc(220 / 1760 * (100dvw - var(--scrollbar)));
    --header-logo_h: calc(125 / 1760 * (100dvw - var(--scrollbar)));
  }
}
/*# sourceMappingURL=0_sm_base.css.map */
