@charset "UTF-8";
/* ==========================================================================
   Reset CSS - 共通（全ページで使用）
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  appearance: none;
}

table {
  border-collapse: collapse;
}

:root {
  --colorMain: #003388;
  --colorAccent: #bb9933;
  --colorText: #333;
  --colorTextSub: #555;
  --colorTextLight: #999;
  --colorWhite: #fff;
  --colorBg: #f8f9fa;
  --colorBgGray: #eee;
  --colorBorder: #ddd;
  --colorError: #de5858;
  --fontSerif: 'Noto Serif JP', serif;
  --fontSans: 'Noto Sans JP', sans-serif;
  --fontRoboto: 'Roboto', sans-serif;
  --weightRegular: 400;
  --weightMedium: 500;
  --weightSemiBold: 600;
  --weightBold: 700;
  --speed: .3s;
  --easing: ease-in-out;
}

/* ==========================================================================
   Base - 共通（全ページで使用）
   ========================================================================== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fontSans);
  font-weight: var(--weightRegular);
  color: var(--colorText);
  background-color: var(--colorWhite);
  overflow-x: hidden;
}

img {
  height: auto;
  vertical-align: bottom;
}

a {
  transition: opacity var(--speed) var(--easing);
}

:root {
  --board: 0;
  --board-h: 720;
  --max: 1.70666667px;
}
@media (max-width: 640px) {
  :root {
    --board: 375;
    --board-h: 660;
    --max: 9999px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================================
   Component - 共通コンポーネント（全ページで使用）
   ========================================================================== */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-text {
  font-family: var(--fontSerif);
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  line-height: 1.3;
  text-align: center;
}

.section-title-line {
  display: block;
  width: clamp(0px, 10vw / var(--board) * 10 * 55, var(--max) * 55);
  height: 1px;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
}

/* ==========================================================================
   Utility - ユーティリティクラス（全ページで使用）
   ========================================================================== */
@media (min-width: 641px) {
  .pc-none {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .sp-none {
    display: none !important;
  }
}

/* ========================================
   PC レイアウト（ページラッパー）
   ======================================== */
.page-wrapper {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
  background-color: var(--colorWhite);
  box-shadow: 0 0 32px 16px rgba(0, 0, 0, 0.5);
}

/* ========================================
   KV
   ======================================== */
.kv-image {
  width: 100%;
  height: auto;
}

/* ========================================
   コーチングバナー
   ======================================== */
.banner-coach-link {
  display: block;
}
@media (hover: hover) {
  .banner-coach-link:hover {
    opacity: 0.7;
  }
}

.banner-coach-image {
  width: 100%;
  height: auto;
}

/* ========================================
   リード文
   ======================================== */
.read {
  position: relative;
  overflow: hidden;
  padding: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20) clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  color: #038;
  text-align: center;
}

.read-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

.read-background-image {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.read-inner {
  position: relative;
  z-index: 1;
}

.read-title {
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 22, var(--max) * 22);
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  font-family: var(--fontSerif);
  line-height: 1.35;
}

.read-body {
  font-weight: var(--weightSemiBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  font-family: var(--fontSerif);
  line-height: 2;
}
.read-body p + p {
  margin-top: 2em;
}
.read-body p + p:last-child {
  margin-bottom: 0;
}

/* ========================================
   こんな方におすすめ
   ======================================== */
.best-image {
  width: 100%;
  height: auto;
}

/* ========================================
   3つの理由
   ======================================== */
.reason {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  padding-bottom: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  background: linear-gradient(to bottom, #fcfcfc, #ececec 90%);
}

.reason-header {
  width: 100%;
}

.reason-header-image {
  width: 100%;
  height: auto;
}

.reason-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  padding-bottom: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  width: clamp(0px, 10vw / var(--board) * 10 * 335, var(--max) * 335);
  background-color: #fff;
  box-shadow: 1px 1px clamp(0px, 10vw / var(--board) * 10 * 6, var(--max) * 6) rgba(0, 0, 0, 0.2);
}

.reason-card-image {
  overflow: hidden;
  width: 100%;
}
.reason-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.reason-card-point {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 120, var(--max) * 120);
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.reason-card-point img {
  width: 100%;
  height: auto;
}

.reason-card-content {
  width: clamp(0px, 10vw / var(--board) * 10 * 295, var(--max) * 295);
}

.reason-card-title {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 7, var(--max) * 7);
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  color: #b93;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  font-family: var(--fontSans);
  line-height: 1.4;
}

.reason-card-title-arrow {
  display: inline-block;
  color: #b93;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  transform: scaleX(0.7);
}

