:root {
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-jp-display: "M PLUS 1p", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-jp-emphasis: "M PLUS 1", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Josefin Sans", system-ui, sans-serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  --color-text: #222;
  --color-brand: #e21a1a;
  --color-white: #fff;
  --color-yellow-highlight: #ffe945;
  --color-gray-ui: #f5f5f5;
  --space-unit: 1rem;
}

html {
  font-size: 2.5vw;
  scroll-behavior: smooth;
  scroll-padding-top: 7.8rem;
}
@media (min-width: 768px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media (min-width: 1600px) {
  html {
    font-size: 11.4285714286px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 7rem;
    overflow-x: hidden;
    max-width: 100vw;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 100%;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  min-height: 100vh;
}
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
}

a {
  color: #000;
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

figure {
  padding: 0;
  margin: 0;
}

picture {
  display: block;
}

label {
  cursor: pointer;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

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

svg,
img {
  max-width: 100%;
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
  img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
[x-cloak] {
  display: none !important;
}

button {
  background-color: transparent;
  border: none;
  border-radius: none;
  cursor: pointer;
}

.body {
  background-image: url(../images/bg-grid-blue.jpg);
}
@media (min-width: 768px) {
  .body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
  }
}

.pc-nav {
  position: sticky;
  top: 2rem;
  align-self: flex-start;
  box-sizing: border-box;
  width: 50rem;
  padding-block: 6rem 4rem;
  padding-inline: 8rem 7rem;
  max-height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
}
.pc-nav__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.pc-nav__tagline {
  font-family: var(--font-jp-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: #006bb6;
  text-align: left;
}
.pc-nav__tagline-line {
  display: block;
}
.pc-nav__logo-link {
  display: block;
  width: 35rem;
  max-width: 100%;
}
.pc-nav__logo {
  display: block;
  width: 100%;
  height: auto;
}
.pc-nav__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
.pc-nav__menu-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}
.pc-nav__menu-label {
  margin: 0;
  font-family: "Lato", var(--font-sans);
  font-weight: 700;
  font-size: 2rem;
  color: #006bb6;
}
.pc-nav__menu-rule {
  width: 33rem;
  max-width: 100%;
  height: 0.2rem;
  background-color: #006bb6;
}
.pc-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pc-nav__item {
  margin: 0;
}
.pc-nav__link {
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-family: var(--font-jp-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: #222;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  position: relative;
}
@media (hover: hover) {
  .pc-nav .pc-nav__item:not(.pc-nav__item--current) .pc-nav__link:hover {
    opacity: 0.75;
  }
}
.pc-nav__item--current .pc-nav__link {
  opacity: 1;
  padding-left: 2.5rem;
}
.pc-nav__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pc-nav__item--current .pc-nav__arrow {
  opacity: 1;
}
.pc-nav__arrow-img {
  display: block;
  width: 1.7rem;
  height: auto;
}
.pc-nav__text {
  min-width: 0;
}

.pc-rail {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 49rem;
  max-width: 100%;
  padding-block: 8rem 4rem;
  padding-inline: 6.5rem;
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
}
.pc-rail .campaign-cta__inner {
  max-width: 100%;
}
.pc-rail .cta {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  background-color: transparent;
  border: none;
  padding: 0 0 0 6rem;
  margin-top: 5rem;
}
.pc-rail .cta__inner {
  max-width: 100%;
}
.pc-rail .cta__reserve {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  min-height: auto;
  padding: 1.2rem 1rem;
  height: 8.5rem;
}
.pc-rail .cta__reserve-text {
  white-space: normal;
  text-align: center;
}
.pc-rail .cta__dial {
  box-shadow: 0.2rem 0.2rem 0.5rem 0.1rem rgba(0, 0, 0, 0.1);
}
.pc-rail .cta__dial-number {
  font-size: 2.6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  box-sizing: border-box;
  background-color: #fff;
  height: 5.5rem;
}
.site-header__inner {
  display: flex;
  box-sizing: border-box;
  align-items: stretch;
  justify-content: space-between;
  width: 40rem;
  max-width: 100%;
  min-height: 5.5rem;
  margin: 0 auto;
}
.site-header__brand {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  padding-left: 1.5rem;
}
.site-header__logo {
  display: block;
  max-width: 100%;
}
.site-header__logo-img {
  display: block;
  width: 13.8rem;
  height: 2rem;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header__cta {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 11.5rem;
  text-decoration: none;
  background-color: #f35100;
}
@media (hover: hover) and (pointer: fine) {
  .site-header__cta:hover {
    opacity: 0.92;
  }
}
.site-header__cta-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 7.9rem;
  max-width: 100%;
}
.site-header__cta-icon {
  display: block;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.site-header__cta-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.content-wrap {
  box-sizing: border-box;
  width: 40rem;
  max-width: 100%;
  margin: 4rem auto;
  background-color: white;
}
@media (min-width: 768px) {
  .content-wrap {
    flex-shrink: 0;
    margin: 4rem 0;
    box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.1);
    border-radius: 3rem;
  }
}
@media (max-width: 767px) {
  .content-wrap {
    width: 100%;
    max-width: 40rem;
    margin: 0;
  }
}

.mv {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .mv {
    overflow: hidden;
    border-radius: 3rem 3rem 0 0;
  }
}
.mv__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  background-color: #004be2;
  letter-spacing: 0.2rem;
}
.mv__ribbon-text {
  width: 100%;
  max-width: 38rem;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
}
.mv__ribbon-accent {
  color: #f6f304;
}
.mv__inner {
  position: relative;
  width: 100%;
}
.mv__figure {
  margin: 0;
}
.mv__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.cta {
  box-sizing: border-box;
  width: 36rem;
  margin-inline: auto;
  padding: 2rem 1.6rem;
  background-color: #fce5ca;
  border: 0.2rem solid #f78110;
  border-radius: 0.5rem;
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}
.cta__reserve {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  min-height: 5.4rem;
  text-decoration: none;
  background-color: #f35100;
  border-radius: 0.5rem;
}
@media (hover: hover) and (pointer: fine) {
  .cta__reserve:hover {
    opacity: 0.92;
  }
}
.cta__reserve-lead {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.cta__reserve-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.cta__chevron {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  height: 1.1rem;
}
.cta__chevron-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__icon {
  display: block;
  flex-shrink: 0;
}
.cta__icon--mail {
  width: 2.4rem;
  height: 2.4rem;
}
.cta__icon--tel {
  width: 1.8rem;
  height: 2.3rem;
}
.cta__dial {
  box-sizing: border-box;
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
.cta__dial-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  text-align: center;
}
.cta__dial-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.cta__dial-number {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f78110;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.1;
}
.cta__dial-hours {
  font-size: 1.2rem;
  color: #222;
  text-align: center;
  font-weight: 500;
}

.statement {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-block: 10.4rem 14rem;
  background-color: #f35100;
}
.statement .cta {
  position: absolute;
  top: -11.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.statement__body {
  box-sizing: border-box;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.statement__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  text-align: center;
}
.statement__kicker {
  margin: 0 0 1.5rem;
  font-family: var(--font-jp-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: #f6f304;
  letter-spacing: 0.3rem;
}
.statement__dot-char {
  position: relative;
  display: inline-block;
}
.statement__dot-char::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.1rem);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #f6f304;
  transform: translateX(-50%);
}
.statement__question {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-family: var(--font-jp-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2rem;
  line-height: 1.3;
}
.statement__question-line {
  display: block;
}
.statement__figure {
  text-align: center;
}
.statement__img {
  display: block;
  max-width: 100%;
  height: auto;
}
.statement__img--illust {
  width: 22.1rem;
  max-width: 100%;
  margin: 0 auto;
}
.statement__worries {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: -3.2rem;
}
.statement__worry {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 35rem;
  height: 15rem;
  padding-inline: 5rem 3rem;
  padding-bottom: 1.5rem;
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../../assets/images/bg-worry.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.statement__worry:nth-child(2) {
  transform: scaleX(-1) translateX(-1rem);
  padding-inline: 4rem 4.5rem;
}
.statement__worry:nth-child(2) > * {
  transform: scaleX(-1);
}
.statement__worry:last-child {
  margin-bottom: 0;
}
.statement__worry-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #004be2;
  border: 0.1rem solid #004be2;
  border-radius: 4rem;
  line-height: 1;
}
.statement__worry-text {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
}
.statement__slogan {
  margin-top: 1.5rem;
  text-align: center;
}
.statement__slogan-lead {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.3rem;
  font-family: var(--font-jp-display);
}
.statement__img--slogan {
  width: 31rem;
  margin: 1rem auto 0;
}

.square-bg-wrap {
  box-sizing: border-box;
  width: 100%;
  padding: 17rem 0 6rem;
  position: relative;
  background-image: url("../../assets/images/bg-grid.jpg");
  background-repeat: repeat;
  background-position: 0 0;
}
.square-bg-wrap > .cta {
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
}
.square-bg-wrap--core-values {
  padding: 6rem 2rem 14rem;
  background-color: #f7e6d2;
}
.square-bg-wrap--pt-6rem {
  padding-top: 6rem;
  padding-bottom: 19.2rem;
}

.kousyu-overview {
  box-sizing: border-box;
  width: 100%;
}
.kousyu-overview__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  border-radius: 0.5rem;
  background-color: #ffdfb9;
  padding-bottom: 5.6rem;
}
.kousyu-overview__headline {
  display: block;
  width: 100%;
  margin-top: -3rem;
  text-align: center;
}
.kousyu-overview__headline-img {
  display: inline-block;
  width: 33rem;
  height: auto;
}
.kousyu-overview__column {
  box-sizing: border-box;
  width: 100%;
  max-width: 40rem;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.kousyu-overview__card {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 34rem;
  min-height: 13.3rem;
  padding-top: 1.8rem;
}
.kousyu-overview__card--double {
  min-height: 21.2rem;
}
.kousyu-overview__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  box-sizing: border-box;
  padding: 0.2rem 2rem 0.4rem;
  border: 0.2rem solid #f78110;
  border-radius: 3rem;
  background-color: #fff;
  transform: translate(-50%, 0);
}
.kousyu-overview__badge-text {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f78110;
  white-space: nowrap;
}
.kousyu-overview__panel {
  box-sizing: border-box;
  width: 100%;
  padding: 2.4rem 2rem 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.kousyu-overview__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.kousyu-overview__panel-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}
.kousyu-overview__list {
  margin: 0;
  padding-left: 2.1rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
  list-style: disc;
}
.kousyu-overview__item {
  display: list-item;
  margin: 0;
  padding: 0;
  list-style: disc;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 32.7rem;
  margin: 0 auto;
  text-align: center;
}
.section-heading__en {
  width: 100%;
  font-family: "Lato", var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: #f78110;
  letter-spacing: 0.2rem;
}
.section-heading__ja {
  width: 100%;
  font-family: var(--font-jp-emphasis);
  font-size: 3.2rem;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  letter-spacing: 0.4rem;
}

.curriculum-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  box-sizing: border-box;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.curriculum {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.6rem;
  box-sizing: border-box;
}
.curriculum__shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.curriculum__tabs {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  width: 100%;
}
.curriculum__tab {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 10.4rem;
  min-height: 4.5rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #d9d9d9;
  font-family: var(--font-jp);
  font-weight: 700;
  color: #666;
  text-align: center;
  white-space: nowrap;
}
.curriculum__tab--active {
  flex: 1 1 auto;
  min-width: 10.4rem;
  min-height: 4.5rem;
  background-color: #f78110;
  color: #fff;
}
.curriculum__tab-line {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}
.curriculum__tab-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.3rem;
  font-weight: 700;
}
.curriculum__panel {
  box-sizing: border-box;
  width: 100%;
  padding: 2.4rem 2rem 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: #f78110;
}
.curriculum__panel-inner {
  box-sizing: border-box;
  width: 100%;
  padding: 2rem 2.1rem;
  border-radius: 0.5rem;
  background-color: #fff;
}

.curriculum-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  width: 100%;
}
.curriculum-card__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.curriculum-card__lead {
  font-size: 1.9rem;
  font-weight: 700;
  color: #222;
  text-align: center;
}
.curriculum-card__lead-rule {
  width: 100%;
  max-width: 27.2rem;
  height: 0.2rem;
  border: none;
  background: repeating-linear-gradient(90deg, #f78110 0, #f78110 0.4rem, transparent 0.4rem, transparent 0.8rem);
}
.curriculum-card__blocks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}
.curriculum-card__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
}
.curriculum-card__block-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}
.curriculum-card__dot {
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #f35100;
}
.curriculum-card__sunday {
  width: 1.4rem;
  height: auto;
  vertical-align: middle;
  display: inline-block;
  margin-top: -0.4rem;
}
.curriculum-card__block-title {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f35100;
}
.curriculum-card__block-text {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
}
.curriculum-card__block-text-line {
  margin: 0;
}
.curriculum-card__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.curriculum-card__options--note-below {
  gap: 0.2rem;
  align-items: flex-end;
}
.curriculum-card__option-notes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 27rem;
  padding-left: 1em;
}
.curriculum-card__option-notes-line {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
  text-align: right;
}
.curriculum-card__option-tag {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  margin-top: -1rem;
  padding-left: 1em;
}
.curriculum-card__option-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}
.curriculum-card__option-label {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
}
.curriculum-card__option-fill {
  flex: 1 1 auto;
  min-width: 1rem;
  height: 0;
  align-self: center;
  border-top: 0.1rem dotted #222;
  opacity: 0.45;
}
.curriculum-card__option-value {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
  text-align: right;
}

