@charset "utf-8";

/* ================================================================
   ベーススタイル
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable; /* スクロールロック時ガタつかないよう */
  scroll-padding-top: var(--HEADER_HEIGHT);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--FONT_FAMILY);
  font-size: var(--FONT_SIZE);
  font-weight: var(--FONT_WEIGHT);
  line-height: var(--LINE_HEIGHT);
  overflow-x: clip;
  text-rendering: optimizespeed;
}

body.is-scroll-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dd {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

strong,
em {
  font-style: normal;
}

b {
  font-weight: var(--FONT_WEIGHT_BOLD);
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  border: 0;
  max-width: 100%;
  vertical-align: bottom;
}

button,
input[type="button"] {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
  font: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

[hidden]:not([hidden=until-found i]):not(embed) {
  display: none !important;
}

/* ================================================================
   変数定義
   ================================================================ */
:root {
  --WIDTH_CONTENT: 1280px;
  --JS_WIDTH_CAROUSEL_SLIDE: 0;
  --OUTSIDE_GUTTER: 16px;
  --COLOR_BLACK: #000;
  --COLOR_GRAY: #444;
  --COLOR_LIGHT_GRAY: #e2e2e2;
  --COLOR_WHITE: #fff;
  --COLOR_PRIMARY: #009944;
  --COLOR_GRADIENT_GREEN: linear-gradient(to right, #33ad69, #68c148);
  --COLOR_GRADIENT_RED: linear-gradient(to right, #e60012, #ec4f35);
  --COLOR_SECONDARY: #b5dfc8;
  --COLOR_SECONDARY_GRAY: #73777a;
  --COLOR_SECONDARY_LIGHT_GRAY: #eff3f5;
  --COLOR_BACKGROUND: #ecfaf0;
  --COLOR_CAUTION: #e60012;
  --COLOR_CAUTION_BACKGROUND: #ffe0d9;
  --COLOR_DENKI_ORANGE: #D95300;
  --COLOR_REVO_BLUE: #0095DA;
  --COLOR_REVO_PINK: #EB1A74;
  --FONT_FAMILY:
    "Noto Sans JP", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic",
    sans-serif;
  --FONT_SIZE: 1.4rem;
  --FONT_WEIGHT: 400;
  --FONT_WEIGHT_BOLD: 700;
  --LINE_HEIGHT: 1.8;
  --LINE_HEIGHT_NARROW: 1.5;
  --EASING: ease-out;
  --DURATION: .2s;
  --TRANSITION: var(--EASING) var(--DURATION);
  --Z_INDEX_LOWER_LAYER: -1;
  --Z_INDEX_UPPER_LAYER: 1;
  --Z_INDEX_MIDDLE_LAYER: 10;
  --Z_INDEX_HEADER: 100;
  --HEADER_HEIGHT: 78px;
  --JS_DISMISSIBLE_BANNER_OFFSET: 0px;
}

@media screen and (min-width: 769px) {
  :root {
    --OUTSIDE_GUTTER: 40px;
    --FONT_SIZE: 1.6rem;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --HEADER_HEIGHT: 98px;
  }
}

/* ================================================================
   ヘッダー
   ================================================================ */
main::before {
  content: "";
  position: fixed;
  inset: 0;
  top: var(--JS_DISMISSIBLE_BANNER_OFFSET);
  z-index: calc(var(--Z_INDEX_HEADER) - 1);
  background-color: rgb(0 0 0 / .4);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--TRANSITION),
    visibility var(--TRANSITION);
}

main.is-overlay::before {
  opacity: 1;
  visibility: visible;
}

.str-header {
  position: sticky;
  top: 0;
  z-index: var(--Z_INDEX_HEADER);
  width: 100%;
  background-color: var(--COLOR_WHITE);
  transition:
    opacity var(--TRANSITION),
    visibility var(--TRANSITION);
}

.str-header.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* シンプルヘッダー用 */
.str-header:not(:has(.str-header__body)) {
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .str-header {
    display: flex;
    border-bottom: 2px solid var(--COLOR_SECONDARY_LIGHT_GRAY);
  }
}

.str-header__head {
  display: flex;
  align-items: center;
  min-height: var(--HEADER_HEIGHT);
  padding: 10px 16px;
  border-bottom: 2px solid var(--COLOR_SECONDARY_LIGHT_GRAY);
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 1024px) {
  .str-header__head {
    align-items: stretch;
    padding-inline: var(--OUTSIDE_GUTTER) 0;
    border: none;
  }
}

.str-header__logo {
  width: 103px;
  margin-right: auto;
  line-height: 0;
}

@media screen and (min-width: 1024px) {
  .str-header__logo {
    width: 126px;
    align-self: center;
  }
}

.str-header__logo-link {
  display: inline-block;
}

.str-header__logo-link > img {
  display: block;
  width: 100%;
}

.str-header__info {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding: 32px 24px;
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 1024px) {
  .str-header__info {
    justify-content: flex-end;
    flex-direction: row;
    column-gap: 16px;
    padding: 0;
  }
}

.str-header__info-item--search {
  order: 3;
}

@media screen and (min-width: 1024px) {
  .str-header__info-item--search {
    order: 0;
  }
}

.str-header__info-link {
  display: block;
  position: relative;
  padding-right: 16px;
  font-size: 1.2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  color: var(--COLOR_BLACK);
}

@media screen and (min-width: 1024px) {
  .str-header__info-link {
    display: flex;
    align-items: center;
    padding-right: 0;
  }
}

.str-header__info-item:not(.str-header__info-item--search)
  .str-header__info-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .str-header__info-item:not(.str-header__info-item--search)
    .str-header__info-link::after {
    content: none;
  }
}

.str-header__info-item--search > .str-header__info-link {
  display: none;
}

@media screen and (min-width: 1024px) {
  .str-header__info-item--search > .str-header__info-link {
    display: flex;
    column-gap: 10px;
  }

  .str-header__info-item--search > .str-header__info-link::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("/common/images/se/shared/icon-search.svg");
  }
}

.str-header__info-link-search-container {
  margin-top: 8px;
}

@media screen and (min-width: 1024px) {
  .str-header__info-link-search-container {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: 0;
    z-index: var(--Z_INDEX_HEADER);
    background-color: var(--COLOR_WHITE);
    box-shadow: 0 4px 8px rgb(0 0 0 / .08);
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--TRANSITION);
  }
}

@media screen and (min-width: 1024px) {
  .str-header__info-link-search-inner {
    max-width: var(--WIDTH_CONTENT);
    margin: 0 auto;
    padding: 48px 60px 65px;
  }
}

.str-header__info-link-search-form {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .str-header__info-link-search-form.for-sp {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .str-header__info-link-search-form.for-pc {
    display: none;
  }
}

.str-header__info-link-search-input {
  display: flex;
  width: 100%;
  padding: 17px 49px 17px 25px;
  border: none;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
  font-size: 1.2rem;
  background-image: url('/common/images/se/shared/icon-search.svg');
  background-repeat: no-repeat;
  background-position: bottom 50% right 25px;
  background-size: 14px 14px;
}

@media screen and (min-width: 1024px) {
  .str-header__info-link-search-input {
    padding: 26px 50px 26px 25px;
    font-size: var(--FONT_SIZE);
  }
}

.str-header__info-link-search-submit {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  opacity: 0;
}

.str-header__login-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.str-header__hamburger-btn {
  position: relative;
  width: 56px;
  height: 56px;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
}

@media screen and (min-width: 1024px) {
  .str-header__login-btn,
  .str-header__hamburger-btn {
    display: none;
  }
}

.str-header__login-btn::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("/common/images/se/shared/header/icon-login.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.str-header__login-btn-label {
  display: block;
  font-size: .8rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT);
  color: var(--COLOR_GRAY);
}

.str-header__hamburger-btn::before,
.str-header__hamburger-text::before,
.str-header__hamburger-text::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--COLOR_PRIMARY);
  transform-origin: center;
  transition:
    transform .3s cubic-bezier(.4, 0, .2, 1),
    opacity .25s cubic-bezier(.4, 0, .2, 1);
}

.str-header__hamburger-btn::before {
  transform: translate(-50%, -7px);
}

.str-header__hamburger-text::before {
  transform: translate(-50%, 0);
}

.str-header__hamburger-text::after {
  transform: translate(-50%, 7px);
}

.str-header__hamburger-btn.is-open::before {
  transform: translate(-50%, 0) rotate(45deg);
}

.str-header__hamburger-btn.is-open .str-header__hamburger-text::before {
  opacity: 0;
  transform: translate(-50%, 0) scaleX(0);
}

.str-header__hamburger-btn.is-open .str-header__hamburger-text::after {
  transform: translate(-50%, 0) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .str-header__hamburger-btn::before,
  .str-header__hamburger-text::before,
  .str-header__hamburger-text::after {
    transition: none;
  }
}

.str-header__hamburger-text {
  display: block;
  margin-top: 32px;
  font-size: .8rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT);
  color: var(--COLOR_GRAY);
}

.str-header__body {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: calc(100dvh - var(--HEADER_HEIGHT) - var(--JS_DISMISSIBLE_BANNER_OFFSET));
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  background-color: #44444480;
  transition:
    opacity var(--TRANSITION),
    visibility var(--TRANSITION);
}

@media screen and (min-width: 1024px) {
  .str-header__body {
    position: static;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    min-height: inherit;
    max-height: none;
    padding: 12px 24px 24px;
    overflow: unset;
    opacity: unset;
    visibility: unset;
    background-color: inherit;
  }
}

.str-header__login.is-open,
.str-header__body.is-open {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 1024px) {
  .str-header__nav {
    display: flex;
    align-items: stretch;
    order: 2;
  }
}

.str-header__nav-item {
  border-top: 1px solid var(--COLOR_WHITE);
}

.str-header__nav-item:first-child {
  border-top: 0;
}

@media screen and (min-width: 1024px) {
  .str-header__nav-item {
    flex: 1 1 0;
    min-width: 0;
    border-top: 0;
    border-right: 1px solid var(--COLOR_LIGHT_GRAY);
  }

  .str-header__nav-item:last-child {
    border-right: none;
  }
}

.str-header__nav-link {
  display: block;
  position: relative;
  padding: 24px 44px 24px 24px;
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
  color: var(--COLOR_BLACK);
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
  transition: background-color var(--TRANSITION);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    line-height: var(--LINE_HEIGHT);
    background-color: transparent;
    transition: color var(--TRANSITION);
  }

  .str-header__nav-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    pointer-events: none;
    background-color: var(--COLOR_PRIMARY);
    opacity: 0;
    transition: opacity var(--TRANSITION);
  }
}

@media only screen and (any-hover: hover) {
  .str-header__nav-link:hover,
  .str-header__nav-link:focus-visible {
    color: var(--COLOR_PRIMARY);
  }

  .str-header__nav-link:focus-visible {
    outline: 2px solid var(--COLOR_BLACK);
    outline-offset: -4px;
  }
}

/* 第2階層あり */
.str-header__nav-item:has(.str-header__nav-level2) .str-header__nav-link {
  position: relative;
}

.str-header__nav-item:has(.str-header__nav-level2)
  .str-header__nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background-color: var(--COLOR_PRIMARY);
}

.str-header__nav-item:has(.str-header__nav-level2)
  .str-header__nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 31px;
  width: 2px;
  height: 15px;
  margin-top: -7.5px;
  background-color: var(--COLOR_PRIMARY);
  transform-origin: center;
  transition: transform var(--TRANSITION);
}

.str-header__nav-item:has(.str-header__nav-level2)
  .str-header__nav-link.is-open::after {
  transform: rotate(-90deg);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-item:has(.str-header__nav-level2) .str-header__nav-link {
    padding: 0;
  }

  .str-header__nav-item:has(.str-header__nav-level2)
    .str-header__nav-link::before {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: -24px;
    left: 0;
    width: auto;
    height: 4px;
    margin-top: 0;
    pointer-events: none;
    background-color: var(--COLOR_PRIMARY);
    opacity: 0;
    transition: opacity var(--TRANSITION);
  }

  .str-header__nav-item:has(.str-header__nav-level2)
    .str-header__nav-link.is-open::before {
    opacity: 1;
  }

  .str-header__nav-item:has(.str-header__nav-level2)
    .str-header__nav-link::after {
    position: static;
    top: auto;
    right: auto;
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 0;
    background-color: transparent;
    border-right: 2px solid var(--COLOR_PRIMARY);
    border-bottom: 2px solid var(--COLOR_PRIMARY);
    transform: rotate(45deg);
    transform-origin: 55% 62%;
    transition: transform var(--TRANSITION);
  }

  .str-header__nav-item:has(.str-header__nav-level2)
    .str-header__nav-link.is-open {
    color: var(--COLOR_PRIMARY);
  }

  .str-header__nav-item:has(.str-header__nav-level2)
    .str-header__nav-link.is-open::after {
    transform: rotate(-135deg);
  }
}

.str-header__nav-item:not(:has(.str-header__nav-level2))
  .str-header__nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-item:not(:has(.str-header__nav-level2))
    .str-header__nav-link::after {
    content: none;
  }
}

.str-header__nav-level2 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height var(--TRANSITION);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-level2 {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: var(--Z_INDEX_HEADER);
    background-color: var(--COLOR_WHITE);
    box-shadow: 0 4px 8px rgb(0 0 0 / .08);
  }
}

.str-header__nav-level2.is-open,
.str-header__info-link-search-container.is-open {
  max-height: none;
  opacity: 1;
  visibility: visible;
}

.str-header__nav-close-btn {
  display: none;
}

@media screen and (min-width: 1024px) {
  .str-header__nav-close-btn {
    display: block;
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 60px;
    height: 57px;
    background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
  }

  .str-header__nav-close-btn::before,
  .str-header__nav-close-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--COLOR_PRIMARY);
    transform-origin: center;
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .str-header__nav-close-btn::after {
    transform: translate(-50%, 0) rotate(45deg);
  }
}

.str-header__nav-close-btn-text {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
}

.str-header__nav-level2-container {
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-level2-container {
    max-width: var(--WIDTH_CONTENT);
    margin: 0 auto;
    padding: 48px 60px 65px;
  }
}

.str-header__nav-level2-head-text {
  display: none;
}

.str-header__nav-level2-head-link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 44px 16px 24px;
  font-weight: var(--FONT_WEIGHT);
  line-height: var(--LINE_HEIGHT);
  color: var(--COLOR_GRAY);
  transition: color var(--TRANSITION);
}

.str-header__nav-level2-head-link-text {
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition: background-size var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .str-header__nav-level2-head-link:hover,
  .str-header__nav-level2-head-link:focus-visible {
    outline-offset: -4px;
    color: var(--COLOR_PRIMARY);
  }

  .str-header__nav-level2-head-link:hover .str-header__nav-level2-head-link-text,
  .str-header__nav-level2-head-link:focus-visible .str-header__nav-level2-head-link-text {
      background-size: 100% 1px;
  }
}

.str-header__nav-level2-head-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-level2-head {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 32px;
    padding: 0 0 16px;
    border-bottom: 3px solid var(--COLOR_LIGHT_GRAY);
  }

  .str-header__nav-level2-head::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--COLOR_PRIMARY);
  }

  .str-header__nav-level2-head-text {
    display: block;
    font-size: 2.6rem;
    font-weight: var(--FONT_WEIGHT_BOLD);
    line-height: var(--LINE_HEIGHT_NARROW);
    color: var(--COLOR_BLACK);
  }

  .str-header__nav-level2-head-link {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 0 24px 0 0;
    color: var(--COLOR_BLACK);
  }

  .str-header__nav-level2-head-link::after {
    right: 8px;
    border-top-color: var(--COLOR_PRIMARY);
    border-right-color: var(--COLOR_PRIMARY);
  }

  .str-header__nav-level2-body {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-top: 24px;
  }

  .str-header__nav-level2-body--margin-large {
    margin-top: 32px;
  }

  .str-header__nav-level2-layout {
    display: grid;
    flex: 1 1 0;
    min-width: 0;
    gap: 48px;
  }

  .str-header__nav-level2-layout[data-column-pc="1"] {
    grid-template-columns: 1fr;
  }

  .str-header__nav-level2-layout[data-column-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .str-header__nav-level2-layout[data-column-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

.str-header__nav-level2-layout-item > *:first-child {
  margin-top: 0;
}

.str-header__nav-level2-body-text {
  padding: 24px;
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT);
  color: var(--COLOR_BLACK);
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-level2-body-text {
    padding: 0 0 10px;
    border-top: 0;
    border-bottom: 1px solid var(--COLOR_LIGHT_GRAY);
    line-height: var(--LINE_HEIGHT_NARROW);
  }
}

@media screen and (min-width: 1024px) {
  .str-header__nav-level2-list {
    margin-top: 24px;
  }
}

.str-header__nav-level2-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding: 16px 28px 16px 24px;
  border-top: 1px solid var(--COLOR_SECONDARY_LIGHT_GRAY);
}

.str-header__nav-level2-item:last-child {
  border-bottom: 1px solid var(--COLOR_SECONDARY_LIGHT_GRAY);
}

.str-header__nav-level2-item::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(10%) rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-level2-item {
    margin-top: 16px;
    padding: 0;
    border-top: 0;
  }

  .str-header__nav-level2-item:first-child {
    margin-top: 0;
  }

  .str-header__nav-level2-item:last-child {
    border-bottom: none;
  }
}

.str-header__nav-level2-body-link {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  font-weight: var(--FONT_WEIGHT);
  line-height: var(--LINE_HEIGHT);
  background-color: transparent;
}

.str-header__nav-level2-body-link-text {
  width: fit-content;
  color: var(--COLOR_GRAY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .str-header__nav-level2-body-link:hover
    .str-header__nav-level2-body-link-text,
  .str-header__nav-level2-body-link:focus-visible
    .str-header__nav-level2-body-link-text {
    color: var(--COLOR_PRIMARY);
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

@media screen and (min-width: 1024px) {
  .str-header__nav-level2-body-link {
    flex: 0 1 auto;
    display: inline-block;
    width: fit-content;
  }

  .str-header__nav-level2-body-link-text {
    font-size: 1.6rem;
    color: var(--COLOR_BLACK);
  }
}

.str-header__nav-level2-media {
  padding: 24px;
  background-color: var(--COLOR_WHITE);
  border-top: 1px solid var(--COLOR_SECONDARY_LIGHT_GRAY);
}

@media screen and (min-width: 1024px) {
  .str-header__nav-level2-media {
    flex: 0 0 auto;
    width: 316px;
    padding: 0;
    border-top: 0;
  }
}

.str-header__nav-level2-img {
  display: block;
  width: 100%;
}

.str-header__login {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: calc(100dvh - var(--HEADER_HEIGHT) - var(--JS_DISMISSIBLE_BANNER_OFFSET));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background-color: rgb(0 0 0 / .4);
  transition:
    opacity var(--TRANSITION),
    visibility var(--TRANSITION);
}

@media screen and (min-width: 1024px) {
  .str-header__login {
    display: none;
  }
}

.str-header__login-panel {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 24px 16px;
  background-color: var(--COLOR_WHITE);
}

.str-header__login-panel-content {
  display: flex;
  flex-direction: column;
}

.str-header__login-panel-content .m-button {
  margin-top: 12px;
  width: 100%;
}

.str-header__login-panel-title {
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
  text-align: center;
}

.str-header__login-panel-text {
  font-size: var(--FONT_SIZE);
  font-weight: var(--FONT_WEIGHT);
  line-height: var(--LINE_HEIGHT);
  text-align: center;
  margin-top: 4px;
}

.str-header__login-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
  padding: 24px 32px 24px 24px;
  border-top: 1px solid var(--COLOR_SECONDARY_LIGHT_GRAY);
  color: var(--COLOR_GRAY);
  font-size: var(--FONT_SIZE);
  font-weight: var(--FONT_WEIGHT);
  line-height: var(--LINE_HEIGHT);
  background-color: var(--COLOR_WHITE);
}

.str-header__login-link::after {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: rotate(45deg);
}

@media (scripting: none) {
  .str-header {
    position: static;
  }

  .str-header__body {
    position: static;
    min-height: auto;
    max-height: inherit;
    background-color: inherit;
    opacity: 1;
    visibility: inherit;
    overflow: hidden;
  }

  .str-header__nav-level2 {
    max-height: none;
    opacity: 1;
    visibility: inherit;
  }

  @media screen and (min-width: 1024px) {
    .str-header__nav-level2 {
      position: static;
    }
  }

  @media screen and (min-width: 1024px) {
    .str-header__nav {
      flex-direction: column;
    }
  }

  @media screen and (min-width: 1024px) {
    .str-header__info {
      flex-direction: column;
    }
  }

  @media screen and (min-width: 1024px) {
    .str-header__info-link-search-container {
      position: static;
      height: auto;
      opacity: 1;
      visibility: visible;
    }
  }
}

/* ================================================================
   フッター
   ================================================================ */
.str-footer__main {
  padding-bottom: 24px;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
}

@media screen and (min-width: 1024px) {
  .str-footer__main {
    padding: 80px 0;
  }
}

.str-footer__aside {
  padding: 24px;
  background-color: var(--COLOR_PRIMARY);
}

@media screen and (min-width: 1024px) {
  .str-footer__aside {
    padding: 24px 0;
  }
}

.str-footer__copyright {
  padding: 24px 0;
  background-color: var(--COLOR_WHITE);
}

.str-footer__inner {
  max-width: calc(var(--WIDTH_CONTENT) + 80px);
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .str-footer__inner {
    padding: 0 40px;
  }
}

.str-footer__body {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
  .str-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.str-footer__nav-item {
  border-bottom: 1px solid var(--COLOR_LIGHT_GRAY);
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-item {
    border-bottom: none;
  }
}

.str-footer__nav-link {
  display: block;
  padding: 24px 44px 24px 24px;
  color: transparent;
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
  background: linear-gradient(
      to right,
      var(--COLOR_PRIMARY) 50%,
      var(--COLOR_BLACK) 50%
    )
    100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position var(--TRANSITION);
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    padding: 0 0 18px 0;
    background-color: inherit;
    border-bottom: 1px solid var(--COLOR_LIGHT_GRAY);
    font-size: 2rem;
  }
}

@media only screen and (any-hover: hover) {
  .str-footer__nav-link:hover,
  .str-footer__nav-link:focus-visible {
    background-position: 0 100%;
  }

  .str-footer__nav-link:focus-visible {
    outline: 2px solid var(--COLOR_BLACK);
  }
}

/* 第2階層あり */
.str-footer__nav-item:has(.str-footer__nav-level2) .str-footer__nav-link {
  position: relative;
}

.str-footer__nav-item:has(.str-footer__nav-level2)
  .str-footer__nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background-color: var(--COLOR_PRIMARY);
}

.str-footer__nav-item:has(.str-footer__nav-level2)
  .str-footer__nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(24px + 7.5px - 1px);
  width: 2px;
  height: 15px;
  margin-top: -7.5px;
  background-color: var(--COLOR_PRIMARY);
  transform-origin: center;
  transition: transform var(--TRANSITION);
}