.reason-card-text {
  width: clamp(0px, 10vw / var(--board) * 10 * 295, var(--max) * 295);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.5;
}
.reason-card-text strong {
  font-weight: var(--weightBold);
}

.reason-card-universities {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: clamp(0px, 10vw / var(--board) * 10 * 295, var(--max) * 295);
}

.reason-university-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0px, 10vw / var(--board) * 10 * 15, var(--max) * 15);
}

.reason-university-accordion {
  overflow: hidden;
  max-height: 0;
  width: 100%;
  transition: max-height 0.4s ease-in-out;
}
.reason-university-accordion.is-open {
  overflow: visible;
}

.reason-university-accordion-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0px, 10vw / var(--board) * 10 * 15, var(--max) * 15);
  padding-top: clamp(0px, 10vw / var(--board) * 10 * 15, var(--max) * 15);
}

.reason-university {
  position: relative;
  width: clamp(0px, 10vw / var(--board) * 10 * 140, var(--max) * 140);
  cursor: pointer;
}

.reason-university-image img {
  width: 100%;
  height: auto;
}

.reason-university-label {
  position: absolute;
  bottom: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  left: 0;
  display: flex;
  align-items: center;
  padding: clamp(0px, 10vw / var(--board) * 10 * 3, var(--max) * 3) 0;
  padding-left: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  min-height: clamp(0px, 10vw / var(--board) * 10 * 29, var(--max) * 29);
  width: clamp(0px, 10vw / var(--board) * 10 * 132, var(--max) * 132);
}
.reason-university-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000091;
  mix-blend-mode: multiply;
}

.reason-university-name {
  position: relative;
  z-index: 1;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.14285714;
}

.reason-university-arrow {
  position: absolute;
  right: clamp(0px, 10vw / var(--board) * 10 * 2, var(--max) * 2);
  bottom: 50%;
  z-index: 1;
  width: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  height: auto;
  transform: translateY(50%);
}

.reason-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30);
  width: clamp(0px, 10vw / var(--board) * 10 * 240, var(--max) * 240);
  height: clamp(0px, 10vw / var(--board) * 10 * 60, var(--max) * 60);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30);
  background-color: #999;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
}
@media (hover: hover) {
  .reason-more-button:hover {
    opacity: 0.7;
  }
}

.reason-card-materials {
  display: flex;
  justify-content: space-between;
  width: clamp(0px, 10vw / var(--board) * 10 * 295, var(--max) * 295);
}

.reason-material {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  cursor: pointer;
}
@media (hover: hover) {
  .reason-material:hover {
    opacity: 0.7;
  }
}
.reason-material img {
  width: clamp(0px, 10vw / var(--board) * 10 * 140, var(--max) * 140);
  height: auto;
}

.reason-material-label {
  text-align: center;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  line-height: 1.35;
}

.reason-card-support {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  width: clamp(0px, 10vw / var(--board) * 10 * 295, var(--max) * 295);
}

.reason-support-images {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.reason-support-images img {
  width: calc(50% - clamp(0px, 10vw / var(--board) * 10 * 3, var(--max) * 3));
  height: auto;
  object-fit: cover;
}

/* ========================================
   学習の流れ
   ======================================== */
.flow {
  position: relative;
  overflow: hidden;
  background-image: url("/assets/image/bg_flow.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.flow-inner {
  position: relative;
  z-index: 1;
  padding: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
}

.flow-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 36, var(--max) * 36);
}

.flow-sub {
  color: #fff;
  text-align: center;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  font-family: var(--fontSerif);
}

.flow-title {
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  color: #fff;
  text-align: center;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  font-family: var(--fontSerif);
  line-height: 1.3;
}

.flow-line {
  display: block;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  width: clamp(0px, 10vw / var(--board) * 10 * 55, var(--max) * 55);
  height: 1px;
  background-color: #fff;
}

.flow-step-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.flow-step-header {
  display: flex;
  align-items: flex-start;
  gap: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
}

.flow-step-point {
  flex-shrink: 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 45, var(--max) * 45);
}
.flow-step-point img {
  width: 100%;
  height: auto;
}

.flow-step-title {
  color: #fff;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  font-family: var(--fontSans);
  line-height: 1.4;
}

.flow-step-text {
  color: #fff;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.5;
}