.flow-steps-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.flow-steps {
  box-sizing: border-box;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.flow-steps__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
}
.flow-steps__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-steps__list::before {
  content: "";
  position: absolute;
  left: 3rem;
  z-index: 0;
  width: 0.3rem;
  margin-left: -0.15rem;
  top: 2.5rem;
  bottom: 4rem;
  border-radius: 0.2rem;
  background: linear-gradient(180deg, #f4bc2b 0%, #f1a71d 34%, #ee8d0d 67%, #f35100 100%);
}
.flow-steps__item {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  width: 100%;
}
.flow-steps__item:last-of-type .flow-steps__title--accent {
  font-size: 2.8rem;
  padding-left: 1.5rem;
}
.flow-steps__marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: 6rem;
  padding-top: 0.3rem;
  box-sizing: border-box;
}
.flow-steps__marker--final {
  padding-top: 0.5rem;
}
.flow-steps__pill {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 2.8rem;
  border-radius: 3rem;
  font-family: "Lato", var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.flow-steps__pill--01 {
  background-color: #f4bc2b;
}
.flow-steps__pill--02 {
  background-color: #f1a71d;
}
.flow-steps__pill--03 {
  background-color: #ee8d0d;
}
.flow-steps__pill--04 {
  background-color: #f35100;
}
.flow-steps__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
  min-width: 0;
  font-style: normal;
  color: #222;
}
.flow-steps__title {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.flow-steps__title--accent {
  font-family: var(--font-jp-emphasis);
  font-size: 2.4rem;
  font-weight: 700;
  color: #f35100;
}
.flow-steps__text {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
}

.school-list-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.school-list {
  box-sizing: border-box;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.school-list__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
}
.school-list__shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.school-list__tabs {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  width: 100%;
}
.school-list__tab {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 10.4rem;
  min-height: 4.5rem;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #d9d9d9;
  font-family: var(--font-jp);
  font-size: 2rem;
  font-weight: 700;
  color: #666;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.school-list__tab--active {
  flex: 1 1 auto;
  min-width: 10.4rem;
  min-height: 5.2rem;
  background-color: #f78110;
  color: #fff;
}
.school-list__orange {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  box-sizing: border-box;
  width: 100%;
  padding: 2.4rem 2rem 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: #f78110;
}
.school-list__swiper {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.school-list__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: calc(100% + 4rem);
  margin-inline: -2rem;
}
.school-list__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: auto;
  margin: 0;
}
.school-list__pagination .swiper-pagination-bullet {
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  margin: 0 !important;
  border: none;
  background-color: white;
  opacity: 1;
}
.school-list__pagination .swiper-pagination-bullet-active {
  border: none;
  background-color: black;
}
.school-list__nav {
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  border: none;
  border-radius: 3rem;
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.school-list__nav-icon {
  display: block;
  width: 0.6rem;
  height: auto;
}
.school-list__nav-icon--prev {
  transform: rotate(180deg);
}
.school-list .swiper-button-prev,
.school-list .swiper-button-next {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  height: auto;
  margin: 0;
}
.school-list .swiper-button-prev::after,
.school-list .swiper-button-next::after {
  display: none;
}

.school-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
  width: 100%;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
.school-card__name {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 2.4rem;
  font-weight: 700;
  color: #f78110;
  text-align: center;
}
.school-card__top {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  width: 100%;
}
.school-card__photo {
  flex-shrink: 0;
  width: 10.8rem;
  height: 14rem;
  margin: 0;
  overflow: hidden;
  border-radius: 0.3rem;
}
.school-card__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.school-card__meta {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
  justify-content: center;
}
.school-card__block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
  width: 100%;
}
.school-card__label {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  height: 1.9rem;
  line-height: 1;
  border: 0.1rem solid #f78110;
  border-radius: 3rem;
  font-family: "Lato", var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #f78110;
  text-align: center;
}
.school-card__text {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
}
.school-card__map {
  margin: 0;
  width: 100%;
  max-width: 28rem;
  align-self: center;
}
.school-card__map-img {
  display: block;
  width: 100%;
  height: auto;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list__item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.check-list__check {
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0.1rem;
}
.check-list__check-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.check-list__item-text {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
}
.check-list__item-line {
  display: block;
}

.gimon-resolve {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.gimon-resolve__inner {
  box-sizing: border-box;
  width: 100%;
}
.gimon-resolve__card {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.4rem 3.5rem 2.7rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
.gimon-resolve__heading {
  margin: 0;
  text-align: center;
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gimon-resolve__heading-img {
  display: block;
  width: auto;
  width: 26rem;
  height: auto;
  margin: 0 auto;
}
.gimon-resolve__body {
  margin-top: 1.4rem;
}
.gimon-resolve__column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}
.gimon-resolve__subhead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}
.gimon-resolve__subhead-text {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}
.gimon-resolve__subhead-rule {
  width: 100%;
  max-width: 20.6rem;
  align-self: center;
  border-bottom: 0.2rem dashed #F35100;
}
.gimon-resolve__illust-wrap {
  margin: 0;
  position: absolute;
  bottom: 0rem;
  right: 1.3rem;
  width: 10.8rem;
}
.gimon-resolve__illust {
  display: block;
  width: 100%;
  height: auto;
}

.campaign-cta {
  box-sizing: border-box;
  width: 100%;
  padding-top: 1rem;
}
.campaign-cta__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}
.campaign-cta__hero {
  position: relative;
  box-sizing: border-box;
  border-radius: 2rem;
  overflow: visible;
}
.campaign-cta__hero-surface {
  position: relative;
  box-sizing: border-box;
  overflow: visible;
  min-height: 16.6rem;
  padding-bottom: 2rem;
  border-radius: 1.2rem;
  background-image: url("../../assets/images/campaign-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.campaign-cta__ribbon {
  position: absolute;
  top: -5rem;
  right: -2rem;
  z-index: 3;
  display: block;
  width: 17.9rem;
  max-width: 55%;
  height: auto;
  transform-origin: center center;
  pointer-events: none;
}
.campaign-cta__badge {
  position: absolute;
  top: -0.7rem;
  left: -1.1rem;
  z-index: 3;
  display: block;
  width: 9.8rem;
  max-width: 32%;
  height: auto;
}
.campaign-cta__lead {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 3rem 0 0 8rem;
  text-align: center;
}
.campaign-cta__lead-accent {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f35100;
}
.campaign-cta__lead-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: #222;
}
.campaign-cta__offer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
}
.campaign-cta__offer-graphic {
  display: block;
  width: 100%;
  max-width: 22.6rem;
  height: auto;
}
.campaign-cta__hero-note {
  position: relative;
  z-index: 2;
  margin: 1.2rem 0 0;
  padding: 0 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  text-align: center;
}
.campaign-cta__illust {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
}
.campaign-cta__illust--student {
  bottom: -0.5rem;
  left: 0;
  width: 8rem;
  z-index: 3;
}
.campaign-cta__illust--teacher {
  bottom: -0.2rem;
  right: -0.6rem;
  width: 8.4rem;
}
.campaign-cta__detail {
  box-sizing: border-box;
  width: 100%;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.4rem 1.8rem 1.6rem;
  border-radius: 2rem;
  background-color: #fff;
}
.campaign-cta__detail-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.campaign-cta__detail-lead {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
}
.campaign-cta__detail-lead-line {
  display: block;
}
.campaign-cta__benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
.campaign-cta__benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.5;
}
.campaign-cta__benefit-num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background-color: #f35100;
  font-family: Lato, var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.campaign-cta__benefit-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.3rem 0.6rem;
  min-width: 0;
  flex-grow: 1;
}
.campaign-cta__benefit-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}
.campaign-cta__benefit-price {
  font-family: Lato, var(--font-sans);
  font-weight: 700;
}
.campaign-cta__benefit-free {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f35100;
}
.campaign-cta__footnotes {
  margin-top: 1rem;
}
.campaign-cta__footnotes .campaign-cta__footnote + .campaign-cta__footnote {
  margin-top: 0.2rem;
}
.campaign-cta__footnote {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
}
.campaign-cta__copyright {
  margin-top: 4.5rem;
  font-size: 1rem;
  color: #777;
  text-align: right;
}
.campaign-cta .cta {
  margin-top: 5.8rem;
}