.str-footer__nav-item:has(.str-footer__nav-level2)
  .str-footer__nav-link.is-open::after {
  transform: rotate(-90deg);
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-item:has(.str-footer__nav-level2)
    .str-footer__nav-link::before {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: -24px;
    left: 0;
    width: auto;
    height: 4px;
    margin-top: 0;
    pointer-events: none;
    background-color: var(--COLOR_PRIMARY);
    opacity: 0;
    transition: opacity var(--TRANSITION);
  }

  .str-footer__nav-item:has(.str-footer__nav-level2)
    .str-footer__nav-link.is-open::before {
    opacity: 1;
  }

  .str-footer__nav-item:has(.str-footer__nav-level2)
    .str-footer__nav-link::after {
    position: static;
    top: auto;
    right: auto;
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 0;
    background-color: transparent;
    border-right: 2px solid var(--COLOR_PRIMARY);
    border-bottom: 2px solid var(--COLOR_PRIMARY);
    transform: rotate(-45deg);
    transform-origin: 55% 62%;
    transition: transform var(--TRANSITION);
  }

  .str-footer__nav-item:has(.str-footer__nav-level2)
    .str-footer__nav-link.is-open::after {
    transform: rotate(-135deg);
  }
}

.str-footer__nav-item:not(:has(.str-footer__nav-level2))
  .str-footer__nav-link::after {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-right: 2px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: rotate(45deg);
}

.str-footer__nav-level2 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height var(--TRANSITION);
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-level2 {
    max-height: none;
    padding-top: 16px;
    opacity: 1;
    visibility: visible;
  }
}

.str-footer__nav-level2.is-open {
  max-height: none;
  opacity: 1;
  visibility: visible;
}

.str-footer__nav-level2-container {
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-level2-container {
    background-color: inherit;
  }
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-level2-head {
    display: none;
  }
}

.str-footer__nav-level2-head-link {
  position: relative;
  display: block;
  padding: 16px 44px 16px 24px;
  background-color: var(--COLOR_WHITE);
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT);
  line-height: var(--LINE_HEIGHT);
  color: var(--COLOR_GRAY);
  transition: color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .str-footer__nav-level2-head-link:hover,
  .str-footer__nav-level2-head-link:focus-visible {
    color: var(--COLOR_PRIMARY);
  }
}

.str-footer__nav-level2-head-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: rotate(45deg);
}

.str-footer__nav-level2-body-text {
  padding: 24px;
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT);
  color: var(--COLOR_BLACK);
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-level2-body-text {
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-level2-layout {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-level2-list,
  .str-footer__nav-level2-layout-item {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
}

.str-footer__nav-level2-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding: 16px 28px 16px 24px;
  border-top: 1px solid var(--COLOR_SECONDARY_LIGHT_GRAY);
}

.str-footer__nav-level2-item::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(10%) rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-level2-item {
    padding: 0;
    border: none;
  }
}

.str-footer__nav-level2-body-link {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  font-weight: var(--FONT_WEIGHT);
  line-height: var(--LINE_HEIGHT);
  background-color: transparent;
}

.str-footer__nav-level2-body-link-text {
  width: fit-content;
  color: var(--COLOR_GRAY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .str-footer__nav-level2-body-link:hover
    .str-footer__nav-level2-body-link-text,
  .str-footer__nav-level2-body-link:focus-visible
    .str-footer__nav-level2-body-link-text {
    color: var(--COLOR_PRIMARY);
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

@media screen and (min-width: 1024px) {
  .str-footer__nav-level2-body-link {
    flex: 0 1 auto;
    display: inline-block;
    width: fit-content;
  }

  .str-footer__nav-level2-body-link-text {
    font-size: 1.4rem;
    color: var(--COLOR_BLACK);
  }
}

.str-footer__login-panel {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  padding: 24px 16px;
  background-color: var(--COLOR_WHITE);
}

.str-footer__login-panel-item {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 16px;
}

.str-footer__login-panel-content {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.str-footer__caution {
  margin-top: 24px;
  padding: 0 24px;
  font-size: 1.4rem;
  color: var(--COLOR_GRAY);
}

/* シンプルフッター用 */
.str-footer__inner:not(:has(.str-footer__body)) .str-footer__caution {
  margin-top: 0;
  padding-top: 24px;
}

@media screen and (min-width: 1024px) {
  .str-footer__caution {
    margin-top: 72px;
    padding: 0;
  }

  /* シンプルフッター用 */
  .str-footer__inner:not(:has(.str-footer__body)) .str-footer__caution {
    padding-top: 0;
  }
}

.str-footer__box {
  margin: 16px 24px 0;
  padding: 32px;
  border: 2px solid var(--COLOR_PRIMARY);
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 1024px) {
  .str-footer__box {
    margin: 8px 0 0;
  }
}

.str-footer__box-layout {
  display: grid;
  row-gap: 16px;
}

@media screen and (min-width: 1024px) {
  .str-footer__box-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.str-footer__box-layout-item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-top: 16px;
}

.str-footer__box-layout-item:first-child {
  padding-top: 0;
}

.str-footer__box-layout-item:last-child {
  border-top: 1px solid var(--COLOR_LIGHT_GRAY);
}

@media screen and (min-width: 1024px) {
  .str-footer__box-layout-item:first-child {
    padding-right: 48px;
  }

  .str-footer__box-layout-item:last-child {
    padding-top: 0;
    padding-left: 48px;
    border-top: none;
    border-left: 1px solid var(--COLOR_LIGHT_GRAY);
  }
}

.str-footer__box-title {
  color: var(--COLOR_GRAY);
}

.str-footer__box-text {
  color: var(--COLOR_GRAY);
  font-size: 1.2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
}

@media screen and (min-width: 1024px) {
  .str-footer__box-text {
    font-size: 1.4rem;
  }
}

.str-footer__box-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

@media screen and (min-width: 1024px) {
  .str-footer__box-list--pc-row {
    flex-direction: row;
    column-gap: 24px;
  }
}

.str-footer__box-list-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.str-footer__box-list-item::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(10%) rotate(45deg);
}

.str-footer__box-list-link {
  display: inline-block;
  width: fit-content;
  color: var(--COLOR_BLACK);
}

.str-footer__box-list-link-text {
  width: fit-content;
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

@media screen and (min-width: 1024px) {
  .str-footer__box-list-link-text {
    font-size: 1.4rem;
  }
}

@media only screen and (any-hover: hover) {
  .str-footer__box-list-link:hover .str-footer__box-list-link-text,
  .str-footer__box-list-link:focus-visible .str-footer__box-list-link-text {
    color: var(--COLOR_PRIMARY);
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

.str-footer__aside-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  color: var(--COLOR_WHITE);
}

@media screen and (min-width: 1024px) {
  .str-footer__aside-list {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 10px;
  }
}

.str-footer__aside-list-item {
  display: flex;
  column-gap: 8px;
}

.str-footer__aside-list-link {
  font-size: 1.2rem;
  color: var(--COLOR_WHITE);
}

.str-footer__aside-list-link-text {
  display: inline;
  background-image: linear-gradient(var(--COLOR_WHITE));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition: background-size var(--TRANSITION);
}

.str-footer__aside-list-link-text::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_WHITE);
  border-right: 2px solid var(--COLOR_WHITE);
  rotate: 45deg;
  translate: -1px 0;
  transform-origin: center 0;
}

@media only screen and (any-hover: hover) {
  .str-footer__aside-list-link:hover .str-footer__aside-list-link-text,
  .str-footer__aside-list-link:focus-visible .str-footer__aside-list-link-text {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

.str-footer__aside-list-link-icon-blank {
  position: relative;
  top: -.2em;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  color: var(--COLOR_WHITE);
}

.str-footer__aside-list-link:has(.str-footer__aside-list-link-icon-blank) .str-footer__aside-list-link-text::after {
  content: none;
}

.str-footer__copyright-layout {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 0 24px;
}

@media screen and (min-width: 1024px) {
  .str-footer__copyright-layout {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
  }
}

.str-footer__copyright-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}

@media screen and (min-width: 1024px) {
  .str-footer__copyright-item {
    justify-content: center;
    align-items: end;
  }
}

.str-footer__copyright-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}

@media screen and (min-width: 1024px) {
  .str-footer__copyright-icons {
    flex-direction: row;
    align-items: end;
    column-gap: 40px;
  }
}

.str-footer__copyright-apps {
  display: flex;
  justify-content: space-around;
  column-gap: 16px;
}

@media screen and (min-width: 1024px) {
  .str-footer__copyright-apps {
    column-gap: 8px;
  }
}

@media (scripting: none) {
  .str-footer__body {
    position: static;
    min-height: auto;
    max-height: inherit;
    background-color: inherit;
    opacity: 1;
    visibility: inherit;
    overflow: hidden;
  }

  .str-footer__nav-level2 {
    max-height: none;
    opacity: 1;
    visibility: inherit;
  }
}

/* ============================================================
   外部ライブラリ
   ============================================================ */
/* ----------- Splide v4.x（編集厳禁、ライブラリ更新時は丸ごと差し替え） ----------- */
/* stylelint-disable */
.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}

/* ----------- Splideのデフォルトスタイルを上書き ----------- */
.splide:not(.is-initialized) {
  visibility: visible;
}

.splide:not(.is-initialized) .splide__list {
  display: grid;
  gap: 24px;
}

.splide__arrows {
  display: flex;
}

.splide__arrow {
  position: relative;
  transform: initial;
  border-radius: 0;
  opacity: 1;
  width: 48px;
  height: 48px;
  background-color: transparent;
}

.splide__arrow:disabled {
  opacity: 1;
  background-color: var(--COLOR_LIGHT_GRAY);
}

.splide.is-focus-in .splide__arrow:focus-visible {
  outline: auto;
  outline-offset: initial;
}

.splide__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 32px;
  height: 32px;
  margin: auto;
  background-color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_WHITE);
  transition:
    border var(--TRANSITION),
    background-color var(--TRANSITION),
    box-shadow var(--TRANSITION);
}

.splide__arrow::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: var(--COLOR_PRIMARY);
  transition: border-color var(--TRANSITION)
}

.splide__arrow:disabled::after {
  border-color: var(--COLOR_GRAY);
}

.splide__arrow--prev {
  left: unset;
}

.splide__arrow--prev::after {
  rotate: -135deg;
}

.splide__arrow--next {
  right: unset;
}

.splide__arrow--next::after {
  rotate: 45deg;
}

@media only screen and (any-hover: hover) {
  .splide__arrow:hover:not(:disabled)::before,
  .splide__arrow:focus-visible:not(:disabled)::before {
    background-color: var(--COLOR_BACKGROUND);
    border-color: var(--COLOR_PRIMARY);
    box-shadow: 0 4px 6px 0 rgb(0 0 0 /0.25);
  }

  .splide__arrow:hover:not(:disabled)::after,
  .splide__arrow:focus-visible:not(:disabled)::after {
    border-color: var(--COLOR_PRIMARY);
  }
}

.splide__pagination {
  position: initial;
  padding: initial;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(34px, 1fr));
  gap: 16px 3px;
  width: 100%;
}

.splide__pagination li {
  display: flex;
  align-items: center;
  height: 3px;
}

.splide__pagination__page {
  width: 100%;
  height: 100%;
  border-radius: 0;
  margin: 0;
  opacity: 1;
  background-color: #cdcdcd;
  font-size: 0;
  overflow: hidden;
}

.splide__pagination__page:focus-visible,
.splide.is-focus-in .splide__pagination__page:focus {
  outline: auto;
  outline-offset: initial;
}

.splide__pagination__page.is-active {
  transform: initial;
  height: 5px;
  background-color: var(--COLOR_PRIMARY);
}

.splide__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 100vmax;
  background-color: rgba(255 255 255 / 0.3);
  z-index: var(--Z_INDEX_UPPER_LAYER);
}

.splide__toggle:focus-visible,
.splide.is-focus-in .splide__toggle:focus {
  outline: auto;
  outline-offset: initial;
}

.splide__toggle::before {
  content: "";
  display: block;
  width: 10px;
  height: 14px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  background-color: var(--COLOR_PRIMARY);
}

.splide__toggle.is-active::before {
  clip-path: none;
  background-color: transparent;
  border-inline: 3px solid var(--COLOR_PRIMARY);
}
/* stylelint-enable */

/* ============================================================
   外部連携パーツ（外部スクリプトが生成する要素のスタイルを上書き）
   ============================================================ */
/* ----------- チャットボット（.paChatArea） ----------- */
   .paChatArea {
  bottom: 84px !important;
  transition: opacity var(--TRANSITION), visibility var(--TRANSITION);
}

.paChatArea.js-floating.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 1024px) {
  .paChatArea {
    bottom: 10px !important;
  }
}

.paChatArea .paChatInfoSpeechBubble {
  max-width: 332px !important;
  border-radius: 20px !important;
  padding: 10px 16px !important;
  line-height: 1.5 !important;
}

.paChatArea .paChatInfoSpeechBubble span {
  font-size: 1.36rem !important;
}

.paChatArea .paChatInfoSpeechBubbleContent {
  gap: 16px !important;
}

/* ============================================================
   汎用レイアウト
   ============================================================ */
/* ----------- パンくず（.str-breadcrumbs） ----------- */
.str-breadcrumbs {
  grid-area: breadcrumbs;
  padding: 16px 24px;
  background-color: var(--COLOR_WHITE);
  border-top: 1px solid var(--COLOR_LIGHT_GRAY);
  border-bottom: 1px solid var(--COLOR_GRAY);
}

@media screen and (min-width: 769px) {
  .str-breadcrumbs {
    border: none;
  }
}

.str-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 4px;
}

.str-breadcrumbs__list > :last-child::after {
  content: none;
}

.str-breadcrumbs__item {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  color: var(--COLOR_GRAY);
}

.str-breadcrumbs__item::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline: 8px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(10%) rotate(45deg);
}

.str-breadcrumbs__item[aria-current="page"] {
  grid-template-columns: auto;
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_SECONDARY_GRAY);
}

.str-breadcrumbs__link {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .str-breadcrumbs__link:hover,
  .str-breadcrumbs__link:focus-visible {
    text-decoration-color: currentColor;
  }
}

/* ----------- トップへ戻るボタン（.str-pagetop） ----------- */
.str-pagetop {
  grid-area: page-top;
  position: relative;
  display: grid;
  place-items: end;
}

.str-pagetop__button {
  position: relative;
  display: block;
  width: 63px;
  height: 79px;
}

.str-pagetop__button::before {
  position: absolute;
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  z-index: var(--Z_INDEX_LOWER_LAYER);
  background: linear-gradient(0deg, #33ad69 .02%, #68c148 99.62%);
  clip-path: path("M0,0V78.669H32.277L62.855,0Z"); /*ボタンの形を台形に整形 */
  transform: rotate(180deg);
}

.str-pagetop__button::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 17px;
  margin: auto 0;
}

@media screen and (min-width: 1024px) {
  .str-pagetop__button {
    width: 80px;
    height: 100px;
  }

  .str-pagetop__button::before {
    clip-path: path("M0,0V100.669H41.007L79.855,0Z");
  }

  .str-pagetop__button::after {
    right: 24px;
  }
}

.str-pagetop__button-text {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
}

/* ----------- メインコンテンツ（.str-main, .str-content） ----------- */
.str-main {
  display: grid;
  grid-template-areas:
    "page-title"
    "content"
    "page-top"
    "breadcrumbs";
}

@media screen and (min-width: 769px) {
  .str-main {
    grid-template-areas:
      "breadcrumbs"
      "page-title"
      "content"
      "page-top";
  }
}

.str-content {
  grid-area: content;
  padding-inline: var(--OUTSIDE_GUTTER);
  min-width: 0;
}

.str-content__inner {
  padding-top: 40px;
  margin-inline: auto;
  padding-bottom: 64px;
  width: 100%;
  max-width: 1200px;
}

@media screen and (min-width: 769px) {
  .str-content__inner {
    padding-top: 80px;
  }
}

.str-content__inner >:first-child {
  margin-top: 0;
}

.str-content__inner >:last-child {
  margin-bottom: 0;
}

.str-content__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media screen and (min-width: 1200px) {
  .str-content__layout {
    grid-template-columns: minmax(0, 1fr) minmax(auto, 280px);
    column-gap: 24px;
  }
}

.str-content__main {
  min-width: 0;
}

.str-content__main >:first-child,
.str-content__side >:first-child {
  margin-top: 0;
}

@media screen and (min-width: 1200px) {
  .str-content__side {
    padding-left: 24px;
    border-left: 1px solid var(--COLOR_LIGHT_GRAY);
  }
}

/* ----------- サイドナビ（.str-side-navigation） ----------- */
.str-side-navigation__title {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
  align-items: center;
  padding-block: calc(24px + 5px) 24px;
  font-size: 1.8rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
  border-top: 5px solid var(--COLOR_PRIMARY);
}

.str-side-navigation__title-icon {
  aspect-ratio: 1 / 1;
  width: 54px;
  height: auto;
  order: -1;
}

.str-side-navigation__list-wrapper {
  border-bottom: 1px solid var(--COLOR_LIGHT_GRAY);
}

.str-side-navigation__list {
  border-top: 1px solid var(--COLOR_LIGHT_GRAY);
}

.str-side-navigation__list + .str-side-navigation__list {
  margin-top: 16px;
}

.str-side-navigation__link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  padding: 16px 8px 16px 16px;
  font-size: 1.6rem;
  color: var(--COLOR_GRAY);
  transition: background-color var(--TRANSITION);
}

/* arrow */
.str-side-navigation__link::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  rotate: 45deg;
  translate: 10px 1px;
  transform-origin: center 0;
}

.str-side-navigation__link::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: transparent;
  transition: var(--TRANSITION);
}

.str-side-navigation__link[aria-current="page"] {
  background-color: var(--COLOR_BACKGROUND);
}