.flow-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  margin: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18) 0;
}
.flow-arrow::before {
  content: "";
  display: block;
  width: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  height: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  background-image: url("/assets/image/arrow_flow.webp");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.flow-arrow svg {
  display: none;
  width: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  height: auto;
}

/* ========================================
   料金のご案内
   ======================================== */
.price {
  background: linear-gradient(to bottom, #fff, #ececec 89%);
}

.price-inner {
  padding: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
}

.price-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 21, var(--max) * 21);
}

.price-title {
  color: var(--colorMain);
  text-align: center;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  font-family: var(--fontSerif);
  line-height: 1.3;
}

.price-line {
  display: block;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  width: clamp(0px, 10vw / var(--board) * 10 * 55, var(--max) * 55);
  height: 1px;
  background-color: var(--colorMain);
}

.price-card {
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 21, var(--max) * 21);
  width: 100%;
  background-color: #fff;
  box-shadow: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4) clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4) clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4) rgba(0, 0, 0, 0.1);
}

.price-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(0px, 10vw / var(--board) * 10 * 60, var(--max) * 60);
  background-color: rgba(28, 58, 169, 0.1);
}

.price-card-name {
  text-align: center;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  font-family: var(--fontSerif);
}

.price-card-body {
  padding: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
}

.price-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
}

.price-amount-prefix {
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  font-family: var(--fontSerif);
}

.price-amount-number {
  margin-left: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  font-family: var(--fontSerif);
}

.price-amount-suffix {
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  font-family: var(--fontSerif);
}

.price-amount-tax {
  margin-left: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
}

.price-card-text {
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.45;
}

.price-note {
  font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
}

/* ========================================
   お問い合わせ
   ======================================== */
.contact-header {
  position: relative;
  overflow: hidden;
  height: clamp(0px, 10vw / var(--board) * 10 * 140, var(--max) * 140);
}

.contact-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-header-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0px, 10vw / var(--board) * 10 * 13, var(--max) * 13) clamp(0px, 10vw / var(--board) * 10 * 36, var(--max) * 36);
  height: 100%;
}

.contact-header-sub {
  color: #fff;
  text-align: center;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  font-family: var(--fontSerif);
  line-height: 1;
}

.contact-header-title {
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 6, var(--max) * 6);
  color: #fff;
  text-align: center;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  font-family: var(--fontSerif);
  line-height: 1;
}

.contact-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  padding: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  max-width: clamp(0px, 10vw / var(--board) * 10 * 335, var(--max) * 335);
  width: 100%;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
}

.contact-label-text {
  color: #333;
  letter-spacing: 0.04em;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.75;
}

.contact-label-required {
  color: var(--colorError);
  letter-spacing: 0.04em;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  line-height: 1.5;
}

.contact-name-group {
  display: flex;
  gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
}

.contact-input-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.contact-error {
  display: none;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  color: var(--colorError);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
}
.contact-error.is-show {
  display: block;
}

.contact-input {
  display: block;
  padding: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  width: 100%;
  border: 1px solid #5f5f5f;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  background-color: #fff;
  letter-spacing: 0.02em;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.5;
  appearance: none;
}
.contact-input::placeholder {
  color: #999;
}
.contact-input.is-error {
  border-color: var(--colorError);
}

.contact-radio-group {
  display: flex;
  flex-direction: column;
}

.contact-radio {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  padding: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) 0;
  cursor: pointer;
}
.contact-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-radio-circle {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  height: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  border: 2px solid #5f5f5f;
  border-radius: 50%;
}
.contact-radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  height: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  border-radius: 50%;
  background-color: var(--colorMain);
  transition: transform 0.2s;
  transform: translate(-50%, -50%) scale(0);
}
input:checked + .contact-radio-circle {
  border-color: var(--colorMain);
}
input:checked + .contact-radio-circle::after {
  transform: translate(-50%, -50%) scale(1);
}

.contact-radio-text {
  letter-spacing: 0.04em;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.75;
}

.contact-checkbox-group {
  display: flex;
  flex-direction: column;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  padding: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) 0;
  cursor: pointer;
}
.contact-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-checkbox-agree {
  gap: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
}

.contact-checkbox-box {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  height: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  border: 2px solid #5f5f5f;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  background-color: #fff;
}
.contact-checkbox-box::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: clamp(0px, 10vw / var(--board) * 10 * 6, var(--max) * 6);
  height: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transition: transform 0.2s;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
}
input:checked + .contact-checkbox-box {
  border-color: var(--colorMain);
  background-color: var(--colorMain);
}
input:checked + .contact-checkbox-box::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.contact-checkbox-text {
  letter-spacing: 0.02em;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.5;
}