.shidou-power {
  box-sizing: border-box;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.shidou-power__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}
.shidou-power__heading {
  margin: 0;
  text-align: center;
}
.shidou-power__heading-img {
  display: block;
  width: 100%;
  max-width: 31.2rem;
  height: auto;
  margin: 0 auto;
}
.shidou-power__list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shidou-power__card {
  width: 100%;
}
.shidou-power__article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.shidou-power__media {
  flex: 1 1 50%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0.5rem 0.5rem 0;
  padding-right: 2rem;
}
.shidou-power__card--even .shidou-power__media {
  border-radius: 0.5rem 0 0 0.5rem;
  padding-right: 0;
  padding-left: 2rem;
}
.shidou-power__img {
  display: block;
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.shidou-power__body {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding-bottom: 0.4rem;
  padding-inline: 3.9rem;
}
.shidou-power__title {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 2rem;
  font-weight: 700;
  color: #f35100;
}
.shidou-power__rule {
  width: 100%;
  height: 0;
  border-bottom: 0.2rem dashed #f35100;
}
.shidou-power__text {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 500;
  padding-top: 0.8rem;
}

.core-values {
  box-sizing: border-box;
  width: 100%;
}
.core-values__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.core-values__heading-line {
  display: block;
  font-size: 2.8rem;
}
.core-values__heading-accent {
  display: block;
  color: #f35100;
}
.core-values__lead {
  width: 100%;
  margin-top: 2.4rem;
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
}
.core-values__list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
  margin-top: 1.6rem;
  padding: 0;
  list-style: none;
}
.core-values__item {
  width: 100%;
}
.core-values__card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.core-values__media {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.core-values__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.core-values__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.core-values__title-row {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  width: 100%;
}
.core-values__num {
  display: block;
  flex-shrink: 0;
  width: 3.3rem;
  height: 4.4rem;
}
.core-values__title-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  font-family: var(--font-jp);
  font-weight: 700;
}
.core-values__label {
  font-size: 1.3rem;
  color: #222;
}
.core-values__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f35100;
}
.core-values__rule {
  width: 100%;
  height: 0;
  border-bottom: 0.2rem dashed #f35100;
}
.core-values__text {
  font-family: var(--font-jp);
  font-size: 1.38rem;
  font-weight: 500;
  color: #222;
  line-height: 1.6;
}

