@charset "UTF-8";
/* base */
* {
  box-sizing: border-box;
}

html {
  color: #47372c;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

::selection {
  color: #47372c;
  background: #f6ff00;
}

html,
body {
  height: 100%;
}

a {
  color: #88addb;
  transition: 0.3s opacity ease;
}
a[href]:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  flex-shrink: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}

b,
strong {
  font-weight: bold;
}

.pc_only {
  display: block;
}
@media (max-width: 991px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 991px) {
  .sp_only {
    display: block;
  }
}

body {
  animation: fadeIn 1s ease 0s 1 normal;
  overflow-x: hidden;
}
body:has(.hokeiko-Nav.is-open) {
  overflow: clip;
  overscroll-behavior: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.show_pc {
  display: block;
}
@media (max-width: 1000px) {
  .show_pc {
    display: none;
  }
}

.show_tab {
  display: none;
}
@media (max-width: 750px) {
  .show_tab {
    display: block;
  }
}

.show_sp {
  display: none;
}
@media (max-width: 750px) {
  .show_sp {
    display: block;
  }
}

/* ===========================
  スクロールフェード(.anime)
=========================== */
.hokeiko .anime {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hokeiko .anime.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
  ヘッダー
=========================== */
.hokeiko-Logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hokeiko-Logo__main {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
  background: #fff;
  border-bottom-right-radius: 1.875rem;
  padding: min(calc(23/1426*100vw),1.4375rem) 0;
  width: min(calc(238/1426*100vw),14.875rem);
  text-decoration: none;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-height: 950px) and (min-width: 62.5625rem) {
  .hokeiko-Logo__main {
    padding: 0.75rem 0;
    width: 11.5625rem;
  }
}
@media (max-width: 1000px) {
  .hokeiko-Logo__main {
    padding: 0.75rem 0;
    width: 11.5625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Logo__main {
    padding: 0.75rem 0;
    width: 8.75rem;
  }
}
.hokeiko-Logo__main img {
  width: min(calc(141/1426*100vw),8.8125rem);
}
@media (max-height: 950px) and (min-width: 62.5625rem) {
  .hokeiko-Logo__main img {
    width: 6.875rem;
  }
}
@media (max-width: 1000px) {
  .hokeiko-Logo__main img {
    width: 6.875rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Logo__main img {
    width: 4.75rem;
  }
}
.hokeiko-Logo__main span {
  display: block;
  font-size: clamp(0.625rem, 0.9116409537vw, 0.8125rem);
  font-weight: 500;
  color: #4d3528;
  line-height: 1.6;
  text-align: center;
}
@media (max-height: 950px) and (min-width: 62.5625rem) {
  .hokeiko-Logo__main span {
    font-size: 0.6875rem;
  }
}
@media (max-width: 1000px) {
  .hokeiko-Logo__main span {
    font-size: 0.6875rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Logo__main span {
    font-size: 0.625rem;
  }
}

.hokeiko-Fixed {
  position: fixed;
  bottom: 2.5rem;
  right: 2.8125rem;
  z-index: 30;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.125rem;
}
@media (max-width: 1000px) {
  .hokeiko-Fixed {
    gap: 0.875rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Fixed {
    bottom: auto;
    top: 0.875rem;
    right: 0.875rem;
    flex-direction: row;
    gap: 0.625rem;
  }
}
.hokeiko-Fixed__mypage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 50%;
  background: #fff;
  border: 0.375rem solid #f0bd57;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  color: #f0bd57;
  font-weight: 900;
  font-size: 0.9375rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
@media (max-width: 1000px) {
  .hokeiko-Fixed__mypage {
    width: 5.875rem;
    height: 5.875rem;
    font-size: 0.75rem;
    border-width: 0.25rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Fixed__mypage {
    width: 4.375rem;
    height: 4.375rem;
    font-size: 0.875rem;
    border-width: 0.1875rem;
  }
}
.hokeiko-Fixed__menu {
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: #eb6e56;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
}
@media (max-width: 1000px) {
  .hokeiko-Fixed__menu {
    gap: 0.375rem;
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Fixed__menu {
    gap: 0.3125rem;
    width: 5.25rem;
    height: 5.25rem;
  }
}
.hokeiko-Fixed__menu-line {
  display: block;
  width: 2.6875rem;
  height: 0.25rem;
  background: #fff;
  border-radius: 0.3125rem;
  transition: 0.3s ease;
}
@media (max-width: 1000px) {
  .hokeiko-Fixed__menu-line {
    height: 0.1875rem;
    width: 2.3125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Fixed__menu-line {
    height: 0.125rem;
    width: 1.75rem;
  }
}
.hokeiko-Fixed__menu-text {
  color: #fff;
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}
@media (max-width: 1000px) {
  .hokeiko-Fixed__menu-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Fixed__menu-text {
    font-size: 0.75rem;
    margin-top: 0.375rem;
  }
}
.hokeiko-Fixed__menu.is-open .hokeiko-Fixed__menu-line:nth-child(1) {
  transform: translateY(0.75rem) rotate(45deg);
}
@media (max-width: 1000px) {
  .hokeiko-Fixed__menu.is-open .hokeiko-Fixed__menu-line:nth-child(1) {
    transform: translateY(0.5625rem) rotate(45deg);
  }
}
@media (max-width: 750px) {
  .hokeiko-Fixed__menu.is-open .hokeiko-Fixed__menu-line:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
  }
}
.hokeiko-Fixed__menu.is-open .hokeiko-Fixed__menu-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.hokeiko-Fixed__menu.is-open .hokeiko-Fixed__menu-line:nth-child(3) {
  transform: translateY(-0.75rem) rotate(-45deg);
}
@media (max-width: 1000px) {
  .hokeiko-Fixed__menu.is-open .hokeiko-Fixed__menu-line:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
  }
}
@media (max-width: 750px) {
  .hokeiko-Fixed__menu.is-open .hokeiko-Fixed__menu-line:nth-child(3) {
    transform: translateY(-0.375rem) rotate(-45deg);
  }
}

.hokeiko-Nav {
  position: fixed;
  inset: 0;
  z-index: 25;
  background-color: #fff;
  clip-path: circle(0% at 50% 50%);
  visibility: hidden;
  transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1), visibility 0s 0.7s;
  height: 100dvh;
  padding-block: 2.25rem;
}
@media (max-width: 1000px) {
  .hokeiko-Nav {
    padding-block: 1.5625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Nav {
    background-size: cover;
    background-color: #f0bd57;
    padding-block-start: 13.125rem;
    clip-path: circle(0% at 88% 5%);
  }
}
.hokeiko-Nav.is-open {
  clip-path: circle(150% at 50% 50%);
  visibility: visible;
  transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1), visibility 0s;
}
@media (max-width: 750px) {
  .hokeiko-Nav.is-open {
    clip-path: circle(150% at 88% 5%);
  }
}
.hokeiko-Nav .hokeiko-Logo__main {
  filter: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hokeiko-Nav__inner {
  background: url(/assets/images/hokeiko/nav-bg.svg) no-repeat center/auto 100%;
  height: 100%;
  padding-block: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  mask-image: url(/assets/images/hokeiko/nav-bg.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (orientation: portrait) {
  .hokeiko-Nav__inner {
    mask-size: cover;
  }
}
@media screen and (max-height: 48.125rem) {
  .hokeiko-Nav__inner {
    align-items: flex-start;
    padding-block-start: 5rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Nav__inner {
    padding-block-start: 0 !important;
    padding-block-end: 0.625rem;
    align-items: flex-start;
    mask: none;
  }
}
.hokeiko-Nav__details {
  text-align: center;
}
.hokeiko-Nav__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.125rem;
  display: grid;
  row-gap: 2.5rem;
}
@media (max-width: 1000px) {
  .hokeiko-Nav__list {
    row-gap: 1.75rem;
  }
}
.hokeiko-Nav__list a {
  display: block;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 1000px) {
  .hokeiko-Nav__list a {
    font-size: 1.125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Nav__list a {
    font-size: 1.25rem;
  }
}
@media (hover) {
  .hokeiko-Nav__list a:hover {
    color: #4d3528;
  }
}
.hokeiko-Nav__sns {
  display: flex;
  justify-content: center;
  gap: 3.125rem;
  list-style: none;
  padding: 0;
  margin: 0 0 3.125rem;
}
@media (max-width: 1000px) {
  .hokeiko-Nav__sns {
    gap: 2.1875rem;
  }
}
.hokeiko-Nav__sns a {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .hokeiko-Nav__sns a {
    width: 2.375rem;
    height: 2.375rem;
  }
}
@media (hover) {
  .hokeiko-Nav__sns a:hover img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(44%) saturate(441%) hue-rotate(338deg) brightness(99%) contrast(93%);
  }
}
.hokeiko-Nav__sns a img {
  transition: filter 0.3s ease;
}

/* ===========================
  共通
=========================== */
header :where(h1, h2, h3, h4),
footer :where(h1, h2, h3, h4),
.hokeiko :where(h1, h2, h3, h4) {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
}
header :where(h1),
footer :where(h1),
.hokeiko :where(h1) {
  font-size: 2.625rem;
}
@media (max-width: 1000px) {
  header :where(h1),
  footer :where(h1),
  .hokeiko :where(h1) {
    font-size: 1.875rem;
  }
}
@media (max-width: 750px) {
  header :where(h1),
  footer :where(h1),
  .hokeiko :where(h1) {
    font-size: 1.75rem;
  }
}
header :where(h2),
footer :where(h2),
.hokeiko :where(h2) {
  font-size: 2.1875rem;
}
@media (max-width: 1000px) {
  header :where(h2),
  footer :where(h2),
  .hokeiko :where(h2) {
    font-size: 1.5625rem;
  }
}
@media (max-width: 750px) {
  header :where(h2),
  footer :where(h2),
  .hokeiko :where(h2) {
    font-size: 1.4375rem;
  }
}
header :where(h3),
footer :where(h3),
.hokeiko :where(h3) {
  font-size: 1.625rem;
}
@media (max-width: 1000px) {
  header :where(h3),
  footer :where(h3),
  .hokeiko :where(h3) {
    font-size: 1.375rem;
  }
}
@media (max-width: 750px) {
  header :where(h3),
  footer :where(h3),
  .hokeiko :where(h3) {
    font-size: 1.3125rem;
  }
}
header :where(h4),
footer :where(h4),
.hokeiko :where(h4) {
  font-size: 1.375rem;
}
@media (max-width: 1000px) {
  header :where(h4),
  footer :where(h4),
  .hokeiko :where(h4) {
    font-size: 1.3125rem;
  }
}
@media (max-width: 750px) {
  header :where(h4),
  footer :where(h4),
  .hokeiko :where(h4) {
    font-size: 1.1875rem;
  }
}

.hokeiko-Sec :where(p) {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: #2b2b2b;
  text-align: left;
}
@media (max-width: 1000px) {
  .hokeiko-Sec :where(p) {
    font-size: 0.875rem;
  }
}
.hokeiko-Sec__ttl {
  margin-bottom: 2.1875rem;
  text-align: center;
}
.hokeiko-Sec__ttl p {
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 5.3125rem;
  color: #eb6e56;
  margin: 0;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1000px) {
  .hokeiko-Sec__ttl p {
    font-size: 3.625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Sec__ttl p {
    font-size: 3.125rem;
  }
}
.hokeiko-Sec__ttl h2 {
  font-size: 2.1875rem;
  color: #2b2b2b;
  margin: 1.125rem 0 0;
}
@media (max-width: 1000px) {
  .hokeiko-Sec__ttl h2 {
    font-size: 1.5625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Sec__ttl h2 {
    font-size: 1.4375rem;
    margin: 0.75rem 0 0;
  }
}
.hokeiko-Sec__ttl--small p {
  font-size: 1.25rem;
}
@media (max-width: 1000px) {
  .hokeiko-Sec__ttl--small p {
    font-size: 1rem;
  }
}
.hokeiko-Sec__ttl--small h2 {
  font-size: 2.1875rem;
  margin: 0.75rem 0 0;
}
@media (max-width: 1000px) {
  .hokeiko-Sec__ttl--small h2 {
    font-size: 1.4375rem;
    margin: 0.5rem 0 0;
  }
}
.hokeiko-Sec__lead {
  line-height: 2.1;
  text-align: center;
  margin-bottom: 2.1875rem;
}
@media (max-width: 1000px) {
  .hokeiko-Sec__lead {
    text-align: left;
  }
}
.hokeiko-Inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  position: relative;
}
@media (max-width: 750px) {
  .hokeiko-Inner {
    padding-inline: 1.375rem;
  }
}
.hokeiko-Inner--thin {
  max-width: 68.75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  position: relative;
}
@media (max-width: 750px) {
  .hokeiko-Inner--thin {
    padding-inline: 1.375rem;
  }
}
.hokeiko-line {
  color: #eb6e56;
  text-decoration: underline;
  text-decoration-color: #f0bd57;
  text-decoration-style: dotted;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.3em;
  display: inline;
  background-color: transparent;
}
.hokeiko-btn {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
  background: #eb6e56;
  color: #fff;
  border: 0.25rem solid #fff;
  border-radius: 6.25rem;
  padding: 1rem 1.875rem 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.21));
  transition: 0.3s ease;
}
@media (max-width: 750px) {
  .hokeiko-btn {
    max-width: 100%;
  }
}
.hokeiko-btn::after {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: url(/assets/images/hokeiko/icon-arrow.svg) no-repeat center/cover #fff;
  border-radius: 50%;
  display: block;
}
@media (hover) {
  .hokeiko-btn:hover {
    opacity: 0.7;
  }
}
.hokeiko .splide__arrows {
  display: flex;
  column-gap: 1.875rem;
}
.hokeiko .splide__arrow {
  position: static;
  background-color: #f5d27f;
  width: 3.75rem;
  height: 3.75rem;
  transform: none;
}
.hokeiko .splide__arrow svg {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
}
.hokeiko .splide__arrow:disabled {
  background-color: #ffecbf;
  opacity: 0.8;
  cursor: default;
}

/* ===========================
  KV
=========================== */
.hokeiko-Kv {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  transition: opacity 0.5s ease;
}
.hokeiko-Kv__slide {
  position: absolute;
  inset: 0;
}
.hokeiko-Kv__slide .splide__track,
.hokeiko-Kv__slide .splide__list,
.hokeiko-Kv__slide .splide__slide {
  height: 100%;
}
.hokeiko-Kv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hokeiko-Kv__catch {
  position: absolute;
  bottom: 18.75rem;
  left: min(calc(156/1426*100vw), 9.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: min(calc(24/1426*100vw), 1.5rem);
}
@media (max-height: 950px) and (min-width: 62.5625rem) {
  .hokeiko-Kv__catch {
    bottom: 15.75rem;
    left: 13.75rem;
    row-gap: 1rem;
  }
}
@media (max-width: 1000px) {
  .hokeiko-Kv__catch {
    bottom: 15.75rem;
    left: 13.75rem;
    row-gap: 1rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Kv__catch {
    bottom: 4.375rem;
    left: 1.25rem;
    row-gap: 0.8125rem;
  }
}
.hokeiko-Kv__catch p {
  position: relative;
  display: inline-block;
  background: #f0bd57;
  color: #fff;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, calc(58 / 1426 * 100vw), 3.625rem);
  height: clamp(5rem, calc(115 / 1426 * 100vw), 7.1875rem);
  line-height: 1;
  padding: 0 clamp(0.9375rem, calc(22 / 1426 * 100vw), 1.375rem);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.32, 0, 0.67, 0);
}
@media (max-width: 1000px) {
  .hokeiko-Kv__catch p {
    font-size: 2.5rem;
    height: 5rem;
    padding: 0 0.9375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Kv__catch p {
    font-size: 2rem;
    height: 3.9375rem;
    padding: 0 0.75rem;
  }
}
.hokeiko-Kv__catch p:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f0bd57;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: 0.8s cubic-bezier(0.32, 0, 0.67, 0);
}
@media (max-width: 750px) {
  .hokeiko-Kv__catch--1 {
    padding-right: 1.25rem !important;
  }
}
.hokeiko-Kv__catch--1:after {
  transition-delay: 0.5s !important;
}
.hokeiko-Kv__catch--2 {
  margin-left: clamp(7.1875rem, calc(165 / 1426 * 100vw), 10.3125rem);
  transition-delay: 1s !important;
}
@media (max-width: 1000px) {
  .hokeiko-Kv__catch--2 {
    margin-left: 7.1875rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Kv__catch--2 {
    margin-left: 5.625rem;
  }
}
.hokeiko-Kv__catch--2:after {
  transition-delay: 1.5s !important;
}
.hokeiko-Kv__catch img {
  width: clamp(7.1875rem, calc(164 / 1426 * 100vw), 10.25rem);
  position: absolute;
  top: clamp(6.75rem, calc(150 / 1426 * 100vw), 9.375rem);
  left: max(calc(-104 / 1426 * 100vw), -6.5rem);
}
@media (max-width: 1000px) {
  .hokeiko-Kv__catch img {
    width: 7.1875rem;
    top: 6.75rem;
    left: -4.5rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Kv__catch img {
    width: 5.5625rem;
    top: -3.125rem;
    left: 13.125rem;
  }
}
.hokeiko-Kv.is-active .hokeiko-Kv__catch p {
  opacity: 1;
}
.hokeiko-Kv.is-active .hokeiko-Kv__catch p:after {
  width: 0;
}

/* ===========================
  WHATS
=========================== */
.hokeiko-Whats {
  position: relative;
  padding: 1.875rem 0 0;
  background: #fff7de;
}
@media (max-width: 750px) {
  .hokeiko-Whats {
    padding: 5rem 0 0;
  }
}
.hokeiko-Whats:after {
  content: "";
  width: 100%;
  height: 5.0625rem;
  background: url(/assets/images/hokeiko/wave-whats-bottom.svg) no-repeat center top/auto 100%;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .hokeiko-Whats:after {
    height: 3.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats:after {
    height: auto;
    background-size: 100% auto;
    aspect-ratio: 1750/81;
  }
}
.hokeiko-Whats::before {
  content: "";
  width: 100%;
  height: 16.25rem;
  background: url(/assets/images/hokeiko/wave-whats.svg) no-repeat center top/auto 100%;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .hokeiko-Whats::before {
    height: 11.375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats::before {
    height: 6.25rem;
  }
}
.hokeiko-Whats__illust {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding-bottom: 3.125rem;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__illust {
    padding-bottom: 2.1875rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__illust {
    padding-bottom: 1.25rem;
    bottom: calc(100% - 3.125rem);
  }
}
.hokeiko-Whats__illust img {
  display: block;
}
.hokeiko-Whats__illust img:nth-child(1) {
  width: 13.1875rem;
  margin-right: 5rem;
  transform: translateY(5rem);
}
@media (max-width: 1000px) {
  .hokeiko-Whats__illust img:nth-child(1) {
    width: 9.25rem;
    margin-right: 3.5rem;
    transform: translateY(3.5rem);
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__illust img:nth-child(1) {
    order: 2;
    width: 6.5rem;
    margin-right: 0;
    margin-left: 0.625rem;
    transform: none;
  }
}
.hokeiko-Whats__illust img:nth-child(2) {
  width: 12.25rem;
  margin-right: 7.5rem;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__illust img:nth-child(2) {
    width: 8.5625rem;
    margin-right: 2.5rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__illust img:nth-child(2) {
    order: 1;
    width: 7.125rem;
    margin-right: 0;
    margin-left: 1.875rem;
  }
}
.hokeiko-Whats__illust img:nth-child(3) {
  width: 22.375rem;
  transform: translateY(0.625rem);
}
@media (max-width: 1000px) {
  .hokeiko-Whats__illust img:nth-child(3) {
    width: 15.625rem;
    transform: translateY(0.4375rem);
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__illust img:nth-child(3) {
    order: 3;
    width: 13.125rem;
    transform: translateY(1.25rem);
  }
}
.hokeiko-Whats__outer {
  overflow: hidden;
  padding-bottom: 6.25rem;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__outer {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__outer {
    padding-bottom: 5rem;
  }
}
.hokeiko-Whats__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.1875rem 3.75rem;
  align-items: start;
  max-width: 73.125rem;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__layout {
    gap: 2.1875rem 2.5rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.hokeiko-Whats__label {
  margin: 0;
  text-align: left;
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2b2b2b;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__label {
    font-size: 1.0625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__label {
    font-size: 1.0625rem;
  }
}
.hokeiko-Whats__logo {
  margin-top: 2rem;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__logo {
    margin-top: 1.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__logo {
    margin-top: 1.625rem;
  }
}
.hokeiko-Whats__logo img {
  width: 18.5625rem;
}
@media (max-width: 750px) {
  .hokeiko-Whats__logo img {
    width: 13.125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__logo img {
    width: 15.75rem;
  }
}
.hokeiko-Whats__catch {
  grid-column: 1;
  grid-row: 3;
  margin: 1.25rem 0 0;
  text-align: left;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.5;
  color: #eb6e56;
  text-decoration: underline;
  text-decoration-color: #f0bd57;
  text-decoration-style: dotted;
  text-decoration-thickness: 5px;
  text-underline-offset: 0.4em;
  line-height: 1.8;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__catch {
    font-size: 2rem;
    margin-top: 1.3125rem;
    line-height: 2;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__catch {
    margin-top: 1.5625rem;
    font-size: 1.875rem;
  }
}
.hokeiko-Whats__deco {
  width: 14.375rem;
  margin-left: 3.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__deco {
    width: 10.125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__deco {
    width: 9.5rem;
    pointer-events: none;
    margin-left: auto;
    margin-top: 2.5rem;
  }
}
.hokeiko-Whats__deco img {
  width: 100%;
}
@media (max-width: 750px) {
  .hokeiko-Whats__deco img {
    transform: translateY(-1.875rem);
  }
}
.hokeiko-Whats__lead {
  margin: 2.5rem 0 0;
  text-align: left;
  line-height: 2.3;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__lead {
    margin-top: 1.5625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__lead {
    margin-top: 0;
  }
}
.hokeiko-Whats__list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 6.25rem 0 0;
}
@media (max-width: 750px) {
  .hokeiko-Whats__list {
    grid-template-columns: 1fr;
    row-gap: 4.375rem;
    margin: 5rem auto 0;
    width: fit-content;
  }
}
.hokeiko-Whats__item {
  position: relative;
}
@media (max-width: 750px) {
  .hokeiko-Whats__item {
    width: fit-content;
  }
}
.hokeiko-Whats__item-photo {
  margin: 0;
  width: 100%;
}
.hokeiko-Whats__item-photo img {
  width: 100%;
}
@media (max-width: 750px) {
  .hokeiko-Whats__item-photo img {
    width: min(calc(242/390*100vw), 21.875rem);
  }
}
.hokeiko-Whats__item-badge {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1.875rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.7;
  color: #2b2b2b;
  padding-inline: 1.5625rem;
  width: fit-content;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__item-badge {
    font-size: 1.0625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__item-badge {
    font-size: 0.8125rem;
    padding: 0 1.125rem;
  }
}
.hokeiko-Whats__item-badge span {
  display: block;
  width: fit-content;
}
.hokeiko-Whats__item--1 .hokeiko-Whats__item-badge {
  background: url(/assets/images/hokeiko/whats-baloon-1.svg) no-repeat center/100% auto;
  aspect-ratio: 247/163;
  top: -6.375rem;
  right: -1.375rem;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__item--1 .hokeiko-Whats__item-badge {
    top: -6rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__item--1 .hokeiko-Whats__item-badge {
    top: -3.4375rem;
  }
}
.hokeiko-Whats__item--2 {
  margin-top: 10rem;
}
@media (max-width: 750px) {
  .hokeiko-Whats__item--2 {
    margin-top: 0;
    margin-left: 5rem;
  }
}
.hokeiko-Whats__item--2 .hokeiko-Whats__item-badge {
  background: url(/assets/images/hokeiko/whats-baloon-2.svg) no-repeat center/100% auto;
  aspect-ratio: 239/145;
  top: -6.875rem;
  right: 1rem;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__item--2 .hokeiko-Whats__item-badge {
    top: -5.375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__item--2 .hokeiko-Whats__item-badge {
    top: -4.375rem;
  }
}
.hokeiko-Whats__item--3 {
  margin-top: 2.625rem;
}
@media (max-width: 750px) {
  .hokeiko-Whats__item--3 {
    margin-top: 0;
    margin-left: 1.5625rem;
  }
}
.hokeiko-Whats__item--3 .hokeiko-Whats__item-badge {
  background: url(/assets/images/hokeiko/whats-baloon-3.svg) no-repeat center/100% auto;
  aspect-ratio: 235/156;
  top: -5.625rem;
  left: -0.9375rem;
}
@media (max-width: 1000px) {
  .hokeiko-Whats__item--3 .hokeiko-Whats__item-badge {
    top: -5rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Whats__item--3 .hokeiko-Whats__item-badge {
    top: -3.75rem;
    left: 0;
  }
}

/* ===========================
  LINEUP
=========================== */
.hokeiko-Lineup {
  padding: 12.5rem 0 18.125rem;
  text-align: center;
}
@media (max-width: 1000px) {
  .hokeiko-Lineup {
    padding: 10rem 0 12.6875rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Lineup {
    padding: 5rem 0 11.25rem;
  }
}
.hokeiko-Lineup__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.375rem 1.875rem;
  list-style: none;
  padding: 0;
  margin: 6.875rem 0 0;
}
@media (max-width: 1000px) {
  .hokeiko-Lineup__list {
    margin-top: 4.8125rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.125rem 1.875rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Lineup__list {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: 3.75rem;
    max-width: 28.125rem;
    margin-inline: auto;
  }
}
.hokeiko-Lineup__card {
  position: relative;
  background: #faf9f4;
  border-radius: 0.375rem;
  padding: 1.625rem 1.75rem;
  text-align: left;
  border-radius: 0.625rem;
  border-top: 0.625rem solid;
}
.hokeiko-Lineup__card-icon {
  pointer-events: none;
  position: absolute;
  top: -1.8125rem;
  right: 0;
}
.hokeiko-Lineup__card-ttl {
  font-size: 1.625rem;
  color: #2b2b2b;
  margin: 0 0 1.5rem;
}
.hokeiko-Lineup__card-txt {
  line-height: 1.87;
  margin: 0;
}
.hokeiko-Lineup__card--english {
  border-color: #f08e7b;
}
.hokeiko-Lineup__card--sports {
  border-color: #f08e7b;
}
.hokeiko-Lineup__card--rhythmic {
  border-color: #81c1d6;
}
.hokeiko-Lineup__card--music {
  border-color: #48b1a5;
}
.hokeiko-Lineup__card--art {
  border-color: #e3df76;
}
.hokeiko-Lineup__card--programming {
  border-color: #99b8f4;
}

/* ===========================
  VOICE
=========================== */
.hokeiko-Voice {
  padding: 1.875rem 0 7.5rem;
  background: #faf9f4;
  text-align: center;
  position: relative;
}
@media (max-width: 750px) {
  .hokeiko-Voice {
    padding: 3.75rem 0 4.375rem;
  }
}
.hokeiko-Voice::before {
  content: "";
  width: 100%;
  height: 16.25rem;
  background: url(/assets/images/hokeiko/wave-voice.svg) no-repeat center top/auto 100%;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .hokeiko-Voice::before {
    height: 11.375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Voice::before {
    height: 6.25rem;
  }
}
.hokeiko-Voice__illust {
  position: absolute;
  top: -12.75rem;
  right: 9.375rem;
}
@media (max-width: 1000px) {
  .hokeiko-Voice__illust {
    top: -8.9375rem;
    right: 6.5625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Voice__illust {
    top: -7.5rem;
    right: 1.875rem;
  }
}
.hokeiko-Voice__illust img {
  width: 16.0625rem;
  max-width: none;
}
@media (max-width: 1000px) {
  .hokeiko-Voice__illust img {
    width: 11.25rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Voice__illust img {
    width: 10.3125rem;
  }
}
.hokeiko-Voice__outer {
  overflow: hidden;
}
.hokeiko-Voice__wrap {
  max-width: 81.25rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (max-width: 750px) {
  .hokeiko-Voice__slide {
    margin-top: 3.75rem;
  }
}
.hokeiko-Voice__slide .splide__track {
  overflow: visible;
}
.hokeiko-Voice__slide .splide__arrows {
  margin-bottom: 3.125rem;
  justify-content: flex-end;
}
.hokeiko-Voice__card {
  background: #f5d27f;
  border-radius: 1rem;
  padding: 2.5rem 1.875rem;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  color: #2b2b2b;
}
@media (max-width: 750px) {
  .hokeiko-Voice__card {
    width: 18.5rem !important;
    padding: 1.875rem 1.375rem;
  }
}
.hokeiko-Voice__card-meta {
  font-size: 1rem;
  margin: 0 0 1.5625rem;
  padding-bottom: 1.25rem;
  width: fit-content;
  border-bottom: 2px dotted #757575;
  line-height: 1;
}
@media (max-width: 1000px) {
  .hokeiko-Voice__card-meta {
    font-size: 0.9375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Voice__card-meta {
    font-size: 0.875rem;
    margin: 0 0 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.hokeiko-Voice__card-ttl {
  font-weight: 700;
  font-size: 1.375rem;
  margin: 0 0 1.25rem;
  line-height: 1.7;
}
@media (max-width: 1000px) {
  .hokeiko-Voice__card-ttl {
    font-size: 1.25rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Voice__card-ttl {
    font-size: 1.1875rem;
    margin: 0 0 0.9375rem;
  }
}
.hokeiko-Voice__card-txt {
  line-height: 1.87;
  margin: 0;
  font-weight: 400;
}

/* ===========================
  FLOW
=========================== */
.hokeiko-Flow {
  padding: 7.5rem 0 26.25rem;
  background: #faf9f4;
}
@media (max-width: 1000px) {
  .hokeiko-Flow {
    padding: 5rem 0 3.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow {
    padding: 4.375rem 0 14.8125rem;
  }
}
.hokeiko-Flow__wrap {
  position: relative;
  border-radius: 1.875rem;
  padding: 14.375rem 1.25rem 4.375rem;
}
@media (max-width: 1000px) {
  .hokeiko-Flow__wrap {
    padding: 11.25rem 1.25rem 4.375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__wrap {
    border-radius: 1.25rem;
    padding: 6.25rem 1.25rem 3.125rem;
  }
}
.hokeiko-Flow .hokeiko-Sec__ttl {
  text-align: left;
  position: absolute;
  left: 10.9%;
  top: -2.25rem;
  z-index: 1;
}
@media (max-width: 750px) {
  .hokeiko-Flow .hokeiko-Sec__ttl {
    top: -1.5625rem;
  }
}
.hokeiko-Flow__contents {
  position: relative;
  max-width: 51.25rem;
  margin-inline: auto;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
}
.hokeiko-Flow__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 750px) {
  .hokeiko-Flow__list {
    row-gap: 4.0625rem;
    margin-top: 1.875rem;
  }
}
.hokeiko-Flow__list__tag {
  width: fit-content;
  margin: 0;
  background: #70bcd4;
  color: #fff;
  font-weight: 700;
  font-size: 1.625rem;
  padding: 0.1875rem 1.25rem;
  border-radius: 0.625rem;
}
@media (max-width: 1000px) {
  .hokeiko-Flow__list__tag {
    font-size: 1.375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__list__tag {
    font-size: 1.25rem;
    max-width: 100%;
    margin: 0 0 0.625rem;
    padding: 0.1875rem 0.75rem;
  }
}
.hokeiko-Flow__list__tag--top {
  position: absolute;
  left: calc(23.25rem + 7.3%);
  top: -1.25rem;
}
@media (max-width: 850px) {
  .hokeiko-Flow__list__tag--top {
    left: auto;
    right: 0;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__list__tag--top {
    position: static;
    margin-inline: auto;
  }
}
.hokeiko-Flow__step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  position: relative;
  counter-increment: num;
}
@media (max-width: 750px) {
  .hokeiko-Flow__step {
    flex-direction: column !important;
    justify-content: flex-start;
    gap: 1.5rem;
  }
}
.hokeiko-Flow__step:nth-child(odd) .hokeiko-Flow__step-photo::before {
  top: -0.625rem;
  left: 0.3125rem;
}
@media (max-width: 750px) {
  .hokeiko-Flow__step:nth-child(odd) .hokeiko-Flow__step-photo::before {
    top: -0.3125rem;
    left: 0.625rem;
  }
}
.hokeiko-Flow__step:nth-child(odd):not(:last-child):after {
  content: "";
  width: 0.125rem;
  height: 8.125rem;
  border-left: 2px dotted #757575;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -3.75rem;
  left: 50%;
}
@media (max-width: 850px) {
  .hokeiko-Flow__step:nth-child(odd):not(:last-child):after {
    height: 6.25rem;
  }
}
.hokeiko-Flow__step:nth-child(even) {
  flex-direction: row-reverse;
}
.hokeiko-Flow__step:nth-child(even) .hokeiko-Flow__step-photo::before {
  top: -1.25rem;
  right: 2.8125rem;
}
@media (max-width: 750px) {
  .hokeiko-Flow__step:nth-child(even) .hokeiko-Flow__step-photo::before {
    top: -0.9375rem;
    right: 2.375rem;
  }
}
.hokeiko-Flow__step:nth-child(even):not(:last-child):after {
  content: "";
  width: 0.125rem;
  height: 8.125rem;
  border-left: 2px dotted #757575;
  transform: rotate(45deg);
  position: absolute;
  bottom: -3.75rem;
  left: 50%;
}
@media (max-width: 850px) {
  .hokeiko-Flow__step:nth-child(even):not(:last-child):after {
    height: 6.25rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__step:after {
    display: none !important;
  }
}
.hokeiko-Flow__step-photo {
  position: relative;
  width: 23.25rem;
  margin: 0;
}
@media (max-width: 850px) {
  .hokeiko-Flow__step-photo {
    width: 20rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__step-photo {
    width: 16.375rem;
  }
}
.hokeiko-Flow__step-photo::before {
  content: counter(num);
  width: 5.125rem;
  aspect-ratio: 82/74;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/assets/images/hokeiko/num_frame.svg) no-repeat center/cover;
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  color: #70bcd4;
  font-size: 2.1875rem;
  font-weight: 700;
  position: absolute;
  z-index: 2;
}
@media (max-width: 850px) {
  .hokeiko-Flow__step-photo::before {
    width: 4.5rem;
    font-size: 1.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__step-photo::before {
    width: 3.625rem;
    font-size: 1.5625rem;
  }
}
.hokeiko-Flow__step-photo img:not(.hokeiko-Flow__step-bg) {
  width: 100%;
  display: block;
  aspect-ratio: 372/303;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hokeiko-Flow__step-bg {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}
.hokeiko-Flow__step-body {
  width: calc(100% - 23.25rem - 7.3%);
}
@media (max-width: 850px) {
  .hokeiko-Flow__step-body {
    width: calc(100% - 20rem - 7.3%);
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__step-body {
    width: 100%;
    max-width: 25rem;
    margin-inline: auto;
  }
}
.hokeiko-Flow__step-body h3 {
  font-size: 1.625rem;
  color: #eb6e56;
  margin: 0 0 1rem;
}
@media (max-width: 1000px) {
  .hokeiko-Flow__step-body h3 {
    font-size: 1.3125rem;
    margin: 0 0 0.75rem;
  }
}
.hokeiko-Flow__step-body p {
  line-height: 1.9;
  margin: 0;
  max-width: 21.25rem;
}
@media (max-width: 850px) {
  .hokeiko-Flow__step-body p {
    max-width: 17.5rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__step-body p {
    max-width: 100%;
  }
}
.hokeiko-Flow__note {
  display: flex;
  flex-direction: column;
  row-gap: 1.375rem;
}
.hokeiko-Flow__illust {
  pointer-events: none;
}
.hokeiko-Flow__illust--1 {
  position: absolute;
  top: -6.875rem;
  left: 50%;
  width: 12.0625rem;
  z-index: 0;
}
@media (max-width: 1000px) {
  .hokeiko-Flow__illust--1 {
    top: -5rem;
    width: 8.4375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__illust--1 {
    top: -5.4375rem;
    left: auto;
    right: 1.25rem;
    width: 5.9375rem;
  }
}
.hokeiko-Flow__illust--2 {
  display: block;
  margin: -1.25rem 0 -0.625rem auto;
  width: 12rem;
}
@media (max-width: 1000px) {
  .hokeiko-Flow__illust--2 {
    width: 10rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Flow__illust--2 {
    width: 7.25rem;
    margin: 1.5625rem 1.25rem 2.5rem auto;
  }
}

/* ===========================
  Feature
=========================== */
.hokeiko-Feature {
  padding: 6.25rem 0 25rem;
  background: #faf9f4;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .hokeiko-Feature {
    padding: 3.75rem 0 18.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature {
    padding: 2.8125rem 0 11.875rem;
  }
}
.hokeiko-Feature .hokeiko-Sec__ttl,
.hokeiko-Feature .hokeiko-Sec__ttl p {
  text-align: left;
}
@media (max-width: 750px) {
  .hokeiko-Feature .hokeiko-Sec__ttl,
  .hokeiko-Feature .hokeiko-Sec__ttl p {
    text-align: center;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature .splide__arrows {
    display: none;
  }
}
.hokeiko-Feature__wrap {
  position: relative;
  margin-left: 5.4698457223dvw;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__wrap {
    margin-left: 1.25rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__wrap {
    margin-inline: 1.25rem;
  }
}
.hokeiko-Feature__wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-top-left-radius: 3.75rem;
  border-bottom-left-radius: 3.75rem;
  position: absolute;
  top: 4.5rem;
  left: 0;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__wrap::before {
    border-top-left-radius: 3.125rem;
    border-bottom-left-radius: 3.125rem;
    top: 3.125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__wrap::before {
    top: 0;
    border-radius: 1.25rem;
  }
}
.hokeiko-Feature__panel {
  position: relative;
  display: grid;
  grid-template-columns: 21.25rem 1fr;
  gap: 2.5rem;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__panel {
    grid-template-columns: 16.25rem 1fr;
    gap: 1.25rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__panel {
    display: block;
    padding-block: 3.4375rem;
  }
}
.hokeiko-Feature__heading {
  padding: 7.5rem 0 0 5.625rem;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__heading {
    padding: 6.25rem 0 0 3.125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__heading {
    margin-bottom: 1.75rem;
    padding: 0;
  }
}
.hokeiko-Feature__slide {
  width: 34.0625rem;
}
@media (max-width: 72.5rem) {
  .hokeiko-Feature__slide {
    width: 30rem;
  }
}
@media (max-width: 59.375rem) {
  .hokeiko-Feature__slide {
    width: 23.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__slide {
    width: 19.125rem;
    margin-inline: auto;
  }
}
.hokeiko-Feature__slide-wrap {
  position: relative;
  overflow: hidden;
}
.hokeiko-Feature__slide .splide__track {
  overflow: visible;
}
.hokeiko-Feature__label {
  margin: 0 0 0.5rem;
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #eb6e56;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__label {
    font-size: 0.875rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__label {
    font-size: 0.875rem;
  }
}
.hokeiko-Feature__catch {
  margin: 0;
  font-weight: 700;
  font-size: 2.1875rem;
  color: #2b2b2b;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__catch {
    font-size: 1.5625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__catch {
    font-size: 1.375rem;
  }
}
.hokeiko-Feature__card {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  transform-origin: center right;
  transform: scale(0.85);
  transition: transform 0.3s ease;
}
@media (max-width: 750px) {
  .hokeiko-Feature__card {
    transform: none;
  }
}
.hokeiko-Feature__card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.hokeiko-Feature__card figure {
  margin: 0 0 2.1875rem;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__card figure {
    margin: 0 0 1.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__card figure {
    margin: 0 0 1.25rem;
  }
}
.hokeiko-Feature__card figure img {
  width: 100%;
}
.hokeiko-Feature__card.is-active {
  transform: scale(1);
}
@media (max-width: 750px) {
  .hokeiko-Feature__card.is-active {
    transform: none;
  }
}
.hokeiko-Feature__card-date {
  font-weight: 700;
  color: #eb6e56;
  font-size: 1.25rem;
  margin-inline: 1.25rem;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__card-date {
    font-size: 1.125rem;
    margin-inline: 0.9375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__card-date {
    font-size: 1rem;
    margin-inline: 0;
  }
}
.hokeiko-Feature__card-ttl {
  color: #2b2b2b;
  font-size: 1.375rem;
  margin-inline: 1.25rem;
}
@media (max-width: 1000px) {
  .hokeiko-Feature__card-ttl {
    font-size: 1.125rem;
    margin-inline: 0.9375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Feature__card-ttl {
    font-size: 1rem;
    margin-inline: 0;
  }
}

/* ===========================
  FAQ
=========================== */
.hokeiko-Faq {
  padding: 6.25rem 0;
  background: #f5d27f;
  text-align: center;
  position: relative;
}
.hokeiko-Faq::before {
  content: "";
  width: 100%;
  height: 13.25rem;
  background: url(/assets/images/hokeiko/wave-faq.svg) no-repeat center top/auto 100%;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .hokeiko-Faq::before {
    height: 9.375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq::before {
    height: 6.25rem;
  }
}
.hokeiko-Faq__illust {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.hokeiko-Faq__illust img {
  width: 68.25rem;
  max-width: none;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__illust img {
    width: 47.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq__illust img {
    width: 21.6875rem;
  }
}
.hokeiko-Faq__panel {
  border-radius: 1.875rem;
  padding: 3.4375rem 3.125rem 5rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__panel {
    padding: 2.5rem 2.1875rem 3.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq__panel {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.hokeiko-Faq__list {
  list-style: none;
  padding: 0;
  margin: 5rem 0 0;
  text-align: left;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__list {
    margin: 3.5rem 0 0;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq__list {
    margin: 2.8125rem 0 0;
  }
}
.hokeiko-Faq__item {
  border-bottom: 0.125rem dotted #2b2b2b;
}
.hokeiko-Faq__question {
  width: 100%;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  column-gap: 1.25rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.25rem 1.25rem 1.25rem 0;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__question {
    grid-template-columns: 2.375rem 1fr auto;
    column-gap: 1rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq__question {
    grid-template-columns: 2rem 1fr auto;
    column-gap: 0.875rem;
    padding: 0.9375rem 0.625rem 0.9375rem 0;
  }
}
.hokeiko-Faq__question span {
  color: #2b2b2b;
  font-weight: 700;
  font-size: 1.375rem;
  display: block;
  padding-top: 0.375rem;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__question span {
    font-size: 1.125rem;
    padding-top: 0.3125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq__question span {
    font-size: 1rem;
    padding-top: 0.125rem;
  }
}
.hokeiko-Faq__question:before {
  content: "Q";
  width: 100%;
  aspect-ratio: 1;
  background: #f08e7b;
  border-radius: 50%;
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__question:before {
    font-size: 1.375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq__question:before {
    font-size: 1.25rem;
  }
}
.hokeiko-Faq__question::after {
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  border-right: 0.1875rem solid #2b2b2b;
  border-bottom: 0.1875rem solid #2b2b2b;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  align-self: center;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__question::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.hokeiko-Faq__answer {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  text-align: left;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s linear, padding 0.2s linear;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__answer {
    grid-template-columns: 2.375rem 1fr auto;
    gap: 1rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq__answer {
    grid-template-columns: 2rem 1fr auto;
    gap: 0.875rem;
  }
}
.hokeiko-Faq__answer:before {
  content: "A";
  width: 100%;
  aspect-ratio: 1;
  background: #46c6b7;
  border-radius: 50%;
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 1000px) {
  .hokeiko-Faq__answer:before {
    font-size: 1.375rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Faq__answer:before {
    font-size: 1.25rem;
  }
}
.hokeiko-Faq__item.is-open .hokeiko-Faq__answer {
  max-height: 187.5rem;
  padding: 0.625rem 0 1.25rem;
}
.hokeiko-Faq__item.is-open .hokeiko-Faq__question::after {
  transform: rotate(225deg);
}

/* ===========================
  Footer
=========================== */
.hokeiko-Footer__cta {
  background: #46c6b7;
  min-height: 25.75rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 1000px) {
  .hokeiko-Footer__cta {
    min-height: 18.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Footer__cta {
    min-height: 20.625rem;
  }
}
.hokeiko-Footer__cta::before {
  content: "";
  width: 28.3125rem;
  height: 100%;
  background: url(/assets/images/hokeiko/footer-illust-1.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1000px) {
  .hokeiko-Footer__cta::before {
    width: 19.8125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Footer__cta::before {
    width: 10.3125rem;
    height: 13.625rem;
    top: auto;
    bottom: 1.6875rem;
    background-image: url(/assets/images/hokeiko/footer-illust-1-sp.webp);
  }
}
.hokeiko-Footer__cta::after {
  content: "";
  width: 28.3125rem;
  height: 100%;
  background: url(/assets/images/hokeiko/footer-illust-2.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1000px) {
  .hokeiko-Footer__cta::after {
    width: 19.8125rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Footer__cta::after {
    width: 10.3125rem;
    height: 13.625rem;
    top: auto;
    bottom: 1.6875rem;
    background-image: url(/assets/images/hokeiko/footer-illust-2-sp.webp);
  }
}
.hokeiko-Footer__cta h2 {
  font-size: 2.1875rem;
  color: #fff;
  margin: 0 0 2.1875rem;
}
@media (max-width: 1000px) {
  .hokeiko-Footer__cta h2 {
    font-size: 1.625rem;
    margin: 0 0 1.5rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Footer__cta h2 {
    font-size: 1.4375rem;
    margin: 0 0 1.125rem;
  }
}
.hokeiko-Footer__cta p {
  color: #fff;
  line-height: 1.8;
  margin: 0 0 2.5rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
}
@media (max-width: 1000px) {
  .hokeiko-Footer__cta p {
    margin: 0 0 2rem;
  }
}
.hokeiko-Footer__cta .hokeiko-btn {
  margin-inline: auto;
}
.hokeiko-Footer__main {
  background: #faf9f4;
  padding: 4.0625rem 0 3.4375rem;
  text-align: center;
}
.hokeiko-Footer__inner {
  max-width: 80.875rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .hokeiko-Footer__inner {
    padding-inline: 1.875rem;
  }
}
.hokeiko-Footer__menu {
  display: grid;
  grid-template-columns: 9.625rem 1fr;
  column-gap: 7.1875rem;
}
@media (max-width: 1000px) {
  .hokeiko-Footer__menu {
    grid-template-columns: 6.875rem 1fr;
    column-gap: 3.75rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Footer__menu {
    display: block;
  }
}
@media (max-width: 750px) {
  .hokeiko-Footer__logo {
    text-align: center;
  }
}
.hokeiko-Footer__logo img {
  width: 100%;
}
@media (max-width: 750px) {
  .hokeiko-Footer__logo img {
    width: 7.5rem;
  }
}
.hokeiko-Footer__nav {
  display: flex;
  gap: 3.75rem;
  margin: 1.5625rem 0 0;
  text-align: left;
}
@media (max-width: 1000px) {
  .hokeiko-Footer__nav {
    gap: 2.625rem;
  }
}
@media (max-width: 750px) {
  .hokeiko-Footer__nav {
    flex-wrap: wrap;
    gap: 1.875rem 2.5rem;
    margin: 3.125rem 0 0;
  }
}
.hokeiko-Footer__nav-ttl {
  font-weight: 700;
  font-size: 1rem;
  color: #2b2b2b;
  margin: 0 0 1rem;
}
.hokeiko-Footer__nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hokeiko-Footer__nav-col ul a {
  font-size: 0.875rem;
  color: #6e6e6e;
  text-decoration: none;
  display: block;
  padding-block: 0.75rem;
  transition: color 0.3s ease;
}
@media (max-width: 750px) {
  .hokeiko-Footer__nav-col ul a {
    padding-block: 0.625rem;
  }
}
@media (hover) {
  .hokeiko-Footer__nav-col ul a:hover {
    opacity: 1;
    color: #eb6e56;
  }
}
.hokeiko-Footer__sns {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0 0 0.625rem;
  padding-right: 10.625rem;
}
@media (max-width: 750px) {
  .hokeiko-Footer__sns {
    padding-right: 0;
  }
}
.hokeiko-Footer__sns a {
  display: block;
  padding: 0.75rem;
}
@media (max-width: 750px) {
  .hokeiko-Footer__sns a {
    padding: 0.375rem;
  }
}
@media (hover) {
  .hokeiko-Footer__sns a:hover {
    opacity: 1;
  }
  .hokeiko-Footer__sns a:hover img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(28%) saturate(5601%) hue-rotate(326deg) brightness(98%) contrast(87%);
  }
}
.hokeiko-Footer__sns img {
  width: 1.5625rem;
  filter: brightness(0) saturate(100%) invert(49%) sepia(3%) saturate(3%) hue-rotate(349deg) brightness(85%) contrast(83%);
  transition: 0.3s ease;
}
@media (max-width: 750px) {
  .hokeiko-Footer__sns img {
    width: 1.375rem;
  }
}
.hokeiko-Footer__copyright {
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  color: #6e6e6e;
  margin: 0;
  text-align: right;
  padding-right: 11.375rem;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .hokeiko-Footer__copyright {
    padding-right: 0.375rem;
  }
}