.contact-textarea {
  display: block;
  padding: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12) clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  width: 100%;
  height: clamp(0px, 10vw / var(--board) * 10 * 120, var(--max) * 120);
  border: 1px solid #5f5f5f;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  background-color: #fff;
  letter-spacing: 0.04em;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.75;
  resize: vertical;
  appearance: none;
}
.contact-textarea::placeholder {
  color: #999;
}

.contact-privacy {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  max-width: clamp(0px, 10vw / var(--board) * 10 * 335, var(--max) * 335);
  width: 100%;
}

.contact-privacy-box {
  overflow: hidden;
  width: 100%;
  height: clamp(0px, 10vw / var(--board) * 10 * 320, var(--max) * 320);
  border: 1px solid #777;
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
}

.contact-privacy-scroll {
  overflow-y: auto;
  padding: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  height: 100%;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  line-height: 1.67;
}
.contact-privacy-scroll p {
  margin-bottom: 0;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  width: clamp(0px, 10vw / var(--board) * 10 * 285, var(--max) * 285);
  height: clamp(0px, 10vw / var(--board) * 10 * 60, var(--max) * 60);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30);
  background-color: #b93;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  font-family: var(--fontSans);
}
@media (hover: hover) {
  .contact-submit:hover {
    opacity: 0.7;
  }
}

/* ========================================
   運営会社について
   ======================================== */
.company-inner {
  padding: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20) clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.company-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
}

.company-title {
  color: #666;
  text-align: center;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28);
  font-family: var(--fontSerif);
  line-height: 1.3;
}

.company-line {
  display: block;
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  width: clamp(0px, 10vw / var(--board) * 10 * 55, var(--max) * 55);
  height: 1px;
  background-color: #666;
}

.company-list {
  width: 100%;
}

.company-row {
  display: flex;
}

.company-row:last-child .company-term::after {
  display: none !important;
}

.company-term {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  padding: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12) clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8);
  min-height: clamp(0px, 10vw / var(--board) * 10 * 50, var(--max) * 50);
  width: clamp(0px, 10vw / var(--board) * 10 * 96, var(--max) * 96);
  background-color: #eee;
  color: #555;
  text-align: center;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
}
.company-term::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: clamp(0px, 10vw / var(--board) * 10 * 56, var(--max) * 56);
  height: 1px;
  background-color: rgba(85, 85, 85, 0.5);
  transform: translateX(-50%);
}

.company-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12) clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  color: #555;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 14, var(--max) * 14);
  line-height: 1.3;
}
.company-data a {
  color: #21f;
  text-decoration: underline;
}

/* ========================================
   フッター
   ======================================== */
.footer-logos {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  background-color: #edf0f4;
}

.footer-logos-title {
  display: flex;
  align-items: center;
  gap: clamp(0px, 10vw / var(--board) * 10 * 5, var(--max) * 5);
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
}

.footer-logos-line {
  display: block;
  width: clamp(0px, 10vw / var(--board) * 10 * 100, var(--max) * 100);
  height: 1px;
  background-color: var(--colorMain);
}

.footer-logos-text {
  color: var(--colorMain);
  white-space: nowrap;
  font-weight: 500;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  font-family: var(--fontRoboto);
}

.footer-logos-grid {
  display: grid;
  gap: clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  grid-template-columns: 1fr 1fr;
  place-items: center;
}
.footer-logos-grid img {
  width: auto;
  height: clamp(0px, 10vw / var(--board) * 10 * 35, var(--max) * 35);
}
.footer-logos-grid img:nth-of-type(1) {
  height: clamp(0px, 10vw / var(--board) * 10 * 36, var(--max) * 36);
}
.footer-logos-grid img:nth-of-type(2) {
  height: clamp(0px, 10vw / var(--board) * 10 * 45, var(--max) * 45);
}
.footer-logos-grid img:nth-of-type(3) {
  height: clamp(0px, 10vw / var(--board) * 10 * 23, var(--max) * 23);
}
.footer-logos-grid img:nth-of-type(4) {
  height: clamp(0px, 10vw / var(--board) * 10 * 34, var(--max) * 34);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0px, 10vw / var(--board) * 10 * 10, var(--max) * 10);
  padding-right: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  height: clamp(0px, 10vw / var(--board) * 10 * 44, var(--max) * 44);
  background-color: var(--colorMain);
}

.footer-copyright {
  color: #fff;
  white-space: nowrap;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 7, var(--max) * 7);
}

.footer-sprix-logo {
  width: auto;
  height: clamp(0px, 10vw / var(--board) * 10 * 11, var(--max) * 11);
}

/* ========================================
   PC 背景
   ======================================== */