.promo-video {
  box-sizing: border-box;
  width: 100%;
  margin-top: 2.4rem;
}
.promo-video__card {
  box-sizing: border-box;
  width: 100%;
  max-width: 35.8rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
.promo-video__inner {
  width: 100%;
}
.promo-video__heading {
  max-width: 32.7rem;
}
.promo-video__heading .section-heading__ja {
  font-size: 2.8rem;
}
.promo-video__lead {
  text-align: center;
  font-size: 1.4rem;
  margin-block: 2rem 1rem;
}
.promo-video__poster {
  display: block;
  width: 100%;
  max-width: 31.8rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.5rem;
  overflow: hidden;
}
.promo-video__poster:focus-visible {
  outline: 0.2rem solid #f78110;
  outline-offset: 0.2rem;
}
.promo-video__poster-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 318/212;
  background-color: #d9d9d9;
}
.promo-video__thumb {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.4rem;
  height: 7.4rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.promo-video__video {
  display: block;
  width: 100%;
  max-width: 31.8rem;
  border-radius: 0.5rem;
  background-color: #000;
}
.promo-video__video-wrap {
  width: 100%;
  max-width: 31.8rem;
  aspect-ratio: 318/212;
}
.promo-video__video-wrap video {
  width: 100%;
  height: 100%;
}
.promo-video__video-wrap.is-hidden {
  display: none;
}
.promo-video__poster-wrap.is-hidden {
  display: none;
}

.result {
  box-sizing: border-box;
  width: 100%;
  padding: 0 1.2rem 5.6rem;
}
.result__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
}
.result__heading {
  max-width: 32.7rem;
}
.result__heading .section-heading__en {
  color: #fff;
}
.result__heading .section-heading__ja {
  color: #fff;
  font-size: 2.4rem;
}
.result__heading-line {
  display: block;
}
.result__heading-line--lg {
  margin-top: 0.4rem;
  font-size: 2.8rem;
}
.result__card {
  box-sizing: border-box;
  width: 100%;
  max-width: 36rem;
  padding: 3rem 1rem 1rem;
  border-radius: 1rem;
  background-color: #fff;
}
.result__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 28rem;
  margin: 0 auto;
}
.result__badge {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0.6rem 1.8rem 0.4rem;
  border-radius: 3rem;
  background-color: #f35100;
  color: #fff;
  font-family: "Lato", var(--font-sans);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.result__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  text-align: center;
}
.result__region {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.result__number-img {
  display: block;
  width: 18.5rem;
  height: auto;
}
.result__breakdown {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}
.result__rates {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}
.result__stars-img {
  display: block;
  width: 100%;
  max-width: 47.2rem;
  height: auto;
}
.result__schools {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  margin-top: 2.4rem;
}
.result__schools .result__label {
  width: 16.4rem;
  margin-inline: auto;
  padding-inline: 0;
}
.result__label {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0.7rem 1.8rem 0.5rem;
  border: 0.2rem solid #f35100;
  border-radius: 3rem;
  color: #f35100;
  font-family: "Lato", var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.result-school-tabs {
  box-sizing: border-box;
  position: relative;
  width: 100%;
}
.result-school-tabs__state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.result-school-tabs__tablist {
  display: flex;
  gap: 0.4rem;
  align-items: flex-end;
  width: 100%;
}
.result-school-tabs__tab {
  box-sizing: border-box;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 4.5rem;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #d9d9d9;
  color: #666;
  font-family: var(--font-jp);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.result-school-tabs #result-school-area-aichi:checked ~ .result-school-tabs__tablist .result-school-tabs__tab--aichi,
.result-school-tabs #result-school-area-gifu:checked ~ .result-school-tabs__tablist .result-school-tabs__tab--gifu {
  padding: 1.6rem 1rem;
  background-color: #f78110;
  color: #fff;
}
.result-school-tabs__panel {
  box-sizing: border-box;
  width: 100%;
  padding: 1.6rem 1.2rem 1.2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: #f78110;
}
.result-school-tabs__panel-page--aichi {
  display: block;
}
.result-school-tabs__panel-page--gifu {
  display: none;
}
.result-school-tabs #result-school-area-gifu:checked ~ .result-school-tabs__panel .result-school-tabs__panel-page--aichi {
  display: none;
}
.result-school-tabs #result-school-area-gifu:checked ~ .result-school-tabs__panel .result-school-tabs__panel-page--gifu {
  display: block;
}
.result-school-tabs__card {
  box-sizing: border-box;
  width: 100%;
  padding: 1.6rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
.result-school-tabs__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.result-school-tabs__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.result-school-tabs__name {
  flex-shrink: 0;
  max-width: 72%;
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
}
.result-school-tabs__rule {
  flex-grow: 1;
  min-width: 1rem;
  margin-bottom: 0.35rem;
  border-bottom: 0.1rem dotted #222;
}
.result-school-tabs__count {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
  white-space: nowrap;
}

.result-wrapper {
  padding-top: 14rem;
  background-color: #F78110;
  position: relative;
}
.result-wrapper .cta {
  position: absolute;
  left: 50%;
  top: -10.3rem;
  transform: translateX(-50%);
}

.parent-voices {
  box-sizing: border-box;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.6rem 4rem;
}
.parent-voices__inner {
  box-sizing: border-box;
  width: 100%;
}
.parent-voices__heading {
  margin-bottom: 2rem;
}
.parent-voices__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.parent-voices__item {
  margin: 0;
}
.parent-voices__card {
  box-sizing: border-box;
  width: 100%;
}
.parent-voices__card--mirror .parent-voices__bubble-bg {
  transform: scaleX(-1);
}
.parent-voices__card--mirror .parent-voices__row {
  flex-direction: row-reverse;
}
.parent-voices__card--mirror .parent-voices__detail-btn {
  align-self: flex-end;
}
.parent-voices__bubble {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 17.8rem;
}
.parent-voices__card--mirror .parent-voices__bubble {
  min-height: 17.7rem;
}
.parent-voices__bubble-bg {
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/voice-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  pointer-events: none;
}
.parent-voices__bubble-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  box-sizing: border-box;
  width: 100%;
  min-height: 17.8rem;
  padding: 4.4rem 1.8rem 1.5rem 1.8rem;
}
.parent-voices__card--mirror .parent-voices__bubble-inner {
  min-height: 17.7rem;
  padding-top: 4.4rem;
}
.parent-voices__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
  width: 100%;
}
.parent-voices__avatar-wrap {
  flex-shrink: 0;
  width: 5.2rem;
  height: 5.8rem;
}
.parent-voices__avatar {
  display: block;
  width: 100%;
  height: auto;
  max-height: 5.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.parent-voices__excerpt {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-family: var(--font-jp);
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
}
.parent-voices__detail-btn {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  width: 12rem;
  height: 2.4rem;
  line-height: 1;
  border: none;
  border-radius: 3rem;
  background-color: #f78110;
  font-family: "Lato", var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.parent-voices__detail-btn-text {
  white-space: nowrap;
}
.parent-voices__detail-btn-plus {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  transform: translateY(-0.1rem);
}
.parent-voices__overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.6rem;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
.parent-voices__modal {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 32rem;
  max-height: calc(100vh - 4rem);
  padding: 3.2rem 1.2rem 2.8rem 2.4rem;
  border: 0.4rem solid #f78110;
  background-color: #fff;
}
.parent-voices__modal-close {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #f78110;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.parent-voices__modal-close-icon {
  position: relative;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
}
.parent-voices__modal-close-icon::before, .parent-voices__modal-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  background-color: #fff;
}
.parent-voices__modal-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.parent-voices__modal-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.parent-voices__modal-scroll {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  max-height: calc(100vh - 12rem);
  min-height: 0;
}
.parent-voices__modal-scroll--no-overflow {
  gap: 0;
}
.parent-voices__modal-scroll--no-overflow > .parent-voices__modal-scrollbar {
  display: none;
}
.parent-voices__modal-body {
  flex: 1;
  min-width: 0;
  min-height: 0;
  max-height: calc(100vh - 12rem);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.parent-voices__modal-body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.parent-voices__modal-scrollbar {
  flex-shrink: 0;
  align-self: stretch;
  width: 0.2rem;
  min-height: 0;
}
.parent-voices__modal-scrollbar-track {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  min-height: 4rem;
  border-radius: 0.3rem;
  background-color: #fde8d4;
}
.parent-voices__modal-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 2.4rem;
  border-radius: 0.3rem;
  background-color: #f78110;
  transform: translateY(0);
  cursor: grab;
  touch-action: none;
}
.parent-voices__modal-scrollbar-thumb:active {
  cursor: grabbing;
}
.parent-voices__modal-avatar {
  float: left;
  display: block;
  width: 5.2rem;
  height: auto;
  max-height: 5.8rem;
  margin: 0 1.8rem 0.8rem 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.parent-voices__modal-lead-text {
  font-family: var(--font-jp);
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
}
.parent-voices__modal-text {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
}

.footer {
  position: relative;
  background-color: white;
}
@media (min-width: 768px) {
  .footer {
    border-radius: 0 0 3rem 3rem;
  }
}
.footer .cta {
  position: absolute;
  top: -13.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.footer__lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding-top: 11rem;
}
@media (min-width: 768px) {
  .footer__lower {
    padding-bottom: 4rem;
  }
}
.footer__lower-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
}
.footer__logo {
  display: block;
  width: 20.8rem;
  max-width: 100%;
  height: auto;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #222;
  text-align: center;
}
.footer__org {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.footer__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.footer__reach {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.footer__line {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.footer__tel {
  color: #222;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__tel:hover {
    text-decoration: underline;
  }
}
.footer__hours {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.footer__hours-note {
  font-size: 1.2rem;
}
.footer__bar {
  box-sizing: border-box;
  width: 100%;
  padding: 0.8rem 1.2rem;
  background-color: #222;
  text-align: center;
}
.footer__copy {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer__copy {
    white-space: normal;
  }
}
.footer__page-top {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .footer__page-top {
    border-radius: 0 0 3rem 3rem;
  }
}
.footer__page-top-link {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.8rem 1.2rem;
  background-color: #f35100;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: "Lato", var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .footer__page-top-link:hover {
    opacity: 0.92;
  }
}
.footer__page-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 0.9rem;
}
.footer__page-top-icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer__page-top-text {
  display: block;
}
@media (max-width: 767px) {
  .footer__lower {
    padding-top: 9rem;
    gap: 3.2rem;
  }
}

.float-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  pointer-events: none;
}
.float-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  pointer-events: auto;
}
.float-nav__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  width: min(40rem, 100%);
  max-width: 100%;
  min-height: 8.5rem;
  margin-inline: auto;
  overflow: hidden;
  pointer-events: auto;
  background-color: transparent;
  border: 0.5rem solid transparent;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-nav__panel--open {
  background-color: #f78110;
  border-color: #fff;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -0.4rem 0.4rem rgba(0, 0, 0, 0.12);
}
.float-nav__toolbar {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  pointer-events: none;
}
.float-nav__toggle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 6rem;
  height: 6rem;
  padding: 0;
  background-image: linear-gradient(180deg, #f4bd2b 0%, #eb7a01 100%);
  border: 0.2rem solid #fff;
  border-radius: 3.2rem;
  box-shadow: 0 0.4rem 0.2rem rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .float-nav__toggle:hover {
    filter: brightness(1.03);
  }
}
.float-nav__toggle-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2rem;
}
.float-nav__toggle-icon {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.float-nav__collapsible {
  box-sizing: border-box;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  contain: paint;
}
.float-nav__collapsible-inner {
  box-sizing: border-box;
  padding: 7rem 2rem 2rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-nav__collapsible-inner--visible {
  opacity: 1;
}
.float-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: -4rem;
  padding: 0.8rem 0 4rem;
  list-style: none;
}
.float-nav__item {
  margin: 0;
  text-align: center;
}
.float-nav__link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .float-nav__link:hover {
    text-decoration: underline;
  }
}
.float-nav__cta {
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
}
.float-nav__cta.cta {
  margin-top: 0;
  border-width: 0.2rem;
}/*# sourceMappingURL=style.css.map */