@charset "UTF-8";
@import url("../fonts/basicfont/style.css");
:root {
  --text-color:#000;
  --key-color1:#e50012;
  --key-color2:#7291e8;
  --key-color3:#024fbf;
  --key-color4:#f9e1e5;
  --key-color5: #000;
  --color-marker-yellow:#f7f7aa;
  --color-marker-pink:#FEC6C5;
  --color-marker-blue:#c4f2e9;
  --color-bg-white: #fff;
  --color-bg-gray: #eee;
  --color-bg-pale-green: #e7ffd7;
  --color-border-gray: #ccc;
  --link-hover-decoration: none;
  --link-default-decoration:underline;
  --color-link:#000;
  --color-link-hover:#e50012;
  --focus-color:#f5f95d;
  --font-family-sansserif:"Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  --font-family-serif:"Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --font-family-monospace:Menlo, Monaco, Consolas, "Courier New", monospace;
  --base-font-family: var(--font-family-sansserif);
  --base-icon-font: 'basicfont';
  --base-font-size-pc:16;
  --base-font-size-sp:14;
  --base-form-font-size-sp:16;
  --base-line-height: 1.8;
  --base-radius: 1.25rem;
  --base-radius-sp: 0.71rem;
  --base-device-width-pc: 1200;
  --base-device-width-sp: 375;
  --nav-menu-sp:16vw;
  --nav-menu-pc:6.15vw;
  --header-height-sp:4.2857rem;
  --header-height-pc:6.25rem;
  --content-gap-pc:3.125rem;
  --content-gap-sp:1.25rem;
  --col-gap-pc:1.953125vw;
  --col-gap-sp:3.3333333333333335vw;
  --site-gap-pc:3vw;
  --site-gap-sp:4vw;
  --space-block-sp: svw(28);
  --flex-gap-pc: vw(42);
  --flex-gap-sp: svw(24);
  --hd-top-margin: 3.375rem;
}
@media (max-width: 767.98px) {
  :root {
    --hd-top-margin: 2.4rem;
  }
}

/* スマホ用にtheme.jsonのフォントサイズを上書き */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
      text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
  word-wrap: break-word;
}

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

/* Make images easier to work with */
img {
  vertical-align: bottom;
}

/* コンテンツ内のみ１００％指定を baseにて指定 */
:where(img, picture) {
  width: 100%;
  height: auto;
}

/*WP内には適用しない*/
:where(h1, h2, h3, h4, h5, h6, p):not(.entry-body *) {
  font-size: 100%;
  margin: 0;
}

picture {
  display: block;
}

:where(ul),
:where(ol) {
  margin-top: 0;
  margin-bottom: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

embed, iframe, object, video {
  max-width: 100%;
  vertical-align: middle;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

header ul, header ol, header menu, header summary, footer ul, footer ol, footer menu, footer summary {
  list-style: none;
  margin: 0;
  padding: 0;
}
header ul li, header ol li, footer ul li, footer ol li {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-color);
  line-height: var(--base-line-height);
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  background-color: #fff;
}

body:not(.loaded) {
  opacity: 0;
}

:where(a) {
  color: var(--color-link);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-text-decoration: var(--link-default-decoration);
          text-decoration: var(--link-default-decoration);
  text-decoration-style: solid;
  text-decoration-color: var(--color-link);
  text-decoration-thickness: clamp(1px, 0.05625em, 0.05625em);
}
@media (hover: hover) and (pointer: fine) {
  :where(a):hover {
    color: var(--color-link-hover);
    -webkit-text-decoration: var(--link-hover-decoration);
            text-decoration: var(--link-hover-decoration);
    text-decoration-color: var(--color-link-hover);
  }
}

html.PC :where(a[href*="tel:"]) {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

html {
  font-size: calc(var(--base-font-size-sp) / 10 * 1rem);
  font-size: clamp(10px, var(--base-font-size-sp) / var(--base-device-width-sp) * 100vw, 26px);
}

body {
  font-family: var(--base-font-family);
  font-style: normal;
}

html[class*=android-9] body,
html[class*=android-10] body {
  font-size: 26px;
}
@media (max-width: 720px) {
  html[class*=android-9] body,
  html[class*=android-10] body {
    font-size: 24px;
  }
}
@media (max-width: 620px) {
  html[class*=android-9] body,
  html[class*=android-10] body {
    font-size: 22px;
  }
}
@media (max-width: 520px) {
  html[class*=android-9] body,
  html[class*=android-10] body {
    font-size: 18px;
  }
}
@media (max-width: 460px) {
  html[class*=android-9] body,
  html[class*=android-10] body {
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  html[class*=android-9] body,
  html[class*=android-10] body {
    font-size: 14px;
  }
}

:where(a) {
  text-underline-offset: 0.3em;
}

.container-outliner {
  position: relative;
  margin-right: 6.25rem;
  margin-left: 6.25rem;
}
@media screen and (max-width: 767.98px) {
  .container-outliner {
    margin-right: 4.6666666667vw;
    margin-left: 4.6666666667vw;
  }
}

.header {
  position: relative;
  display: block;
}
.header__logo {
  position: absolute;
  left: 2.375rem;
  top: 3.3125rem;
  z-index: 99;
}
@media screen and (max-width: 767.98px) {
  .header__logo {
    width: 4vw;
    height: 4vw;
    top: 3.2vw;
    left: 4vw;
  }
}
.header .site-logo {
  width: 15.625rem;
  display: block;
}
@media screen and (max-width: 767.98px) {
  .header .site-logo {
    width: 42.6666666667vw;
    height: 9.0666666667vw;
  }
}

#main-content {
  position: relative;
  background: #fff;
  width: 100%;
}
#main-content:before, #main-content:after {
  content: " ";
  display: table;
}
#main-content:after {
  clear: both;
}
#main-content {
  clear: both;
}

.entry-body {
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer {
  margin-top: 1.25rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  position: relative;
  background-color: #efefef;
}
@media screen and (max-width: 767.98px) {
  .footer {
    margin-top: 2.6666666667vw;
    padding-top: 10.6666666667vw;
    padding-bottom: 16vw;
  }
}
.footer:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  margin-top: -1.2375rem;
  height: 1.25rem;
  background-image: url(../images/fig-wave-up-gray-pc@2x.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 767.98px) {
  .footer:before {
    background-image: url(../images/fig-wave-up-gray-sp@2x.png);
    height: 2.6666666667vw;
    margin-top: -2.6666666667vw;
  }
}
.footer-lo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .footer-lo {
    gap: 2.6666666667vw;
  }
}
.footer-logo {
  width: 15.625rem;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .footer-logo {
    width: 48vw;
  }
}
.footer .copyright {
  color: #999;
  text-align: center;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767.98px) {
  .footer .copyright {
    font-size: 3.2vw;
  }
}

/*WP管理外のブロック*/
/*WP管理外のブロック*/
/*WP管理外のブロック*/
.hd-style1 {
  position: relative;
  margin-bottom: 2.75rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style1 {
    margin-bottom: 6.9333333333vw;
  }
}
.hd-style1__text {
  display: table;
  margin: 0 auto;
  font-size: 2.625rem;
  line-height: 1.6;
  padding-bottom: 1.875rem;
  color: #000;
}
@media screen and (max-width: 767.98px) {
  .hd-style1__text {
    font-size: 6.9333333333vw;
    padding-bottom: 5.6vw;
  }
}
.hd-style1__text::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.875rem;
  height: 0.34375rem;
  background-image: url(../images/hd-fig01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}