.str-side-navigation__link[aria-current="page"]::before {
  background: linear-gradient(to bottom, #33ad69, #68c148);
}

.str-side-navigation__item .str-side-navigation__list {
  margin-bottom: 16px;
  border-top: none;
}

.str-side-navigation__item .str-side-navigation__list .str-side-navigation__link {
  padding: 8px 8px 8px 24px;
  font-size: 1.4rem;
}

@media only screen and (any-hover: hover) {
  .str-side-navigation__link:hover,
  .str-side-navigation__link:focus-visible {
    background-color: var(--COLOR_BACKGROUND);
  }

  .str-side-navigation__link:hover::before,
  .str-side-navigation__link:focus-visible::before {
    background: linear-gradient(to bottom, #33ad69, #68c148);
  }
}

.str-side-navigation__banner {
  display: flex;
  margin-top: 24px;
}

/* ============================================================
   汎用モジュール
   ============================================================ */
/* ------------------------------------------------------------
   リンク
   ------------------------------------------------------------ */
/* ----------- .m-link-list ----------- */
.m-link-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 16px;
}

.m-link-list--row {
  flex-direction: row;
  flex-wrap: wrap;
  width: fit-content;
  gap: 16px 40px;
  margin-top: 24px;
}

.m-link-list--row-border {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 24px;
}

.m-link-list--row-border .m-link-list__item {
  border-right: 1px solid var(--COLOR_SECONDARY_GRAY);
}

.m-link-list--row-border .m-link-list__link {
  padding-right: 20px;
}

.m-link-list--center .m-link-list__item {
  text-align: center;
}

.m-link-list--right .m-link-list__item {
  text-align: right;
}

.m-link-list__text-wrapper {
  display: inline;
}

/* arrow */
.m-link-list__text-wrapper::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  rotate: 45deg;
  translate: -1px -1px;
  transform-origin: center 0;
}

.m-link-list--emergency .m-link-list__text-wrapper::after {
  border-color: var(--COLOR_CAUTION);
}

.m-link-list__link--arrow-up .m-link-list__text-wrapper::after {
  border: none;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-left: 2px solid var(--COLOR_PRIMARY);
  translate: 0;
}

.m-link-list__link--arrow-down .m-link-list__text-wrapper::after {
  border: none;
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  rotate: 45deg;
  translate: 0 -2px;
}

.m-link-list__link:has(.m-link-list__icon) .m-link-list__text-wrapper::after {
  content: none;
}

.m-link-list__text {
  padding-bottom: 4px;
  margin-right: 4px;
  color: var(--COLOR_PRIMARY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 1px;
  transition:
  background-size var(--TRANSITION),
  color var(--TRANSITION);
}

.m-link-list--emergency .m-link-list__text {
  color: var(--COLOR_CAUTION);
  border-color: var(--COLOR_CAUTION);
  background-image: linear-gradient(var(--COLOR_CAUTION));
}

.m-link-list__link:has(.m-link-list__icon) .m-link-list__text {
  margin-right: 0;
}

.m-link-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

.m-link-list__icon-blank {
  width: 16px;
  height: 16px;
  color: var(--COLOR_PRIMARY);
}

.m-link-list__icon-pdf {
  color: var(--COLOR_CAUTION);
}

@media only screen and (any-hover: hover) {
  .m-link-list__link:hover .m-link-list__text,
  .m-link-list__link:focus-visible .m-link-list__text {
    color: var(--COLOR_GRAY);
    background-size: 0 1px;
  }

  .m-link-list--emergency .m-link-list__link:hover .m-link-list__text,
  .m-link-list--emergency .m-link-list__link:focus-visible .m-link-list__text {
    color: inherit;
  }
}

/* ----------- .m-link-hash ----------- */
.m-link-hash {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .m-link-hash {
    gap: 16px 24px;
    margin-top: 32px;
  }
}

.m-link-hash__link {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.m-link-hash__mark {
  color: var(--COLOR_PRIMARY);
}

.m-link-hash__text {
  padding-bottom: 4px;
  color: var(--COLOR_GRAY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .m-link-hash__link:hover .m-link-hash__text,
  .m-link-hash__link:focus-visible .m-link-hash__text {
    color: var(--COLOR_PRIMARY);
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

/* ----------- .m-link-question ----------- */
.m-link-question {
  display: grid;
  grid-template-columns: auto;
  gap: 16px;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .m-link-question {
    margin-top: 32px;
  }
}

.m-link-question__item {
  border-bottom: 1px solid var(--COLOR_LIGHT_GRAY);
}

.m-link-question__link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  padding-block: 4px 16px;
  padding-inline: calc(32px + 8px + 8px) 8px;
}

@media screen and (min-width: 769px) {
  .m-link-question__link {
    padding-top: 0;
    padding-inline: calc(32px + 16px + 16px) 16px;
  }
}

/* arrow */
.m-link-question__link::after {
  display: inline-flex;
  content: "";
  margin-top: 4px;
  margin-left: 8px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  rotate: -45deg;
}

.m-link-question__mark {
  position: absolute;
  top: 0;
  left: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--COLOR_PRIMARY);
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_WHITE);
}

@media screen and (min-width: 769px) {
  .m-link-question__mark {
    left: 16px;
  }
}

.m-link-question__text {
  padding-bottom: 4px;
  color: var(--COLOR_GRAY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .m-link-question__link:hover .m-link-question__text,
  .m-link-question__link:focus-visible .m-link-question__text {
    color: var(--COLOR_PRIMARY);
    background-position: bottom left;
    background-size: 100% 1px;
  }
}


/* ----------- .m-link-ranking ----------- */
.m-link-ranking {
  display: grid;
  grid-template-columns: auto;
  gap: 16px;
  margin-top: 32px;
}

.m-link-ranking__item {
  border-bottom: 1px solid var(--COLOR_LIGHT_GRAY);
}

.m-link-ranking__link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  padding-bottom: 16px;
  padding-left: calc(40px + 16px);
  margin-top: 8px;
}

.m-link-ranking__link:has(.m-link-ranking__mark--others) {
  margin-top: 4px;
}

/* arrow */
.m-link-ranking__link::after {
  display: inline-flex;
  content: "";
  margin-top: 3px;
  margin-left: 8px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  rotate: -45deg;
}

.m-link-ranking__link:has(.m-link-ranking__icon)::after {
  content: none;
}

.m-link-ranking__mark {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: -8px;
  border-radius: 50%;
}

.m-link-ranking__mark--no1 {
  background-color: #F3E379;
}

.m-link-ranking__mark--no2 {
  background-color: #D6D6D6;
}

.m-link-ranking__mark--no3 {
  background-color: #EBD6C6;
}

.m-link-ranking__mark--others {
  width: 36px;
  height: 36px;
  border: 1px solid var(--COLOR_LIGHT_GRAY);
  background-color: var(--COLOR_WHITE);
  margin-top: -4px;
}

.m-link-ranking__mark-inner {
  display: flex;
  align-items: baseline;
}

.m-link-ranking__mark-number {
  font-size: 2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.6;
  color: var(--COLOR_GRAY);
}

.m-link-ranking__mark-text {
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_GRAY);
}

.m-link-ranking__mark--others .m-link-ranking__mark-number {
  font-size: 1.4rem;
}

.m-link-ranking__text {
  padding-bottom: 4px;
  color: var(--COLOR_GRAY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

.m-link-ranking__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  width: 24px;
  height: 24px;
}

.m-link-ranking__icon-blank {
  width: 16px;
  height: 16px;
  color: var(--COLOR_PRIMARY);
}

@media only screen and (any-hover: hover) {
  .m-link-ranking__link:hover .m-link-ranking__text,
  .m-link-ranking__link:focus-visible .m-link-ranking__text {
    color: var(--COLOR_PRIMARY);
    background-position: bottom left;
    background-size: 100% 2px;
  }
}

/* ----------- .m-link-anchor ----------- */
.m-link-anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .m-link-anchor {
    gap: 16px 40px;
    margin-top: 24px;
  }
}

.m-link-anchor + .m-link-anchor {
  margin-top: 8px;
}

@media screen and (min-width: 769px) {
  .m-link-anchor + .m-link-anchor {
    margin-top: 16px;
  }
}

.m-link-anchor--margin-large {
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .m-link-anchor--margin-large {
    margin-top: 80px;
  }
}

.m-link-anchor__text-wrapper {
  display: inline;
}

/* arrow */
.m-link-anchor__text-wrapper::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  rotate: 45deg;
  translate: 0 -2px;
  transform-origin: center 0;
}

/* arrow */
.m-link-anchor__link--arrow-up .m-link-anchor__text-wrapper::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: none;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-left: 2px solid var(--COLOR_PRIMARY);
  rotate: 45deg;
  translate: 0;
  transform-origin: center 0;
}

.m-link-anchor__text {
  padding-bottom: 4px;
  margin-right: 4px;
  color: var(--COLOR_PRIMARY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .m-link-anchor__link:hover .m-link-anchor__text,
  .m-link-anchor__link:focus-visible .m-link-anchor__text {
    color: var(--COLOR_GRAY);
    background-size: 0 1px;
  }
}

/* ----------- .m-link-anchor-icon ----------- */
.m-link-anchor-icon {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}

@media screen and (min-width: 769px) {
  .m-link-anchor-icon {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
    margin-top: 80px;
  }

  .m-link-anchor-icon > :nth-child(3n),
  .m-link-anchor-icon > :last-child:not(:nth-child(3n)) {
    border-right: 1px solid #A2A6AA;
  }
}

.m-link-anchor-icon__link {
  display: grid;
  grid-template-columns: auto 1fr 28px;
  align-items: center;
  gap: 16px;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .m-link-anchor-icon__link {
    padding: 8px 20px;
    border-left: 1px solid #A2A6AA;
  }
}

/* arrow */
.m-link-anchor-icon__link::after {
  content: "";
  margin-inline: auto;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: rotate(45deg);
}

.m-link-anchor-icon__text {
  padding-bottom: 4px;
  width: fit-content;
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--COLOR_GRAY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

.m-link-anchor-icon__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 3px;
  background-color: var(--COLOR_BACKGROUND);
  order: -1;
}

.m-link-anchor-icon__icon {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  width: 28px;
  height: auto;
}

@media only screen and (any-hover: hover) {
  .m-link-anchor-icon__link:hover .m-link-anchor-icon__text,
  .m-link-anchor-icon__link:focus-visible .m-link-anchor-icon__text {
    color: var(--COLOR_PRIMARY);
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

/* ----------- .m-link-anchor-box ----------- */
.m-link-anchor-box {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.m-link-anchor-box[data-column-pc="2"] {
  row-gap: 32px;
}

@media screen and (min-width: 769px) {
  .m-link-anchor-box {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .m-link-anchor-box[data-column-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

.m-link-anchor-box__list-item {
  display: grid;
}

@media screen and (min-width: 769px) {
  .m-link-anchor-box--subgrid .m-link-anchor-box__list-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }
}

.m-link-anchor-box__link {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 4px;
  width: 100%;
  padding: 19px 10px 24px 10px;
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 15%);
  border-top: 3px solid var(--COLOR_PRIMARY);
  border-radius: 0 0 6px 6px;
  background-color: var(--COLOR_WHITE);
  transition: background-color var(--TRANSITION);
}

.m-link-anchor-box__link:has(.m-link-anchor-box__content-icon) {
  align-items: flex-start;
  padding-inline: 16px;
}

.m-link-anchor-box__link:has(.m-link-anchor-box__content:only-child) {
  grid-template-columns: none;
  justify-content: center;
  text-align: center;
}

/* arrow */
.m-link-anchor-box__link::after {
  position: absolute;
  content: "";
  inset: auto 0 10px;
  margin-inline: auto;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: rotate(45deg);
}

.m-link-anchor-box__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background-color: var(--COLOR_BACKGROUND);
  transition: background-color var(--TRANSITION);
}

.m-link-anchor-box__item-text {
  font-size: 1.2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1;
  color: var(--COLOR_PRIMARY);
}

.m-link-anchor-box__item-number {
  font-size: 2.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1;
  color: var(--COLOR_PRIMARY);
}

.m-link-anchor-box__content {
  display: flex;
  flex-direction: column;
}

.m-link-anchor-box__content:has(.m-link-anchor-box__content-icon) {
  flex-direction: column-reverse;
  align-items: center;
}

.m-link-anchor-box__link:has(.m-link-anchor-box__icon) .m-link-anchor-box__content {
  order: 1;
}

.m-link-anchor-box__content-subtext {
  font-size: 1.4rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  color: var(--COLOR_GRAY);
  transition: color var(--TRANSITION);
}

.m-link-anchor-box__content-text {
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.65;
  color: var(--COLOR_GRAY);
  transition: color var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-link-anchor-box__content-text {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 769px) {
  .m-link-anchor-box__content-icon {
    width: 88px;
    height: 88px;
  }
}

.m-link-anchor-box__icon {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  width: 28px;
  height: auto;
}

@media only screen and (any-hover: hover) {
  .m-link-anchor-box__link:hover,
  .m-link-anchor-box__link:focus-visible {
    background-color: var(--COLOR_BACKGROUND);
  }

  .m-link-anchor-box__link:hover .m-link-anchor-box__item,
  .m-link-anchor-box__link:focus-visible .m-link-anchor-box__item {
    background-color: var(--COLOR_WHITE);
  }

  .m-link-anchor-box__link:hover .m-link-anchor-box__content-subtext,
  .m-link-anchor-box__link:focus-visible .m-link-anchor-box__content-subtext {
    color: var(--COLOR_PRIMARY);
  }

  .m-link-anchor-box__link:hover .m-link-anchor-box__content-text,
  .m-link-anchor-box__link:focus-visible .m-link-anchor-box__content-text {
    color: var(--COLOR_PRIMARY);
  }
}

/* ------------------------------------------------------------
   ボタン
   ------------------------------------------------------------ */
/* ----------- .m-button ----------- */
/* stylelint-disable-next-line no-descending-specificity -- .str-header__login-panel-content内で.m-buttonの余白を個別調整するため上書き */
.m-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  height: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid var(--COLOR_PRIMARY);
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / .25);
  background-color: var(--COLOR_WHITE);
  color: var(--COLOR_GRAY);
  text-align: center;
  transition:
    background-color var(--TRANSITION),
    box-shadow var(--TRANSITION);
}

.m-button::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 20px;
  border-right: 2px solid var(--COLOR_PRIMARY);
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(-50%) rotate(-45deg);
}

button.m-button {
  width: 100%;
}

a.m-button:not([href]) {
  border-color: var(--COLOR_LIGHT_GRAY);
  background-color: var(--COLOR_LIGHT_GRAY);
  pointer-events: none;
  cursor: not-allowed;
}

a.m-button:not([href])::after {
  border-color: var(--COLOR_GRAY);
}

@media screen and (min-width: 769px) {
  .m-button {
    min-width: 264px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    width: fit-content;
  }
}

@media only screen and (any-hover: hover) {
  .m-button:hover,
  .m-button:focus-visible {
    background-color: var(--COLOR_BACKGROUND);
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
  }
}

.m-button:has(.m-button__icon)::after {
  content: unset;
}

.m-button__icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  color: var(--COLOR_PRIMARY);
  transform: translateY(-50%);
}

.m-button.m-button--conversion .m-button__icon {
  color: var(--COLOR_WHITE);
}

a.m-button:not([href]) .m-button__icon {
  color: var(--COLOR_GRAY);
}

.m-button--arrow-down::after {
  top: auto;
  rotate: 90deg;
}

.m-button--conversion {
  border: none;
  color: var(--COLOR_WHITE);
  background-color: var(--COLOR_PRIMARY);
  font-weight: var(--FONT_WEIGHT_BOLD);
}

.m-button--conversion::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: var(--COLOR_GRADIENT_GREEN);
  opacity: 0;
  transition: opacity var(--TRANSITION);
}

.m-button--conversion::after {
  border-color: var(--COLOR_WHITE);
  z-index: var(--Z_INDEX_UPPER_LAYER);
}

a.m-button--conversion:not([href]) {
  color: var(--COLOR_GRAY);
}

.m-button--conversion-theme-2 {
  background: #FA7000;
}

.m-button--conversion-theme-2::before {
  background: linear-gradient(90deg, #F2870D 0%, #F8B600 100%);
}

@media only screen and (any-hover: hover) {
  .m-button--conversion:hover,
  .m-button--conversion:focus-visible {
    background-color: var(--COLOR_PRIMARY);
  }

  .m-button--conversion-theme-2:hover,
  .m-button--conversion-theme-2:focus-visible {
    background-color: #FA7000;
  }

  .m-button--conversion:hover::before,
  .m-button--conversion:focus-visible::before {
    opacity: 1;
  }
}

.m-button:has(.m-button__logo) {
  padding-left: 71px;
}

@media screen and (min-width: 769px) {
  .m-button:has(.m-button__logo) {
    min-width: 308px;
    padding-left: 92px;
  }
}

.m-button__logo {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  z-index: var(--Z_INDEX_UPPER_LAYER);
  display: flex;
  width: 55px;
  height: 32px;
  border-radius: 3px;
  background: var(--COLOR_WHITE) no-repeat center / 39px 24px;
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .m-button__logo {
    width: 76px;
    height: 45px;
    background-size: 60px 37px;
  }
}

.m-button__logo--visa {
  background-image: url('/common/images/se/shared/logo-card-visa.svg');
}

.m-button__logo--mastercard {
  background-image: url('/common/images/se/shared/logo-card-mastercard.svg');
}

.m-button__logo--jcb {
  background-image: url('/common/images/se/shared/logo-card-jcb.png');
}

.m-button--download::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 24px;
  height: 24px;
  background-color: var(--COLOR_PRIMARY);
  mask: url('/common/images/se/shared/icon-download.svg') no-repeat center;
  transform: translateY(-50%);
}

a.m-button--download:not([href])::before {
  background-color: var(--COLOR_GRAY);
}

.m-button--download::after {
  content: unset;
}

.m-button--modal::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 24px;
  height: 24px;
  background-color: var(--COLOR_PRIMARY);
  mask: url('/common/images/se/shared/icon-modal.svg') no-repeat center;
  transform: translateY(-50%);
}

a.m-button--modal:not([href])::before {
  background-color: var(--COLOR_GRAY);
}

.m-button--modal::after {
  content: unset;
}

.m-button--back {
  padding-left: 40px;
  padding-right: 16px;
}

@media screen and (min-width: 769px) {
  .m-button--back {
    padding-right: 24px;
  }
}

.m-button--back::after {
  right: auto;
  left: 20px;
  scale: -1 1;
}

.m-button--icon {
  justify-content: flex-start;
  column-gap: 4px;
  padding: 8px 44px 8px 16px;
}

.m-button--icon::after {
  right: 24px;
}

@media screen and (min-width: 769px) {
  .m-button--icon {
    column-gap: 16px;
    min-width: 200px;
    padding: 16px 44px 16px 16px;
  }
}

.m-button__text {
  position: relative;
  z-index: var(--Z_INDEX_UPPER_LAYER);
}

.m-button--icon .m-button__text {
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.5;
  text-align: start;
}

