@charset "UTF-8";
/* foundation/_reset.scss */
/* Box sizing & margin reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* HTML5 display reset */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}

/* Full height */
html, body {
  height: 100%;
}

/* Base font handled in _base.scss */
body {
  font-family: sans-serif;
}

/* Media */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Form elements */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* foundation/_function.scss */
/* 単位除去 */
/* pxをremに変換 */
/* 透過カラー */
/* foundation/_mixin.scss */
/* foundation/_base.scss */
html {
  font-size: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.is-text-link:hover, a.is-text-link:focus {
  opacity: 0.7;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ================================
  Wrapper（全体構造）
================================ */
.l-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

/* ================================
  Main（メインエリア）
================================ */
.l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ================================
  セクションの共通余白
================================ */
.l-sec {
  padding: 50px 0;
  padding: 3.125rem 0;
}
.l-sec--small {
  padding: 40px 0;
  padding: 2.5rem 0;
}
.l-sec--large {
  padding: 120px 0;
  padding: 7.5rem 0;
}

/* ================================
   コンテナ（中央寄せ、幅制限）
================================ */
.l-container {
  width: 89%;
  max-width: 720px;
  max-width: 45rem;
  margin: 0 auto;
}

/* ================================
   グリッドシステム（モバイルファースト）
================================ */
.l-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ================================
   グリッドアイテム span
================================ */
/* PC用（lg） */

/* タブレット用（md） */

/* モバイル用（デフォルト） */
.l-grid__col--sm-1 {
  grid-column: span 1;
}

.l-grid__col--sm-2 {
  grid-column: span 2;
}

.l-grid__col--sm-3 {
  grid-column: span 3;
}

.l-grid__col--sm-4 {
  grid-column: span 4;
}

.l-header {
  background-color: #F5A623;
  text-align: center;
  padding: 15px;
  /* 高さを固定し、縮まないようにする */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-bottom: 1px solid #ddd;
}
.l-header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-header h1 img {
  width: 15%;
  height: auto;
}

.l-footer {
  padding: 24px 0;
  padding: 1.5rem 0;
  background-color: #F5A623;
  color: #fff;
  text-align: center;
  position: sticky;
  bottom: 0;
  width: 100%;
}

/* ================================
   共通ボタンクラス
================================= */
.c-btn {
  display: inline-block;
  padding: 19.2px 40px;
  padding: 1.2rem 2.5rem; /* 少し余白アップ */
  font-size: 22.4px;
  font-size: 1.4rem; /* 文字サイズアップ */
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7a440), to(#e37b27));
  background: linear-gradient(to bottom, #f7a440, #e37b27);
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, .2);
          box-shadow: 0 6px 14px rgba(0, 0, 0, .2); /* 影もちょっと強めに */
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  transition: transform 0.2s ease, box-shadow 0.3s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.3s ease;
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, .3);
  border-radius: 9999px 9999px 0 0;
}

.c-btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px); /* 少し上げ幅もアップ */
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
          box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.c-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  padding: 14.4px 32px;
  padding: 0.9rem 2rem;
  color: #fff;
  background: linear-gradient(135deg, #0070f3, #005ad1);
  border-radius: 9999px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 112, 243, .3);
          box-shadow: 0 4px 12px rgba(0, 112, 243, .3);
  -webkit-transition: background-color 0.3s, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.3s, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.3s;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.3s, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}

.c-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 112, 243, .35);
          box-shadow: 0 6px 16px rgba(0, 112, 243, .35);
  background: linear-gradient(135deg, #005ad1, #003caa);
}

.c-button:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-box-shadow: 0 2px 6px rgba(0, 112, 243, .25);
          box-shadow: 0 2px 6px rgba(0, 112, 243, .25);
}

/* 大きめボタン */
.c-button--large {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 16px 40px;
  padding: 1rem 2.5rem;
}

/* モバイル最適化 */
.c-button-back {
  text-align: center;
  padding: 50px 0;
}