@media screen and (max-width: 767.98px) {
  .hd-style1__text::after {
    width: 8vw;
    height: 1.4666666667vw;
  }
}
.hd-style1--white .hd-style1__text::after {
  background-image: url(../images/hd-fig01-white.png);
}
.hd .is-text-indent {
  text-indent: -0.35em;
  display: inline-block;
}
.hd-style2 {
  position: relative;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style2 {
    margin-top: 5.8666666667vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 768px), print {
  .hd-style2 {
    padding-left: 4.0625rem;
    padding-right: 4.0625rem;
  }
}
.hd-style2__text {
  color: var(--key-color1);
  text-align: center;
  display: table;
  margin: 0 auto;
  position: relative;
  font-size: 1.4375rem;
  line-height: 1.4347826087;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .hd-style2__text {
    font-size: 4.2666666667vw;
    line-height: 1.5;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px), print {
  .hd-style2__text {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
  .hd-style2__text::before, .hd-style2__text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 4.0625rem;
    height: 0.0625rem;
    background-color: var(--key-color1);
  }
  .hd-style2__text::before {
    left: 0;
    -webkit-transform: translateX(-4.0625rem);
        -ms-transform: translateX(-4.0625rem);
            transform: translateX(-4.0625rem);
  }
  .hd-style2__text::after {
    right: 0;
    -webkit-transform: translateX(4.0625rem);
        -ms-transform: translateX(4.0625rem);
            transform: translateX(4.0625rem);
  }
}
.hd-style3__text {
  position: relative;
  display: table;
  margin: 0 auto;
  padding-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style3__text {
    margin-bottom: 5.3333333333vw;
  }
}
.hd-style3__text span:nth-of-type(1) {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767.98px) {
  .hd-style3__text span:nth-of-type(1) {
    display: block;
    font-size: 4.8vw;
    margin-bottom: 0.5em;
  }
}
.hd-style3__text span:nth-of-type(2) {
  color: #024fbf;
  font-size: 5rem;
  line-height: 0.6;
  letter-spacing: 0;
  padding-left: 0.15em;
  padding-right: 0.15em;
}
@media screen and (max-width: 767.98px) {
  .hd-style3__text span:nth-of-type(2) {
    font-size: 12.8vw;
    padding-left: 0;
  }
}
.hd-style3__text span:nth-of-type(3) {
  font-size: 2.625rem;
  line-height: 1.1428571429;
  font-weight: 900;
}
@media screen and (max-width: 767.98px) {
  .hd-style3__text span:nth-of-type(3) {
    font-size: 8.5333333333vw;
  }
}
.hd-style3__text::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 105%;
  height: 0.8125rem;
  background-image: url(../images/hd-fig02.png);
  background-repeat: no-repeat;
  background-size: 100% 0.8125rem;
  background-position: top center;
}
@media screen and (max-width: 767.98px) {
  .hd-style3__text::after {
    width: 50.1333333333vw;
    height: 2.6666666667vw;
    background-size: contain;
    background-position: center;
    background-image: url(../images/hd-fig02-sp.png);
    margin-left: 1.3333333333vw;
  }
}
.hd-style4 {
  display: table;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style4 {
    margin-bottom: 10.6666666667vw;
  }
}
.hd-style4__pre {
  position: relative;
  display: inline-block;
  padding-inline: 2.25rem;
  font-size: 1.375rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style4__pre {
    padding-inline: 1.5em;
    font-size: 4.8vw;
  }
}
.hd-style4__pre::before, .hd-style4__pre::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 1.625rem;
  height: 0.125rem;
  background-color: #fff;
  content: "";
}
@media screen and (max-width: 767.98px) {
  .hd-style4__pre::before, .hd-style4__pre::after {
    width: 6.4vw;
    height: 0.5333333333vw;
  }
}
.hd-style4__pre::before {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(73deg);
      -ms-transform: translateY(-50%) rotate(73deg);
          transform: translateY(-50%) rotate(73deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.hd-style4__pre::after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-73deg);
      -ms-transform: translateY(-50%) rotate(-73deg);
          transform: translateY(-50%) rotate(-73deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.hd-style4__text {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.1428571429;
  letter-spacing: 0.06em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style4__text {
    font-size: 6.9333333333vw;
    margin-top: 0.5333333333vw;
  }
}
.hd-style5 {
  margin-left: -0.75em;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style5 {
    margin-bottom: 1.0666666667vw;
  }
}
.hd-style5__text {
  color: var(--key-color1);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767.98px) {
  .hd-style5__text {
    font-size: 4.8vw;
    line-height: 1.4;
  }
}
.hd-style5__text::before {
  display: inline-block;
  content: "【";
  padding-right: 0.2em;
}
.hd-style5__text::after {
  display: inline-block;
  content: "】";
  padding-left: 0.2em;
}
.hd-style6 {
  position: relative;
  padding: 0.75rem 0.9375rem;
  margin-bottom: 1.125rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style6 {
    margin-bottom: 3.7333333333vw;
    margin-top: 8vw;
  }
}
.hd-style6__text {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .hd-style6__text {
    font-size: 4.8vw;
  }
}
.hd-style6.is-margin {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767.98px) {
  .hd-style6.is-margin {
    margin-top: 5.3333333333vw;
  }
}

/*WP管理外のブロック*/
.bl-faq-accordion {
  border-bottom-style: dashed;
  border-bottom-color: #ccc;
  border-bottom-width: max(1px, 0.125rem);
}
.bl-faq-accordion[open=true] .bl-faq-accordion__summary:before {
  opacity: 1;
}
.bl-faq-accordion[open=true] .bl-faq-accordion__summary:after {
  opacity: 0;
}
.bl-faq-accordion__summary {
  padding: 1.875rem 3.125rem 1.875rem 0;
  list-style: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}
.bl-faq-accordion__summary::-webkit-details-marker {
  display: none; /* iPhone / Safari / Chrome系での▲を消す */
}
@media screen and (max-width: 767.98px) {
  .bl-faq-accordion__summary {
    padding: 3.7333333333vw 8vw 4.2666666667vw 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .bl-faq-accordion__summary:hover .bl-faq-accordion__heading {
    opacity: 0.7;
  }
  .bl-faq-accordion__summary:hover:after {
    opacity: 0.7;
  }
}
.bl-faq-accordion__summary:after, .bl-faq-accordion__summary:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.bl-faq-accordion__summary:before {
  opacity: 0;
  height: 0.1875rem;
  width: 1.125rem;
  right: 1.25rem;
  background-color: var(--key-color1);
}
@media screen and (max-width: 767.98px) {
  .bl-faq-accordion__summary:before {
    right: 0.2666666667vw;
    height: 0.5333333333vw;
    width: 4.2666666667vw;
  }
}
.bl-faq-accordion__summary:after {
  z-index: 1;
  color: var(--key-color1);
  font-family: "basicfont";
  content: "\ea21";
  right: 1.25rem;
  font-size: 1.25rem;
  height: 1em;
  width: 1em;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .bl-faq-accordion__summary:after {
    font-size: 4.8vw;
    right: 0;
  }
}
.bl-faq-accordion__heading {
  display: block;
  position: relative;
  color: var(--key-color1);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.625;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3.125rem 1.125rem 1fr;
  grid-template-columns: 3.125rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
}
@media screen and (max-width: 767.98px) {
  .bl-faq-accordion__heading {
    line-height: 1.6;
    -ms-grid-columns: 10.6666666667vw 2.6666666667vw 1fr;
    grid-template-columns: 10.6666666667vw 1fr;
    gap: 2.6666666667vw;
    font-size: 4.8vw;
    line-height: 1.3333333333;
  }
}
.bl-faq-accordion__heading-icon {
  width: 3.125rem;
  position: relative;
  color: #fff;
  z-index: 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .bl-faq-accordion__heading-icon {
    font-size: 4.8vw;
  }
}
.bl-faq-accordion__heading-icon::before {
  display: block;
  position: absolute;
  content: "";
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100%;
  background-color: var(--key-color1);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767.98px) {
  .bl-faq-accordion__heading-icon::before {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    margin-top: 0.5333333333vw;
  }
}
.bl-faq-accordion__content {
  position: relative;
  -webkit-transition: max-height 0.3s ease, opacity 0.2s ease, border-top-color 0.2s ease;
  transition: max-height 0.3s ease, opacity 0.2s ease, border-top-color 0.2s ease;
}
.bl-faq-accordion__content .is-style-list-kome ol, .bl-faq-accordion__content .is-style-list-kome ul {
  margin-top: 0.2em;
  margin-bottom: 0.1em;
}
.bl-faq-accordion__content .is-style-list-kome li {
  margin-bottom: 0.2em;
}
.bl-faq-accordion__content .is-style-list-kome li:last-of-type {
  margin-bottom: 0;
}
.bl-faq-accordion__content .is-style-list-kome li li {
  margin-bottom: 0.1em;
}
.bl-faq-accordion__content .is-style-list-kome li li:last-of-type {
  margin-bottom: 0;
}
.bl-faq-accordion__inner {
  position: relative;
  padding: 0 0 2.5rem 4.375rem;
}
@media screen and (max-width: 767.98px) {
  .bl-faq-accordion__inner {
    padding: 0 5.3333333333vw 8vw 13.3333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
}
.bl-faq-accordion__inner > *:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.bl-faq-accordion__inner > *:only-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.is-style-list-dot {
  margin: 0;
  -webkit-padding-start: 1.5em;
          padding-inline-start: 1.5em;
  list-style-position: outside;
}
@media screen and (max-width: 767.98px) {
  .is-style-list-dot {
    -webkit-padding-start: 3.7333333333vw;
            padding-inline-start: 3.7333333333vw;
  }
}

.is-style-list-kome {
  list-style: none;
  padding-left: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.is-style-list-kome > li {
  margin-left: 0;
  padding-left: 1.15em;
  position: relative;
  line-height: 1.7142857143;
  font-size: 0.875em;
}
.is-style-list-kome > li:before {
  position: absolute;
  content: "※";
  width: 1em;
  height: 1em;
  left: 0;
  top: 0;
  color: inherit;
  line-height: inherit;
}

/*WP管理外のブロック*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/*WP管理外のブロック*/
.tippy-box {
  background-color: var(--key-color1) !important;
  color: #fff !important;
  font-size: clamp(10px, 1vw, 1vw) !important;
  padding: clamp(10px, 1vw, 1vw) clamp(10px, 1vw, 1vw) !important;
}
@media screen and (max-width: 767.98px) {
  .tippy-box {
    font-size: clamp(10px, 3.2vw, 3.2vw) !important;
  }
}

.tippy-arrow {
  color: var(--key-color1) !important;
}

.tippy-content {
  position: relative;
  padding: 0 0 !important;
  z-index: 1;
}

.tooltip-trigger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .tooltip-trigger:hover {
    opacity: 0.8;
  }
}
.tooltip-trigger:after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  font-size: 1.36em;
  margin-left: 0.3333333333vw;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 1.5vw;
  height: 1.5vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2014%2014%22%3E%20%3Cg%20data-name%3D%22%E3%82%B3%E3%83%B3%E3%83%86%E3%83%B3%E3%83%84%22%3E%20%3Ccircle%20cx%3D%227%22%20cy%3D%227%22%20r%3D%227%22%20fill%3D%22%23e8b356%22%2F%3E%20%3Cpath%20d%3D%22M7.39%205.4c0-.52-.34-.85-.88-.85-.46%200-.82.24-1.15.58l-.84-.77c.54-.61%201.28-1.04%202.18-1.04%201.25%200%202.16.64%202.16%201.97%200%201.47-1.81%201.97-1.65%203.43H5.88c-.25-1.67%201.51-2.35%201.51-3.33Zm-1.8%205.1c0-.57.4-1%20.94-1s.95.43.95%201-.4%201-.95%201-.94-.44-.94-1%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 767.98px) {
  .tooltip-trigger:after {
    margin-left: 1.0666666667vw;
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}

/* Tippy本体 */
.tippy-box {
  background-color: #fff;
  color: #333;
  border-radius: 6px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  padding: 10px 12px;
  max-width: 260px;
}
.tippy-box .tooltip-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.tippy-box .tooltip-body {
  font-size: 13px;
  line-height: 1.6;
}

/* 矢印 */
.tippy-arrow {
  color: #fff;
}

.tooltip__title {
  font-weight: 700;
  margin-bottom: 0.25em;
  display: block;
}

.tooltip__body {
  font-weight: 400;
}

.tooltip__header {
  text-align: left;
}
.tooltip__content {
  text-align: left;
}

.breadcrumbs {
  background-color: #fff;
  -webkit-padding-after: 3vw;
          padding-block-end: 3vw;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
  font-size: 0.875em;
  font-size: clamp(10px, 0.875em, 0.875em);
  color: #727E7A;
}
@media screen and (max-width: 767.98px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs .pipe {
  color: #727E7A;
  padding-right: 0.8em;
  padding-left: 0.8em;
}
.breadcrumbs a {
  color: #727E7A;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
}

.scrollUp {
  cursor: pointer;
  position: fixed;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  border-radius: none;
  background-color: #000;
  border-radius: 100em;
  border: none;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  width: 3.125rem;
  height: 3.125rem;
  bottom: 3.125rem;
  right: 0.625rem;
  -webkit-transition: background-color 0.3 ease;
  transition: background-color 0.3 ease;
  -webkit-box-shadow: 0 0 0.05em rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.05em rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767.98px) {
  .scrollUp {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
.scrollUp:after {
  width: 0.625rem;
  height: 0.625rem;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .scrollUp:hover {
    background-color: #222;
  }
  .scrollUp:hover:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20data-name%3D%22arrow-up%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.51%2010.18%22%3E%20%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%20d%3D%22m14.75%209.52-7-8-7%208%22%2F%3E%3C%2Fsvg%3E");
  }
}
.scrollUp:after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20data-name%3D%22arrow-up%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.51%2010.18%22%3E%20%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%20d%3D%22m14.75%209.52-7-8-7%208%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.scrollUp.is-hidden {
  visibility: hidden;
  opacity: 0;
}
.scrollUp.is-changed {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s cubic-bezier(0.54, 0.33, 0.88, 0.87);
  transition: all 0.4s cubic-bezier(0.54, 0.33, 0.88, 0.87);
}
.scrollUp {
  /* JS　scrolltop-footer-to-top.jsを使用する場合 START*/
  /*表示状態 */
}

.pager {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  gap: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  .pager {
    margin-top: 2.5rem;
    gap: 0.5rem;
  }
}
.pager > * {
  text-align: center;
}
.pager-wrapper {
  margin: 0 auto;
}
.pager .page-numbers {
  line-height: 2.4;
  color: var(--text-color);
  font-size: 0.875rem;
}
@media screen and (max-width: 767.98px) {
  .pager .page-numbers {
    font-size: max(10px, 0.8125rem);
    line-height: 2.2;
  }
}
.pager .page-numbers.current {
  background-color: var(--key-color2);
  color: #fff;
  outline: 1px solid var(--key-color2) !important;
}
@media (hover: hover) and (pointer: fine) {
  .pager .page-numbers.current:hover {
    color: #fff;
  }
}
.pager .page-numbers.dots {
  line-height: 3;
}
@media (hover: hover) and (pointer: fine) {
  .pager .page-numbers:hover {
    color: var(--key-color2);
    text-decoration: none;
  }
}
.pager .page-numbers:not(.prev):not(.next):not(.dots) {
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 0.3125rem;
  aspect-ratio: 1/1;
  outline: 1px solid #c7c1b8;
}
@media screen and (max-width: 767.98px) {
  .pager .page-numbers:not(.prev):not(.next):not(.dots) {
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .pager .page-numbers:not(.prev):not(.next):not(.dots):hover {
    outline: 1px solid var(--key-color2) !important;
  }
}
.pager a {
  text-decoration: none;
  color: var(--text-color);
}
@media (hover: hover) and (pointer: fine) {
  .pager a:hover {
    color: var(--key-color2);
    text-decoration: none;
  }
}
.pager .page {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
}
.pager .prev,
.pager .next {
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.pager .prev.inactive,
.pager .next.inactive {
  display: none;
}
.pager .prev i,
.pager .next i {
  color: var(--key-color1);
}
.pager .prev {
  text-align: left;
  padding-right: 0.5em;
}
.pager .next {
  text-align: right;
  padding-left: 0.5em;
}

/*googlemap
----------------------------------------- */
.gmap-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}

.gmap-wrap-cubic {
  position: relative;
  padding-bottom: 100%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}

.gmap-wrap iframe,
.gmap-wrap object,
.gmap-wrap embed,
.gmap-wrap-cubic iframe,
.gmap-wrap-cubic object,
.gmap-wrap-cubic embed {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
}

.splide__arrows {
  position: absolute;
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2.8333333333vw;
}
.splide__arrow {
  background-color: #fff !important;
  opacity: 1 !important;
  width: 2.8333333333vw !important;
  height: 2.8333333333vw !important;
}
.splide__arrow svg {
  width: 2.8333333333vw !important;
  height: 2.8333333333vw !important;
}
.splide__arrow .cls-1 {
  fill: var(--key-color1);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .splide__arrow:hover .cls-1 {
    fill: #f19595;
  }
}
.splide__arrow--prev {
  left: 0 !important;
}
.splide__arrow--next {
  right: 0 !important;
}

.splide__pagination {
  bottom: 0.8333333333vw !important;
}
@media screen and (max-width: 767.98px) {
  .splide__pagination {
    bottom: 2.6666666667vw !important;
  }
}
.splide__pagination__page {
  background: #fff !important;
  border: 1px solid #fff !important;
  display: inline-block;
  height: 1.1666666667vw !important;
  width: 1.1666666667vw !important;
  margin: 0 0.3333333333vw !important;
  opacity: 1 !important;
  -webkit-box-shadow: 0 0 1.25vw rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.25vw rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767.98px) {
  .splide__pagination__page {
    height: 3.7333333333vw !important;
    width: 3.7333333333vw !important;
    margin: 0 2vw !important;
    -webkit-box-shadow: 0 0 3.4666666667vw rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 3.4666666667vw rgba(0, 0, 0, 0.4);
  }
}
@media (hover: hover) and (pointer: fine) {
  .splide__pagination__page:hover {
    opacity: 0.7;
  }
}
.splide__pagination__page.is-active {
  border: 1px solid var(--key-color1) !important;
  background: var(--key-color1) !important;
  -webkit-transform: scale(1) !important;
      -ms-transform: scale(1) !important;
          transform: scale(1) !important;
}

.splide__control {
  display: block;
  text-align: center;
  padding-bottom: 0.8333333333vw;
  margin-top: -0.8333333333vw;
}
@media screen and (max-width: 767.98px) {
  .splide__control {
    padding-bottom: 8vw;
    margin-top: -4vw;
  }
}
.splide__control button {
  cursor: pointer;
  border: none;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 100em;
  color: var(--key-color2) !important;
}
.splide__control button .ic:before {
  position: absolute;
  color: var(--key-color2);
  font-size: 1.5vw;
  left: 0.1666666667vw;
  top: 0.1666666667vw;
}
@media screen and (max-width: 767.98px) {
  .splide__control button .ic:before {
    font-size: 4.8vw;
    left: 0.5333333333vw;
    top: 1.0666666667vw;
  }
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline-block !important;
}

.splide__toggle__play,
.splide__toggle__pause {
  display: inline-block;
  position: relative;
  line-height: 1;
  font-size: 1vw;
  padding-top: 0.3333333333vw;
  padding-bottom: 0.5vw;
  padding-left: 2vw;
  padding-right: 0.6666666667vw;
  border: 0.0833333333vw solid var(--key-color2);
  border-radius: 100em;
}
@media screen and (max-width: 767.98px) {
  .splide__toggle__play,
  .splide__toggle__pause {
    font-size: 3.7333333333vw;
    padding-top: 1.0666666667vw;
    padding-bottom: 2.1333333333vw;
    padding-left: 6.4vw;
    padding-right: 2.1333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .splide__toggle__play:hover,
  .splide__toggle__pause:hover {
    color: var(--key-color2);
  }
}

.splide:not(.is-overflow) .splide__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.splide:not(.is-overflow) .splide__slide:last-child {
  margin-right: 0 !important;
}

/*WP管理外のブロック*/
.entry-footer {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  .entry-footer {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}
.entry-footer__buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
@media screen and (max-width: 767.98px) {
  .entry-footer__buttons {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px), print {
  .entry-footer .wp-block-group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.search-guide {
  font-size: 1.25rem;
}
@media screen and (max-width: 767.98px) {
  .search-guide {
    font-size: 1rem;
  }
}
.search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: max(1px, 0.0625rem) solid var(--color-border-gray);
}
@media screen and (max-width: 767.98px) {
  .search-list {
    margin-top: 1.25rem;
  }
}
.search-list__item {
  margin: 0;
  border-top: max(1px, 0.0625rem) solid var(--color-border-gray);
  padding: 1.125rem;
}
.search-list__item a {
  text-decoration: none;
}
.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  max-width: 32.5rem;
  margin: 1.875rem auto;
}
@media screen and (max-width: 767.98px) {
  .search-form {
    margin: 1.25rem auto;
  }
}
.search-form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 3.25rem;
  padding: 0 1.125rem;
  font-size: 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.375rem;
  background: #fff;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.search-form__input::-webkit-input-placeholder {
  color: #aaa;
}
.search-form__input::-moz-placeholder {
  color: #aaa;
}
.search-form__input:-ms-input-placeholder {
  color: #aaa;
}
.search-form__input::-ms-input-placeholder {
  color: #aaa;
}
.search-form__input::placeholder {
  color: #aaa;
}
.search-form__input:focus {
  outline: none;
  border-color: #999;
  -webkit-box-shadow: 0 0 0 0.1875rem rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 0 0.1875rem rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 767.98px) {
  .search-form__input {
    max-width: none;
    width: 100%;
  }
}
.search-form__button {
  height: 3.25rem;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  border: 0;
  border-radius: 0.375rem;
  background: #333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.search-form__button:hover {
  background: #111;
}

.btn {
  border-radius: 6.25rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  position: relative;
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    text-decoration: none;
    background-color: #fff;
    color: #000;
  }
  .btn:hover:before {
    color: #000;
  }
}
.btn:before {
  content: "";
  display: block;
  position: absolute;
  left: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  line-height: 1;
  font-family: "basicfont";
  content: "\e94b";
}
@media screen and (max-width: 767.98px) {
  .btn:before {
    width: 6.4vw;
    height: 6.4vw;
    font-size: 6.4vw;
    left: 5.3333333333vw;
  }
}

.btn-style1 {
  width: 100%;
  min-height: 4.375rem;
  padding: 0.1875rem 0.9375rem 0.1875rem 3.625rem;
  border-width: 0.125rem;
  border-style: solid;
  border-color: #000;
}
@media screen and (max-width: 767.98px) {
  .btn-style1 {
    min-height: 17.3333333333vw;
    border-width: 0.5333333333vw;
    padding: 0.8vw 4vw 0.8vw 12.8vw;
  }
}
.btn-style1__text {
  font-size: 1.375rem;
  line-height: 1.1818181818;
}
@media screen and (max-width: 767.98px) {
  .btn-style1__text {
    font-size: 4.8vw;
    line-height: 1.16;
  }
}

@media screen and (min-width: 768px), print {
  .PC .btn-style1__text {
    padding-bottom: 0.0625rem;
  }
}

@media screen and (max-width: 767.98px) {
  .iOS.mobile .btn-style1__text {
    padding-bottom: 0.2666666667vw;
  }
}

.is-align-right {
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .is-align-right {
    text-align: right;
  }
}
.is-align-left {
  text-align: left;
}
@media screen and (max-width: 767.98px) {
  .is-align-left {
    text-align: left;
  }
}
.is-align-center {
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .is-align-center {
    text-align: center;
  }
}
.is-align-pc-left-sp-center {
  text-align: left;
}
@media screen and (max-width: 767.98px) {
  .is-align-pc-left-sp-center {
    text-align: center;
  }
}
.is-align-pc-left-sp-right {
  text-align: left;
}
@media screen and (max-width: 767.98px) {
  .is-align-pc-left-sp-right {
    text-align: right;
  }
}
.is-align-pc-center-sp-left {
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .is-align-pc-center-sp-left {
    text-align: left;
  }
}
.is-align-pc-center-sp-right {
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .is-align-pc-center-sp-right {
    text-align: right;
  }
}
.is-align-pc-right-sp-left {
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .is-align-pc-right-sp-left {
    text-align: left;
  }
}
.is-align-pc-right-sp-center {
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .is-align-pc-right-sp-center {
    text-align: center;
  }
}

.is-img-30 {
  width: 30%;
}

.is-img-50 {
  width: 50%;
}

.is-img-60 {
  width: 60%;
}

.is-img-75 {
  width: 75%;
}

.is-img-100 {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .is-sp-img-100 {
    width: 100%;
  }
}

@media screen and (max-width: 767.98px) {
  .is-sp-img-75 {
    width: 75%;
  }
}

@media screen and (max-width: 767.98px) {
  .is-sp-img-50 {
    width: 50%;
  }
}

@media screen and (max-width: 767.98px) {
  .is-sp-img-30 {
    width: 30%;
  }
}

.is-marker-pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(8%, transparent), color-stop(50%, var(--color-marker-pink)));
  background: linear-gradient(to bottom, transparent 8%, var(--color-marker-pink) 50%);
}
.is-marker-yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, var(--color-marker-yellow)));
  background: linear-gradient(to bottom, transparent 50%, var(--color-marker-yellow) 50%);
}
.is-marker-blue {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, var(--color-marker-blue)));
  background: linear-gradient(to bottom, transparent 50%, var(--color-marker-blue) 50%);
}