.m-button__image {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.m-button--theme-2,
.m-button--theme-2::after {
  border-color: #eb1a74;
}

@media only screen and (any-hover: hover) {
  .m-button--theme-2:hover,
  .m-button--theme-2:focus-visible {
    background-color: #ffe0d9;
  }
}

.m-button--theme-3,
.m-button--theme-3::after {
  border-color: #d95300;
}

@media only screen and (any-hover: hover) {
  .m-button--theme-3:hover,
  .m-button--theme-3:focus-visible {
    background-color: #ffdbc5;
  }
}

@media screen and (min-width: 769px) {
  .m-button-list--full .m-button {
    min-width: unset;
    width: 100%;
  }
}

/*----------------- .m-button-list -----------------*/
.m-button-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.m-button-list--margin-large {
  margin-top: 48px;
}

.m-button-list[data-column-sp="2"] {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 769px) {
  .m-button-list {
    justify-content: center;
    margin-top: 40px;
  }

  .m-button-list--right {
    justify-content: flex-end;
    margin-top: 24px;
  }

  .m-button-list--left {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .m-button-list--margin-large {
    margin-top: 80px;
  }

  .m-button-list--full {
    justify-content: stretch;
  }

  .m-button-list[data-column-pc] {
    margin-top: 24px;
  }

  .m-button-list[data-column-pc] .m-button {
    width: auto;
    height: 100%;
  }

  .m-button-list[data-column-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    margin-inline: auto;
  }

  .m-button-list[data-column-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-button-list[data-column-pc="4"] {
    grid-template-columns: repeat(4, 1fr);
  }

  .m-button-list[data-column-pc="3"] .m-button,
  .m-button-list[data-column-pc="4"] .m-button {
    min-width: auto;
  }

  .m-button-list--full[data-column-pc] {
    margin-inline: 0;
    width: 100%;
  }
}

/*----------------- .m-button-set -----------------*/
.m-button-set {
  margin-top: 32px;
  padding: 24px;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
}

@media screen and (min-width: 769px) {
  .m-button-set {
    margin-top: 40px;
    padding: 32px;
  }
}

.m-button-set__buttons {
  display: grid;
  row-gap: 16px;
}

@media screen and (min-width: 769px) {
  .m-button-set__buttons {
    justify-content: center;
    gap: 0 16px;
    margin-top: -24px;
  }

  .m-button-set__buttons[data-column-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-button-set__buttons[data-column-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-button-set__buttons[data-column-pc="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 769px) {
  .m-button-set__buttons-item {
    display: grid;
    grid-row: span 1000;
    grid-template-rows: subgrid;
    margin-top: 24px;
  }

  .m-button-set__buttons-item:only-child {
    min-width: 368px;
  }
}

.m-button-set__buttons-heading {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .m-button-set__buttons-heading {
    text-align: center;
  }
}

.m-button-set .m-button {
  width: 100%;
  min-width: auto;
}

@media screen and (min-width: 769px) {
  .m-button-set .m-link-list {
    margin-top: 24px;
    flex-direction: row;
    justify-content: center;
    column-gap: 40px;
  }
}

.m-button-set__buttons .m-link-list {
  margin-top: 12px;
  margin-bottom: 8px;
}

@media screen and (min-width: 769px) {
  .m-button-set__buttons .m-link-list {
    margin-top: 16px;
    margin-bottom: 0;
  }
}

/*----------------- .m-button-icon-list -----------------*/
.m-button-icon-list {
  display: grid;
  row-gap: 16px;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .m-button-icon-list {
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.m-button-icon-list__item {
  display: flex;
}

.m-button-icon-list__item > .m-button {
  flex: 1;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------
   パネル
   ------------------------------------------------------------ */
/*----------------- .m-panel-product  -----------------*/
.m-panel-product {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.m-panel-product[data-columns-sp="2"] {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 769px) {
  .m-panel-product {
    gap: 24px;
    margin-top: 32px;
  }

  .m-panel-product[data-columns-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-panel-product[data-columns-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-panel-product[data-columns-pc="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
}

.m-panel-product__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}

.m-panel-product__link {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  border-radius: 6px;
  border: 1px solid var(--COLOR_LIGHT_GRAY);
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / .25);
  transition: box-shadow var(--TRANSITION), border-color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .m-panel-product__link:hover,
  .m-panel-product__link:focus-visible {
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
    border-color: var(--COLOR_PRIMARY);
  }

  .m-panel-product__link:hover .m-panel-product__content,
  .m-panel-product__link:focus-visible .m-panel-product__content {
    background-color: #F1F9F3;
  }
}

.m-panel-product__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 8px;
  border-radius: 6px 0;
  background-color: #dfd8b5;
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  text-transform: uppercase;
}

.m-panel-product__content {
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  border-radius: 6px;
  padding: 16px;
  transition: background-color var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-panel-product__content {
    row-gap: 12px;
    padding: 20px 24px 24px;
  }
}

.m-panel-product__content-title {
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .m-panel-product__content-title {
    font-size: 1.8rem;
  }
}

.m-panel-product__media {
  grid-row: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 12px;
  background: linear-gradient(180deg, #e2f9e8 0%, #f1f9f3 100%);
  border-radius: 6px 6px 0 0;
}

.m-panel-product__image {
  display: block;
  width: fit-content;
}

.m-panel-product__image--portrait {
  width: 100%;
  max-width: 100px;
}

.m-panel-product__image--landscape {
  width: 100%;
  max-width: 160px;
}

/*----------------- .m-panel-icon -----------------*/
.m-panel-icon {
  display: grid;
  row-gap: 16px;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .m-panel-icon {
    gap: 24px;
    margin-top: 32px;
  }

  .m-panel-icon[data-columns-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-panel-icon[data-columns-pc="3"] {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .m-panel-icon[data-columns-pc="4"] {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.m-panel-icon__body {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 24px 16px;
  background-color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_LIGHT_GRAY);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgb(0 0 0 / .25);
  transition: box-shadow var(--TRANSITION), border-color var(--TRANSITION), background-color var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-panel-icon__body {
    height: 100%;
    padding: 24px;
  }
}

.m-panel-icon__body:any-link {
  padding-bottom: 48px;
}

@media screen and (min-width: 769px) {
  .m-panel-icon__body:any-link {
    padding-bottom: 56px;
  }
}

@media only screen and (any-hover: hover) {
  .m-panel-icon__body:any-link:hover,
  .m-panel-icon__body:any-link:focus-visible {
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
    border-color: var(--COLOR_PRIMARY);
    background-color: #ECFAF0;
  }
}

.m-panel-icon__body:any-link::before {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: linear-gradient(0deg, #33ad69 .02%, #68c148 99.62%);
}

@media screen and (min-width: 769px) {
  .m-panel-icon__body:any-link::before {
    bottom: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
  }
}

.m-panel-icon__body:any-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 21px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_WHITE);
  border-right: 2px solid var(--COLOR_WHITE);
  rotate: 45deg;
}

@media screen and (min-width: 769px) {
  .m-panel-icon__body:any-link::after {
    bottom: 26px;
    right: 27px;
  }
}

.m-panel-icon__content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

/* stylelint-disable-next-line no-descending-specificity -- stylelintの誤検知 */
.m-panel-icon__content > * {
  margin-top: 0 !important;
}

.m-panel-icon__title {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: start;
  column-gap: 8px;
}

@media screen and (min-width: 769px) {
  .m-panel-icon__title {
    column-gap: 12px;
  }
}

.m-panel-icon__title-text {
  color: var(--COLOR_PRIMARY);
  font-size: 1.8rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-panel-icon__title-text {
    flex: 1;
    font-size: 2.2rem;
  }
}

.m-panel-icon__title-icon {
  max-width: 64px;
}

@media screen and (min-width: 769px) {
  .m-panel-icon__title-icon {
    max-width: 88px;
  }
}

.m-panel-icon__item--icon-small .m-panel-icon__title-icon {
  max-width: 40px;
}

@media screen and (min-width: 769px) {
  .m-panel-icon__item--icon-small .m-panel-icon__title {
    column-gap: 8px;
  }

  .m-panel-icon__item--icon-small .m-panel-icon__title-icon {
    max-width: 48px;
  }
}

/*----------------- .m-panel-image -----------------*/
.m-panel-image {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.m-panel-image--banner {
  grid-template-columns: 1fr;
}

@media screen and (max-width: 768px) {
  .m-panel-image[data-columns-sp="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 769px) {
  .m-panel-image {
    gap: 24px;
    margin-top: 32px;
  }

  .m-panel-image[data-columns-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-panel-image[data-columns-pc="3"] {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .m-panel-image[data-columns-pc="4"] {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.m-panel-image__body {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  height: 100%;
  background-color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_LIGHT_GRAY);
  border-radius: 5px;
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / .25);
  transition: box-shadow var(--TRANSITION), border-color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .m-panel-image__body:hover,
  .m-panel-image__body:focus-visible {
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
    border-color: var(--COLOR_PRIMARY);
  }
}

.m-panel-image__body::before {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: linear-gradient(0deg, #33ad69 .02%, #68c148 99.62%);
}

@media screen and (min-width: 769px) {
  .m-panel-image__body::before {
    bottom: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
  }
}

.m-panel-image__body::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 21px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_WHITE);
  border-right: 2px solid var(--COLOR_WHITE);
  rotate: 45deg;
}

@media screen and (min-width: 769px) {
  .m-panel-image__body::after {
    bottom: 26px;
    right: 27px;
  }
}

.m-panel-image__content {
  height: 100%;
  border-radius: 5px;
  padding: 16px 16px 48px;
  transition: background-color var(--TRANSITION);
}

.m-panel-image__content > *:first-child {
  margin-top: 0;
}

.m-panel-image__content > *:last-child {
  margin-bottom: 0;
}

.m-panel-image__content .m-list-note {
  margin-top: 8px;
}

@media screen and (min-width: 769px) {
  .m-panel-image__content {
    padding: 16px 24px 56px;
  }

  .m-panel-image__content .m-list-note {
    margin-top: 16px;
  }
}

@media only screen and (any-hover: hover) {
  .m-panel-image__body:hover .m-panel-image__content,
  .m-panel-image__body:focus-visible .m-panel-image__content {
    background-color: #ECFAF0;
  }
}

.m-panel-image__title {
  font-size: 1.6rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-panel-image__title {
    font-size: 1.8rem;
  }
}

.m-panel-image__text {
  margin-top: 12px;
}

.m-panel-image__media {
  aspect-ratio: 16 / 9;
}

.m-panel-image--banner .m-panel-image__media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 24px 0;
  aspect-ratio: auto;
  transition: background-color var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-panel-image--banner .m-panel-image__media {
    margin: 24px 24px 16px;
    height: 100px;
    min-height: 100px;
  }
}

.m-panel-image--banner .m-panel-image__body {
  transition: background-color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  :where(.m-panel-image--banner) .m-panel-image__body:hover,
  :where(.m-panel-image--banner) .m-panel-image__body:focus-visible {
    background-color: #ECFAF0;
  }
}

.m-panel-image__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
}

.m-panel-image--banner .m-panel-image__image {
  border-radius: 0;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media screen and (min-width: 769px) {
  .m-panel-image--banner .m-panel-image__image {
    max-height: 100px;
  }
}

/*----------------- .m-panel-image-text -----------------*/
.m-panel-image-text {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .m-panel-image-text {
    gap: 24px;
    margin-top: 32px;
  }

  .m-panel-image-text[data-columns-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-panel-image-text[data-columns-pc="3"] {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .m-panel-image-text[data-columns-pc="4"] {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.m-panel-image-text__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.m-panel-image-text__item > .m-text {
  margin-top: 0;
}

.m-panel-image-text__body {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  height: 100%;
  border: 1px solid var(--COLOR_LIGHT_GRAY);
  border-radius: 5px;
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / .25);
  transition: box-shadow var(--TRANSITION), border-color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .m-panel-image-text__body:hover,
  .m-panel-image-text__body:focus-visible {
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
    border-color: var(--COLOR_PRIMARY);
  }
}

.m-panel-image-text__body::before {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: linear-gradient(0deg, #33ad69 .02%, #68c148 99.62%);
}

@media screen and (min-width: 769px) {
  .m-panel-image-text__body::before {
    bottom: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
  }
}

.m-panel-image-text__body:has(.m-panel-image-text__icon-pdf)::before {
  background-image: none;
  background-color: var(--COLOR_CAUTION);
}

.m-panel-image-text__body:not(:has(.m-panel-image-text__icon-text))::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 21px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_WHITE);
  border-right: 2px solid var(--COLOR_WHITE);
  rotate: 45deg;
}

@media screen and (min-width: 769px) {
  .m-panel-image-text__body:not(:has(.m-panel-image-text__icon-text))::after {
    bottom: 26px;
    right: 27px;
  }
}

.m-panel-image-text__content {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  flex-grow: 1;
  border-radius: 5px;
  padding: 16px 16px 48px;
  transition: background-color var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-panel-image-text__content {
    padding: 16px 24px 56px;
  }
}

@media only screen and (any-hover: hover) {
  .m-panel-image-text__body:hover .m-panel-image-text__content,
  .m-panel-image-text__body:focus-visible .m-panel-image-text__content {
    background-color: #ECFAF0;
  }
}

.m-panel-image-text__title {
  font-size: 1.6rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-panel-image-text__title {
    font-size: 1.8rem;
  }
}

.m-panel-image-text__media {
  aspect-ratio: 16 / 9;
}

.m-panel-image-text__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
}

.m-panel-image-text__icon-text {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 769px) {
  .m-panel-image-text__icon-text {
    bottom: 18px;
    right: 18px;
  }
}

.m-panel-image-text__icon-blank {
  width: 16px;
  height: 16px;
  color: var(--COLOR_WHITE);
}

.m-panel-image-text__icon-pdf {
  width: 24px;
  height: 24px;
  color: var(--COLOR_WHITE);
}

/* ------------------------------------------------------------
   ラベル
   ------------------------------------------------------------ */
.m-label {
  display: inline-flex;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 3px;
  border: 1px solid var(--COLOR_PRIMARY);
  color: var(--COLOR_GRAY);
  background-color: var(--COLOR_WHITE);
  font-size: 1.2rem;
  font-weight: var(--COLOR_PRIMARY);
}

.m-label--important {
  color: var(--COLOR_CAUTION);
  border-color: var(--COLOR_CAUTION);
}

/*----------------- .m-label-02 -----------------*/
.m-label-02 {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  margin-left: 8px;
  padding: 2px 12px;
  font-size: 1.2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
  color: var(--COLOR_BLACK);
  border: 1px solid var(--COLOR_BLACK);
  border-radius: 3px;
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 769px) {
  .m-label-02 {
    font-size: 1.4rem;
  }
}

.m-label-02--red {
  color: #F06670;
  border-color: #F06670;
}

.m-label-02--green {
  color: var(--COLOR_PRIMARY);
  border-color: var(--COLOR_PRIMARY);
}

.m-label-02__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.m-label-02__item >:first-child {
  margin-inline: 0;
}

/* ------------------------------------------------------------
   ディスクロージャー
   ------------------------------------------------------------ */
/*----------------- .m-disclosure  -----------------*/
.m-disclosure {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 32px;
}

@media screen and (min-width: 769px) {
  .m-disclosure {
    margin-top: 48px;
  }
}

.m-disclosure__item {
  border-radius: 6px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / .25);
  border: 1px solid var(--COLOR_PRIMARY);
}

.m-disclosure__head {
  position: relative;
  padding: 16px 64px 16px 16px;
  background-color: var(--COLOR_WHITE);
  border-radius: 6px;
  transition: background-color var(--TRANSITION);
  list-style: none;
  cursor: pointer;
}

.m-disclosure__item.is-active .m-disclosure__head {
  border-radius: 6px 6px 0 0;
  background-color: var(--COLOR_PRIMARY);
}

.m-disclosure__head::before,
.m-disclosure__head::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  right: 22px;
  background-color: var(--COLOR_PRIMARY);
  transition: background-color var(--TRANSITION);
}

.m-disclosure__head::before {
  transform: rotate(90deg);
  transition: var(--TRANSITION);
}

.m-disclosure__item.is-active .m-disclosure__head::before {
  transform: rotate(0deg);
}

.m-disclosure__item.is-active .m-disclosure__head::before,
.m-disclosure__item.is-active .m-disclosure__head::after {
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 769px) {
  .m-disclosure__head {
    padding: 24px 72px 24px 24px;
  }

  .m-disclosure__head:hover {
    background-color: var(--COLOR_BACKGROUND);
  }

  .m-disclosure__head.is-active {
    color: var(--COLOR_PRIMARY);
  }
}

@media only screen and (any-hover: hover) {
  .m-disclosure__head:hover,
  .m-disclosure__head:focus-visible {
    background-color: var(--COLOR_BACKGROUND);
  }
}

.m-disclosure__title {
  display: block;
  color: var(--COLOR_PRIMARY);
  font-size: 1.8rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
  transition: color var(--TRANSITION);
}

.m-disclosure__item.is-active .m-disclosure__title {
  color: var(--COLOR_WHITE);
}

@media screen and (min-width: 769px) {
  .m-disclosure__title {
    font-size: 2.2rem;
  }
}

.m-disclosure__body {
  height: fit-content;
  margin: 0 16px;
  overflow: hidden;
  transition: max-height var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-disclosure__body {
    margin: 0 32px;
  }
}

.m-disclosure__content {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}

.m-disclosure__content >:first-child {
  margin-top: 0 !important;
}

@media screen and (min-width: 769px) {
  .m-disclosure__content {
    padding: 32px 0;
  }
}

/* ------------------------------------------------------------
   リスト
   ------------------------------------------------------------ */
.m-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.m-list[data-column-sp="2"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 8px;
  column-gap: 24px;
}

@media (min-width: 768px) {
  .m-list[data-column-pc] {
    display: grid;
    row-gap: 8px;
    column-gap: 24px;
  }

  .m-list[data-column-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-list[data-column-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-list[data-column-pc="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
}

.m-list__item {
  position: relative;
  padding-left: 22px;
  color: var(--COLOR_GRAY);
}

.m-list__item::before {
  content: "";
  position: absolute;
  top: calc((1em * var(--LINE_HEIGHT) - 5px) / 2);
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--COLOR_GRAY);
}

.m-list__item > .m-list {
  margin-top: 8px;
  margin-left: -6px;
}

.m-list__item > .m-text {
  margin-top: 8px;
}

/*----------------- .m-list-caution -----------------*/
.m-list-caution {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  row-gap: 8px;
}

.m-list-caution__item {
  display: flex;
  align-items: start;
  column-gap: 8px;
}

.m-list-caution__icon {
  width: 24px;
  height: 24px;
  margin-top: calc((1em * var(--LINE_HEIGHT) - 22px) / 2);
}

.m-list-caution__text {
  color: var(--COLOR_GRAY);
}

.m-list-caution__text > .m-list-caution {
  margin-top: 8px;
  margin-left: -14px;
}

/*----------------- .m-list-number -----------------*/
.m-list-number {
  display: grid;
  grid-template-columns: repeat(1, max-content minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 8px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .m-list-number[data-column-pc="2"] {
    grid-template-columns: repeat(2, max-content minmax(0, 1fr));
  }

  .m-list-number[data-column-pc="3"] {
    grid-template-columns: repeat(3, max-content minmax(0, 1fr));
  }

  .m-list-number[data-column-pc="4"] {
    grid-template-columns: repeat(4, max-content minmax(0, 1fr));
  }

  .m-list-number[data-column-pc]:not([data-column-pc="1"]) {
    margin-top: 24px;
    row-gap: 24px;
  }
}

.m-list-number__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  column-gap: 4px;
  color: var(--COLOR_GRAY);
}

.m-list-number__mark {
  text-align: right;
}

.m-list-number__item > .m-list-number {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-left: 16px;
}

.m-media + .m-list-number {
  margin-top: 24px;
}

.m-list-number--has-media {
  grid-template-columns: 1fr;
  gap: 24px;
}

.m-list-number--has-media[data-column-pc]:not([data-column-pc="1"]) {
  margin-top: 32px;
}

@media screen and (min-width: 769px) {
  .m-list-number--has-media {
    gap: 32px;
  }

  .m-list-number--has-media[data-column-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-list-number--has-media[data-column-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-list-number--has-media[data-column-pc="4"] {
    grid-template-columns: repeat(4, 1fr);
  }

  .m-list-number--has-media[data-column-pc]:not([data-column-pc="1"]) {
    row-gap: 32px;
    margin-top: 40px;
  }
}

.m-list-number--has-media .m-list-number__item {
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-column: unset;
  gap: 8px 0;
}

@media screen and (min-width: 769px) {
  .m-list-number--has-media .m-list-number__item {
    gap: 12px 0;
  }
}

.m-list-number--has-media .m-list-number__content {
  display: flex;
  column-gap: 4px;
}

.m-list-number__media >:first-child {
  margin-top: 0;
}

.m-list-number__text > .m-list {
  margin-top: 8px;
}

/*----------------- .m-list-note -----------------*/
/* stylelint-disable-next-line no-descending-specificity -- .m-panel-image__content内で.m-list-noteの余白を個別調整するため上書き */
.m-list-note {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: 8px;
  width: fit-content;
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--COLOR_GRAY);
}

@media screen and (min-width: 769px) {
  .m-list-note {
    font-size: 1.4rem;
  }
}

.m-list__item > .m-list-note {
  margin-top: 8px;
}

.m-list__item > .m-list-number {
  margin-top: 8px;
}

.m-list__item > .m-link-list {
  margin-top: 8px;
}

.m-list-note--center {
  margin-left: auto;
  margin-right: auto;
}

.m-list-note--right {
  margin-left: auto;
  margin-right: 0;
}

.m-list-note__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  column-gap: 8px;
}

.m-list-note__item > .m-list-note ,
.m-list-note__item > .m-list {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-left: 16px;
}

.m-list-note__item > .m-list {
  padding-left: 14px;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .m-list-note__item > .m-list {
    font-size: 1.4rem;
  }
}

.m-list-note__item > .m-list > .m-list__item {
  padding-left: 26px;
}

.m-list-note__text > .m-list-number {
  margin-top: 8px;
}

.m-list-note__text > .m-link-list {
  margin-top: 8px;
}

.m-list-number__text > .m-list-note {
  margin-top: 8px;
}

.m-list-number__text > .m-link-list {
  margin-top: 8px;
}

/*----------------- .m-list-description -----------------*/
.m-list-description {
  display: grid;
  margin-top: 24px;
  gap: 16px;
}

.m-list-description__item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  color: var(--COLOR_GRAY);
}

.m-list-description__title {
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-list-description__title {
    font-size: 1.8rem;
    line-height: var(--LINE_HEIGHT);
  }
}

/* arrow */
.m-list-description__title-link-text-wrapper::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  rotate: 45deg;
  translate: 0 -1px;
  transform-origin: center 0;
}

.m-list-description__title-link-text {
  margin-right: 4px;
  font-size: 1.6rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  background-image: linear-gradient(var(--COLOR_GRAY));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-list-description__title-link-text {
    font-size: 1.8rem;
  }
}

@media only screen and (any-hover: hover) {
  .m-list-description__title-link:hover .m-list-description__title-link-text,
  .m-list-description__title-link:focus-visible .m-list-description__title-link-text {
    background-size: 0 1px;
  }
}

/*----------------- .m-list-step -----------------*/
.m-list-step {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-block: 40px 32px;
  width: 100%;
  row-gap: 24px;
  margin-inline: auto;
}

.m-list-step:where(:has(> .m-list-step__item:nth-child(1):last-child)) {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.m-list-step:where(:has(> .m-list-step__item:nth-child(2):last-child)) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.m-list-step:where(:has(> .m-list-step__item:nth-child(3):last-child)) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.m-list-step:where(:has(> .m-list-step__item:nth-child(4):last-child)) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media screen and (min-width: 769px) {
  .m-list-step {
    margin-block: 80px 40px;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    width: min(100%, 1200px);
  }
}

.m-list-step__item {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
  min-width: 0;
  padding-inline: 4px;
  line-height: var(--LINE_HEIGHT_NARROW);
}

.m-list-step__item::before,
.m-list-step__item::after {
  content: "";
  position: absolute;
  top: 20px;
  width: calc(50% - 19px);
  height: 2px;
  background-color: var(--COLOR_PRIMARY);
  transform: translateY(-50%);
}

.m-list-step__item::before {
  left: 0;
}

.m-list-step__item::after {
  right: 0;
}

.m-list-step__item:first-child::before,
.m-list-step__item:last-child::after {
  display: none;
}

.m-list-step__item[aria-current="step"] ~ .m-list-step__item::before,
.m-list-step__item[aria-current="step"] ~ .m-list-step__item::after {
  background-color: var(--COLOR_LIGHT_GRAY);
}

@media screen and (min-width: 769px) {
  .m-list-step__item {
    grid-column: auto / span 2;
  }

  .m-list-step:has(> .m-list-step__item:nth-child(1):last-child) > .m-list-step__item:first-child {
    grid-column: 5 / span 2;
  }

  .m-list-step:has(> .m-list-step__item:nth-child(2):last-child) > .m-list-step__item:first-child {
    grid-column: 4 / span 2;
  }

  .m-list-step:has(> .m-list-step__item:nth-child(3):last-child) > .m-list-step__item:first-child {
    grid-column: 3 / span 2;
  }

  .m-list-step:has(> .m-list-step__item:nth-child(4):last-child) > .m-list-step__item:first-child {
    grid-column: 2 / span 2;
  }
}

.m-list-step__label {
  position: relative;
  display: grid;
  justify-items: center;
  row-gap: 8px;
  font-size: 1.2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_PRIMARY);
}

.m-list-step__label::before {
  content: "";
  position: relative;
  z-index: var(--Z_INDEX_MIDDLE_LAYER);
  display: block;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 2px solid var(--COLOR_PRIMARY);
  border-radius: 3px;
  background-color: var(--COLOR_WHITE);
}

.m-list-step__label::after {
  content: "";
  position: absolute;
  z-index: var(--Z_INDEX_MIDDLE_LAYER);
  top: 21px;
  left: 50%;
  width: 24px;
  height: 16px;
  background-color: var(--COLOR_PRIMARY);
  transform: translate(-50%, -50%);
  mask: url("/common/images/se/shared/icon-check.svg") no-repeat center / contain;
}

.m-list-step__item[aria-current="step"] .m-list-step__label::before {
  background-color: var(--COLOR_PRIMARY);
}

.m-list-step__item[aria-current="step"] .m-list-step__label::after {
  background-color: var(--COLOR_WHITE);
}

.m-list-step__item[aria-current="step"] ~ .m-list-step__item .m-list-step__label::before {
  border-color: var(--COLOR_LIGHT_GRAY);
  background-color: var(--COLOR_LIGHT_GRAY);
}

.m-list-step__item[aria-current="step"] ~ .m-list-step__item .m-list-step__label::after {
  content: none;
}

@media screen and (min-width: 769px) {
  .m-list-step__label {
    font-size: 1.4rem;
  }
}

.m-list-step__text {
  font-size: 1.2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_GRAY);
}

@media screen and (min-width: 769px) {
  .m-list-step__text {
    font-size: var(--FONT_SIZE);
    margin-top: 4px;
  }
}

/*----------------- .m-list-flow -----------------*/
.m-list-flow {
  display: grid;
  row-gap: 46px;
  margin-top: 32px;
}

@media screen and (min-width: 769px) {
  .m-list-flow {
    margin-top: 40px;
    row-gap: 54px;
  }
}

.m-list-flow__item {
  position: relative;
  padding: 16px 16px 16px 24px;
  border-radius: 0 6px 6px 0;
  background: var(--COLOR_WHITE);
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / .25);
}

.m-list-flow__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: var(--COLOR_GRADIENT_GREEN);
}

.m-list-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  width: 32px;
  height: 22px;
  background: url("/common/images/se/shared/icon-flow-arrow.svg") no-repeat center / contain;
  transform: translateX(-50%);
}

@media screen and (min-width: 769px) {
  .m-list-flow__item {
    padding: 32px 40px 32px 48px;
  }

  .m-list-flow__item::before {
    width: 10px;
  }

  .m-list-flow__item:not(:last-child)::after {
    bottom: -40px;
  }
}

.m-list-flow__content {
  display: grid;
  row-gap: 16px;
}

@media screen and (min-width: 769px) {
  .m-list-flow__content:has(> .m-list-flow__image) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    column-gap: 32px;
    row-gap: 16px;
  }
}

.m-list-flow__label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  order: 1;
  column-gap: 4px;
  padding: 8px 16px;
  border-radius: 3px;
  background: var(--COLOR_GRADIENT_GREEN);
  color: var(--COLOR_WHITE);
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1;
  max-width: 100%;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .m-list-flow__label {
    order: initial;
    margin-bottom: 8px;
    padding: 12px 24px;
  }

  .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__label {
    grid-column: 1;
    grid-row: 1;
  }
}

.m-list-flow__label-number {
  font-size: 2rem;
}

@media screen and (min-width: 769px) {
  .m-list-flow__label-number {
    font-size: 2.6rem;
  }
}

.m-list-flow__body {
  order: 2;
  min-width: 0;
}

.m-list-flow__body > :first-child {
  margin-top: 0;
}

.m-list-flow__item--reverse .m-list-flow__body {
  order: 3;
}

@media screen and (min-width: 769px) {
  .m-list-flow__body {
    order: initial;
  }

  .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__body {
    grid-column: 1;
    grid-row: 2;
  }
}

.m-list-flow__image {
  display: block;
  order: 3;
  margin-inline: auto;
  min-width: 0;
  width: 100%;
  max-width: fit-content;
  height: auto;
  text-align: center;
}

.m-list-flow__item--reverse .m-list-flow__image {
  margin-top: 16px;
  order: 2;
}

@media screen and (min-width: 769px) {
  .m-list-flow__image {
    order: initial;
  }

  .m-list-flow__item--reverse .m-list-flow__image {
    margin-top: 0;
  }

  .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__image {
    grid-column: 2;
    grid-row: 1 / 4;
  }
}

@media screen and (min-width: 769px) {
  .m-list-flow--row .m-list-flow__label {
    padding: 12px 16px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) { /* 2カラム専用 */
  .m-list-flow--row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .m-list-flow--row .m-list-flow__item {
    box-sizing: border-box;
    min-width: 0;
    padding: 24px 24px 24px 32px;
    flex: 0 0 calc(50% - 20px);
  }

  .m-list-flow--row .m-list-flow__item:nth-child(n + 3) {
    flex-basis: calc(50% - 38px);
  }

  .m-list-flow--row .m-list-flow__item:nth-child(2n + 1):not(:first-child) {
    margin-left: 31px;
  }

  .m-list-flow--row:has(> .m-list-flow__item:nth-child(1):last-child) > .m-list-flow__item {
    flex-basis: 100%;
  }

  .m-list-flow--row .m-list-flow__image {
    margin-top: -8px;
  }

  .m-list-flow--row .m-list-flow__item:not(:last-child)::after {
    top: 50%;
    right: -38px;
    left: auto;
    transform: translateY(-50%) rotate(-90deg);
  }

  .m-list-flow--row .m-list-flow__item:nth-child(2n):not(:last-child)::after {
    content: none;
  }

  .m-list-flow--row .m-list-flow__content:has(> .m-list-flow__image) {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .m-list-flow--row .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__label,
  .m-list-flow--row .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__body,
  .m-list-flow--row .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__image {
    grid-column: auto;
    grid-row: auto;
  }

  .m-list-flow--row .m-list-flow__item:nth-child(2n + 1):not(:first-child) .m-list-flow__content {
    position: relative;
  }

  .m-list-flow--row .m-list-flow__item:nth-child(2n + 1):not(:first-child) .m-list-flow__content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -68px;
    width: 32px;
    height: 22px;
    background: url("/common/images/se/shared/icon-flow-arrow.svg") no-repeat center / contain;
    transform: translateY(-50%) rotate(-90deg);
  }
}

@media screen and (min-width: 1024px) { /* 4カラム専用 */
  .m-list-flow--row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 54px;
    row-gap: 40px;
  }

  .m-list-flow--row .m-list-flow__item {
    box-sizing: border-box;
    min-width: 0;
    padding: 24px 24px 24px 32px;
    flex: 0 0 calc(25% - 40.5px);
  }

  .m-list-flow--row .m-list-flow__body {
    margin-top: -8px;
  }

  .m-list-flow--row .m-list-flow__item:nth-child(n + 5) {
    flex-basis: calc(25% - 50.5px);
  }

  .m-list-flow--row .m-list-flow__item:nth-child(4n + 1):not(:first-child) {
    margin-left: 38px;
  }

  .m-list-flow--row:has(> .m-list-flow__item:nth-child(1):last-child) > .m-list-flow__item {
    flex-basis: 100%;
  }

  .m-list-flow--row:has(> .m-list-flow__item:nth-child(2):last-child) > .m-list-flow__item {
    flex-basis: calc(50% - 27px);
  }

  .m-list-flow--row:has(> .m-list-flow__item:nth-child(3):last-child) > .m-list-flow__item {
    flex-basis: calc((100% - 54px * 2) / 3);
  }

  .m-list-flow--row .m-list-flow__item:not(:last-child)::after {
    top: 50%;
    right: -44px;
    left: auto;
    transform: translateY(-50%) rotate(-90deg);
  }

  .m-list-flow--row .m-list-flow__item:nth-child(4n):not(:last-child)::after {
    content: none;
  }

  .m-list-flow--row .m-list-flow__content:has(> .m-list-flow__image) {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .m-list-flow--row .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__label,
  .m-list-flow--row .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__body,
  .m-list-flow--row .m-list-flow__content:has(> .m-list-flow__image) > .m-list-flow__image {
    grid-column: auto;
    grid-row: auto;
  }

  .m-list-flow--row .m-list-flow__item:nth-child(4n + 1):not(:first-child) .m-list-flow__content {
    position: relative;
  }

  .m-list-flow--row .m-list-flow__item:nth-child(4n + 1):not(:first-child) .m-list-flow__content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -74px;
    width: 32px;
    height: 22px;
    background: url("/common/images/se/shared/icon-flow-arrow.svg") no-repeat center / contain;
    transform: translateY(-50%) rotate(-90deg);
  }
}

/* ----------- .m-service-code ----------- */
.m-service-code__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.m-service-code__wrapper:has(> .m-service-code:only-child) {
  gap: 8px;
}

.m-service-code >:first-child {
  margin-left: 0;
}

.m-service-code__number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background-color: var(--COLOR_BACKGROUND);
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .m-service-code__number {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

/*----------------- .m-list-flow-icon -----------------*/
.m-list-flow-icon {
  display: grid;
  row-gap: 46px;
  margin-top: 32px;
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon {
    display: flex;
    flex-wrap: wrap;
    column-gap: 46px;
    row-gap: 48px;
    margin-top: 40px;
    align-items: stretch;
  }
}

.m-list-flow-icon__item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: start;
    align-content: start;
    justify-items: center;
    margin-top: 11px;
    min-width: 0;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .m-list-flow-icon__item {
    flex: 0 0 calc((100% - 46px * 2) / 3);
  }

  .m-list-flow-icon__item:nth-child(n + 4) {
    flex-basis: calc((100% - 38px - 46px * 2) / 3);
  }

  .m-list-flow-icon__item:nth-child(3n + 1):not(:first-child) {
    margin-left: 38px;
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(1):last-child) > .m-list-flow-icon__item {
    flex-basis: 100%;
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(2):last-child) > .m-list-flow-icon__item {
    flex-basis: calc((100% - 46px) / 2);
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(3):last-child) > .m-list-flow-icon__item {
    flex-basis: calc((100% - 46px * 2) / 3);
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(4):last-child) > .m-list-flow-icon__item {
    flex-basis: calc((100% - 46px * 2) / 3);
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(4):last-child) > .m-list-flow-icon__item:nth-child(n + 4) {
    flex-basis: calc((100% - 38px - 46px * 2) / 3);
  }
}

@media screen and (min-width: 1024px) {
  .m-list-flow-icon__item {
    flex: 0 0 calc((100% - 46px * 4) / 5);
  }

  .m-list-flow-icon__item:nth-child(n + 6) {
    flex-basis: calc((100% - 38px - 46px * 4) / 5);
  }

  .m-list-flow-icon__item:nth-child(5n + 1):not(:first-child) {
    margin-left: 38px;
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(1):last-child) > .m-list-flow-icon__item {
    flex-basis: 100%;
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(2):last-child) > .m-list-flow-icon__item {
    flex-basis: calc((100% - 46px) / 2);
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(3):last-child) > .m-list-flow-icon__item {
    flex-basis: calc((100% - 46px * 2) / 3);
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(4):last-child) > .m-list-flow-icon__item {
    flex-basis: calc((100% - 46px * 3) / 4);
  }
}

.m-list-flow-icon__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  width: 32px;
  height: 22px;
  background: url("/common/images/se/shared/icon-flow-arrow.svg") no-repeat center / contain;
  transform: translateX(-50%);
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__item:not(:last-child)::after {
    content: none;
  }
}

.m-list-flow-icon__icon {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--COLOR_WHITE);
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / .15);
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__icon {
    grid-row: 1;
    align-self: start;
    justify-self: center;
    width: 148px;
    height: 148px;
    margin-bottom: -74px;
  }
}

.m-list-flow-icon__icon-image {
  width: 70%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__icon-image {
    width: 60%;
  }
}

.m-list-flow-icon__content {
  margin-left: -22px;
  padding: 16px 16px 16px 61px;
  border-radius: 6px;
  background: var(--COLOR_SECONDARY_LIGHT_GRAY);
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__content {
    grid-row: 2;
    position: relative;
    box-sizing: border-box;
    display: grid;
    justify-items: center;
    align-content: start;
    align-self: stretch;
    width: 100%;
    margin-left: 0;
    padding: 85px 16px 16px;
    text-align: center;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .m-list-flow-icon__item:not(:last-child) .m-list-flow-icon__content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -41px;
    width: 32px;
    height: 22px;
    background: url("/common/images/se/shared/icon-flow-arrow.svg") no-repeat center / contain;
    transform: translateY(-50%) rotate(-90deg);
  }

  .m-list-flow-icon__item:nth-child(3n):not(:last-child) .m-list-flow-icon__content::after {
    content: none;
  }

  .m-list-flow-icon__item:nth-child(3n + 1):not(:first-child) .m-list-flow-icon__content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -38px;
    width: 32px;
    height: 22px;
    background: url("/common/images/se/shared/icon-flow-arrow.svg") no-repeat center / contain;
    transform: translateY(-50%) rotate(-90deg);
  }
}

@media screen and (min-width: 1024px) {
  .m-list-flow-icon__item:not(:last-child) .m-list-flow-icon__content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -41px;
    width: 32px;
    height: 22px;
    background: url("/common/images/se/shared/icon-flow-arrow.svg") no-repeat center / contain;
    transform: translateY(-50%) rotate(-90deg);
  }

  .m-list-flow-icon__item:nth-child(5n):not(:last-child) .m-list-flow-icon__content::after {
    content: none;
  }

  .m-list-flow-icon__item:nth-child(5n + 1):not(:first-child) .m-list-flow-icon__content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -38px;
    width: 32px;
    height: 22px;
    background: url("/common/images/se/shared/icon-flow-arrow.svg") no-repeat center / contain;
    transform: translateY(-50%) rotate(-90deg);
  }
}

.m-list-flow-icon__label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  order: 1;
  column-gap: 4px;
  padding: 8px;
  border-radius: 3px;
  background: var(--COLOR_GRADIENT_GREEN);
  color: var(--COLOR_WHITE);
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1;
  max-width: 100%;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__label {
    position: absolute;
    top: -85px;
    left: 0;
    z-index: 2;
    order: initial;
    font-size: 1.4rem;
    padding: 8px 12px;
  }

  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(1):last-child) .m-list-flow-icon__label,
  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(2):last-child) .m-list-flow-icon__label,
  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(3):last-child) .m-list-flow-icon__label,
  .m-list-flow-icon:has(> .m-list-flow-icon__item:nth-child(4):last-child) .m-list-flow-icon__label {
    left: calc(50% - 96px);
  }
}