.c-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-list-wrapper .c-list {
  display: inline-block;
  text-align: left;
}
.c-list-wrapper .c-list li {
  font-size: 16px;
  font-size: 1rem;
}

/* --- ガイダンスリストのスタイル --- */
.c-list-guidance {
  display: grid;
  grid-template-columns: minmax(80px, 30%) 1fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 19.2px;
  row-gap: 1.2rem;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  font-size: 15.2px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.c-list-guidance dt {
  font-weight: bold;
  width: 60%;
}

.c-list-guidance dd {
  margin: 0;
  margin-bottom: 10px;
}

.c-list-guidance small {
  font-size: 12.8px;
  font-size: 0.8rem;
  color: #666;
}

/* PC向け微調整 */
/* object/component/_heading.scss */
.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.c-heading::before {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  margin-right: 15px;
}
.c-heading::after {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  margin-left: 15px;
}

.c-heading::before,
.c-heading::after {
  width: 3px;
  height: 40px;
  background-color: #2589d0;
  content: "";
}

.c-heading-sub {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.c-secTTL {
  padding: 0.5em 0.7em;
  border: 2px solid #2589d0;
  -webkit-box-shadow: 5px 5px #2589d0;
          box-shadow: 5px 5px #2589d0;
  color: #2589d0;
  background-color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.schedule-wrapper {
  width: 100%;
  max-width: 100%;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 明示的に2列にする */
  gap: 16px;
  gap: 1rem;
  padding: 0 16px;
  padding: 0 1rem;
}

.week-box {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  padding: 1rem;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
}

.week-box h3 {
  color: #f68000;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
}

.week-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.week-box ul li {
  font-size: 16px;
  font-size: 1rem;
}
.p-overview__concept {
  margin: 0 auto;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  max-width: 960px;
  max-width: 60rem;
  width: 100%;
}
.p-overview__concept-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  padding: 2rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
          box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-overview__brick-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 72px;
  width: 4.5rem;
  height: auto;
}
.p-overview__concept-title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
  text-align: left;
  max-width: 720px;
  max-width: 45rem;
  width: 100%;
}
.p-overview__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
  margin: 48px auto;
  margin: 3rem auto;
  max-width: 960px;
  max-width: 60rem;
}

.p-certification {
  width: 20%;
  margin: 0 auto;
}
.p-certification .p-name {
  font-size: 18px;
  font-size: 1.125rem;
  padding-bottom: 5px;
}
.p-certification img {
  width: 100%;
  height: auto;
}