.is-pc-block {
  display: block !important;
}

.is-sp-block {
  display: none !important;
}

@media screen and (max-width: 767.98px) {
  .is-pc-block {
    display: none !important;
  }
  .is-sp-block {
    display: block !important;
  }
}
.is-pc-inline-block {
  display: inline-block;
}

.is-sp-inline-block {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .is-pc-inline-block {
    display: none;
  }
  .is-sp-inline-block {
    display: inline-block;
  }
}
.is-br-pc,
.is-pc-br {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .is-br-pc,
  .is-pc-br {
    display: none;
  }
}

.is-br-sp,
.is-sp-br {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .is-br-sp,
  .is-sp-br {
    display: block;
  }
}

@media screen and (max-width: 767.98px) {
  .is-sp-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 768px), print {
  .is-pc-hidden {
    display: none !important;
  }
}

.is-no-gap {
  gap: 0 !important;
}

@media screen and (max-width: 767.98px) {
  .is-sp-no-gap {
    gap: 0 !important;
  }
}

@media screen and (min-width: 768px), print {
  .is-pc-no-gap {
    gap: 0 !important;
  }
}

.is-btn-equal-height .wp-block-button__link {
  min-height: 5.568vw;
}
@media screen and (max-width: 767.98px) {
  .is-btn-equal-height .wp-block-button__link {
    min-height: 3.4375rem;
  }
}