.m-list-flow-icon__label-number {
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__label-number {
    font-size: 2rem;
  }
}

.m-list-flow-icon__body {
  margin-top: 12px;
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__body {
    margin-top: 0;
  }
}

.m-list-flow-icon__title {
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__title {
    font-size: 1.8rem;
  }
}

.m-list-flow-icon__text {
  margin-top: 12px;
  line-height: var(--LINE_HEIGHT_NARROW);
  color: var(--COLOR_GRAY);
}

@media screen and (min-width: 769px) {
  .m-list-flow-icon__text {
    font-size: var(--FONT_SIZE);
  }
}

/*----------------- .m-list-contact-number -----------------*/
.m-list-contact-number {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .m-list-contact-number {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 56px;
  }

  .m-list-contact-number--left {
    justify-content: flex-start;
  }
}

.m-list-contact-number__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.m-list-contact-number--left .m-list-contact-number__item {
  justify-content: flex-start;
}

.m-list-contact-number__group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-list-contact-number__text,
.m-list-contact-number__tel {
  margin: 0;
  font-size: 2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-list-contact-number__text,
  .m-list-contact-number__tel {
    font-size: 2.6rem;
  }
}

.m-list-contact-number__image {
  transform: translateY(2px);
}

/*----------------- .m-list-news -----------------*/
.m-list-news {
  margin-top: 32px;
  border-top: 1px solid var(--COLOR_LIGHT_GRAY);
}

@media screen and (min-width: 769px) {
  .m-list-news {
    margin-top: 48px;
  }
}

.m-list-news__item {
  border-bottom: 1px solid var(--COLOR_LIGHT_GRAY);
}

.m-list-news__link {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding: 16px 12px;
  padding-right: calc(12px + 24px);
  transition: background-color var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-list-news__link {
    padding: 16px;
    padding-right: calc(16px + 24px);
  }
}

/* arrow */
.m-list-news__link::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  content: "";
  display: inline-block;
  margin-block: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(30%);
  rotate: 45deg;
}

@media screen and (min-width: 769px) {
  .m-list-news__link::after {
    right: 16px;
  }
}

.m-list-news__link:has(.m-list-news__icon)::after {
  content: none;
}

@media screen and (min-width: 769px) {
  .m-list-news__link:has(.m-label) {
    row-gap: 16px;
  }
}

@media only screen and (any-hover: hover) {
  .m-list-news__link:hover,
  .m-list-news__link:focus-visible {
    background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
  }
}

.m-list-news__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.m-list-news__date {
  color: var(--COLOR_GRAY);
}

@media screen and (min-width: 769px) {
  .m-list-news__date {
    font-size: 1.4rem;
  }
}

.m-list-news__body {
  align-items: center;
}

.m-list-news__lead {
  display: inline;
}