@media (min-width: 641px) {
  body {
    background-color: #1a2a5a;
    background-image: url("/assets/image/bg_pc.webp");
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
  }
}
/* ========================================
   モーダル共通
   ======================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.modal-container {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  max-width: clamp(0px, 10vw / var(--board) * 10 * 335, var(--max) * 335);
  max-height: 85vh;
  width: 90%;
  background-color: #fff;
}

.modal-close {
  position: absolute;
  top: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  right: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  z-index: 2;
  width: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  height: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  color: #333;
  text-align: center;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  line-height: clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  transition: opacity var(--speed);
}
@media (hover: hover) {
  .modal-close:hover {
    opacity: 0.7;
  }
}

.modal-container-university {
  border-top: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) solid #b93;
  border-bottom: clamp(0px, 10vw / var(--board) * 10 * 8, var(--max) * 8) solid #b93;
}

.modal-university-header {
  display: flex;
  gap: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  padding: clamp(0px, 10vw / var(--board) * 10 * 28, var(--max) * 28) clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30) 0;
}
.modal-university-header::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 2px;
  height: clamp(0px, 10vw / var(--board) * 10 * 45, var(--max) * 45);
  background-color: #b93;
}

.modal-university-info {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.modal-university-name {
  color: #000;
  letter-spacing: 0.04em;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  font-family: var(--fontSans);
  line-height: 1.5;
}

.modal-university-teacher {
  color: #000;
  letter-spacing: 0.04em;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  font-family: var(--fontSans);
  line-height: 1.5;
}

.modal-university-body {
  padding: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16) clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30) clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  color: #000;
  font-weight: var(--weightRegular);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  font-family: var(--fontSerif);
  line-height: 1.5;
}

.modal-container-image {
  position: relative;
  padding: clamp(0px, 10vw / var(--board) * 10 * 60, var(--max) * 60) clamp(0px, 10vw / var(--board) * 10 * 20, var(--max) * 20);
  background-color: #fff;
}
.modal-container-image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  height: clamp(0px, 10vw / var(--board) * 10 * 32, var(--max) * 32);
  background-color: #b93;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
}

.modal-image-body {
  overflow: hidden;
}

.modal-image-content {
  width: 100%;
  height: auto;
}

.modal-image-title {
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 4, var(--max) * 4);
  color: #000;
  text-align: center;
  font-weight: var(--weightRegular);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  font-family: var(--fontSans);
}

/* ========================================
   サンクスページ
   ======================================== */
.thanks-bar {
  position: absolute;
  width: 100%;
  height: clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
}

.thanks-bar-image {
  width: 100%;
  height: auto;
}

.thanks {
  overflow-y: scroll;
  padding: clamp(0px, 10vw / var(--board) * 10 * 100, var(--max) * 100) clamp(0px, 10vw / var(--board) * 10 * 40, var(--max) * 40);
  height: 100vh;
  height: 100dvh;
}

.thanks-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(0px, 10vw / var(--board) * 10 * 300, var(--max) * 300);
  height: 100%;
}

.thanks-title {
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 12, var(--max) * 12);
  color: var(--colorMain);
  text-align: center;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 24, var(--max) * 24);
  font-family: var(--fontSerif);
  line-height: 1.33;
}

.thanks-line {
  display: block;
  width: clamp(0px, 10vw / var(--board) * 10 * 55, var(--max) * 55);
  height: 1px;
  background-color: var(--colorMain);
}

.thanks-text {
  margin-top: clamp(0px, 10vw / var(--board) * 10 * 25, var(--max) * 25);
  margin-bottom: clamp(0px, 10vw / var(--board) * 10 * 47, var(--max) * 47);
  width: clamp(0px, 10vw / var(--board) * 10 * 295, var(--max) * 295);
  color: #666;
  text-align: left;
  font-size: clamp(0px, 10vw / var(--board) * 10 * 16, var(--max) * 16);
  line-height: 1.75;
}

.thanks-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(0px, 10vw / var(--board) * 10 * 285, var(--max) * 285);
  height: clamp(0px, 10vw / var(--board) * 10 * 60, var(--max) * 60);
  border-radius: clamp(0px, 10vw / var(--board) * 10 * 30, var(--max) * 30);
  background-color: var(--colorMain);
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: var(--weightBold);
  font-size: clamp(0px, 10vw / var(--board) * 10 * 18, var(--max) * 18);
  transition: opacity var(--speed);
}
@media (hover: hover) {
  .thanks-button:hover {
    opacity: 0.7;
  }
}

.thanks + .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