.p-hero {
  position: relative;
  background: url("/assets/images/hero-sp.png") no-repeat center center;
  background-size: cover;
  height: auto;
  aspect-ratio: 1125/649;
  padding: 0;
}
.p-hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-hero .c-line-btn {
  position: absolute;
  top: 68%;
  left: 33%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30%;
  max-width: 360px;
}
.p-hero .c-line-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.p-terms {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FAFAF7;
  color: #2C2C2C;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
.p-terms h1 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  border-bottom: 2px solid #DDDDDD;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
.p-terms h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 32px;
  margin-top: 2rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  color: #005BAC;
  position: relative;
  padding-left: 1em;
}
.p-terms h2::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #005BAC;
  font-size: 0.9em;
}
.p-terms p {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.p-terms ul {
  margin-left: 1.5em;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.p-terms ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
}
.p-terms dl {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.p-terms dl dt {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  color: #005BAC;
}
.p-terms dl dd {
  margin: 0 0 16px 0;
  margin: 0 0 1rem 0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: #2C2C2C;
}

.p-legal__footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}
.p-legal__footer-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.p-legal__footer-links a:hover {
  border-bottom: 1px solid #A6A6A6;
}

.c-legal-wrap {
  overflow-y: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #fff;
}
.c-legal-wrap .c-legal__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  text-align: center;
}
.c-legal-wrap .c-legal__lead {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.c-legal-wrap .c-legal__term {
  background-color: #eaf7fc;
  font-weight: bold;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}
.c-legal-wrap .c-legal__desc {
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  background-color: #fff;
  margin-left: 0px;
  margin-left: 0rem;
}
.c-legal-wrap .c-legal__desc a {
  color: #2C2C2C;
  text-decoration: underline;
}
.c-legal-wrap .c-legal__list {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.c-legal-wrap .c-legal__list li {
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
.c-legal-wrap .c-legal__footer {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #A6A6A6;
}

.curriculum-summary {
  width: 100%;
  margin: 0 auto;
}
.curriculum-summary h2 {
  text-align: center;
  font-size: 28.8px;
  font-size: 1.8rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  color: #2589d0;
}
.curriculum-summary .course {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #2589d0;
  padding-left: 16px;
  padding-left: 1rem;
}
.curriculum-summary .course h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  margin: 0 0 4.8px;
  margin: 0 0 0.3rem;
}
.curriculum-summary .course p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  margin: 0;
}

.p-lp__copyright {
  font-size: 12px;
  font-size: 0.75rem;
  color: #2C2C2C;
  text-align: center;
}

.p-cta-wrapper {
  text-align: center;
  padding-bottom: 80px;
}
.p-cta {
  background: #F3F3F0;
  text-align: center;
  padding: 48px 24px;
  padding: 3rem 1.5rem;
}
.p-cta__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.p-cta__special {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #F5A623;
}
.p-cta strong {
  color: red;
  font-weight: bold;
}
.p-cta__button {
  margin: 30px 0;
}
.p-line__link {
  font-size: 14px;
  font-size: 0.875rem;
  color: #2C2C2C;
  text-align: center;
  margin-bottom: 30px;
}
.p-line__link a {
  color: #2C2C2C;
  font-weight: bold;
  text-decoration: underline;
}
.p-line__qr img {
  width: 10%;
  max-width: 200px;
  margin: 0 auto;
}

.p-schedule-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mt-12 {
  margin-top: 12px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mr-4 {
  margin-right: 4px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-mr-12 {
  margin-right: 12px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-mb-12 {
  margin-bottom: 12px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-4 {
  margin-left: 4px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-ml-12 {
  margin-left: 12px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mx-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.u-mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.u-mx-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.u-mx-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.u-mx-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.u-mx-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.u-my-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.u-my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.u-my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-pt-4 {
  padding-top: 4px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pt-12 {
  padding-top: 12px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pr-4 {
  padding-right: 4px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-pr-12 {
  padding-right: 12px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-pb-4 {
  padding-bottom: 4px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pb-12 {
  padding-bottom: 12px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pl-4 {
  padding-left: 4px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pl-12 {
  padding-left: 12px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-px-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.u-px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.u-px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.u-px-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.u-px-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.u-px-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.u-py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.u-py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.u-py-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* utility/_text.scss */
.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-bold {
  font-weight: bold !important;
}

.u-text-normal {
  font-weight: normal !important;
}

.u-text-small {
  font-size: 14px !important;
  font-size: 0.875rem !important;
}

.u-text-large {
  font-size: 20px !important;
  font-size: 1.25rem !important;
}

.u-arrow {
  font-size: 24px;
  font-size: 1.5rem;
  color: red;
  font-weight: bold;
}

.u-price-highlight {
  color: #F05A28;
}

.strikethrough {
  text-decoration: line-through;
}

/* utility/_hidden.scss */
.u-hidden {
  display: none !important;
}

/* utility/_color.scss */
.u-color-text {
  color: #2C2C2C !important;
}

.u-color-primary {
  color: #F5A623 !important;
}

.u-color-secondary {
  color: #005BAC !important;
}

.u-color-accent {
  color: #FFD580 !important;
}

.u-color-white {
  color: #fff !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-bg-gray {
  z-index: -999;
  background-color: #F3F3F0 !important;
}

.u-bg-accent {
  background-color: #FFD580 !important;
}

.u-em-orange {
  color: #F5A623;
  font-weight: bold;
}

.u-em-blue {
  color: #005BAC;
  font-weight: bold;
}

.u-delay--s {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.u-delay--m {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.u-delay--l {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.u-animate-init {
  opacity: 0;
}

.u-animate--fade-up.is-animated {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .l-sec {
    padding: 3rem 0;
  }
  .l-sec--small {
    padding: 1.5rem 0;
  }
  .l-sec--large {
    padding: 4rem 0;
  }
  .u-hidden--sp {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .l-container {
    width: 100%;
    max-width: 73.75rem;
  }
  .l-grid {
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 24px;
  }
  .l-grid__col--lg-1 {
    grid-column: span 1;
  }
  .l-grid__col--lg-2 {
    grid-column: span 2;
  }
  .l-grid__col--lg-3 {
    grid-column: span 3;
  }
  .l-grid__col--lg-4 {
    grid-column: span 4;
  }
  .l-grid__col--lg-5 {
    grid-column: span 5;
  }
  .l-grid__col--lg-6 {
    grid-column: span 6;
  }
  .l-grid__col--lg-7 {
    grid-column: span 7;
  }
  .l-grid__col--lg-8 {
    grid-column: span 8;
  }
  .l-grid__col--lg-9 {
    grid-column: span 9;
  }
  .l-grid__col--lg-10 {
    grid-column: span 10;
  }
  .l-grid__col--lg-11 {
    grid-column: span 11;
  }
  .l-grid__col--lg-12 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .l-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
  }
  .l-grid__col--md-1 {
    grid-column: span 1;
  }
  .l-grid__col--md-2 {
    grid-column: span 2;
  }
  .l-grid__col--md-3 {
    grid-column: span 3;
  }
  .l-grid__col--md-4 {
    grid-column: span 4;
  }
  .l-grid__col--md-5 {
    grid-column: span 5;
  }
  .l-grid__col--md-6 {
    grid-column: span 6;
  }
  .l-grid__col--md-7 {
    grid-column: span 7;
  }
  .l-grid__col--md-8 {
    grid-column: span 8;
  }
  .c-list-wrapper .c-list li {
    font-size: 1.5rem;
  }
  .c-list-guidance dt {
    width: 50%;
  }
  .c-list-guidance {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .c-list-guidance dt {
    white-space: nowrap;
  }
  .c-heading {
    font-size: 2.25rem;
  }
  .c-heading-sub {
    font-size: 1.75rem;
  }
  .c-secTTL {
    width: 50%;
    font-size: 1.6875rem;
  }
  .p-overview__concept-title {
    font-size: 1.125rem;
  }
  .p-hero {
    background: url("/assets/images/hero.png") no-repeat center center;
    background-size: cover;
    aspect-ratio: 16/9;
  }
  .p-hero .c-line-btn {
    top: 75%;
    left: 33%;
    width: 30%;
    max-width: 420px;
  }
  .curriculum-summary {
    max-width: 450px;
  }
  .curriculum-summary .course h3 {
    font-size: 1.5rem;
  }
  .curriculum-summary .course p {
    font-size: 1.125rem;
  }
  .p-cta {
    padding: 3rem 0;
  }
  .p-cta__text {
    font-size: 1.125rem;
  }
  .p-cta__special {
    font-size: 1.25rem;
  }
  .p-line__link {
    font-size: 1.125rem;
  }
  .p-schedule-wrapper {
    padding: 50px 40px;
  }
  .u-hidden--pc {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .c-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .schedule-grid {
    grid-template-columns: 1fr; /* スマホは1列 */
  }
}

@media (max-width: 599px) {
  .p-terms dl dt, .p-terms dl dd {
    font-size: 0.95rem;
  }
  .p-terms {
    padding: 30px 16px;
  }
  .p-terms h1 {
    font-size: 1.5rem;
  }
  .p-terms h2 {
    font-size: 1.125rem;
  }
  .p-terms p,
  .p-terms ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .p-legal__footer-links {
    gap: 1rem;
    font-size: 0.8rem;
  }
}
/*# sourceMappingURL=maps/style.css.map */