.m-list-news__lead-text {
  color: var(--COLOR_GRAY);
  background-image: linear-gradient(var(--COLOR_GRAY));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

.m-list-news__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  margin-block: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 769px) {
  .m-list-news__icon {
    right: 8px;
  }
}

.m-list-news__icon-blank {
  width: 16px;
  height: 16px;
  color: var(--COLOR_PRIMARY);
}

.m-list-news__icon-pdf {
  color: var(--COLOR_CAUTION);
}

@media only screen and (any-hover: hover) {
  .m-list-news__link:hover .m-list-news__lead-text,
  .m-list-news__link:focus-visible .m-list-news__lead-text {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

/* ------------------------------------------------------------
   カルーセル
   ------------------------------------------------------------ */
/* ----------- .m-carousel ----------- */
.m-carousel {
  margin-top: 32px;
  z-index: var(--Z_INDEX_UPPER_LAYER);
}

@media screen and (min-width: 769px) {
  .m-carousel__track {
    overflow: visible;
  }
}

@media screen and (min-width: 769px) {
  .splide:not(.is-initialized) .m-carousel__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.m-carousel__control {
  display: flex;
  align-items: center;
  column-gap: 26px;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .m-carousel__control {
    margin-top: 32px;
  }
}

.splide:not(.is-initialized) .m-carousel__control,
.splide:not(.is-overflow) .m-carousel__control {
  display: none;
}

.m-carousel__control-group {
  display: flex;
  align-items: center;
  column-gap: 16px;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .m-carousel__control-group {
    margin-inline-end: calc(100% - 385px);
  }
}

.m-carousel__arrows.splide__arrows {
  gap: 1px;
}

.m-carousel__arrow.splide__arrow:not(:disabled) {
  background-color: var(--COLOR_PRIMARY);
  border: 1px solid var(--COLOR_PRIMARY);
  transition: var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-carousel__arrow.splide__arrow {
    width: 56px;
    height: 56px;
  }
}

.m-carousel__arrow.splide__arrow:not(:disabled)::before {
  width: 0;
  height: 0;
  background-color: var(--COLOR_PRIMARY);
  border: none;
  transition: var(--TRANSITION);
}

.m-carousel__arrow.splide__arrow:disabled {
  background-color: var(--COLOR_LIGHT_GRAY);
}

.m-carousel__arrow.splide__arrow:disabled::before {
  width: 0;
  height: 0;
  background-color: var(--COLOR_LIGHT_GRAY);
  border: none;
  transition: var(--TRANSITION);
}

.m-carousel__arrow.splide__arrow::after {
  border-color: var(--COLOR_WHITE);
}

.m-carousel__arrow.splide__arrow:disabled::after {
  border-color: var(--COLOR_GRAY);
}

@media only screen and (any-hover: hover) {
  .m-carousel__arrow.splide__arrow:not(:disabled):hover,
  .m-carousel__arrow.splide__arrow:not(:disabled):focus-visible {
    background-color: var(--COLOR_BACKGROUND);
    box-shadow:  0 4px 6px 0 rgb(0 0 0 / .25);
  }

  .m-carousel__arrow.splide__arrow:not(:disabled):hover::before,
  .m-carousel__arrow.splide__arrow:not(:disabled):focus-visible::before {
    box-shadow: none;
  }
}

.m-carousel__arrow-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.m-carousel__image {
  transition: box-shadow var(--TRANSITION);
}

.m-carousel__link {
  display: flex;
  justify-content: center;
}

.m-carousel__link:hover,
.m-carousel__link:focus-visible {
  outline-offset: -1px;
}

@media only screen and (any-hover: hover) {
  .m-carousel__link:hover .m-carousel__image,
  .m-carousel__link:focus-visible .m-carousel__image {
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
  }
}

/* ------------------------------------------------------------
   タブ
   ------------------------------------------------------------ */
/* ----------- .m-tab ----------- */
.m-tab {
  margin-top: 32px;
}

@media screen and (min-width: 769px) {
  .m-tab {
    margin-top: 48px;
  }
}

.m-tab__list-wrapper {
  position: relative;
}

.m-tab__list-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: calc(100% - 8px);
  background: linear-gradient(90deg, transparent, var(--COLOR_WHITE) 100%);
}

.m-tab__list-wrapper:has(.m-tab__list.is-end)::after {
  content: none;
}

@media screen and (min-width: 769px) {
  .m-tab__list-wrapper::after {
    content: none;
  }
}

.m-tab__list {
  display: flex;
  gap: 16px 8px;
  padding-bottom: 8px;
  overflow-x: auto;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-tab__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(192px, 1fr));
  }
}

.m-tab__item {
  flex-shrink: 0;
}

.m-tab__button {
  display: block;
  padding: 8px 24px;
  border: 1px solid var(--COLOR_SECONDARY_GRAY);
  border-radius: 3px;
  background-color: var(--COLOR_WHITE);
  transition:
    border-color var(--TRANSITION),
    box-shadow var(--TRANSITION),
    background-color var(--TRANSITION),
    color var(--TRANSITION);
  height: 100%;
  align-content: center;
}

.m-tab__button[aria-selected="true"] {
  border-color: var(--COLOR_PRIMARY);
  background-color: var(--COLOR_PRIMARY);
  color: var(--COLOR_WHITE);
  font-weight: var(--FONT_WEIGHT_BOLD);
}

@media only screen and (any-hover: hover) {
  .m-tab__button:not([aria-selected="true"]):hover,
  .m-tab__button:not([aria-selected="true"]):focus-visible {
    border-color: var(--COLOR_PRIMARY);
    box-shadow: 0 4px 6px 0 rgb(0 0 0 / .25);
    background-color: var(--COLOR_BACKGROUND);
    color: var(--COLOR_PRIMARY);
    font-weight: var(--FONT_WEIGHT);
  }
}

.m-tab__content {
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .m-tab__content {
    margin-top: 40px;
  }
}

.m-tab__panel > *:first-child {
  margin-top: 0;
}

.m-tab__panel > *:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   レイアウト
   ------------------------------------------------------------ */
/*----------------- .m-layout -----------------*/
.m-layout {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.m-layout--auto {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .m-layout[data-column-sp="2"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

@media screen and (min-width: 769px) {
  .m-layout {
    margin-top: 48px;
    gap: 48px 32px;
  }

  .m-layout[data-column-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-layout[data-column-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-layout[data-column-pc="4"] {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 32px;
    gap: 32px 24px;
  }

  .m-layout--auto {
    gap: 48px 32px;
    margin-top: 48px;
  }

  .m-layout[data-column-pc="2:1"] {
    grid-template-columns: 2fr 1fr;
  }
}

.m-layout__item:has(> .m-box) {
  display: flex;
}

.m-layout__item > *:first-child {
  margin-top: 0;
}

.m-layout__item > *:last-child {
  margin-bottom: 0;
}

/*----------------- .m-media -----------------*/
.m-media {
  margin-top: 32px;
}

.m-media__wrap {
  display: table;
  margin: auto;
  vertical-align: top;
  transition: box-shadow var(--TRANSITION);
}

.m-media__wrap:any-link:hover {
  box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
}

.m-media__caption {
  caption-side: bottom;
  display: table-caption;
  font-size: 1.6rem;
  margin-top: 8px;
}

.m-media__caption > *:first-child {
  margin-top: 0;
}

.m-media__caption > *:last-child {
  margin-bottom: 0;
}

.m-media__item--border {
  border: 1px solid var(--COLOR_LIGHT_GRAY);
}

/*----------------- .m-layout-media -----------------*/
.m-layout-media {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 16px;
  margin-top: 32px;
}

.m-layout-media--column {
  flex-direction: column;
}

.m-layout-media--column-reverse {
  flex-direction: column-reverse;
}

.m-layout-media--modal .m-layout-media__media {
  padding: 24px 16px;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
}

@media screen and (max-width: 768px) {
  .m-layout-media--reverse-sp {
    flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  .m-layout-media {
    flex-direction: row-reverse;
    column-gap: 32px;
    margin-top: 48px;
  }

  .m-layout-media--center-pc {
    align-items: center;
  }

  .m-layout-media--column {
    flex-direction: column;
  }

  .m-layout-media--column-reverse {
    flex-direction: column-reverse;
  }

  .m-layout-media--modal .m-layout-media__media {
    width: 100%;
    max-width: calc((100% - 32px) / 2);
    padding-inline: 32px;
  }
}

@media screen and (min-width: 769px) {
  .m-layout-media--reverse-pc {
    flex-direction: row;
  }
}

.m-layout-media__content {
  flex: 1;
}

.m-layout-media__content > *:first-child {
  margin-top: 0;
}

.m-layout-media__content > *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .m-layout-media__media {
    max-width: 50%;
  }

  .m-layout-media__media--row {
    max-width: 100%;
  }
}

.m-layout-media__media > *:first-child {
  margin-top: 0;
}

.m-layout-media__media--row {
  display: flex;
  margin-inline: auto;
  gap: 16px;
}

@media screen and (min-width: 769px) {
  .m-layout-media__media--row {
    gap: 48px 32px;
  }
}

.m-layout-media__media--row .m-media {
  margin-top: 0;
}

.m-layout .m-text + .m-media {
  margin-top: 16px;
}

/* ----------------------------------------------------------------
   テキスト
   ---------------------------------------------------------------- */
/* ----------- .m-text ----------- */
/* stylelint-disable-next-line no-descending-specificity -- .m-panel-image-text__item内で.m-textの余白をリセットするため上書き */
.m-text {
  margin-top: 16px;
}

.m-text--orange {
  color: var(--COLOR_DENKI_ORANGE);
}

.m-text--green {
  color: var(--COLOR_PRIMARY);
}

.m-text--blue {
  color: var(--COLOR_REVO_BLUE);
}

.m-text--pink {
  color: var(--COLOR_REVO_PINK);
}

.m-text--bold {
  font-weight: var(--FONT_WEIGHT_BOLD);
}

.m-text--strong {
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_CAUTION);
}

.m-text--superscript {
  position: relative;
  top: 2px;
  font-size: 1rem;
}

.m-text--subscript {
  position: relative;
  bottom: 2px;
  font-size: 1rem;
}

.m-text--through {
  text-decoration: line-through;
}

.m-text--small {
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .m-text--small {
    font-size: 1.4rem;
  }
}

.m-text--medium {
  font-size: 1.5rem;
}

@media screen and (min-width: 769px) {
  .m-text--medium {
    font-size: 1.8rem;
  }
}

.m-text--extra-large {
  font-size: 1.8rem;
}

@media screen and (min-width: 769px) {
  .m-text--extra-large {
    font-size: 2.2rem;
  }
}

/* ----------- .m-text-large ----------- */
.m-text-large {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .m-text-large {
    margin-top: 32px;
    font-size: 2rem;
  }
}

/* ----------- .m-text-lead ----------- */
.m-text-lead {
  margin-top: 48px;
  font-size: 1.8rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.6;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-text-lead {
    margin-top: 80px;
    font-size: 2.4rem;
  }
}

/* ----------- .m-text-link ----------- */
.m-text-link {
  color: var(--COLOR_PRIMARY);
  transition: color var(--TRANSITION);
}

.m-text-link__text {
  padding-bottom: 4px;
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 1px;
  transition: background-size var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .m-text-link:hover .m-text-link__text,
  .m-text-link:focus-visible .m-text-link__text{
    background-size: 0 1px;
  }
}

.m-text-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

.m-text-link__icon-blank {
  width: 16px;
  height: 16px;
  color: var(--COLOR_PRIMARY);
}

.m-text-link__icon-pdf {
  color: var(--COLOR_CAUTION);
}

/* ----------------------------------------------------------------
   モーダル
   ---------------------------------------------------------------- */
/*----------------- .m-modal -----------------*/
.m-modal {
  width: 100%;
  max-width: calc(100% - 40px);
  padding: 0;
  background-color: transparent;
  border: none;
}

@media screen and (min-width: 769px) {
  .m-modal {
    max-width: min(100% - 80px, 1200px);
  }
}

.m-modal::backdrop {
  background-color: rgb(0 0 0 / .3);
}

.m-modal__inner {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 8px;
  background-color: var(--COLOR_WHITE);
  box-shadow: 0 4px 14px rgb(0 0 0 / .25);
  max-height: calc(100dvh - 40px);
  padding: 8px 0 16px;
}

@media screen and (min-width: 769px) {
  .m-modal__inner {
    row-gap: 16px;
    max-height: calc(100dvh - 80px);
    padding-bottom: 48px;
  }
}

.m-modal__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 0 16px 16px;
  overflow: auto;
}

@media screen and (min-width: 769px) {
  .m-modal__body {
    row-gap: 32px;
    padding: 0 56px 16px;
  }
}

.m-modal__content > *:first-child {
  margin-top: 0;
}

.m-modal__content > *:last-child {
  margin-bottom: 0;
}

.m-modal__media {
  order: -1;
  text-align: center;
}

.m-modal__media-image {
  width: auto;
  max-height: 400px;
}

@media screen and (min-width: 769px) {
  .m-modal__media-image {
    max-height: none;
  }
}

.m-modal__head {
  display: flex;
  justify-content: end;
}

.m-modal__close {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
}

@media screen and (min-width: 769px) {
  .m-modal__close {
    width: 56px;
    height: 56px;
  }
}

.m-modal__close::before,
.m-modal__close::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 24px;
  height: 2.5px;
  margin: auto;
  background-color: var(--COLOR_PRIMARY);
}

.m-modal__close::before {
  rotate: 45deg;
}

.m-modal__close::after {
  rotate: -45deg;
}

.m-modal__close-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

/* ----------------------------------------------------------------
   ボックス
   ---------------------------------------------------------------- */
/* ----------- .m-box ----------- */
.m-box {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding: 24px;
  gap: 16px;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
}

.m-box--border {
  background-color: var(--COLOR_WHITE);
  border: 5px solid var(--COLOR_LIGHT_GRAY);
}

.m-box--emphasis {
  background-color: var(--COLOR_WHITE);
  border: 5px solid var(--COLOR_PRIMARY);
}

.m-box--caution {
  background-color: var(--COLOR_CAUTION_BACKGROUND);
}

.m-box--margin-large {
  margin-top: 48px;
}

@media screen and (min-width: 769px) {
  .m-box {
    margin-top: 32px;
    padding: 32px;
  }

  .m-box--margin-large {
    margin-top: 80px;
  }

  .m-box--center-pc {
    justify-content: center;
  }
}

.m-box__title {
  font-size: 1.8rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-box__title {
    font-size: 2.2rem;
  }
}

.m-box__body > :first-child {
  margin-top: 0;
}

.m-box__body > :last-child {
  margin-bottom: 0;
}

.m-layout__item > .m-box {
  flex: 1;
}

/* ----------------------------------------------------------------
   テーブル
   ---------------------------------------------------------------- */
.m-table {
  position: relative;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .m-table {
    margin-top: 32px;
  }
}

.m-table__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.m-table__cell {
  padding: 16px;
  border: 1px solid var(--COLOR_LIGHT_GRAY);
  text-align: left;
  vertical-align: top;
  background-color: var(--COLOR_WHITE);
}

.m-table__cell > :first-child {
  margin-top: 0;
}

.m-table__cell--emphasis {
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
  font-weight: var(--FONT_WEIGHT_BOLD);
}

.m-table__cell--head {
  color: var(--COLOR_WHITE);
  font-weight: var(--FONT_WEIGHT_BOLD);
  background-color: var(--COLOR_SECONDARY_GRAY);
}

.m-table__cell--border-none {
  border: none;
}

@media screen and (min-width: 769px) {
  .m-table__cell {
    padding: 16px 24px;
  }

  .m-table__table--cell-small .m-table__cell {
    padding-inline: 16px;
  }
}

.m-table__scroll-text {
  display: none;
}

.m-table__scroll-text-label {
  color: var(--COLOR_GRAY);
}

.m-table__scroll-text-icon {
  margin-top: 2px;
  width: 32px;
  height: 9px;
}

.m-table.is-scrollable .m-table__wrapper {
  overflow-x: auto;
}

.m-table.is-scrollable .m-table__table {
  min-width: min-content;
}

.m-table.is-scrollable::after {
  content: "";
  position: absolute;
  top: calc(1em * var(--LINE_HEIGHT) + 8px);
  right: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgb(255 255 255 / 0),
    var(--COLOR_WHITE)
  );
  transition: opacity var(--TRANSITION);
}

.m-table.is-scrollable:has(.m-table__wrapper.is-end)::after {
  opacity: 0;
}

.m-table.is-scrollable .m-table__scroll-text {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 8px;
  transition: visibility var(--TRANSITION), opacity var(--TRANSITION);
}

.m-table.is-scrollable.has-scrolled .m-table__scroll-text {
  visibility: hidden;
  opacity: 0;
}

.m-table.is-scrollable:has(.m-table__wrapper.is-end):not(.has-scrolled) .m-table__scroll-text {
  display: none;
}

@media screen and (max-width: 768px) {
  .m-table.is-scrollable .m-table__table {
    width: 960px;
  }
}

/* ----------------------------------------------------------------
   その他
   ---------------------------------------------------------------- */
/* ----------- .m-horizontal-rule ----------- */
hr.m-horizontal-rule {
  border: none;
  margin-block: 24px;
  width: 100%;
  height: 1px;
  margin-inline: auto;
  background-color: var(--COLOR_SECONDARY_GRAY);
}

@media screen and (min-width: 769px) {
  hr.m-horizontal-rule {
    margin-block: 32px;
  }
}

/* ----------- .m-overlay ----------- */
.m-overlay {
  position: relative;
}

.m-overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / .3);
  overflow: hidden;
}

.m-overlay__text {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 272px;
  height: fit-content;
  padding: 15px;
  border: 1px solid var(--COLOR_CAUTION);
  border-radius: 6px;
  background-color: var(--COLOR_WHITE);
  font-size: 1.8rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  color: var(--COLOR_CAUTION);
}

/* ----------- .m-search-box ----------- */
.m-search-box {
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .m-search-box {
    margin-top: 48px;
  }
}

.m-search-box__form {
  position: relative;
}

@media screen and (min-width: 769px) {
  .m-search-box__form.for-sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .m-search-box__form.for-pc {
    display: none;
  }
}

.m-search-box__input {
  display: flex;
  width: 100%;
  padding: 16px calc(16px + 14px + 8px) 16px 16px;
  border: none;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
  font-size: 1.2rem;
  background-image: url('/common/images/se/shared/icon-search.svg');
  background-repeat: no-repeat;
  background-position: bottom 50% right 16px;
  background-size: 14px 14px;
}

@media screen and (min-width: 769px) {
  .m-search-box__input {
    padding: 24px calc(24px + 14px + 8px) 24px 24px;
    font-size: 1.4rem;
    background-position: bottom 50% right 24px;
  }
}

.m-search-box__submit {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .m-search-box__submit {
    right: 24px;
  }
}

/* ----------- .m-contact ----------- */
.m-contact {
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .m-contact {
    margin-top: 56px;
  }
}

.m-contact__box {
  padding: 24px 16px;
  background-color: var(--COLOR_BACKGROUND);
}

@media screen and (min-width: 769px) {
  .m-contact__box {
    padding: 32px;
  }
}