.is-btn-medium {
  min-width: 18.75rem;
}
@media screen and (max-width: 767.98px) {
  .is-btn-medium {
    min-width: 14.375rem;
  }
}

@media screen and (min-width: 768px), print {
  .is-btn-pc-liquid {
    min-width: auto;
    width: 100%;
  }
}

@media screen and (max-width: 767.98px) {
  .is-btn-sp-liquid {
    min-width: auto !important;
    width: 100%;
  }
}

.is-btn-liquid {
  min-width: auto;
  width: 100%;
}

.is-font-weight-normal {
  font-weight: normal;
}
.is-font-color-red {
  color: var(--key-color1);
}
.is-font-color-blue {
  color: var(--key-color3);
}
.is-font-color-purple {
  color: var(--key-color2);
}

@media screen and (max-width: 767.98px) {
  .is-layout-grid.is-sp-grid-reset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.7142857143rem;
  }
}
@media screen and (max-width: 767.98px) {
  .is-layout-grid.is-sp-grid-reset.is-nowrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
}
@media screen and (max-width: 767.98px) {
  .is-layout-grid.is-sp-grid-reset > * {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 767.98px) {
  .is-layout-flex.is-sp-flex-reset {
    gap: 1rem;
  }
  .is-layout-flex.is-sp-flex-reset.is-nowrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
}
@media screen and (max-width: 767.98px) {
  .is-layout-flex.is-sp-flex-reset > * {
    width: 100%;
    max-width: 100%;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  border-left: 0.0625rem solid var(--color-border-gray);
  border-top: 0.0625rem solid var(--color-border-gray);
}
table th, table td {
  border-right: 0.0625rem solid var(--color-border-gray);
  border-bottom: 0.0625rem solid var(--color-border-gray);
  background-color: #fff;
  padding: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767.98px) {
  table th, table td {
    font-size: 3.7333333333vw;
    line-height: 1.2857142857;
    padding: 2.6666666667vw 2.6666666667vw;
  }
}
table th {
  width: 30%;
  background-color: #eeeeee;
}
table.is-th-short th {
  width: 30%;
}
@media screen and (max-width: 767.98px) {
  table.is-th-short th {
    width: 26%;
  }
}

.hr-fig {
  margin: 0;
  padding: 0;
  border: none;
  height: 8.3125rem;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .hr-fig {
    height: 13.3333333333vw;
  }
}
.hr-fig:after {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../images/hr-fig.png);
  width: 15.625rem;
  height: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .hr-fig:after {
    width: 32.8vw;
    height: 3.2vw;
  }
}

/*
ホームページ専用CSS
*/
.mv__inner {
  position: relative;
  min-height: 72.0625rem;
  background-image: url(../images/mv-bg-pc@1.5x.jpg);
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  .mv__inner {
    background-image: url(../images/mv-bg-sp@2x.jpg);
    min-height: 149.6vw;
  }
}
@media screen and (min-width: 768px), print {
  .mv__canvas {
    position: absolute;
    left: 3.4375rem;
    top: 10.6875rem;
    width: 50.3125rem;
    height: 40.9375rem;
    background-image: url(../images/mv-canvas-pc@2x.png);
    background-size: cover;
  }
}
@media screen and (min-width: 768px), print {
  .mv__fig {
    position: absolute;
    top: 21.8125rem;
    right: 2.5rem;
    width: 24.75rem;
    height: 29.5625rem;
  }
}
@media screen and (max-width: 767.98px) {
  .mv__fig {
    display: none;
  }
}
.mv__lead {
  position: absolute;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  left: 6.875rem;
  top: 5.125rem;
}
@media screen and (max-width: 767.98px) {
  .mv__lead {
    left: 14.6666666667vw;
    top: 32.8vw;
    gap: 2.4vw;
  }
}
.mv__lead-item:nth-of-type(1) {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767.98px) {
  .mv__lead-item:nth-of-type(1) {
    font-size: 7.4666666667vw;
    letter-spacing: 0.02em;
  }
}
.mv__lead-item:nth-of-type(2), .mv__lead-item:nth-of-type(3) {
  font-size: 4.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .mv__lead-item:nth-of-type(2), .mv__lead-item:nth-of-type(3) {
    font-size: 12.2666666667vw;
    letter-spacing: 0.06em;
  }
}
.mv__text {
  position: absolute;
  right: auto;
  left: 7.1875rem;
  top: 21.875rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .mv__text {
    left: 14.4vw;
    top: 89.3333333333vw;
    font-size: 3.2vw;
    line-height: 2;
    padding-right: 12vw;
    text-align: justify;
    word-break: break-all;
    text-justify: inter-ideograph;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
.mv__cyu {
  font-size: 0.9375rem;
  line-height: 2.4;
  margin-top: 0.5rem;
  padding-left: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .mv__cyu {
    font-size: 2.9333333333vw;
    line-height: 1.6;
  }
}

.bg-figs {
  z-index: 0;
}
@media screen and (min-width: 768px), print {
  .bg-figs {
    position: relative;
  }
  .bg-figs:before, .bg-figs:after {
    display: block;
    position: absolute;
    top: 0;
    content: "";
    width: 19.1875rem;
    height: 100%;
    background-repeat: repeat-y;
    background-size: 100% auto;
    z-index: -1;
  }
  .bg-figs:before {
    background-image: url(../images/bg-figs-left-pc@1.5x.png);
    left: 0;
  }
  .bg-figs:after {
    background-image: url(../images/bg-figs-right-pc@1.5x.png);
    right: 0;
  }
}

.about {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px), print {
  .about {
    margin-top: -8.75rem;
  }
}
@media screen and (min-width: 768px), print {
  .about-lo {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 61%;
    grid-template-columns: 1fr 61%;
        grid-template-areas: "pic text" "pic method";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.about-lo__text {
  grid-area: text;
  min-width: 0;
  font-size: 1.125rem;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767.98px) {
  .about-lo__text {
    line-height: 1.8571428571;
    font-size: 3.7333333333vw;
  }
}
.about-lo__text p + p {
  margin-top: 1em;
}
.about-lo__pic {
  grid-area: pic;
  min-width: 0;
  padding-right: 3.125rem;
  padding-left: 2.125rem;
}
@media screen and (max-width: 767.98px) {
  .about-lo__pic {
    padding-right: 0;
    padding-left: 0;
    padding-top: 4.8vw;
  }
}
.about-lo__pic img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .about-lo__pic img {
    width: 54.9333333333vw;
    margin: 0 auto;
  }
}
.about-lo__method {
  grid-area: method;
  min-width: 0;
}
.about-method-list {
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 767.98px) {
  .about-method-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px), print {
  .about-method-list {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: minmax(0, 1fr) 1.375rem minmax(0, 1fr) 1.375rem minmax(0, 1fr) 1.375rem minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.375rem;
  }
}
.about-method-list__text {
  position: relative;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px), print {
  .about-method-list__text {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.about-method-list__text span {
  letter-spacing: 0.1em;
}
.about-method-list__text small {
  font-size: 0.85em;
  padding-left: 0.1em;
  padding-right: 0.1em;
}
.about-method-list li {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .about-method-list li {
    background-color: var(--key-color1);
    border-radius: 2.9333333333vw;
    min-block-size: 10.6666666667vw;
    padding: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px), print {
  .about-method-list li {
    height: 9.1875rem;
  }
  .about-method-list li:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 9.1875rem;
    height: 9.1875rem;
    background-color: var(--key-color1);
    border-radius: 100%;
    z-index: 0;
  }
  .about-method-list li:first-child > * {
    letter-spacing: -0.14em;
    text-indent: -0.3em;
  }
  .about-method-list li:first-child > * span {
    display: block;
    letter-spacing: 0em;
    font-size: 0.875em;
  }
  .about-method-list li:nth-child(2) > * {
    letter-spacing: -0.1em;
    text-indent: -0.3em;
  }
}
@media screen and (max-width: 767.98px) {
  .about-method-list li:first-child > * {
    letter-spacing: 0.1em;
  }
}
.about-method-list li:last-child:after {
  display: none;
}
.about-method-list li:after {
  display: block;
  position: absolute;
  content: "";
  right: 0;
  margin-right: -1.5rem;
  top: 4.3125rem;
  width: 1.375rem;
  font-size: 1.125rem;
  line-height: 1;
  font-family: "basicfont";
  content: "\ea24";
  color: var(--key-color1);
}
@media screen and (max-width: 767.98px) {
  .about-method-list li:after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    margin-right: 0;
    -webkit-transform: translate(-50%, 100%) rotate(90deg);
        -ms-transform: translate(-50%, 100%) rotate(90deg);
            transform: translate(-50%, 100%) rotate(90deg);
    line-height: 1.1;
    font-size: 4.5333333333vw;
  }
}

.nyushi {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767.98px) {
  .nyushi {
    padding-top: 13.3333333333vw;
    padding-bottom: 8.5333333333vw;
  }
}
.nyushi-var__hd01 {
  background-color: var(--key-color3);
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 1.375rem;
  border-radius: 1.3125rem;
  line-height: 2.54;
  position: relative;
  margin-bottom: 1.8125rem;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__hd01 {
    font-size: 4.8vw;
    margin-bottom: 5.8666666667vw;
    border-radius: 4vw;
  }
}
.nyushi-var__hd01:after {
  position: absolute;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: top center;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1rem;
  height: 1.03125rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22a%22%20data-name%3D%22arrow%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016.45%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.b%20%7B%20fill%3A%20%23024fbf%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpolygon%20class%3D%22b%22%20points%3D%228%2016.45%200%200%2016%200%208%2016.45%22%2F%3E%3C%2Fsvg%3E");
}
.nyushi-var__hd02 {
  color: var(--key-color3);
  text-align: center;
  line-height: 3.33;
  font-weight: 700;
  font-size: 1.75rem;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__hd02 {
    font-size: 5.8666666667vw;
    line-height: 1;
    padding-top: 5.3333333333vw;
    padding-bottom: 4.8vw;
  }
}
.nyushi-var__lo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45.3125rem 1.375rem 1fr;
  grid-template-columns: 45.3125rem 1fr;
  gap: 1.375rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__lo {
    display: block;
  }
}
.nyushi-var__lo-item {
  height: 100%;
}
.nyushi-var__lo-item.is-tosiake {
  position: relative;
}
.nyushi-var__lo-item.is-tosiake:before {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  height: 25rem;
  content: "";
  background-color: #d2e4f9;
  border-radius: 1.9375rem;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__lo-item.is-tosiake:before {
    display: none;
  }
}
.nyushi-var__lo-item.is-tosiake .nyushi-var__group {
  position: relative;
  z-index: 1;
}
.nyushi-var__list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
.nyushi-var__list-item {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.3125rem;
  padding: 0.875rem;
  text-align: center;
  font-weight: 400;
  min-height: 5rem;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__list-item {
    font-size: 5.8666666667vw;
    padding: 3.2vw;
    border-radius: 3.7333333333vw;
  }
}
.nyushi-var__list-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__list-tag {
    gap: 1.0666666667vw;
    font-size: 3.4666666667vw;
  }
}
.nyushi-var__list-tag span {
  padding: 0.1875rem 0.625rem;
  min-width: 4.0625rem;
}
.nyushi-var__list-tag span.is-pink {
  background-color: #f9e4e4;
}
.nyushi-var__list-tag span.is-gray {
  background-color: #e6e6e6;
}
.nyushi-var__list-text {
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__list-text {
    font-size: 5.3333333333vw;
  }
}
.nyushi-var__group-item {
  border-radius: 1.9375rem;
  background-color: #acbfef;
  padding: 0 1.1875rem 1.1875rem;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__group-item {
    border-radius: 5.3333333333vw;
    margin-bottom: 4.8vw;
  }
}
.nyushi-var__group-item.is-pale-blue {
  background-color: #d2e4f9;
}
.nyushi-var__group.is-col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.3125rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.3125rem;
}
@media screen and (max-width: 767.98px) {
  .nyushi-var__group.is-col2 {
    display: block;
  }
}

.type-idx {
  padding-bottom: 4.625rem;
}
@media screen and (max-width: 767.98px) {
  .type-idx {
    padding-bottom: 13.3333333333vw;
  }
}
.type-idx__fig-letter {
  position: relative;
}
.type-idx__fig-letter:before {
  content: "";
  display: block;
  position: absolute;
  width: 48.5rem;
  height: 8.3125rem;
  background-image: url(../images/type-idx-fig-letter.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  margin-left: 1.875rem;
  z-index: 0;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.98px) {
  .type-idx__fig-letter:before {
    display: none;
  }
}
.type-idx__inner {
  position: relative;
  background-color: var(--key-color1);
  border-radius: 1.9375rem;
  padding: 2.5rem 3.125rem;
}
@media screen and (max-width: 767.98px) {
  .type-idx__inner {
    border-radius: 5.3333333333vw;
    padding: 6.6666666667vw 4vw 0;
  }
}
.type-idx-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  list-style: none;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  gap: 2.0625rem;
}
@media screen and (max-width: 767.98px) {
  .type-idx-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.6666666667vw;
  }
}
.type-idx-list__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 4.125rem) / 3);
          flex: 0 0 calc((100% - 4.125rem) / 3);
  min-width: 0;
  margin-bottom: 1.5625rem;
}
.type-idx-list__item a {
  display: block;
  border-radius: 1.1875rem;
  background-color: #fff;
  height: 100%;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .type-idx-list__item a:hover {
    background-color: #c5e0f9;
  }
}
@media screen and (max-width: 767.98px) {
  .type-idx-list__item a {
    border-radius: 2.9333333333vw;
  }
}
.type-idx-card {
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .type-idx-card {
    height: auto;
  }
}
.type-idx-card__inner {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .type-idx-card__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 0 32vw;
    grid-template-columns: minmax(0, 1fr) 32vw;
    -ms-grid-rows:auto 0 auto 0 auto;
        grid-template-areas: "hd fig" "text fig" "list list";
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.6666666667vw;
  }
  .type-idx-card__inner > .about-lo__text {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
.type-idx-card__hd {
  height: 5.25rem;
}
@media screen and (max-width: 767.98px) {
  .type-idx-card__hd {
    grid-area: hd;
    position: relative;
    z-index: 1;
    -ms-grid-column-align: center;
        justify-self: center;
    height: auto;
  }
}
.type-idx-card__hd img {
  position: absolute;
  display: block;
  width: 10.4375rem;
  margin: 0 auto;
  top: -1.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .type-idx-card__hd img {
    width: 33.3333333333vw;
    height: auto;
    top: -12vw;
  }
}
.type-idx-card__text {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 4.375rem;
}
@media screen and (max-width: 767.98px) {
  .type-idx-card__text {
    grid-area: text;
    min-width: 0;
    text-align: center;
    -ms-grid-row-align: end;
        align-self: end;
    font-size: 4.8vw;
    min-height: auto;
    white-space: nowrap;
    padding-bottom: 0.5333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.type-idx-card__text em {
  color: var(--key-color1);
  font-style: normal;
}
.type-idx-card__fig {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  .type-idx-card__fig {
    height: 26.6666666667vw;
    grid-area: fig;
    -ms-grid-row-align: end;
        align-self: end;
    min-width: 0;
    text-align: center;
  }
}
.type-idx-card__fig img {
  display: block;
  width: 10.6875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .type-idx-card__fig img {
    display: inline-block;
    width: 26.4vw;
  }
}
.type-idx-card-list {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0.625rem 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}
@media screen and (max-width: 767.98px) {
  .type-idx-card-list {
    margin: 3.7333333333vw 0 0;
    grid-area: list;
    min-width: 0;
  }
}
@media screen and (min-width: 768px), print{
  .about-lo__text {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .about-lo__pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .about-lo__method {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .type-idx-card__text {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media screen and (max-width: 767.98px){
  .type-idx-card__hd {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .type-idx-card__inner > .type-idx-card__text {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .type-idx-card__fig {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .type-idx-card-list {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
.type-idx-card-list__item {
  width: 100%;
  background-color: #e6e6e6;
  border-radius: 1.3125rem;
  text-align: center;
  font-weight: 500;
  padding: 0.25rem 0.3125rem;
  font-size: 1.375rem;
  line-height: 1.2;
  min-height: 4.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .type-idx-card-list__item {
    font-size: 4.8vw;
    padding: 2.6666666667vw 2.6666666667vw;
    min-height: auto;
    border-radius: 2.9333333333vw;
  }
}

@media screen and (max-width: 767.98px) {
  #type-idx-a .type-idx-card__text {
    padding-left: 1em;
  }
  #type-idx-b .type-idx-card__text {
    padding-left: 1.5em;
  }
  #type-idx-c .type-idx-card__text {
    letter-spacing: -0.04em;
    padding-bottom: 0;
  }
  #type-idx-c .type-idx-card__fig {
    text-align: right;
  }
  #type-idx-c .type-idx-card__fig img {
    width: 26.1333333333vw;
  }
  #type-idx-h .type-idx-card__text {
    letter-spacing: -0.04em;
    padding-bottom: 0;
  }
  #type-idx-h .type-idx-card__fig {
    text-align: right;
  }
  #type-idx-h .type-idx-card__fig img {
    width: 21.3333333333vw;
  }
  #type-idx-g .type-idx-card__text {
    padding-left: 1em;
  }
  #type-idx-g .type-idx-card__fig img {
    width: 21.3333333333vw;
  }
}
.type {
  position: relative;
  background-image: url(../images/bg-fig-cross.png);
  background-repeat: repeat;
  background-size: 1.8125rem 1.875rem;
  margin-top: 1.25rem;
  padding-top: 5.625rem;
  padding-bottom: 7.5rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .type {
    margin-top: 2.6666666667vw;
    padding-top: 8vw;
    padding-bottom: 16vw;
    background-size: 7.4666666667vw 7.7333333333vw;
  }
}
.type:before {
  position: absolute;
  background-color: transparent;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 1.25rem;
  background-image: url(../images/fig-wave-down-white@2x.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .type:before {
    background-image: url(../images/fig-wave-down-white-sp@2x.png);
    height: 2.6666666667vw;
  }
}

.type-sec {
  background-color: #fff;
  border-radius: 1.9375rem;
  padding: 3.4375rem 3.25rem 3.125rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec {
    padding: 5.8666666667vw 4vw 4vw;
  }
}
.type-sec__hd img {
  width: 18.5625rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec__hd img {
    width: 50.1333333333vw;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px), print {
  .type-sec__lo {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20.625rem 1fr;
    grid-template-columns: 20.625rem 1fr;
  }
}
.type-sec-check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.75rem;
  background-image: repeating-linear-gradient(to right, #ccc 0, #ccc 0.375rem, transparent 0.375rem, transparent 0.75rem);
  background-position: left top;
  background-size: 100% 0.125rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.98px) {
  .type-sec-check-list {
    margin-top: 7.2vw;
    margin-bottom: 6.6666666667vw;
  }
}
.type-sec-check-list__item {
  position: relative;
  font-size: 1.375rem;
  line-height: 1.1818181818;
  padding: 1.5rem 0.9375rem 1.5rem 5rem;
  background-image: repeating-linear-gradient(to right, #ccc 0, #ccc 0.375rem, transparent 0.375rem, transparent 0.75rem);
  background-position: left bottom;
  background-size: 100% 0.125rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.98px) {
  .type-sec-check-list__item {
    padding: 5.3333333333vw 0vw 5.3333333333vw 13.6vw;
    font-size: 4.8vw;
  }
}
.type-sec-check-list__item:before {
  position: absolute;
  left: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 2.8125rem;
  height: 2.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .type-sec-check-list__item:before {
    width: 9.3333333333vw;
    height: 9.0666666667vw;
    left: 1.0666666667vw;
  }
}
.type-sec.is-type-red .type-sec-check-list__item:before {
  background-image: url(../images/type-sec-check-red.png);
}
.type-sec.is-type-red .type-sec-text__con em {
  color: var(--key-color1);
}
.type-sec.is-type-red .type-sec-about {
  border-color: var(--key-color1);
}
.type-sec.is-type-red .type-sec-about__hd .hd-style4__pre {
  color: var(--key-color1);
}
.type-sec.is-type-red .type-sec-about__hd .hd-style4__pre::before, .type-sec.is-type-red .type-sec-about__hd .hd-style4__pre::after {
  background-color: var(--key-color1);
}
.type-sec.is-type-red .hd-style6 {
  background-color: #f4c1de;
}
.type-sec.is-type-purple .type-sec-check-list__item:before {
  background-image: url(../images/type-sec-check-purple.png);
}
.type-sec.is-type-purple .type-sec-text__con em {
  color: var(--key-color2);
}
.type-sec.is-type-purple .type-sec-about {
  border-color: var(--key-color2);
}
.type-sec.is-type-purple .type-sec-about__hd .hd-style4__pre {
  color: var(--key-color2);
}
.type-sec.is-type-purple .type-sec-about__hd .hd-style4__pre::before, .type-sec.is-type-purple .type-sec-about__hd .hd-style4__pre::after {
  background-color: var(--key-color2);
}
.type-sec.is-type-purple .hd-style5__text {
  color: var(--key-color2);
}
.type-sec.is-type-purple .hd-style6 {
  background-color: #d2e4f9;
}
.type-sec-text__path {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767.98px) {
  .type-sec-text__path {
    font-size: 4.8vw;
  }
}
.type-sec-text__con {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.2380952381;
  letter-spacing: 0.06em;
  padding-top: 2.625rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec-text__con {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
  }
}
.type-sec-text__con:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  background-image: url(../images/type-sec-fig-arrow.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  width: 1.5rem;
  height: 1.875rem;
}
.type-sec-text__con em {
  font-style: normal;
}
.type-sec-about {
  position: relative;
  border-width: 0.125rem;
  border-style: solid;
  border-radius: 1.9375rem;
  margin-top: 5rem;
  padding: 3.375rem 3.125rem 3.125rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about {
    border-width: 0.5333333333vw;
    border-radius: 2.9333333333vw;
    margin-top: 16vw;
    padding: 9.8666666667vw 4vw 4vw;
  }
}
.type-sec-about__hd {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-bottom: 0.625rem;
  width: 100%;
  left: 50%;
  right: 0;
  top: 0;
  margin-top: -0.3em;
}
.type-sec-about__hd .hd-style4__pre {
  background: #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__hd .hd-style4__pre {
    padding-inline: 1.5em;
    font-size: 5.8666666667vw;
    line-height: 1.1818181818;
    margin-bottom: 0vw;
  }
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__hd .hd-style4__pre::after, .type-sec-about__hd .hd-style4__pre::before {
    width: 9.6vw;
    bottom: 0;
  }
}
.type-sec-about__hd .hd-style4__pre::before {
  -webkit-transform: translateY(100%) rotate(73deg);
      -ms-transform: translateY(100%) rotate(73deg);
          transform: translateY(100%) rotate(73deg);
}
.type-sec-about__hd .hd-style4__pre::after {
  -webkit-transform: translateY(100%) rotate(-73deg);
      -ms-transform: translateY(100%) rotate(-73deg);
          transform: translateY(100%) rotate(-73deg);
}
.type-sec-about__dot {
  display: table;
  text-align: center;
  margin: 0 auto;
  font-size: 1.3125rem;
  line-height: 1.2380952381;
  padding-bottom: 0.5625rem;
  background-image: repeating-linear-gradient(to right, #808080 0, #808080 0.375rem, transparent 0.375rem, transparent 0.75rem);
  background-position: left bottom;
  background-size: 100% 0.125rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__dot {
    font-size: 4.8vw;
    padding-bottom: 2.6666666667vw;
  }
}
.type-sec-about__lo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 11.0625rem 0 1fr;
  grid-template-columns: 11.0625rem 1fr;
  gap: 0;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__lo {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 5.3333333333vw;
  }
}
.type-sec-about__lo.is-lo01 {
  margin-top: 2.1875rem;
  width: 57.875rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__lo.is-lo01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 5.3333333333vw;
  }
  .type-sec-about__lo.is-lo01 > * {
    width: 100%;
  }
}
.type-sec-about__lo.is-lo01 .is-style-list-dot {
  font-size: 1.375rem;
  line-height: 1.1818181818;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.375rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__lo.is-lo01 .is-style-list-dot {
    margin-top: 4vw;
    margin-right: -0.5em;
    font-size: 4.8vw;
    line-height: 1.2222222222;
    gap: 2.6666666667vw;
  }
}
.type-sec-about__lo.is-lo01 .is-style-list-dot .is-style-list-kome {
  margin-top: 0.625rem;
  font-size: 1rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__lo.is-lo01 .is-style-list-dot .is-style-list-kome > li {
    line-height: 1.3;
  }
}
.type-sec-about__lo.is-lo02 {
  -ms-grid-columns: 1fr 1.25rem 21.25rem;
  grid-template-columns: 1fr 21.25rem;
  gap: 1.25rem;
  margin-top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__lo.is-lo02 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4.2666666667vw;
  }
  .type-sec-about__lo.is-lo02 > * {
    width: 100%;
  }
}
.type-sec-about__lo.is-lo02 .btn {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__lo.is-lo02 .btn {
    margin-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__fig-guide img {
    display: block;
    margin: 0 auto;
    width: 32vw;
  }
}
.type-sec-about__table {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__table {
    margin-bottom: 3.2vw;
  }
}
.type-sec-about__table th {
  text-align: left;
  font-weight: normal;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__table th {
    width: 40%;
  }
}
@media screen and (max-width: 767.98px) {
  .type-sec-about__table .is-style-list-kome {
    margin-top: 1.0666666667vw;
  }
  .type-sec-about__table .is-style-list-kome li {
    line-height: 1.2;
  }
}
.type-sec-about-senbatsu__hd {
  font-size: 1.375rem;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about-senbatsu__hd {
    font-size: 4.8vw;
    line-height: 1.4;
    margin-bottom: 1.6vw;
  }
}
.type-sec-about-senbatsu .is-style-list-kome {
  margin-top: 0.625rem;
}
.type-sec-about-senbatsu .is-style-list-kome > li {
  line-height: 1.3;
}
@media screen and (max-width: 767.98px) {
  .type-sec-about-senbatsu .is-style-list-kome {
    margin-top: 0;
  }
}

.is-style-list-dot.is-margin-top {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  .is-style-list-dot.is-margin-top {
    margin-top: 0;
  }
}

#type-b .type-sec-text__con {
  letter-spacing: 0;
}
#type-b .type-sec-about__lo {
  margin-bottom: 0;
}

#type-c .type-sec-text__con {
  letter-spacing: 0;
}