.m-contact__box-inner {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .m-contact__box-inner--reverse-sp {
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 769px) {
  .m-contact__box-inner {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px 32px;
  }

  .m-contact__box-inner:has(.m-contact__buttons-item:nth-child(2)) {
    justify-content: start;
  }

  .m-contact__box-inner--reverse-pc {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 768px) {
  .m-contact__box-inner--reverse-sp .m-contact__details {
    margin-top: 16px;
  }
}

@media screen and (min-width: 769px) {
  .m-contact__details {
    flex: 1;
    min-width: 200px;
    max-width: fit-content;
  }
}

.m-contact__buttons {
  display: grid;
}

@media screen and (max-width: 768px) {
  .m-contact__buttons {
    margin-top: 16px;
  }

  .m-contact__box-inner--reverse-sp .m-contact__buttons {
    margin-top: 0;
  }

  .m-contact__details:has(.m-contact__heading:only-child) + .m-contact__buttons {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .m-contact__buttons {
    column-gap: 32px;
    width: 100%;
    max-width: min(422px, 50%);
  }

  .m-contact__buttons:has(.m-contact__buttons-item:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 876px;
    margin: 0 auto;
  }

  .m-contact__buttons .m-button {
    width: 100%;
    font-size: 1.8rem;
  }
}

.m-contact__buttons-item {
  height: fit-content;
}

@media screen and (max-width: 768px) {
  .m-contact__buttons-item + .m-contact__buttons-item {
    margin-top: 16px;
  }
}

@media screen and (min-width: 769px) {
  .m-contact__buttons-item {
    display: grid;
    grid-row: span 1000;
    grid-template-rows: subgrid;
  }
}

.m-contact__buttons-attention {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 8px;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT);
  color: var(--COLOR_PRIMARY);
}

.m-contact__buttons-attention::before,
.m-contact__buttons-attention::after {
  content: "";
  margin-left: 9px;
  width: 2px;
  height: 20px;
  background-color: var(--COLOR_PRIMARY);
}

.m-contact__buttons-attention::before {
  rotate: -45deg;
}

.m-contact__buttons-attention::after {
  rotate: 45deg;
}

@media screen and (min-width: 769px) {
  .m-contact__buttons-attention {
    padding-bottom: 16px;
  }
}

.m-contact__heading {
  position: relative;
  margin-bottom: 12px;
  padding-left: 16px;
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
}

.m-contact__heading::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(#68c148, #33ad69);
}

@media screen and (min-width: 769px) {
  .m-contact__heading {
    margin-bottom: 16px;
    padding-left: 24px;
    font-size: 1.6rem;
  }

  .m-contact__heading:last-child {
    margin-bottom: 0;
  }
}

.m-contact__heading + .m-list-note {
  margin-top: 0;
}

.m-contact__buttons-item .m-list-note {
  margin-top: 8px;
}

@media screen and (min-width: 769px) {
  .m-contact__buttons-item .m-list-note {
    margin-top: 16px;
  }
}

.m-contact__support {
  display: grid;
  row-gap: 8px;
  margin-top: 16px;
  text-align: center;
  color: var(--COLOR_GRAY);
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-contact__support {
    align-items: center;
    column-gap: 16px;
    width: fit-content;
    margin: 24px auto 0;
  }
}

.m-contact__support-lead {
  font-size: 1.2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
}

@media screen and (min-width: 769px) {
  .m-contact__support-lead {
    grid-area: 1 / 1 / 2 / 3;
    font-size: 1.4rem;
  }
}

.m-contact__support-tel {
  display: flex;
  column-gap: 8px;
  justify-content: center;
  align-items: center;
}

.m-contact__support-tel::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/common/images/se/shared/icon-telephone.svg") no-repeat center / contain;
}

.m-contact__support-tel--free::before {
  width: 32px;
  height: 20px;
  background-image: url("/common/images/se/shared/icon-free-dial.svg");
}

@media screen and (min-width: 769px) {
  .m-contact__support-tel {
    grid-area: 2 / 1 / 3 / 2;
  }

  .m-contact__support-tel::before {
    width: 24px;
    height: 24px;
  }

  .m-contact__support-tel--free::before {
    width: 36px;
    height: 21px;
  }
}

.m-contact__support-opening {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .m-contact__support-opening {
    grid-area: 2 / 2 / 3 / 3;
    font-size: 1.4rem;
  }
}

/* ----------- .m-checkbox-agree ----------- */
.m-checkbox-agree {
  margin: 24px auto 0;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .m-checkbox-agree {
    margin-top: 40px;
    max-width: 264px;
  }
}

.m-checkbox-agree__label {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 12px;
  background-color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_PRIMARY);
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / .25);
}

.m-checkbox-agree__input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.m-checkbox-agree__text {
  position: relative;
  padding-left: calc(24px + 8px);
  color: var(--COLOR_GRAY);
}

.m-checkbox-agree__text::before {
  position: absolute;
  content: "";
  inset: 0;
  margin-block: auto;
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background-color: var(--COLOR_LIGHT_GRAY);
}

.m-checkbox-agree__input:checked + .m-checkbox-agree__text::before {
  background-color: var(--COLOR_PRIMARY);
}

.m-checkbox-agree__input:checked + .m-checkbox-agree__text::after {
  position: absolute;
  top: 4px;
  left: 4px;
  content: "";
  display: inline-flex;
  width: 16px;
  height: 11px;
  border-bottom-left-radius: 2px;
  border-left: 3px solid var(--COLOR_WHITE);
  border-bottom: 3px solid var(--COLOR_WHITE);
  rotate: -45deg;
}

@media screen and (min-width: 769px) {
  .m-checkbox-agree__input:checked + .m-checkbox-agree__text::after {
    top: 6px;
  }
}

@media only screen and (any-hover: hover) {
  .m-checkbox-agree__input:focus-visible + .m-checkbox-agree__text::before {
    outline: 2px solid #000;
  }
}

/* ----------- .m-terms-box ----------- */
.m-terms-box {
  width: 100%;
  height: 100%;
  margin-top: 24px;
  padding: 27px 11px 19px 19px;
  border: 5px solid var(--COLOR_LIGHT_GRAY);
  background-color: var(--COLOR_WHITE);
}

@media screen and (min-width: 769px) {
  .m-terms-box {
    margin-top: 32px;
    padding: 43px 27px;
  }
}

.m-terms-box__inner {
  max-height: 330px;
  overflow-y: scroll;
  scrollbar-color: var(--COLOR_SECONDARY_GRAY) var(--COLOR_LIGHT_GRAY);
  scrollbar-width: thin;
}

@media screen and (min-width: 769px) {
  .m-terms-box__inner {
    max-height: 480px;
  }
}

.m-terms-box__content {
  padding-right: 12px;
}

@media screen and (min-width: 769px) {
  .m-terms-box__content {
    padding-right: 24px;
  }
}

/* ----------- .m-login-service ----------- */
.m-login-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-block: 32px 24px;
  padding-inline: 24px;
  margin-inline: auto;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
}

@media screen and (min-width: 769px) {
  .m-login-service {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 40px;
    padding: 32px;
  }
}

.m-login-service__media {
  padding: 16px 24px;
  background-color: var(--COLOR_WHITE);
}

.m-login-service__media img {
  max-width: 190px;
}

@media screen and (min-width: 769px) {
  .m-login-service__media {
    padding-block: 24px;
  }

  .m-login-service__media img {
    max-width: 211px;
  }
}

.m-login-service__button-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  margin-inline: auto;
}

@media screen and (min-width: 769px) {
  .m-login-service__button-layout {
    flex-direction: row;
    gap: 24px;
    width: fit-content;
    margin: 0;
  }
}

.m-login-service__button-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (min-width: 769px) {
  .m-login-service__button-item {
    align-items: center;
  }
}

.m-login-service__button-item>:last-child {
  margin: 0;
}

.m-login-service__button-title {
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
}

.m-login-service__button {
  position: relative;
  display: flex;
  justify-content: center;
  column-gap: 8px;
  padding: 12px 36px 12px 24px;
  border: 1px solid var(--COLOR_PRIMARY);
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / .25);
  background-color: var(--COLOR_WHITE);
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_PRIMARY);
  text-align: center;
  transition:
    background-color var(--TRANSITION),
    box-shadow var(--TRANSITION);
}

.m-login-service__button::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 20px;
  border-right: 2px solid var(--COLOR_PRIMARY);
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (min-width: 769px) {
  .m-login-service__button {
    min-width: 300px;
    padding-top: 16px;
    padding-bottom: 16px;
    width: fit-content;
  }
}

@media only screen and (any-hover: hover) {
  .m-login-service__button:hover,
  .m-login-service__button:focus-visible {
    background-color: var(--COLOR_BACKGROUND);
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
  }
}

.m-login-service__button-text {
  position: relative;
  z-index: var(--Z_INDEX_UPPER_LAYER);
}

.m-login-service__button--conversion {
  align-items: center;
  gap: 8px;
  padding: 8px 36px 8px 8px;
  border: none;
  color: var(--COLOR_WHITE);
  background-color: var(--COLOR_PRIMARY);
}

.m-login-service__button--conversion::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: var(--COLOR_GRADIENT_GREEN);
  opacity: 0;
  transition: opacity var(--TRANSITION);
}

.m-login-service__button--conversion::after {
  border-color: var(--COLOR_WHITE);
  z-index: var(--Z_INDEX_UPPER_LAYER);
}

.m-login-service__button--conversion .m-login-service__button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

@media only screen and (any-hover: hover) {
  .m-login-service__button--conversion:hover,
  .m-login-service__button--conversion:focus-visible {
    background-color: var(--COLOR_PRIMARY);
  }

  .m-login-service__button--conversion:hover::before,
  .m-login-service__button--conversion:focus-visible::before {
    opacity: 1;
  }
}

.m-login-service__button-icon {
  position: relative;
  display: block;
  padding: 8px 12px;
  border-radius: 3px;
  background-color: var(--COLOR_WHITE);
  color: var(--COLOR_PRIMARY);
  font-size: 1.2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.2;
  letter-spacing: .08em;
}

.m-login-service__button-text-block {
  display: block;
}

.m-login-service__button-text-small {
  font-size: 1.2rem;
}

.m-login-service__button-item .m-link-list {
  align-items: center;
}

@media screen and (min-width: 769px) {
  .m-login-service__button-item .m-link-list {
    margin-top: 8px;
  }
}

/* ----------- .m-media-note ----------- */
.m-media-note {
  display: grid;
  row-gap: 16px;
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .m-media-note {
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
  }
}

.m-media-note__media-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}

@media screen and (min-width: 769px) {
  .m-media-note__media-group {
    flex-direction: row;
    align-items: center;
    column-gap: 16px;
  }
}

.m-media-note__media--full {
  height: 64px;
}

.m-media-note__media--half {
  height: 32px;
}

.m-media-note__image {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.m-media-note > [class^="m-"] {
  margin-top: 0;
}

/*----------------- .m-pager -----------------*/
.m-pager {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .m-pager {
    gap: 48px;
    margin-top: 32px;
  }
}

.m-pager__note {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .m-pager__note {
    gap: 20px;
    font-size: 1.8rem;
  }
}

.m-pager__note--emphasis {
  font-size: 1.8rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
}

.m-pager__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-inline: auto;
}

@media screen and (min-width: 769px) {
  .m-pager__list {
    gap: 12px;
  }
}

.m-pager__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_PRIMARY);
  background-color: transparent;
  transition: color var(--TRANSITION),
  background-color var(--TRANSITION);
}

.m-pager__item[aria-current="true"] .m-pager__link {
  color: var(--COLOR_WHITE);
  background-color: var(--COLOR_PRIMARY);
}

.m-pager__link--back,
.m-pager__link--next {
  border: 1px solid var(--COLOR_PRIMARY);
  background-color: var(--COLOR_WHITE);
}

/* arrow */
.m-pager__link--back::after,
.m-pager__link--next::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  rotate: 45deg;
  transform-origin: center;
  transition: border-color var(--TRANSITION);
}

.m-pager__link--back::after {
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  border-left: 2px solid var(--COLOR_PRIMARY);
  translate: 1px 0;
}

.m-pager__link--next::after {
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  translate: -2px 0;
}

.m-pager__link--back:is(a:not(:any-link), button:disabled),
.m-pager__link--next:is(a:not(:any-link), button:disabled) {
  border: none;
  background-color: var(--COLOR_LIGHT_GRAY);
  cursor: not-allowed;
}

.m-pager__link--back:is(a:not(:any-link), button:disabled)::after,
.m-pager__link--next:is(a:not(:any-link), button:disabled)::after {
  border-color: var(--COLOR_GRAY);
}

@media only screen and (any-hover: hover) {
  .m-pager__link:hover,
  .m-pager__link:focus-visible {
    color: var(--COLOR_WHITE);
    background-color: #A2A6AA;
  }

  .m-pager__link--back:hover,
  .m-pager__link--back:focus-visible,
  .m-pager__link--next:hover,
  .m-pager__link--next:focus-visible {
    background-color: var(--COLOR_BACKGROUND);
  }
}

.m-pager__state {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  overflow: hidden !important;
  clip-path: rect(1px 1px 1px 1px) !important;
}

/* ----------- .m-qr-box ----------- */
@media screen and (min-width: 769px) {
  .m-qr-box {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 27px;
    border: 5px solid var(--COLOR_LIGHT_GRAY);
  }
}

.m-qr-box__sp > :first-child {
  margin-top: 0 !important;
}

.m-qr-box__sp > :last-child {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 769px) {
  .m-qr-box__sp {
    display: none;
  }
}

.m-qr-box__pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .m-qr-box__pc {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 16px;
  }
}

@media screen and (min-width: 769px) {
  .m-qr-box__pc-content {
    flex: 1;
  }

  .m-qr-box__pc-content > :first-child {
    margin-top: 0 !important;
  }

  .m-qr-box__pc-content > :last-child {
    margin-bottom: 0 !important;
  }
}

/* ----------- .m-pay-app ----------- */
.m-pay-app {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .m-pay-app {
    flex-direction: row;
    column-gap: 32px;
    margin-top: 24px;
  }
}

.m-pay-app__panel {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--COLOR_LIGHT_GRAY);
  border-radius: 6px;
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / .25);
  transition: box-shadow var(--TRANSITION);
}

@media screen and (min-width: 769px) {
  .m-pay-app__panel {
    border-width: 1px;
  }
}

@media only screen and (any-hover: hover) {
  .m-pay-app__panel:hover,
  .m-pay-app__panel:focus-visible {
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / .25);
  }
}

.m-pay-app__image {
  border-radius: 6px 6px 0 0;
}

.m-pay-app__text {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  min-height: 40px;
  padding: 4px 8px;
  background-color: var(--COLOR_PRIMARY);
  border-radius: 0 0 6px 6px;
  color: var(--COLOR_WHITE);
  font-weight: var(--FONT_WEIGHT_BOLD);
  text-align: center;
}

.m-pay-app__text::after {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: var(--COLOR_WHITE);
  margin-inline-end: 8px;
  rotate: 45deg;
}

@media screen and (min-width: 769px) {
  .m-pay-app__text {
    font-weight: var(--FONT_WEIGHT);
  }
}

/* ユーザーエージェント+ポインター判定によるだし分け */
.is-ios .m-pay-app__panel--google-pay {
  display: none;
}

.is-android .m-pay-app__panel--apple-pay {
  display: none;
}

/* ----------------------------------------------------------------
   見出し
   ---------------------------------------------------------------- */
/* ----------- .m-heading-level1 ----------- */
.m-heading-level1 {
  grid-area: page-title;
  display: grid;
  place-items: center;
  padding: 48px 16px;
  width: 100%;
  height: auto;
  background-color: var(--COLOR_SECONDARY_LIGHT_GRAY);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-heading-level1 {
    padding-block: 80px;
  }
}

.m-heading-level1--media {
  padding-block: 32px 0;
  padding-inline: 16px;
  background-color: transparent;
  max-width: calc(1200px + 16px * 2);
  margin-inline: auto;
}

@media screen and (min-width: 769px) {
  .m-heading-level1--media {
    padding-block: 56px 0;
  }
}

.str-main:has(.str-breadcrumbs) .m-heading-level1--media {
  padding-block: 32px 0;
}

@media screen and (min-width: 769px) {
  .str-main:has(.str-breadcrumbs) .m-heading-level1--media {
    padding-block: 0;
  }
}

.m-heading-level1__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-heading-level1__title {
    gap: 16px;
    font-size: 4.2rem;
  }
}

.m-heading-level1__subtext {
  font-size: 1.4rem;
  line-height: var(--LINE_HEIGHT);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-heading-level1__subtext {
    font-size: 1.8rem;
  }
}

/* ----------- .m-heading-level1-index ----------- */
.m-heading-level1-index {
  grid-area: page-title;
  position: relative;
  padding: 60px 16px;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-index {
    padding-block: 120px;
  }
}

.m-heading-level1-index__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: var(--Z_INDEX_UPPER_LAYER);
}

@media screen and (min-width: 769px) {
  .m-heading-level1-index__content {
    gap: 48px;
  }
}

.m-heading-level1-index__title {
  font-size: 2.4rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  color: var(--COLOR_WHITE);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-index__title {
    font-size: 4.2rem;
  }
}

.m-heading-level1-index__text {
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT);
  color: var(--COLOR_WHITE);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-index__text {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.m-heading-level1-index__media {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-position: top center;
  object-fit: cover;
  filter: brightness(65%);
}

/* ----------- .m-heading-level1-hero ----------- */
.m-heading-level1-hero {
  grid-area: page-title;
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-hero {
    position: relative;
    flex-direction: unset;
    min-height: 350px;
  }

  .m-heading-level1-hero::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    background-image: linear-gradient(90deg, transparent 24%, #F7FCF7 64%, #F7FCF7);
  }
}

.m-heading-level1-hero__content {
  position: relative;
  margin: -24px 16px 0 16px;
  padding: 24px 16px;
  border-radius: 6px;
  background-color: #F7FCF9;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-hero__content {
    width: 45%;
    max-width: 576px;
    height: fit-content;
    margin: auto;
    margin-right: 80px;
    padding: 40px 0;
    border-radius: 0;
    background: none;
    z-index: 1;
  }
}

.m-heading-level1-hero__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-hero__content-inner {
    gap: 16px;
  }
}

.m-heading-level1-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 2.4rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-hero__title {
    gap: 16px;
    font-size: 4.2rem;
  }
}

.m-heading-level1-hero__text {
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT_NARROW);
  color: var(--COLOR_GRAY);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-hero__text {
    font-size: 1.8rem;
  }

  .m-heading-level1-hero__title > .m-heading-level1-hero__title-media {
    padding-bottom: 8px;
  }
}

.m-heading-level1-hero__title-media {
  max-width: 73%;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-hero__title-media {
    max-width: fit-content;
  }
}

.m-heading-level1-hero__title-media:only-child {
  max-width: 56%;
}

@media screen and (min-width: 769px) {
  .m-heading-level1-hero__title-media:only-child {
    max-width: fit-content;
  }
}

@media screen and (min-width: 769px) {
  .m-heading-level1-hero__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
  }

  .m-heading-level1-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1255 / 420;
  }
}

/* ----------- .m-heading-level2 ----------- */
.m-heading-level2 {
  margin-block: 48px 24px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 16px;
}

@media screen and (min-width: 769px) {
  .m-heading-level2 {
    margin-block: 80px 32px;
  }
}

.m-heading-level2::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--COLOR_PRIMARY) 40px,
    var(--COLOR_LIGHT_GRAY) 40px
  );
}

.m-heading-level2__title {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  font-size: 2.2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

.m-heading-level2__title:has(.m-heading-level2__subtext) {
  row-gap: 8px;
}

.m-heading-level2__title:has(.m-heading-level2__lead) {
  row-gap: 8px;
}

@media screen and (min-width: 769px) {
  .m-heading-level2__title:has(.m-heading-level2__lead) {
    row-gap: 12px;
  }
}

@media screen and (min-width: 769px) {
  .m-heading-level2__title {
    font-size: 3.2rem;
  }
}

.m-heading-level2__link {
  position: relative;
  padding-inline-end: 24px;
}

.m-heading-level2__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: var(--COLOR_PRIMARY);
  margin-inline-end: 8px;
  transform: translateY(-50%) rotate(45deg);
}

.m-heading-level2__link-text {
  color: var(--COLOR_PRIMARY);
  background-image: linear-gradient(var(--COLOR_PRIMARY));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

.m-heading-level2__subtext {
  font-size: 1.4rem;
  line-height: var(--LINE_HEIGHT);
}

@media screen and (min-width: 769px) {
  .m-heading-level2__subtext {
    font-size: 1.6rem;
  }
}

.m-heading-level2__lead {
  font-size: 1.6rem;
  line-height: var(--LINE_HEIGHT);
}

@media screen and (min-width: 769px) {
  .m-heading-level2__lead {
    font-size: 2rem;
  }
}

@media only screen and (any-hover: hover) {
  .m-heading-level2__link:hover .m-heading-level2__link-text,
  .m-heading-level2__link:focus-visible .m-heading-level2__link-text {
    background-size: 0 1px;
    color: var(--COLOR_GRAY);
  }
}

/* ----------- .m-heading-level2-icon ----------- */
.m-heading-level2-icon {
  margin-block: 48px 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 16px;
}

@media screen and (min-width: 769px) {
  .m-heading-level2-icon {
    margin-block: 80px 32px;
    gap: 8px;
  }
}

.m-heading-level2-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--COLOR_PRIMARY) 40px,
    var(--COLOR_LIGHT_GRAY) 40px
  );
}

.m-heading-level2-icon__title {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  font-size: 2.2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-heading-level2-icon__title {
    font-size: 3.2rem;
  }
}

.m-heading-level2-icon__icon {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  width: 40px;
  height: 40px;
  order: -1;
}

@media screen and (min-width: 769px) {
  .m-heading-level2-icon__icon {
    width: 48px;
    height: 48px;
  }
}

/* ----------- .m-heading-level2-feature ----------- */
.m-heading-level2-feature {
  margin-block: 48px 24px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 16px;
}

@media screen and (min-width: 769px) {
  .m-heading-level2-feature {
    margin-block: 80px 32px;
  }
}

.m-heading-level2-feature::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--COLOR_PRIMARY) 40px,
    var(--COLOR_LIGHT_GRAY) 40px
  );
}

.m-heading-level2-feature__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 2.2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-heading-level2-feature__title {
    gap: 12px;
    font-size: 3.2rem;
  }
}

.m-heading-level2-feature__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 9px 2px;
  width: 62px;
  height: 62px;
  background: linear-gradient(#68c148, #33ad69);
  border-radius: 3px;
}

.m-heading-level2-feature__item-text {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--COLOR_WHITE);
}

.m-heading-level2-feature__item-number {
  font-size: 3.2rem;
  line-height: 1;
  color: var(--COLOR_WHITE);
}

/* ----------- .m-heading-level3 ----------- */
.m-heading-level3 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-block: 32px 16px;
  font-size: 2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-heading-level3 {
    margin-block: 48px 24px;
    font-size: 2.6rem;
  }
}

/* 斜め装飾 */
.m-heading-level3::before {
  content: "";
  margin-inline: 4px;
  width: 6px;
  height: 22px;
  background-color: var(--COLOR_PRIMARY);
  transform: skewX(-20deg);
}

@media screen and (min-width: 769px) {
  .m-heading-level3::before {
    margin-top: 10px;
  }
}


/* ----------- .m-heading-level3-icon ----------- */
.m-heading-level3-icon {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px;
  margin-block: 32px 16px;
}

@media screen and (min-width: 769px) {
  .m-heading-level3-icon {
    gap: 8px;
    margin-block: 48px 24px;
  }
}

.m-heading-level3-icon__title {
  font-size: 2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-heading-level3-icon__title {
    font-size: 2.6rem;
  }
}

.m-heading-level3-icon__icon {
  aspect-ratio: 1 / 1;
  width: 40px;
  height: auto;
  object-fit: contain;
  order: -1;
}

@media screen and (min-width: 769px) {
  .m-heading-level3-icon__icon {
    width: 48px;
  }
}

/* ----------- .m-heading-level3-link ----------- */
.m-heading-level3-link {
  margin-block: 32px 16px;
}

@media screen and (min-width: 769px) {
  .m-heading-level3-link {
    margin-block: 48px 24px;
  }
}

.m-heading-level3-link__title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  font-size: 2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-heading-level3-link__title {
    font-size: 2.6rem;
  }
}

.m-heading-level3-link__title::before {
  content: "";
  margin-inline: 4px;
  width: 6px;
  height: 22px;
  background-color: var(--COLOR_PRIMARY);
  transform: skewX(-20deg);
}

@media screen and (min-width: 769px) {
  .m-heading-level3-link__title::before {
    margin-top: 10px;
  }
}

.m-heading-level3-link__link {
  display: flex;
  align-items: center;
  width: fit-content;
}

/* arrow */
.m-heading-level3-link__link::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin: 8px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--COLOR_PRIMARY);
  border-right: 2px solid var(--COLOR_PRIMARY);
  transform: translateY(10%) rotate(45deg);
}

.m-heading-level3-link__text {
  padding-bottom: 4px;
  background-image: linear-gradient(var(--COLOR_BLACK));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 1px;
  transition:
    background-size var(--TRANSITION),
    color var(--TRANSITION);
}

@media only screen and (any-hover: hover) {
  .m-heading-level3-link__link:hover .m-heading-level3-link__text,
  .m-heading-level3-link__link:focus-visible .m-heading-level3-link__text {
    background-size: 0 1px;
  }
}

.m-heading-level3-link__subtext {
  display: block;
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: var(--LINE_HEIGHT);
}

/* ----------- .m-heading-level3-feature ----------- */
.m-heading-level3-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  margin-block: 32px 16px;
}

@media screen and (min-width: 769px) {
  .m-heading-level3-feature {
    gap: 12px;
    margin-block: 48px 24px;
  }
}

.m-heading-level3-feature__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 9px 2px;
  width: 58px;
  height: 58px;
  background: linear-gradient(#68c148, #33ad69);
  border-radius: 3px;
}

@media screen and (min-width: 769px) {
  .m-heading-level3-feature__item {
    padding: 8px 4px;
    width: 64px;
    height: 64px;
  }
}

.m-heading-level3-feature__item-text {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--COLOR_WHITE);
}

@media screen and (min-width: 769px) {
  .m-heading-level3-feature__item-text {
    font-size: 1.4rem;
  }
}

.m-heading-level3-feature__item-number {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--COLOR_WHITE);
}

@media screen and (min-width: 769px) {
  .m-heading-level3-feature__item-number {
    font-size: 3.2rem;
  }
}

.m-heading-level3-feature__title {
  font-size: 2rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-heading-level3-feature__title {
    font-size: 2.6rem;
  }
}

/* ----------- .m-heading-level4 ----------- */
.m-heading-level4 {
  margin-block: 32px 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--COLOR_LIGHT_GRAY);
  font-size: 1.8rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-heading-level4 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
}

/* ----------- .m-heading-level4-feature ----------- */
.m-heading-level4-feature {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-block: 32px 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--COLOR_LIGHT_GRAY);
}

@media screen and (min-width: 769px) {
  .m-heading-level4-feature {
    margin-bottom: 24px;
  }
}

.m-heading-level4-feature__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 2px;
  width: 52px;
  height: 52px;
  background: linear-gradient(#68c148, #33ad69);
  border-radius: 3px;
}

@media screen and (min-width: 769px) {
  .m-heading-level4-feature__item {
    padding: 6px 4px;
    width: 56px;
    height: 56px;
  }
}

.m-heading-level4-feature__item-text {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--COLOR_WHITE);
}

.m-heading-level4-feature__item-number {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--COLOR_WHITE);
}

@media screen and (min-width: 769px) {
  .m-heading-level4-feature__item-number {
    font-size: 2.8rem;
  }
}

.m-heading-level4-feature__title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: var(--LINE_HEIGHT_NARROW);
  flex: 1;
}

@media screen and (min-width: 769px) {
  .m-heading-level4-feature__title {
    margin-left: 12px;
    font-size: 2.2rem;
  }
}

/* ----------- .m-heading-level5 ----------- */
.m-heading-level5 {
  margin-block: 24px 16px;
  font-size: 1.6rem;
  line-height: var(--LINE_HEIGHT_NARROW);
}

@media screen and (min-width: 769px) {
  .m-heading-level5 {
    margin-bottom: 24px;
    font-size: 1.8rem;
  }
}

/* ----------------------------------------------------------------
   調整モジュール
   ---------------------------------------------------------------- */
/* ----------- .adj-block ----------- */
.adj-block {
  display: block !important;
}

.adj-block-sp {
  display: block !important;
}

.adj-block-pc {
  display: contents !important;
}

@media screen and (min-width: 769px) {
  .adj-block-sp {
    display: contents !important;
  }

  .adj-block-pc {
    display: block !important;
  }
}

/* ----------- .adj-text-* ----------- */
.adj-text-center {
  text-align: center !important;
}

.adj-text-right {
  text-align: right !important;
}

/* ----------- .adj-display-* ----------- */
.adj-display-none {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .md\:adj-display-none {
    display: none !important;
  }
}

.adj-display-block {
  display: block !important;
}

@media screen and (min-width: 769px) {
  .md\:adj-display-block {
    display: block !important;
  }
}

/* ----------- .adj-align-center ----------- */
.adj-align-center {
  align-items: center !important;
}

/* ----------- .adj-width-* ----------- */
.adj-width-1 {
  width: 1% !important;
}

.adj-width-2 {
  width: 2% !important;
}

.adj-width-3 {
  width: 3% !important;
}

.adj-width-4 {
  width: 4% !important;
}

.adj-width-5 {
  width: 5% !important;
}

.adj-width-6 {
  width: 6% !important;
}

.adj-width-7 {
  width: 7% !important;
}

.adj-width-8 {
  width: 8% !important;
}

.adj-width-9 {
  width: 9% !important;
}

.adj-width-10 {
  width: 10% !important;
}

.adj-width-11 {
  width: 11% !important;
}

.adj-width-12 {
  width: 12% !important;
}

.adj-width-13 {
  width: 13% !important;
}

.adj-width-14 {
  width: 14% !important;
}

.adj-width-15 {
  width: 15% !important;
}

.adj-width-16 {
  width: 16% !important;
}

.adj-width-17 {
  width: 17% !important;
}

.adj-width-18 {
  width: 18% !important;
}

.adj-width-19 {
  width: 19% !important;
}

.adj-width-20 {
  width: 20% !important;
}

.adj-width-21 {
  width: 21% !important;
}

.adj-width-22 {
  width: 22% !important;
}

.adj-width-23 {
  width: 23% !important;
}

.adj-width-24 {
  width: 24% !important;
}

.adj-width-25 {
  width: 25% !important;
}

.adj-width-26 {
  width: 26% !important;
}

.adj-width-27 {
  width: 27% !important;
}

.adj-width-28 {
  width: 28% !important;
}

.adj-width-29 {
  width: 29% !important;
}

.adj-width-30 {
  width: 30% !important;
}

.adj-width-31 {
  width: 31% !important;
}

.adj-width-32 {
  width: 32% !important;
}

.adj-width-33 {
  width: 33% !important;
}

.adj-width-34 {
  width: 34% !important;
}

.adj-width-35 {
  width: 35% !important;
}

.adj-width-36 {
  width: 36% !important;
}

.adj-width-37 {
  width: 37% !important;
}

.adj-width-38 {
  width: 38% !important;
}

.adj-width-39 {
  width: 39% !important;
}

.adj-width-40 {
  width: 40% !important;
}

.adj-width-41 {
  width: 41% !important;
}

.adj-width-42 {
  width: 42% !important;
}

.adj-width-43 {
  width: 43% !important;
}

.adj-width-44 {
  width: 44% !important;
}

.adj-width-45 {
  width: 45% !important;
}

.adj-width-46 {
  width: 46% !important;
}

.adj-width-47 {
  width: 47% !important;
}

.adj-width-48 {
  width: 48% !important;
}

.adj-width-49 {
  width: 49% !important;
}

.adj-width-50 {
  width: 50% !important;
}

.adj-width-51 {
  width: 51% !important;
}

.adj-width-52 {
  width: 52% !important;
}

.adj-width-53 {
  width: 53% !important;
}

.adj-width-54 {
  width: 54% !important;
}

.adj-width-55 {
  width: 55% !important;
}

.adj-width-56 {
  width: 56% !important;
}

.adj-width-57 {
  width: 57% !important;
}

.adj-width-58 {
  width: 58% !important;
}

.adj-width-59 {
  width: 59% !important;
}

.adj-width-60 {
  width: 60% !important;
}

.adj-width-61 {
  width: 61% !important;
}

.adj-width-62 {
  width: 62% !important;
}

.adj-width-63 {
  width: 63% !important;
}

.adj-width-64 {
  width: 64% !important;
}

.adj-width-65 {
  width: 65% !important;
}

.adj-width-66 {
  width: 66% !important;
}

.adj-width-67 {
  width: 67% !important;
}

.adj-width-68 {
  width: 68% !important;
}

.adj-width-69 {
  width: 69% !important;
}

.adj-width-70 {
  width: 70% !important;
}

.adj-width-71 {
  width: 71% !important;
}

.adj-width-72 {
  width: 72% !important;
}

.adj-width-73 {
  width: 73% !important;
}

.adj-width-74 {
  width: 74% !important;
}

.adj-width-75 {
  width: 75% !important;
}

.adj-width-76 {
  width: 76% !important;
}

.adj-width-77 {
  width: 77% !important;
}

.adj-width-78 {
  width: 78% !important;
}

.adj-width-79 {
  width: 79% !important;
}

.adj-width-80 {
  width: 80% !important;
}

.adj-width-81 {
  width: 81% !important;
}

.adj-width-82 {
  width: 82% !important;
}

.adj-width-83 {
  width: 83% !important;
}

.adj-width-84 {
  width: 84% !important;
}

.adj-width-85 {
  width: 85% !important;
}

.adj-width-86 {
  width: 86% !important;
}

.adj-width-87 {
  width: 87% !important;
}

.adj-width-88 {
  width: 88% !important;
}

.adj-width-89 {
  width: 89% !important;
}

.adj-width-90 {
  width: 90% !important;
}

.adj-width-91 {
  width: 91% !important;
}

.adj-width-92 {
  width: 92% !important;
}

.adj-width-93 {
  width: 93% !important;
}

.adj-width-94 {
  width: 94% !important;
}

.adj-width-95 {
  width: 95% !important;
}

.adj-width-96 {
  width: 96% !important;
}

.adj-width-97 {
  width: 97% !important;
}

.adj-width-98 {
  width: 98% !important;
}

.adj-width-99 {
  width: 99% !important;
}

.adj-width-100 {
  width: 100% !important;
}

@media screen and (min-width: 769px) {
  .md\:adj-width-1 {
    width: 1% !important;
  }

  .md\:adj-width-2 {
    width: 2% !important;
  }

  .md\:adj-width-3 {
    width: 3% !important;
  }

  .md\:adj-width-4 {
    width: 4% !important;
  }

  .md\:adj-width-5 {
    width: 5% !important;
  }

  .md\:adj-width-6 {
    width: 6% !important;
  }

  .md\:adj-width-7 {
    width: 7% !important;
  }

  .md\:adj-width-8 {
    width: 8% !important;
  }

  .md\:adj-width-9 {
    width: 9% !important;
  }

  .md\:adj-width-10 {
    width: 10% !important;
  }

  .md\:adj-width-11 {
    width: 11% !important;
  }

  .md\:adj-width-12 {
    width: 12% !important;
  }

  .md\:adj-width-13 {
    width: 13% !important;
  }

  .md\:adj-width-14 {
    width: 14% !important;
  }

  .md\:adj-width-15 {
    width: 15% !important;
  }

  .md\:adj-width-16 {
    width: 16% !important;
  }

  .md\:adj-width-17 {
    width: 17% !important;
  }

  .md\:adj-width-18 {
    width: 18% !important;
  }

  .md\:adj-width-19 {
    width: 19% !important;
  }

  .md\:adj-width-20 {
    width: 20% !important;
  }

  .md\:adj-width-21 {
    width: 21% !important;
  }

  .md\:adj-width-22 {
    width: 22% !important;
  }

  .md\:adj-width-23 {
    width: 23% !important;
  }

  .md\:adj-width-24 {
    width: 24% !important;
  }

  .md\:adj-width-25 {
    width: 25% !important;
  }

  .md\:adj-width-26 {
    width: 26% !important;
  }

  .md\:adj-width-27 {
    width: 27% !important;
  }

  .md\:adj-width-28 {
    width: 28% !important;
  }

  .md\:adj-width-29 {
    width: 29% !important;
  }

  .md\:adj-width-30 {
    width: 30% !important;
  }

  .md\:adj-width-31 {
    width: 31% !important;
  }

  .md\:adj-width-32 {
    width: 32% !important;
  }

  .md\:adj-width-33 {
    width: 33% !important;
  }

  .md\:adj-width-34 {
    width: 34% !important;
  }

  .md\:adj-width-35 {
    width: 35% !important;
  }

  .md\:adj-width-36 {
    width: 36% !important;
  }

  .md\:adj-width-37 {
    width: 37% !important;
  }

  .md\:adj-width-38 {
    width: 38% !important;
  }

  .md\:adj-width-39 {
    width: 39% !important;
  }

  .md\:adj-width-40 {
    width: 40% !important;
  }

  .md\:adj-width-41 {
    width: 41% !important;
  }

  .md\:adj-width-42 {
    width: 42% !important;
  }

  .md\:adj-width-43 {
    width: 43% !important;
  }

  .md\:adj-width-44 {
    width: 44% !important;
  }

  .md\:adj-width-45 {
    width: 45% !important;
  }

  .md\:adj-width-46 {
    width: 46% !important;
  }

  .md\:adj-width-47 {
    width: 47% !important;
  }

  .md\:adj-width-48 {
    width: 48% !important;
  }

  .md\:adj-width-49 {
    width: 49% !important;
  }

  .md\:adj-width-50 {
    width: 50% !important;
  }

  .md\:adj-width-51 {
    width: 51% !important;
  }

  .md\:adj-width-52 {
    width: 52% !important;
  }

  .md\:adj-width-53 {
    width: 53% !important;
  }

  .md\:adj-width-54 {
    width: 54% !important;
  }

  .md\:adj-width-55 {
    width: 55% !important;
  }

  .md\:adj-width-56 {
    width: 56% !important;
  }

  .md\:adj-width-57 {
    width: 57% !important;
  }

  .md\:adj-width-58 {
    width: 58% !important;
  }

  .md\:adj-width-59 {
    width: 59% !important;
  }

  .md\:adj-width-60 {
    width: 60% !important;
  }

  .md\:adj-width-61 {
    width: 61% !important;
  }

  .md\:adj-width-62 {
    width: 62% !important;
  }

  .md\:adj-width-63 {
    width: 63% !important;
  }

  .md\:adj-width-64 {
    width: 64% !important;
  }

  .md\:adj-width-65 {
    width: 65% !important;
  }

  .md\:adj-width-66 {
    width: 66% !important;
  }

  .md\:adj-width-67 {
    width: 67% !important;
  }

  .md\:adj-width-68 {
    width: 68% !important;
  }

  .md\:adj-width-69 {
    width: 69% !important;
  }

  .md\:adj-width-70 {
    width: 70% !important;
  }

  .md\:adj-width-71 {
    width: 71% !important;
  }

  .md\:adj-width-72 {
    width: 72% !important;
  }

  .md\:adj-width-73 {
    width: 73% !important;
  }

  .md\:adj-width-74 {
    width: 74% !important;
  }

  .md\:adj-width-75 {
    width: 75% !important;
  }

  .md\:adj-width-76 {
    width: 76% !important;
  }

  .md\:adj-width-77 {
    width: 77% !important;
  }

  .md\:adj-width-78 {
    width: 78% !important;
  }

  .md\:adj-width-79 {
    width: 79% !important;
  }

  .md\:adj-width-80 {
    width: 80% !important;
  }

  .md\:adj-width-81 {
    width: 81% !important;
  }

  .md\:adj-width-82 {
    width: 82% !important;
  }

  .md\:adj-width-83 {
    width: 83% !important;
  }

  .md\:adj-width-84 {
    width: 84% !important;
  }

  .md\:adj-width-85 {
    width: 85% !important;
  }

  .md\:adj-width-86 {
    width: 86% !important;
  }

  .md\:adj-width-87 {
    width: 87% !important;
  }

  .md\:adj-width-88 {
    width: 88% !important;
  }

  .md\:adj-width-89 {
    width: 89% !important;
  }

  .md\:adj-width-90 {
    width: 90% !important;
  }

  .md\:adj-width-91 {
    width: 91% !important;
  }

  .md\:adj-width-92 {
    width: 92% !important;
  }

  .md\:adj-width-93 {
    width: 93% !important;
  }

  .md\:adj-width-94 {
    width: 94% !important;
  }

  .md\:adj-width-95 {
    width: 95% !important;
  }

  .md\:adj-width-96 {
    width: 96% !important;
  }

  .md\:adj-width-97 {
    width: 97% !important;
  }

  .md\:adj-width-98 {
    width: 98% !important;
  }

  .md\:adj-width-99 {
    width: 99% !important;
  }

  .md\:adj-width-100 {
    width: 100% !important;
  }
}

/* ----------- .adj-margin ----------- */
.adj-mt-24 {
  margin-top: 24px !important;
}

@media screen and (min-width: 769px) {
  .md\:adj-mt-16 {
    margin-top: 16px !important;
  }
}

.adj-mt-48 {
  margin-top: 48px !important;
}

@media screen and (min-width: 769px) {
  .md\:adj-mt-48 {
    margin-top: 48px !important;
  }
}

.adj-mt-80 {
  margin-top: 80px !important;
}

@media screen and (min-width: 769px) {
  .md\:adj-mt-80 {
    margin-top: 80px !important;
  }
}

/* ----------- bottom ----------- */
.adj-mb-24 {
  margin-bottom: 24px !important;
}

@media screen and (min-width: 769px) {
  .md\:adj-mb-40 {
    margin-bottom: 48px !important;
  }
}

/* ----------------------------------------------------------------
   次に来る要素の上余白を0にする
   ---------------------------------------------------------------- */
/* stylelint-disable-next-line no-descending-specificity -- stylelintの誤検知 */
[class^="m-heading-"] + * {
  margin-top: 0;
}

/* stylelint-disable-next-line no-descending-specificity -- stylelintの誤検知 */
.m-list-step + * {
  margin-top: 0;
}