#type-d .type-sec-text__con {
  letter-spacing: 0;
}

@media screen and (max-width: 767.98px) {
  #type-f .type-sec-text__con {
    letter-spacing: -0.04em;
    font-size: 5.6vw;
  }
}

#type-h .type-sec-text__con {
  letter-spacing: -0.04em;
}
#type-h .type-sec-text__con em {
  letter-spacing: -0.06em;
  padding-right: 0.2em;
}
#type-h .hd-style4__pre {
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767.98px) {
  #type-h .type-sec-about {
    padding-top: 13.3333333333vw;
  }
}

.osusume {
  padding-top: 5.625rem;
  position: relative;
  background-color: var(--key-color4);
  margin-top: -1.25rem;
}
@media screen and (max-width: 767.98px) {
  .osusume {
    margin-top: -2.6666666667vw;
    padding-top: 8vw;
  }
}
.osusume:before {
  position: absolute;
  background-color: transparent;
  content: "";
  left: 0;
  right: 0;
  top: -1.2375rem;
  height: 1.25rem;
  background-image: url(../images/fig-wave-up-pink-pc@2x.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 767.98px) {
  .osusume:before {
    background-image: url(../images/fig-wave-up-pink-sp@2x.png);
    height: 2.6666666667vw;
    top: -2.6666666667vw;
  }
}
.osusume .hd-style1__text {
  color: #333;
}
.osusume__inner {
  z-index: 0;
}
@media screen and (min-width: 768px), print {
  .osusume__inner {
    position: relative;
  }
  .osusume__inner:before, .osusume__inner:after {
    display: block;
    position: absolute;
    top: 0;
    content: "";
    width: 17.75rem;
    height: 100%;
    background-repeat: repeat-y;
    background-size: 100% auto;
    z-index: -1;
  }
  .osusume__inner:before {
    background-image: url(../images/bg-figs-pink-left.png);
    left: 0;
    z-index: -1;
  }
  .osusume__inner:after {
    background-image: url(../images/bg-figs-pink-right.png);
    right: 0;
    z-index: -1;
  }
}
.osusume__fig-letter {
  width: 66.5rem;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .osusume__fig-letter {
    width: 98%;
    margin-top: 12vw;
  }
}
.osusume-hd-fig {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.8em;
  padding-right: 0.8em;
}
@media screen and (max-width: 767.98px) {
  .osusume-hd-fig {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.osusume-hd-fig:after, .osusume-hd-fig:before {
  display: block;
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  top: 1.0625rem;
}
.osusume-hd-fig:before {
  width: 3.9375rem;
  height: 3rem;
  left: 0;
  margin-left: -3.9375rem;
  background-image: url(../images/hd-fig03-left.png);
}
@media screen and (max-width: 767.98px) {
  .osusume-hd-fig:before {
    width: 9.8666666667vw;
    height: 8.5333333333vw;
    margin-left: -9.8666666667vw;
  }
}
.osusume-hd-fig:after {
  width: 4.125rem;
  height: 2.9375rem;
  background-image: url(../images/hd-fig03-right.png);
  right: 0;
  margin-right: -4.125rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-hd-fig:after {
    width: 9.0666666667vw;
    height: 8.2666666667vw;
    margin-right: -9.0666666667vw;
  }
}
.osusume-pattern {
  position: relative;
  z-index: 1;
  margin-bottom: 4.75rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern {
    margin-bottom: 5.3333333333vw;
  }
}
.osusume-pattern ul {
  padding-left: 0;
  list-style: none;
}
.osusume-pattern__header {
  position: relative;
  background-color: #fff;
  width: 52.375rem;
  border-radius: 1.25rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 14.0625rem 1fr;
  grid-template-columns: 14.0625rem 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
  z-index: 3;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__header {
    -ms-grid-columns: 26.6666666667vw 1fr;
    grid-template-columns: 26.6666666667vw 1fr;
    width: auto;
    padding: 4vw 4vw 4vw 4vw;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.osusume-pattern__header-pic {
  position: relative;
  height: 100%;
}
.osusume-pattern__header-pic img {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__header-pic img {
    margin-right: 2.6666666667vw;
  }
}
.osusume-pattern__header-text {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.3571428571;
  padding-top: 2.625rem;
  padding-bottom: 2.625rem;
}
.osusume-pattern__header-text em {
  font-style: normal;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__header-text {
    font-size: 4.8vw;
    line-height: 1.3333333333;
    letter-spacing: 0.06em;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.osusume-pattern__subtext {
  text-align: center;
  font-size: 1.375rem;
  line-height: 2.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__subtext {
    font-size: 4.8vw;
    line-height: 3;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.osusume-pattern__subtitle {
  display: table;
  margin: 0 auto;
  position: relative;
  background-color: #d2e4f9;
  text-align: center;
  border-radius: 1.3125rem;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 1rem;
  min-width: 22.0625rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__subtitle {
    display: block;
    padding: 1.8666666667vw;
    font-size: 4.8vw;
    line-height: 1.4;
    border-radius: 3.2vw;
    margin-bottom: 5.3333333333vw;
  }
}
.osusume-pattern__subtitle.is-spike-down::after, .osusume-pattern__subtitle.is-spike-down::before, .osusume-pattern__subtitle.is-spike-up::after, .osusume-pattern__subtitle.is-spike-up::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-inline: 0.46875rem solid transparent;
  border-top: 0.875rem solid #d2e4f9;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__subtitle.is-spike-down::after, .osusume-pattern__subtitle.is-spike-down::before, .osusume-pattern__subtitle.is-spike-up::after, .osusume-pattern__subtitle.is-spike-up::before {
    border-inline: 1.8666666667vw solid transparent;
    border-top: 3.7333333333vw solid #d2e4f9;
    bottom: 0;
    margin-bottom: -3.7333333333vw;
  }
}
@media screen and (min-width: 768px), print {
  .osusume-pattern__subtitle.is-spike-down::after, .osusume-pattern__subtitle.is-spike-down::before, .osusume-pattern__subtitle.is-spike-up::after, .osusume-pattern__subtitle.is-spike-up::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    border-inline: 0.46875rem solid transparent;
    border-top: 0.875rem solid #d2e4f9;
  }
  .osusume-pattern__subtitle.is-spike-down::before, .osusume-pattern__subtitle.is-spike-up::before {
    margin-left: -4.375rem;
  }
  .osusume-pattern__subtitle.is-spike-down {
    margin-bottom: 1.875rem;
  }
  .osusume-pattern__subtitle.is-spike-down::after, .osusume-pattern__subtitle.is-spike-down::before {
    bottom: -0.25rem;
    margin-bottom: -0.5625rem;
  }
  .osusume-pattern__subtitle.is-spike-down::after {
    -webkit-transform: translateX(3.90625rem);
        -ms-transform: translateX(3.90625rem);
            transform: translateX(3.90625rem);
  }
  .osusume-pattern__subtitle.is-spike-up {
    margin-top: 1.875rem;
  }
  .osusume-pattern__subtitle.is-spike-up::after, .osusume-pattern__subtitle.is-spike-up::before {
    top: -0.4375rem;
    margin-top: -0.40625rem;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .osusume-pattern__subtitle.is-spike-up::after {
    -webkit-transform: translateX(3.90625rem) rotate(180deg);
        -ms-transform: translateX(3.90625rem) rotate(180deg);
            transform: translateX(3.90625rem) rotate(180deg);
  }
}
.osusume-pattern__content {
  position: relative;
  z-index: 1;
  background-color: #fff;
  width: 100%;
  border-radius: 1.9375rem;
  margin-top: -5rem;
  padding-top: 6.875rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__content {
    padding: 0 4vw 5.3333333333vw 5.3333333333vw;
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.osusume-pattern__card {
  margin-left: auto;
  margin-right: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24.1875rem 3.75rem 24.1875rem;
  grid-template-columns: 24.1875rem 24.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9.0666666667vw;
  }
}
.osusume-pattern__card-item {
  position: relative;
  background-color: #000;
  border-radius: 1.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: 0.125rem 0.4375rem 0.5rem rgba(0, 0, 0, 0.5);
          box-shadow: 0.125rem 0.4375rem 0.5rem rgba(0, 0, 0, 0.5);
  padding: 1.125rem 1.25rem 1.6875rem;
}
.osusume-pattern__card-item:after {
  position: absolute;
  display: block;
  content: "";
  font-family: "basicfont";
  content: "\e93e";
  color: #000;
  font-weight: bold;
  line-height: 1;
  font-size: 1.875rem;
}
.osusume-pattern__card-item:last-of-type:after {
  display: none;
}
@media screen and (min-width: 768px), print {
  .osusume-pattern__card-item:after {
    right: -2.8125rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #000;
  }
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__card-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 10.6666666667vw 4vw 1fr;
    grid-template-columns: 10.6666666667vw 1fr;
    gap: 4vw;
    padding: 3.4666666667vw 2.6666666667vw 3.4666666667vw 4.5333333333vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .osusume-pattern__card-item:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -8.5333333333vw;
    font-size: 8vw;
  }
}
.osusume-pattern__card-item .num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #a9c7ff;
  color: #000;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__card-item .num {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    font-size: 4.8vw;
  }
}
.osusume-pattern__card-item p {
  font-size: 1.75rem;
  line-height: 1.3571428571;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__card-item p {
    text-align: left;
    font-size: 4.8vw;
    line-height: 1.1111111111;
  }
}
.osusume-pattern__card.is-col2 {
  -ms-grid-columns: (24.1875rem)[2];
  grid-template-columns: repeat(2, 24.1875rem);
}
.osusume-pattern__card.is-col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.625rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__card.is-col3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.osusume-pattern__card.is-col3 .osusume-pattern__card-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18.125rem;
          flex: 0 0 18.125rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern__card.is-col3 .osusume-pattern__card-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
.osusume-pattern__card.is-col3 .osusume-pattern__card-item:after {
  right: -2.28125rem;
}
@media screen and (min-width: 768px), print {
  .osusume-pattern__card.is-col3 .osusume-pattern__card-item:nth-of-type(3):after, .osusume-pattern__card.is-col3 .osusume-pattern__card-item:nth-of-type(6):after {
    display: none;
  }
}
.osusume-pattern.is-pattern01 .osusume-pattern__header img {
  width: 10.875rem;
  height: 11.3125rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern.is-pattern01 .osusume-pattern__header img {
    width: 23.4666666667vw;
    height: auto;
  }
}
.osusume-pattern.is-pattern02 .osusume-pattern__header img {
  width: 10.875rem;
  height: 11.3125rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern.is-pattern02 .osusume-pattern__header img {
    width: 22.4vw;
    height: auto;
  }
}
.osusume-pattern.is-pattern03 .osusume-pattern__header img {
  width: 8.8125rem;
  height: 10.8125rem;
}
@media screen and (max-width: 767.98px) {
  .osusume-pattern.is-pattern03 .osusume-pattern__header img {
    width: 17.8666666667vw;
    height: auto;
    display: block;
    left: 1em;
  }
}

.qa {
  margin-top: 1.25rem;
  padding-top: 5.625rem;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .qa {
    margin-top: 2.6666666667vw;
    padding-top: 8vw;
    padding-bottom: 13.3333333333vw;
  }
}
.qa:before {
  position: absolute;
  background-color: transparent;
  content: "";
  left: 0;
  right: 0;
  top: -2.4875rem;
  height: 1.25rem;
  background-image: url(../images/fig-wave-up-white-pc@2x.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 767.98px) {
  .qa:before {
    background-image: url(../images/fig-wave-up-white-sp@2x.png);
    height: 2.6666666667vw;
    top: -5.3333333333vw;
  }
}
.qa .bl-faq-accordion:first-of-type {
  border-top-style: dashed;
  border-top-color: #ccc;
  border-top-width: max(1px, 0.125rem);
}

.banner-list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  width: 51.25rem;
  margin: 5.25rem auto 0;
}
@media screen and (max-width: 767.98px) {
  .banner-list {
    gap: 4vw;
    width: 100%;
    margin: 10.6666666667vw auto 0;
  }
}
.banner-list a {
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.banner-list a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.banner-list p {
  text-align: center;
  color: #fff;
  font-weight: 500;
  padding: 0.875rem;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  background-color: #1faedb;
}
@media screen and (max-width: 767.98px) {
  .banner-list p {
    font-size: 3.7333333333vw;
    padding: 2.1333333333vw;
  }
}