@charset "UTF-8";

/* =======================================
   Keyframes (custom.cssより)
   ======================================= */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* =======================================
   Root Variables (common.cssにな??また?上書きされる変数のみ)
   ======================================= */
:root {
    /* style.cssからの追加/固有?カラー変数 */
    --card-pink: #c35462;
    --card-pink-header: #c36a75;
    --card-orange: #d16b5e;
    --card-orange-header: #d18075;
    --card-blue: #29609e;
    --card-blue-header: #48719e;
    --text-primary: #111;
    --text-secondary: #555;
    /* CTAセクションのト?クン (common.cssには?部のみ存在するため全体を保持) */
    --cta-red-start:#e63946;
    --cta-red-end:#e64b46;
    --cta-orange-start:#ff8c42;
    --cta-orange-end:#f0892c;
    --cta-text:#222;
    --cta-shadow:0 14px 36px rgba(0,0,0,.10);
    --cta-radius:28px;
    --cta-pill-radius:15px;

    /* CONTENTS02セクションのト?クン (common.cssには?部のみ存在するため全体を保持) */
    --c-text:#1b1d1f;
    --c-border:#e6e8ec;
    --shadow-1:0 10px 30px rgba(16,24,40,.08);
    --r-xl:24px;
    --r-2xl:28px;
    --business:#3e6364;
    --business-weak:#e5ecea;
    --tab-bw: 4px;
}


/* =======================================
   Base & Reset (custom.cssの定義を優先し、common.cssの重?削除)
   ======================================= */
html {
  font-size: 62.5%;
}

img {
  vertical-align: bottom;
}

.img-fluid {
  width: var(--width-pc) !important;
  height: auto;
  max-width: none;
}

/* =======================================
   Layout & Utility (common.cssにな??また?上書きするスタイル)
   ======================================= */
.common-content {
    margin: 0 40px; /* style.css */
}
.main {
  margin-top: 13.4rem; /* common.cssのmargin-topを上書? */
}
.main__block {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.main .container {
  max-width: 1400px;
}
.wp-site-blocks .is-layout-constrained{
    max-width: var(--wp--style--global--content-size,1100px); /* style.css */
    margin-inline:auto; /* style.css */
    padding-inline:clamp(16px,4vw,40px); /* style.css */
}
.wp-site-blocks .alignwide{
    max-width: var(--wp--style--global--wide-size,1280px); /* style.css */
    margin-inline:auto; /* style.css */
}

/* custom.css */
.w-md {
  max-width: 99rem;
  margin-right: auto;
  margin-left: auto;
}
.bg-01 {
  background-color: #f8f9fa;
}
.bg-02 {
  background-color: #e3f2fd;
}
.bg-map {
  position: relative;
}
.bg-map::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("/assets/page_images/map/map/map-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 40%;
}

/* Heading */
.heading__01 {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 3.2rem;
}
.heading__01 .color01 {
  color: #2ea4a4;
}
.heading__01 .color02 {
  color: #008fd1;
}
.heading__01 .deco01 {
  margin-top: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.heading__01 .deco01 > span {
  width: 1rem;
  border-radius: 50%;
  background-color: #cbcbcb;
  aspect-ratio: 1;
}
.heading__01 .deco01 > span:nth-child(1) {
  background-color: #1b8ece;
}
.heading__01 .deco01 > span:nth-child(2) {
  background-color: #666;
}
.heading__01 .deco01 > span:nth-child(3) {
  background-color: #848485;
}
.heading__01 .deco01 > span:nth-child(4) {
  background-color: #a5a5a5;
}
.heading__01 .deco01 > span:nth-child(5) {
  background-color: #cbcbcb;
}
.heading__02 {
  margin-bottom: 0.5em;
  padding-left: 0.5em;
  border-left: 6px solid #008fd1;
  letter-spacing: 0.1em;
  font-size: 3.1rem;
  line-height: 1.5;
}
.heading__02 span {
  color: #008fd1;
}
.heading__02 .large {
  font-size: 5.2rem;
  line-height: 1;
}
.heading__03 {
  margin-bottom: 6rem;
  padding-left: 0.5em;
  border-left: 6px solid #008fd1;
  letter-spacing: 0.1em;
  font-size: 3.1rem;
  line-height: 1.5;
}
.heading__03 .heading-visual {
  width: 8.5rem;
}
.heading__03--text01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.heading__03--text02 {
  display: inline-block;
  font-size: 1.8rem;
}

/* Text & Image */
.highlight-yel {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, yellow), color-stop(40%, transparent));
  background: linear-gradient(to top, yellow 50%, transparent 40%);
}
.text-bold {
  font-weight: 700;
}
.text-medium {
  font-weight: 500;
}
.text-lead {
  font-weight: 500;
  font-size: 1.8rem;
}
.text-en {
  font-family: "din-2014", sans-serif;
}
.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Spacing */
.lh-2 {
  line-height: 2;
}
.mb-1 {
  margin-bottom: 1em;
}
.mb-2 {
  margin-bottom: 2em;
}
.pb-0 {
  padding-bottom: 0 !important;
}

/* Tab */
.tab-button {
  border: none;
  background-color: #e6e6e6;
  cursor: pointer;
}
.tab-button.tab--active {
  background-color: #fff;
}
.tab-panel {
  display: none;
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.tab-panel.tab-panel--active {
  display: block;
}


/* =======================================
   Header & Nav (common.cssにな??また?上書きするスタイル)
   ======================================= */
.header {
    font-family: var(--ff-hiragino); /* style.css/common.cssのfont-familyの上書? */
}
.nav-link .icon-01{ width: 23px; } /* style.css */
.nav-link .icon-02{ width: 20px; } /* style.css */
.icon {
    width: 16px; /* style.css */
    height: 16px; /* style.css */
    background-color: #198fce; /* style.css */
    border-radius: 2px; /* style.css */
    position: relative; /* style.css */
}
.icon-book::before {
    content: '📚'; /* style.css */
    position: absolute; /* style.css */
    left: 50%; /* style.css */
    top: 50%; /* style.css */
    transform: translate(-50%, -50%); /* style.css */
    font-size: 12px; /* style.css */
}
.icon-map::before {
    content: '📍'; /* style.css */
    position: absolute; /* style.css */
    left: 50%; /* style.css */
    top: 50%; /* style.css */
    transform: translate(-50%, -50%); /* style.css */
    font-size: 12px; /* style.css */
}
.nav-list a.active {
    color: #198fce; /* style.css */
}
.nav-list a.active::after {
    background-color: #198fce; /* style.css */
}

/* Hamburger (sp.css) */
.hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: .3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }


/* Mobile Menu (sp.css/style.cssの固有設?) */
.mobile-menu__inner {
    display: none; /* style.css/common.cssから残す */
}
.mobile-menu__btn{ /* sp.css: flexの上書? */
    position: relative;
    display: block;
    text-align: center;
    padding-right: 44px;
}
.mobile-menu__btn > span{ /* sp.css: 右端の›を絶対配置 */
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-weight: 900;
}
.mobile-menu__close, .mobile-menu__bottom-close{ /* sp.css: xボタンの配置 */
    position: absolute;
    right: 16px;
    top: 19px;
}


/* =======================================
   Hero / Cards (style.cssの固有設?)
   ======================================= */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 23px;
    margin-bottom: -56px;
}
.hero .container {
    display: flex;
    align-items: center;
    width: 100%;
}
.hero-layout {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 800px;
}
.hero-left {
    display: flex;
    flex-direction: column;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.hero-bg img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    filter: none;
    opacity: 1;
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-bg::after {
    display: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #111;
    text-align: left;
    padding-top: 80px;
    padding-bottom: 60px;
    margin: 0;
}
.hero-lead {
    font-size: 24px;
    font-weight: bold;
    color: #198fce;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.4;
}
.hero-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #111;
    background-color: #ffff;
    width: 537px;
}
.hero-title_02 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #111;
    background-color: #ffff;
    width: 580px;
}
.hero-title-line {
    display: block;
    letter-spacing: 0.07em;
    padding-left: 23px;
}
.hero-title-highlight {
    color: #198fce;
}
.hero-subtitle {
    font-size: 19px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.hero-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-family: var(--ff-hiragino);
    font-weight: 600;
    font-size: 17px;
    min-height: 180px;
}
.hero-card {
    min-width: 220px;
}
.hero-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.hero-card-header {
    padding: 12px 10px;
    text-align: center;
}
.hero-card-header h3 {
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    font-size: 17px;
}
.hero-card-left .hero-card-header {
    background-color: #c35462;
}
.hero-card-left .hero-card-content h4 {
    color: #c35462;
    line-height: 1.1;
    font-size: 28px;
}
.hero-card-left .hero-card-button span {
    color: #c35462;
    border-color: #c35462;
}
.hero-card-center .hero-card-header {
    background-color: #d16b5e;
}
.hero-card-center .hero-card-content h4 {
    color: #d16b5e;
    line-height: 1.2;
}
.hero-card-center .hero-card-content h4 .h4-large {
    font-size: 27px;
    font-family: var(--ff-hiragino);
    font-weight: 600;
    letter-spacing: 0.9px;
}
.hero-card-center .hero-card-content h4 .h4-small {
    font-size: 16px;
    font-weight: 500;
}
.hero-card-center .hero-card-button span {
    color: #d16b5e;
    border-color: #d16b5e;

}
.hero-card-right .hero-card-header {
    background-color: #29609e;
}
.hero-card-right .hero-card-content h4 {
    color: #29609e;
    font-size: 28px;
    line-height: 1.2;
}
.hero-card-right .hero-card-button span {
    color: #29609e;
    border-color: #29609e;
}
.hero-card-left:hover .hero-card-button span {
    color: #fff;
}
.hero-card-center:hover .hero-card-button span {
    color: #fff;
}
.hero-card-right:hover .hero-card-button span {
    color: #fff;
}
.hero-card-left:hover .hero-card-button {
    background: #c35462;
    color: #fff;
}
.hero-card-center:hover .hero-card-button {
    background: #d16b5e;
    color: #fff;
}
.hero-card-right:hover .hero-card-button {
    background: #29609e;
    color: #fff;
}
.hero-card-content {
    padding: 12px 0px;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-card-content.red {
    background-color: #F7E9EB;
}
.hero-card-content.orange {
    background-color: #F6DEDB;
}
.hero-card-content.blue {
    background-color: #C7D9E7;
}
.hero-card-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    height: 70px;
}
.hero-card-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}
.hero-card-icon.red img {
    width: 69px;
    object-fit: contain;
}
.hero-card-icon.orange img {
    width: 61px;
    object-fit: contain;
}
.hero-card-icon.blue img {
    width: 74px;
    object-fit: contain;
}
.hero-card-content h4 {
    margin: 0;
}
.hero-card-subtitle {
    font-size: 0.75rem;
    color: #666;
    font-weight: normal;
    margin: 0;
    line-height: 1.2;
}
.hero-card-button {
    background: #fff;
    padding: 5px 0px;
    border-radius: 20px;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-card-button span {
    display: inline-block;
    font-size: 16px;
    letter-spacing: -0.9px;
}
.hero-tags {
    display: flex;
    gap: 15px;
    margin-top: 0;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #c1d9f0;
    width: 557px;
}
.hero-tag {
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.hero-features .feature-item {
    background: #009fe8;
    color: #fff;
    text-align: center;
    padding: 18px 20px;
    border-radius: 4px;
    flex: 1;
}
.hero-features .feature-item p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: normal;
}
.hero-features .highlight {
    color: #ffeb00;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    display: inline-block;
    margin-top: 4px;
}
.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}

/* =======================================
   CTA (style.cssの固有設?)
   ======================================= */
.cta{
    position: relative;
    padding: 32px 0 48px;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Segoe UI", sans-serif;
    color: var(--cta-text);
    overflow: hidden;
}
.cta .cta-background{
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.cta .cta-background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.95) brightness(1.02);
}
.cta .container{
    position: relative;
    z-index: 1;
}
.cta-container{
    position: relative;
    background: #fff;
    border-radius: var(--cta-radius);
    box-shadow: var(--cta-shadow);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    overflow: hidden;
}

.cta-block{
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
    min-height: 0;
}
.cta-text h3{
    font-weight: 600;
    font-size: 19px;
    letter-spacing: normal;
}
.cta-text{
    text-align: center;
}
.cta-text p{
    font-size: 19px;
    font-weight: 600;
    letter-spacing: normal;
}
.cta-button-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100px;
    justify-content: center;
    --btn-w: min(100%, 400px);
}
.cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--cta-pill-radius);
    padding: 24px 8px 26px;
    min-height: 88px;
    width: var(--btn-w);
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.25);
    color: #fff;
    position: relative;
    transition: transform .08s ease, filter .2s ease, box-shadow .2s ease;
    font-size: 26px;
}
.cta-btn-red{
    background: linear-gradient(180deg, var(--cta-red-start), var(--cta-red-end));
}
.cta-btn-orange{
    background: linear-gradient(180deg, var(--cta-orange-start), var(--cta-orange-end));
}
.cta-btn:hover{
    transform: translateY(-1px);
    filter: saturate(1.05) brightness(1.02);
    box-shadow: 0 14px 28px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.3);
}
.cta-image{
    position: absolute;
    bottom: 6px;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}
.cta-block-left .cta-image{
    left: calc(50% - (var(--btn-w) / 2) - 55px);
    transform: translateY(6px);
    width: 17%;
    max-width: 99px;
    min-width: 88px;
}
.cta-block-right .cta-image{
    left: calc(50% - (var(--btn-w) / 2) - 80px);
    top: -18px;
    width: 27%;
    max-width: 147px;
}
.cta-btn .btn-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.cta-btn .btn-arrow {
    margin-left: auto;
    font-size: 28px;
    line-height: 1;
}
.wp-block-button.cta-btn .wp-block-button__link{
    display:flex; align-items:center; justify-content:center;
    text-decoration:none; border-radius:var(--cta-pill-radius);
    padding:24px 8px 26px; min-height:88px; width:var(--btn-w);
    font-weight:600; letter-spacing:.02em; line-height:1; white-space:nowrap; color:#fff; font-size:26px;
    box-shadow:0 10px 22px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.25);
    transition:transform .08s ease, filter .2s ease, box-shadow .2s ease;
}
.wp-block-button.cta-btn.cta-btn-red    .wp-block-button__link{ background:linear-gradient(180deg,var(--cta-red-start),var(--cta-red-end)); }
.wp-block-button.cta-btn.cta-btn-orange .wp-block-button__link{ background:linear-gradient(180deg,var(--cta-orange-start),var(--cta-orange-end)); }
.wp-block-button.cta-btn .wp-block-button__link .btn-text{ position:absolute; left:50%; transform:translateX(-50%); text-align:center; }
.wp-block-button.cta-btn .wp-block-button__link .btn-arrow{ margin-left:auto; font-size:28px; line-height:1; }
.wp-block-button.cta-btn .wp-block-button__link:hover{
    transform:translateY(-1px); filter:saturate(1.05) brightness(1.02);
    box-shadow:0 14px 28px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.3);
}

/* =======================================
   CONTENTS01 (style.cssの固有設?)
   ======================================= */
.contents01 {
    padding: 80px 0;
    background: #f8f9fa;
}
.contents01-bubble {
    background: #fff;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
}
.contents01-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}
.contents01-bubble p {
    font-size: 16px;
    margin: 0;
    color: #333;
}
.contents01-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}
.contents01-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: stretch;
    max-width: 825px;
    margin: 0 auto;
}
.contents01-card {
    --brand: #198fce;
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}
.contents01-card::before {
    content: "";
    display: block;
    height: 4px;
    background: var(--brand);
}
.contents01-card.contents01-card-right {
    --brand: #3e6364;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.contents01-card.contents01-card-right .contents01-card-content,
.contents01-card.contents01-card-right .contents01-image-title {
    background: transparent;
}
.contents01-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 18px;
    background: #ffffff;
}
.contents01-card-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #334155;
}
.contents01-card.contents01-card-left .contents01-card-header h3 {
    color: #29609e;
}
.contents01-card.contents01-card-right .contents01-card-header h3,
.contents01-card-header.right h3 {
    color: #3e6364;
}
.contents01-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex: 0 0 26px;
}
.contents01-card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}
.contents01-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contents01-image-title {
    padding: 18px 0;
}
.contents01-image-title h4 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #198fce;
    text-align: center;
}
.contents01-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.contents01-card-content::before {
    content: "";
    display: block;
    height: 2px;
    background: #198fce;
    margin-bottom: 2px;
}
.contents01-card-content .contents01-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    margin-top: auto;
}
.contents01-card-content h5,
.contents01-card-content p {
    margin: 0;
}
.bullet-list{
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    height: 85px;
}
.bullet-list li {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 700;
}
.bullet-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: #198fce;
    font-weight: 900;
    font-size: 14px;
}
.contents01-btn {
    --btn-h: 56px;
    min-height: var(--btn-h);
    padding: 0 26px;
}
.contents01-card-content .contents01-btn {
    margin-top: auto;
}
.contents01-btn {
    --btn: #198fce;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    text-decoration: none;
    background: #fff;
    color: var(--btn);
    font-weight: 900;
    font-size: 17px;
    border: 2px solid var(--btn);
    box-shadow: 0 8px 22px rgba(25, 143, 206, .25);
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
}
.contents01-btn .btn-arrow {
    display: inline-grid;
    place-items: center;
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
    color: var(--btn);
    background: #fff;
}
.contents01-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(25, 143, 206, .32);
    background: #f3f9fe;
}
.contents01-btn:hover .btn-arrow {
    background: #f3f9fe;
}
.contents01-btn {
    --btn: var(--brand);
    color: var(--btn);
    border-color: var(--btn);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}
.contents01-btn .btn-arrow {
    border-color: var(--btn);
    color: var(--btn);
}
.contents01-btn {
    position: relative;
    padding: 0 26px;
}
.contents01-btn .btn-arrow {
    position: absolute;
    right: 26px;
    top: 41%;
    transform: translateY(-50%);
}
.contents01-btn .btn-text {
    flex-grow: 1;
    text-align: center;
}
.contents01-btn.right {
    border: unset;
}
.wp-block-buttons>.wp-block-button.wp-block-button__width-75 {
    border: unset;
    width: 0 !important;
}
.wp-block-buttons{
    margin-top: auto;
    align-self: center;
}

/* =======================================
   CONTENTS02 (style.cssの固有設?)
   ======================================= */
.cat-tab[data-accent="business"] {
    --tab-accent: var(--business);
    --tab-weak: var(--business-weak);
}
.cat-tabset[data-accent="business"] {
    --accent: var(--business);
    --accent-weak: var(--business-weak);
}
.contents02{padding:72px 0;background:#fff;color:var(--c-text);}
.contents02 .container{max-width:1100px;margin:0 auto;padding:0 20px;}
.contents02-header{
    text-align:center;
    position: relative;
}
.contents02-label{
    display:inline-block;
    background:#fff;
    padding: 13px 47px;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: .07em;
    line-height:1.2;
    color:#1b1d1f;
    box-shadow: 0 0 6px rgba(0,0,0,.2);
    position:relative;
}
.contents02-label::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom: -19px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 22px solid #fff;
    filter: drop-shadow(0 3px 2px rgba(16,24,40,.12));
}
.contents02-label .label-accent{
    color: #198fce;
    font-weight: bold;
}
.contents02-title{
    margin:25px 0 0;
    font-size:36px;
    font-weight: bold;
    letter-spacing: .08em;
    color:#15171a;
    margin-bottom: 20px;

}
.contents02-title .title-accent{
    color: #198fce;
}
.contents02-section{
    position:relative;
    margin-bottom: 67px;
}
.contents02-background{
    font-family: 'Oswald', sans-serif;
    position: absolute;
    left: 16px;
    top: 46px;
    z-index: 0;
    pointer-events: none;
    font-size: 118px;
    font-weight: 900;
    line-height: 1;
    color: rgba(11, 18, 34, 0.07);
}
.contents02-section-meta{
    position:relative; z-index:1;
    display:inline-flex; flex-direction:column; align-items:flex-start;
    gap:8px;
    margin: 0 0 0 28px;
    height: 46px;
}
.section-mini-title{
    font-size: 18px;
    font-weight: 600;
    color: #1b1d1f;
}
.section-dots{ display:flex;}
.section-dots .dot{
    width:10px; height:10px; border-radius:50%;
    background:#b7bdc6;
}
.section-dots .dot:nth-child(1){ background:#198fce; }
.section-dots .dot:nth-child(2),
.section-dots .dot:nth-child(3){ background:#9aa6b2; }
.section-dots .dot:nth-child(4),
.section-dots .dot:nth-child(5){ background:#d0d5db; }
.contents02-section .contents02-section-title::before{ display:none; }
.contents02-section-title{
    position:relative;z-index:1;font-size:31px;font-weight:700;margin:5px 0 18px 0;padding-left:28px;letter-spacing: -0.9px;
}
.contents02-section-title::before{
    content:"";position:absolute;left:0;top:.58em;width:18px;height:6px;
    background:
            radial-gradient(circle at 3px 3px, #0F172A 4px, transparent 5px),
            radial-gradient(circle at 9px 3px, #94A3B8 4px, transparent 5px),
            radial-gradient(circle at 15px 3px, #CBD5E1 4px, transparent 5px);
    background-size:6px 6px; background-repeat:no-repeat;
}

/* ====== Tabset ====== */
.cat-tabset{ --accent:var(--pink); --accent-weak:var(--pink-weak); }
.cat-tabset[data-accent="orange"]{ --accent:var(--orange); --accent-weak:var(--orange-weak); }
.cat-tabset[data-accent="blue"]  { --accent:var(--blue);   --accent-weak:var(--blue-weak); }

.cat-tabs{
    display:flex;
    gap:24px;
    align-items:flex-end;
    position:relative;
    margin:0 0 calc(-1 * var(--tab-bw)) 0;
    width:100%;
}
.cat-tab[data-accent="pink"]   { --tab-accent:var(--pink);   --tab-weak:var(--pink-weak); }
.cat-tab[data-accent="orange"] { --tab-accent:var(--orange); --tab-weak:var(--orange-weak); }
.cat-tab[data-accent="blue"]   { --tab-accent:var(--blue);   --tab-weak:var(--blue-weak); }
.cat-tab{
    position:relative;
    display:flex; align-items:center; gap:12px; justify-content:center;
    flex:1 1 0; min-width:0;
    background:#fff;
    border: var(--tab-bw) solid var(--tab-accent);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    color: var(--tab-accent);
    padding:25px 22px;
    font-weight:800;
    box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.cat-tab .label{
    font-size:22px;
}
.cat-tab .icon{
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
}
.cat-tab img{ max-width:100%; max-height:100%; object-fit:contain; }
.cat-tab.is-active{ z-index: 5; }
.cat-tab.is-active::after{
    content:""; position:absolute;
    left: calc(-1 * var(--tab-bw)); right: calc(-1 * var(--tab-bw));
    bottom: calc(-1 * var(--tab-bw));
    background:#fff;
}
.cat-panel{
    background:#fff;
    border: var(--tab-bw) solid var(--accent);
    border-radius: 11px;
    padding:14px 20px 8px 20px;
    min-height:220px;
    position: relative;
    z-index: 2;
}
.cat-panel::before{ display: none !important; }
.cat-panel::before{
    content:"";
    position:absolute; left:0; right:0;
    top: calc(-1 * var(--tab-bw));
    height:0;
    border-top: var(--tab-bw) solid var(--accent);
    z-index:2; pointer-events:none;
}
.cat-pane[hidden]{ display:none; }
.cat-pane.is-active{ display:block; }
.courses{ display:flex; flex-wrap:wrap; gap:18px; }
.course{
    display:inline-flex; align-items:center; justify-content:center;
    min-width: 149px;
    max-width: 149px;
    height: 80px;
    letter-spacing: normal;
    text-align: center;
    border-radius:20px;
    background:var(--accent-weak);
    color: #ffffff;
    font-weight:800; text-decoration:none;
    transition:.15s; font-size:20px;
}
.course:hover{ background:var(--accent); color:#fff; transform:translateY(-1px); }
.cat-tabset[data-edge="left"]  .cat-panel{ border-top-left-radius: 0; }
.cat-tabset[data-edge="right"] .cat-panel{ border-top-right-radius: 0; }

/* =======================================
   CONTENTS03 (style.cssの固有設?)
   ======================================= */
.contents03{
    padding:80px 0;
    background:#e3f2fd;
}
.contents03__title{
    text-align:center;
    margin:0 0 60px;
    color:#111;
    font-weight:800;
    line-height:1.35;
    letter-spacing:.04em;
    font-size:clamp(28px,3.6vw,44px);
}
.contents03__accent{
    color:#198fce;
    font-size:1.25em;
    font-weight:600;
}
.contents03__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    list-style:none;
    padding:0;
    margin:0;
}
.contents03__card{
    border-radius:8px;
    transition:transform .25s ease, box-shadow .25s ease;
}
.contents03__card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.contents03__figure{ margin:0; }
.contents03__image-wrapper{ position:relative; }
.contents03__image{
    display: block;
    width: 100%;
    border-bottom: 4px solid #198fce;
}
.contents03__label{
    position:absolute;
    left: 0px;
    top: 0px;
    width:70px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    padding:8px 0 6px;
    background:#548eca;
    color:#fff;
    border-radius: 0 0 6px 0;
    box-shadow:0 4px 10px rgba(0,0,0,.12);
}
.contents03__label-point{
    font-size:14px;
    letter-spacing:.08em;
    font-weight:800;
}
.contents03__label-num{
    font-size:28px;
    font-weight:700;
    color:#efe939;
    line-height:1;
}
.contents03__caption{ padding-top:12px; }
.contents03__subtitle{
    font-size: 15px;
    color: #1b1b1b;
    letter-spacing: .01em;
    font-weight: 700;
}
.contents03__heading{
    margin:0;
    font-size:clamp(18px,2.2vw,24px);
    font-weight:900;
    color:#111;
    line-height:1.25;
    letter-spacing:.02em;
}

/* =======================================
   CONTENTS04 (style.cssの固有設?)
   ======================================= */
.contents04 {
    background:#f5f7f9;
}
.contents04__header{
    position:relative;
    background:#fff;
    text-align:center;
    border-radius:6px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, .03);
    max-width: none;
    margin: 0;
    padding: 60px 20px 1px 20px;
    z-index: 3;
    overflow: visible;
}
.contents04__header::after{
    content:"";
    position:absolute;
    bottom:-49px;
    left:50%;
    transform: translateX(-50%);
    width:190px;
    height:50px;
    background:#fff;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    -webkit-filter: drop-shadow(0 12px 18px rgba(0,0,0,.18))
    drop-shadow(0 4px 8px rgba(0,0,0,.10));
    filter: drop-shadow(0 12px 18px rgba(0,0,0,.18))
    drop-shadow(0 4px 8px rgba(0,0,0,.10));

    will-change: filter;
    z-index: 5;
}
.contents04 > .container {
    min-width: auto;
    padding: 0 0;
}
.contents04__title{
    margin: 0 0 14px;
    font-weight: 700;
    color: #0288d1;
    font-size: clamp(24px, 3.2vw, 36px);
    letter-spacing:.02em;
}
.contents04__subtitle{
    margin: 0;
    color: #444;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 49px;
}
.contents04__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 50px 95px;
}
.contents04__card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eee;
    border-top: 4px solid #198fce;
    transition: all 0.3s ease;
}
.contents04__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.contents04__content {
    flex: 1;
    padding: 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 152px;
}
.contents04__subheading {
    font-size: 0.9rem;
    color: #198fce;
    margin: 0 0 6px;
    letter-spacing: normal;
    font-weight: 700;
}
.contents04__heading {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: #000;
}
.contents04__image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.contents04__image {
    display: block;
    object-fit: cover;
}
.contents04__arrow {
    position: absolute;
    left: -34px;
    transform: translateY(-50%);
    bottom: -8px;
    width: 20px;
    background-size: 14px 14px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.contents04__card:hover .contents04__arrow {
    transform: translateY(-50%) translateX(4px);
}

/* =======================================
   Service & News Section (style.cssの固有設?)
   ======================================= */
.services {
    padding: 5rem 0;
    background-color: #f8f9fa;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}
.service-link {
    color: #e74c3c;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}
.service-link:hover {
    border-bottom-color: #e74c3c;
}

/* News */
.news {
    padding: 70px 0;
    background: #ffffff;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.news__excerpt a,
.news__excerpt a:visited {
    color: #1d4ed8;
    text-decoration: underline;
}
.news__more-link,
.news__more-link:visited {
    color: #1d4ed8;
    text-decoration: underline;
}
.news-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}
.news-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.news-meta time {
    color: #666;
    font-size: 0.9rem;
}
.news-category {
    background-color: #e74c3c;
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}
.news-card h3 {
    margin-bottom: 1rem;
}
.news-card h3 a {
    color: #2c3e50;
    transition: color 0.3s ease;
}
.news-card h3 a:hover {
    color: #e74c3c;
}
.news-card p {
    color: #666;
    line-height: 1.6;
}
.news-more {
    text-align: center;
}
.news__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}
.news__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #0f172a;
    line-height: 1.4;
}
.news__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.news__tab {
    padding: 7px 12px;
    width: 166px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    color: #fff;
}
.news__tab[data-category="all"] {
    background: #E0E0E0;
    color: #333;
}
.news__tab[data-category="news"] {
    background: #198fce;
}
.news__tab[data-category="discount"] {
    background: #dda712;
}
.news__tab[data-category="media"] {
    background: #a9d1a3;
}
.news__tab[data-category="news"]:hover {
    background: #147bb5;
}
.news__tab[data-category="discount"]:hover {
    background: #c69510;
}
.news__tab[data-category="media"]:hover {
    background: #91bb8b;
}
.news__tab--active {
    font-weight: 600;
}
.news__list {
    max-height: 619px;
    overflow-y: auto;
    border-top: 1px solid #000000;
    background: #fff;
    margin: 0;
    padding: 0;
    list-style: none;

}
.news__list::-webkit-scrollbar {
    width: 6px;
}
.news__list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.news__list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}
.news__list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.news__list {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}
.news__item {
    border-bottom: 1px solid #000000;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}
.news__item:last-child {
    border-bottom: none;
}
.news__item:hover {
    background: rgba(0, 0, 0, 0.03);
}
.news__link {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    gap: 15px;
}
.news__date {
    width: 90px;
    flex-shrink: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}
.news__badge {
    padding: 3px 22px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    white-space: nowrap;
    width: 120px;
    text-align: center;
}
.news__badge--news {
    background: #198fce;
}
.news__badge--discount {
    background: #dda712;
}
.news__badge--media {
    background: #a9d1a3;
}
.news__body {
    flex: 1;
    min-width: 0;
}
.news__title-item {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.4;
}
.news__excerpt {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}

/* =======================================
   Map Section (style.css/custom.cssの固有設?)
   ======================================= */
.map {
  padding: 0; /* custom.cssの上書? */
  background: none; /* custom.cssの上書? */
}
.map__hero { /* custom.css */
  width: 100%;
  padding-top: 7rem;
  padding-bottom: 0;
  position: relative;
}
.map__hero--title { /* custom.css */
  margin-bottom: 0.5em;
  padding: 0 1em;
  display: inline-block;
  background-color: #fff;
  font-size: 3.9rem;
}
.map__hero--title .text-primary { /* custom.css */
  color: #008fd1;
}
.map__hero--sentence { /* custom.css */
  font-weight: 500;
  font-size: 1.8rem;
}
.map__hero--sentence p { /* custom.css */
  line-height: 2;
}
.map__hero--navi { /* custom.css */
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.map__hero--navi .navi-content { /* custom.css */
  margin-left: -2.4rem;
  text-align: center;
  font-size: 1.8rem;
}
.map__hero--navi .navi-content dt { /* custom.css */
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
.map__hero--navi .navi-content dt::before, .map__hero--navi .navi-content dt::after { /* custom.css */
  content: "";
  width: 1px;
  height: 3.2rem;
  display: inline-block;
  background-color: #000;
}
.map__hero--navi .navi-content dt::before { /* custom.css */
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.map__hero--navi .navi-content dt::after { /* custom.css */
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.map__hero--navi .navi-content ul { /* custom.css */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.map__hero--navi .navi-item { /* custom.css */
  min-width: 19.8rem;
  height: 6.4rem;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.5rem;
  background-color: #ccc;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-weight: 700;
}
.map__hero--navi .navi-item.item01 { /* custom.css */
  background-color: #ff6b6a;
}
.map__hero--navi .navi-item.item02 { /* custom.css */
  background-color: #ff8d3a;
}
.map__hero--navi .navi-item.item03 { /* custom.css */
  background-color: #ff3645;
}
.map__hero--bg { /* custom.css */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.map__hero--bg img { /* custom.css */
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.map__course--list { /* custom.css */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.map__course--list > * { /* custom.css */
  width: calc((100% - 8.8rem) / 3);
}
.map__course--item { /* custom.css */
  padding: 2rem;
  border-top: 5px solid #008fd1;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.18);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.18);
}
.map__course .item-title { /* custom.css */
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 2.1rem;
}
.map__course .item-title span { /* custom.css */
  color: #ff8d3a;
}
.map__course .item-sentence { /* custom.css */
  margin-bottom: 1em;
  font-size: 1.4rem;
}
.map__course .item-btn { /* custom.css */
  width: 24.6rem;
  margin: 0 auto;
  padding: 0.5em 1em;
  display: block;
  border-radius: 2.3rem;
  background-color: #008fd1;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.map__course .item-separator { /* custom.css */
  width: 100%;
  max-width: 24.5rem;
  height: 3px;
  margin: 1.4rem auto 2.8rem;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#008fd1), color-stop(18%, #008fd1), color-stop(18%, #e6e6e6), to(#e6e6e6));
  background: linear-gradient(90deg, #008fd1 0%, #008fd1 18%, #e6e6e6 18%, #e6e6e6 100%);
}
.map__course .item-points { /* custom.css */
  list-style: none;
  font-weight: 700;
}
.map__course .item-points li { /* custom.css */
  padding-left: 1.25em;
  position: relative;
}
.map__course .item-points li::before { /* custom.css */
  content: "";
  width: 1.125em;
  height: 1.125em;
  position: absolute;
  top: 0.25em;
  left: 0;
  display: inline-block;
  background: url(/assets/page_images/map/icon_check.svg) no-repeat center center/contain;
}
.map__course .item-points li + li { /* custom.css */
  margin-top: 1em;
}
.map__commute--types { /* custom.css */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8rem;
}
.map__commute--type { /* custom.css */
  padding: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 3rem 3rem 0 0;
  color: #fff;
  text-align: center;
}
.map__commute--type.type01 { /* custom.css */
  background-color: #008fd1;
}
.map__commute--type.type02 { /* custom.css */
  background-color: #97ada9;
}
.map__commute .type-icon { /* custom.css */
  width: 6.4rem;
  height: 4.8rem;
  margin: 0 auto 0.5rem;
  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;
}
.map__commute .type-title { /* custom.css */
  margin-bottom: 0.5em;
  font-size: 2.7rem;
}
.map__commute .type-title span { /* custom.css */
  color: #ff0;
  font-size: 3.5rem;
}
.map__commute .type-sentence { /* custom.css */
  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;
}
.map__commute .type-catch { /* custom.css */
  font-weight: 700;
  font-size: 2.4rem;
}
.map__commute .type-catch span { /* custom.css */
  font-size: 4rem;
}
.map__commute .type-btn { /* custom.css */
  min-width: 24.6rem;
  height: 5.5rem;
  margin: 1em auto 0;
  padding: 0 2em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #fff;
  border-radius: 0.8rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.map__commute--map { /* custom.css */
  margin-top: 5.8rem;
}
.map__commute--map .map-inner { /* custom.css */
  width: 100%;
  min-height: 51.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background-color: #bde1f4;
}
.map__commute--map .map-content { /* custom.css */
  position: absolute;
  top: -24.8rem;
  left: -12rem;
}
.map__commute--map .map-content img { /* custom.css */
  -webkit-filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
}
.map__commute--map .map-logo { /* custom.css */
  position: absolute;
  bottom: 3.8rem;
  left: 5rem;
}
.map__commute--map .school-list { /* custom.css */
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.map__commute--map .school-box { /* custom.css */
  width: 23.2rem;
}
.map__commute--map .school-box-inner + .school-box-inner { /* custom.css */
  margin-top: 1.25em;
}
.map__commute--map .school-title { /* custom.css */
  margin-bottom: 1em;
  padding: 0.35em;
  position: relative;
  background-color: #fff;
  text-align: center;
  font-size: 2rem;
}
.map__commute--map .school-title::after { /* custom.css */
  content: "";
  width: 2.6rem;
  height: 2.2rem;
  position: absolute;
  bottom: -1.5rem;
  left: calc(50% - 1.3rem);
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.map__commute--map .school-title span { /* custom.css */
  font-size: 2.4rem;
}
.map__commute--map .school-info { /* custom.css */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.map__commute--map .school-info dt { /* custom.css */
  padding-left: 2rem;
  background: url(/assets/page_images/map/map/icon_school.svg) no-repeat center left/1.6rem auto;
  font-size: 1.8rem;
}
.map__commute--map .school-info dt a { /* custom.css */
  color: #008fd1;
  text-decoration: underline;
}
.map__commute--map .school-info dd { /* custom.css */
  padding-left: 2rem;
  font-size: 1.8rem;
}
.map__commute--map .school-info dd + dt { /* custom.css */
  margin-top: 1em;
}
.map__commute--map .school-info + .school-title { /* custom.css */
  margin-top: 1.25em;
}
.map__commute--map.v2 .map { /* custom.css */
  position: relative;
}
.map__commute--map.v2 .map-content { /* custom.css */
  top: -20.8rem;
  left: 4rem;
}
.map__commute--map.v2 .map-logo { /* custom.css */
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.map__commute--map.v2 .map-inner { /* custom.css */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.map__commute--map.v2 .map__commute--online { /* custom.css */
  margin-top: auto;
  margin-left: 0;
  padding-bottom: 6rem;
}
.map__commute--map.v2 .school-inner { /* custom.css */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.map__commute--map.v2 .school-list { /* custom.css */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.map__commute--map.v2 .school-box { /* custom.css */
  width: 46rem;
}
.map__commute--map.v2 .school-title::after { /* custom.css */
  content: none;
}
.map__commute--online { /* custom.css */
  width: 59.6rem;
  margin-top: -10rem;
  margin-right: 9.4rem;
  margin-left: auto;
  position: relative;
}
.map__commute--online .online-fukidashi { /* custom.css */
  position: relative;
  z-index: 2;
}
.map__commute--online .online-img { /* custom.css */
  position: absolute;
  top: -3rem;
  right: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border: 1rem solid #fff;
  -webkit-filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
}
.map__commute--online .school-info { /* custom.css */
  margin: 2rem 0 0 2rem;
}
.map__commute--online .school-info dt { /* custom.css */
  background-image: url(/assets/page_images/map/map/icon_home.svg);
  background-size: 1.8rem auto;
}
.map__school { /* custom.css */
  padding-bottom: 0;
}
.map__school--area01 { /* custom.css */
  --info-color01: #b7dedd;
  --info-color02: #f3f8f9;
}
.map__school--area02 { /* custom.css */
  --info-color01: #b1daf1;
  --info-color02: #eff6fc;
}
.map__school .tabs-nav { /* custom.css */
  max-width: 106rem;
  margin: 0 auto 6.4rem;
  display: grid;
  gap: 1.2rem;
}
.map__school .tabs-nav.col3 { /* custom.css */
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.map__school .tabs-nav.col5 { /* custom.css */
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.map__school .tabs-nav.col6 { /* custom.css */
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.map__school .tab-button { /* custom.css */
  padding: 0.75em 1em;
  text-align: left;
  font-weight: 700;
  font-size: 2.8rem;
}
.map__school .tab-button.tab--active { /* custom.css */
  background-color: #008fd1;
  color: #fff;
}
.map__school .tabs-container { /* custom.css */
  padding-bottom: 5rem;
}
.map__school .school--title { /* custom.css */
  padding: 0.5em 1em;
  background-color: #008fd1;
  color: #fff;
  text-align: center;
  font-size: 3rem;
}
.map__school .school-map { /* custom.css */
  width: 100%;
  height: 49rem;
}
.map__school .school-map iframe { /* custom.css */
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.map__school .school-info { /* custom.css */
  padding: 2.4rem;
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr 1fr;
}
.map__school .school-info .col1 { /* custom.css */
  grid-column: 1/3;
}
.map__school .school-info dl { /* custom.css */
  background-color: #fff;
}
.map__school .school-info dt { /* custom.css */
  padding: 0.5em;
  background-color: var(--info-color01);
  text-align: center;
  font-weight: 700;
  font-size: 2.1rem;
}
.map__school .school-info dd { /* custom.css */
  padding: 1em;
}
.map__school .school-info dd p:not(:last-child) { /* custom.css */
  margin-bottom: 1em;
}
.map__school .school-comment { /* custom.css */
  padding: 1.5rem;
}
.map__school .school-comment dt { /* custom.css */
  border: 1px solid #000;
  background-color: #fff;
}
.map__school .school-comment dd { /* custom.css */
  margin-top: 1em;
  padding: 0;
}
.map__school .school-blog { /* custom.css */
  position: relative;
  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;
}
.map__school .school-blog a { /* custom.css */
  width: 39.6rem;
  height: 6.2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.2;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid #008fd1;
  border-radius: 3.1rem;
  -webkit-box-shadow: 3px 3px 0 #008fd1;
          box-shadow: 3px 3px 0 #008fd1;
  font-weight: 700;
  font-size: 2.2rem;
}
.map__school .school-footer { /* custom.css */
  margin-top: 1em;
  text-align: center;
}
.map__school .school-footer a { /* custom.css */
  width: 51.2rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 10rem;
  padding: 1em 3em;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.6rem;
  background-color: #008fd1;
  color: #fff;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.4;
}
.map__school .school-footer a::after { /* custom.css */
  content: "";
  width: 3.8rem;
  height: 3.8rem;
  position: absolute;
  top: calc(50% - 1.9rem);
  right: 2rem;
  background: url(/assets/page_images/map/map/icon_arrow01.svg) no-repeat center center/contain;
}
.map__school--cv { /* custom.css */
  margin-top: 4.8rem;
  padding: 2rem;
  background: url(/assets/page_images/map/map/cv_bg.jpg) no-repeat center center/cover;
}
.map__school--cv .cv-inner { /* custom.css */
  padding: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2rem;
  background-color: #fff;
}
.map__school--cv .cv-item { /* custom.css */
  text-align: center;
}
.map__school--cv .cv-item dt { /* custom.css */
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
.map__school--cv .cv-btn { /* custom.css */
  width: 44.8rem;
  height: 10rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.6rem;
  background: url(/assets/page_images/map/map/icon_arrow02.svg) no-repeat right 2rem center/1.2rem auto;
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
}
.map__school--cv .cv-btn.button01 { /* custom.css */
  background-color: #ff3645;
  -webkit-box-shadow: 0 3px 0 #a20d18;
          box-shadow: 0 3px 0 #a20d18;
}
.map__school--cv .cv-btn.button01 .cv-btn-icon { /* custom.css */
  position: absolute;
  top: -3.6rem;
  left: -7rem;
}
.map__school--cv .cv-btn.button02 { /* custom.css */
  padding-left: 10rem;
  background-color: #ff8d3a;
  -webkit-box-shadow: 0 3px 0 #8c420c;
          box-shadow: 0 3px 0 #8c420c;
}
.map__school--cv .cv-btn.button02 .cv-btn-icon { /* custom.css */
  position: absolute;
  top: -4.6rem;
  left: -4.5rem;
}


/* =======================================
   Material Section (custom.cssより)
   ======================================= */
.material__hero {
  width: 100%;
  padding: 0;
}
.material__hero--inner {
  padding-top: 7rem;
  position: relative;
}
.material__hero--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.material__hero--title {
  padding: 0 1em;
  display: inline-block;
  background-color: #fff;
  font-size: 3.6rem;
}
.material__hero--title span {
  color: #008fd1;
}
.material__hero--sentence {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
}
.material__hero--sentence p {
  line-height: 2;
}
.material__hero--navi {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.material__hero--navi .navi-content {
  margin-left: -2.4rem;
  text-align: center;
  font-size: 1.8rem;
}
.material__hero--navi .navi-content dt {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
.material__hero--navi .navi-content dt::before, .material__hero--navi .navi-content dt::after {
  content: "";
  width: 1px;
  height: 3.2rem;
  display: inline-block;
  background-color: #000;
}
.material__hero--navi .navi-content dt::before {
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.material__hero--navi .navi-content dt::after {
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.material__hero--navi .navi-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.material__hero--navi .navi-item {
  min-width: 19.8rem;
  height: 6.4rem;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.5rem;
  background-color: #ccc;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-weight: 700;
}
.material__hero--navi .navi-item.item01 {
  background-color: #ff6b6a;
}
.material__hero--navi .navi-item.item02 {
  background-color: #ff8d3a;
}
.material__hero--navi .navi-item.item03 {
  background-color: #ff3645;
}
.material__hero--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.material__hero--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.material__hero--pageNavi {
  padding: 2.8rem 0;
  background-color: #008fd1;
}
.material__hero--pageNavi .navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}
.material__hero--pageNavi .navi-btn {
  width: 28.4rem;
  height: 6rem;
  padding: 0 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3rem;
  background-color: #fff;
  -webkit-box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.15);
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.8rem;
}
.material__hero--pageNavi .navi-btn span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.material__block {
  padding-bottom: 0;
}
.material__block.material01 {
  --theme-color: #df7e5d;
}
.material__block.material02 {
  --theme-color: #db6a76;
}
.material__block.material03 {
  --theme-color: #2772a2;
}
.material__content {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.material__content--headline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 43rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.material__content--headline::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color, #ccc);
  opacity: 0.74;
}
.material__content--headline .headline-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.material__content--headline .headline-title {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
}
.material__content--list .inner {
  padding: 2rem 3.4rem;
  display: grid;
  gap: 3.2rem;
  grid-template-columns: 1fr 20.4rem 20.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.material__content--list .inner:nth-of-type(even) {
  background-color: #edf2f6;
}
.material__content--list dt {
  font-weight: 700;
  font-size: 1.8rem;
}
.material__content--list .material-btn {
  width: 100%;
  height: 4.4rem;
  padding: 0 1rem 0 1.4rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid var(--theme-color);
  border-radius: 2.2rem;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.3rem;
}
.material__content--list .material-btn.btn01 {
  background-color: var(--theme-color);
  color: #fff;
}
.material__content--list .material-btn.btn02 {
  background-color: #fff;
  color: var(--theme-color);
}
.material__content--list .material-btn-arrow {
  width: 2.6rem;
  margin-left: auto;
}

.fancybox__slide.has-close-btn {
  padding-top: 5rem !important;
}
.f-button.is-close-button {
  width: 5rem;
  height: 5rem;
  top: -5rem !important;
  border-radius: 0;
  background-color: #111 !important;
}

/* =======================================
   Feature Section (custom.cssより)
   ======================================= */
.feature__hero {
  width: 100%;
  min-height: 44rem;
  padding-top: 7rem;
  padding-bottom: 0;
  position: relative;
}
.feature__hero--title {
  margin-bottom: 0.5em;
  padding: 0 1em;
  display: inline-block;
  background-color: #fff;
  font-size: 3.9rem;
}
.feature__hero--title span {
  color: #008fd1;
}
.feature__hero--sentence {
  font-weight: 500;
  font-size: 1.8rem;
}
.feature__hero--sentence p {
  line-height: 2;
}
.feature__hero--navi {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feature__hero--navi .navi-content {
  margin-left: -2.4rem;
  text-align: center;
  font-size: 1.8rem;
}
.feature__hero--navi .navi-content dt {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
.feature__hero--navi .navi-content dt::before, .feature__hero--navi .navi-content dt::after {
  content: "";
  width: 1px;
  height: 3.2rem;
  display: inline-block;
  background-color: #000;
}
.feature__hero--navi .navi-content dt::before {
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.feature__hero--navi .navi-content dt::after {
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.feature__hero--navi .navi-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.feature__hero--navi .navi-item {
  min-width: 19.8rem;
  height: 6.4rem;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.5rem;
  background-color: #ccc;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-weight: 700;
}
.feature__hero--navi .navi-item.item01 {
  background-color: #ff6b6a;
}
.feature__hero--navi .navi-item.item02 {
  background-color: #ff8d3a;
}
.feature__hero--navi .navi-item.item03 {
  background-color: #ff3645;
}
.feature__hero--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.feature__hero--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__point--main .point-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feature__point--main .point-item + .point-item {
  margin-top: 8rem;
}
.feature__point--main .point-item:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature__point--main .point-item:nth-of-type(odd) .point-text {
  margin-right: -15rem;
}
.feature__point--main .point-item:nth-of-type(even) .point-text {
  margin-left: -15rem;
}
.feature__point--main .point-visual {
  width: 58%;
}
.feature__point--main .point-text {
  padding: 3.6rem 2.4rem 2.4rem;
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
.feature__point--main .point-text-label {
  padding: 0.25em 0.75em;
  position: absolute;
  bottom: 100%;
  left: -2rem;
  border-radius: 0.8rem;
  background-color: #008fd1;
  color: #fff;
  font-size: 2rem;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.feature__point--main .point-text-label span {
  color: #ff0;
  font-size: 2.4rem;
}
.feature__point--main .point-text-label::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: calc(100% - 5px);
  left: calc(50% - 1rem);
  background-color: inherit;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.feature__point--main .point-text-title {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 2.4rem;
}
.feature__point--main .point-text-title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff0));
  background: linear-gradient(transparent 60%, #ff0 60%);
  color: #008fd1;
  font-size: 2.6rem;
}
.feature__point--main .point-text-sentence {
  font-size: 1.7rem;
}
.feature__point--main .point-text-sentence p {
  line-height: 2;
}
.feature__point--sub {
  margin-top: 6rem;
  display: grid;
  gap: 4.4rem;
  grid-template-columns: 1fr 1fr;
}
.feature__point--sub .heading__01 {
  margin-bottom: 0.75em;
  font-size: 2.2rem;
}
.feature__point--sub .heading__01 .deco01 {
  margin-top: 0;
  margin-bottom: 0.75em;
}
.feature__point--sub .point-visual {
  margin-bottom: 2rem;
}
.feature__point--sub .point-visual img {
  width: 100%;
  height: auto;
}
.feature__point--sub .point-title {
  margin-bottom: 0.5em;
  color: #008fd1;
  text-align: center;
  font-weight: 700;
  font-size: 1.9rem;
}
.feature__point--sub .point-title span {
  font-size: 2.4rem;
}
.feature__point--sub .point-sentence p {
  line-height: 1.9;
}
.feature__point--list {
  margin-top: 8rem;
}
.feature__point--list .text-lead p {
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.feature__point--list .point-list {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.feature__point--list .point-list > * {
  width: calc((100% - 18rem) / 3);
}
.feature__point--list .point-visual {
  width: 100%;
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
  background: #f1f1f1;
  color: #fff;
  aspect-ratio: 32/21;
}
.feature__point--list .point-visual-inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.feature__point--list .point-visual-title {
  font-size: 3rem;
  line-height: 1.3;
}
.feature__point--list .point-visual-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.feature__point--list .point-visual-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(227, 118, 46, 0.71);
}
.feature__point--list .point-visual-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__point--list .point-sentence {
  letter-spacing: 0.12em;
}
.feature__point--list .point-btn {
  height: 3.6rem;
  margin: 1.5em auto 0;
  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;
  border: 1px solid #008fd1;
  border-radius: 1.8rem;
  background: #fff url(/assets/page_images/feature/btn_arrow01.svg) no-repeat right 1rem center/0.6rem auto;
  -webkit-box-shadow: 2px 3px 0 #008fd1;
          box-shadow: 2px 3px 0 #008fd1;
  color: #008fd1;
  font-weight: 700;
}
.feature__data--box {
  overflow: hidden;
  border: 6px solid #008fd1;
  border-radius: 4rem;
  background-color: #fff;
}
.feature__data--box .data-title {
  padding: 1.6rem 0 2.4rem;
  background-color: #008fd1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 3.1rem;
}
.feature__data--box .data-title span {
  font-size: 3.6rem;
}
.feature__data--box .data-content {
  padding: 4rem 6.8rem;
  list-style: none;
}
.feature__data--box .data-item {
  padding: 0 2rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #1e2b31;
}
.feature__data--box .data-item + .data-item {
  margin-top: 3rem;
}
.feature__data--box .data-icon {
  width: 7rem;
  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;
}
.feature__data--box .data-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.feature__data--box .data-text dt {
  color: #008fd1;
  font-weight: 700;
  font-size: 2.8rem;
}
.feature__data--box .data-text dd {
  margin-top: 0.25em;
  font-size: 2.2rem;
}
.feature__data--box .data-result {
  margin-left: auto;
  position: relative;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 3.6rem;
}
.feature__data--box .data-result span {
  font-family: "din-2014", sans-serif;
  font-size: 6rem;
}
.feature__data--box .data-result.pickup {
  padding: 0 4rem;
}
.feature__data--box .data-result.pickup::before {
  content: "";
  width: 19.2rem;
  height: 11rem;
  position: absolute;
  bottom: 0;
  left: calc(50% - 9.6rem);
  z-index: 1;
  background: url(/assets/page_images/feature/data_pickup.svg) no-repeat center center/contain;
}
.feature__system--list {
  margin-top: 3.2rem;
  list-style: none;
}
.feature__system--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.feature__system--item + .feature__system--item {
  margin-top: 5rem;
}
.feature__system--item:nth-of-type(odd) .item-title::before {
  content: "";
  width: 3.6rem;
  height: 1.7rem;
  margin-right: 1.2rem;
  display: inline-block;
  background: url(/assets/page_images/feature/title_arrow.svg) no-repeat center center/contain;
}
.feature__system--item:nth-of-type(odd) .item-btn {
  margin-left: auto;
}
.feature__system--item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature__system--item:nth-of-type(even) .item-title::after {
  content: "";
  width: 3.6rem;
  height: 1.7rem;
  margin-left: 1.2rem;
  display: inline-block;
  background: url(/assets/page_images/feature/title_arrow.svg) no-repeat center center/contain;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.feature__system--item .item-visual {
  width: 53.2rem;
}
.feature__system--item .item-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__system--item .item-text {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.feature__system--item .item-title {
  margin-bottom: 0.25em;
  letter-spacing: 0.08em;
  font-size: 2.8rem;
}
.feature__system--item .item-title span {
  color: #a14b8e;
  font-size: 8rem;
  line-height: 1;
}
.feature__system--item .item-sentence {
  margin-bottom: 1em;
}
.feature__system--item .item-sentence p {
  letter-spacing: 0.08em;
  line-height: 2;
}
.feature__system--item .item-btn {
  width: 28rem;
  height: 6rem;
  margin-top: auto;
  padding: 0 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3rem;
  background-color: #008fd1;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}
.feature__system--item .item-btn > span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.feature__support--list {
  max-width: 94rem;
  margin: 3.2rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  counter-reset: count;
}
.feature__support--list > * {
  width: calc((100% - 4rem) / 2);
}
.feature__support--item {
  padding: 2.4rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 3px solid #008fd1;
  border-radius: 3rem;
}
.feature__support--item::before {
  content: "";
  width: 100%;
  height: 22rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #dce6f4;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 7.5rem, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 7.5rem, 0% 100%);
}
.feature__support--item .item-number {
  position: absolute;
  top: 2.4rem;
  left: 2rem;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #3b3b8b;
  text-align: center;
  font-weight: 700;
}
.feature__support--item .item-number::before {
  content: "POINT";
  list-style: 1;
  font-family: "din-2014", sans-serif;
  font-size: 2.2rem;
}
.feature__support--item .item-number::after {
  content: counter(count, decimal-leading-zero);
  counter-increment: count;
  letter-spacing: 0;
  font-family: "din-2014", sans-serif;
  font-size: 7.2rem;
  line-height: 1;
}
.feature__support--item .item-visual {
  margin-bottom: 1em;
  padding-left: 9.6rem;
}
.feature__support--item .item-visual-label {
  margin-bottom: 1em;
  color: #3b3b8b;
  font-weight: 700;
  font-size: 1.8rem;
}
.feature__support--item .item-visual-image {
  width: 100%;
  aspect-ratio: 29/18;
}
.feature__support--item .item-visual-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__support--item .item-sentence {
  letter-spacing: 0.12em;
}
.feature__support--item .item-btn {
  /*width: 28rem;*/
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 3.6rem;
  margin: 1.5em auto 0;
  padding: 0;
  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;
  border: 1px solid #008fd1;
  border-radius: 1.8rem;
  background: #fff url(/assets/page_images/feature/btn_arrow01.svg) no-repeat right 1rem center/0.6rem auto;
  -webkit-box-shadow: 2px 3px 0 #008fd1;
          box-shadow: 2px 3px 0 #008fd1;
  color: #008fd1;
  font-weight: 700;
}

/* =======================================
   Commute Section (custom.cssより)
   ======================================= */
.commute .map__school--cv {
  margin-top: 0;
}
.commute .heading__02 {
  margin-bottom: 4rem;
}
.commute li {
  list-style: none;
}
.commute__hero {
  width: 100%;
  min-height: 44rem;
  padding-top: 7rem;
  padding-bottom: 0;
  position: relative;
}
.commute__hero--title {
  margin-bottom: 0.5em;
  font-size: 3.9rem;
}
.commute__hero--title > span {
  padding: 0 3rem;
  display: table;
  background-color: #fff;
}
.commute__hero--title > span + span {
  margin-top: 0.3em;
}
.commute__hero--title .primary {
  color: #008fd1;
}
.commute__hero--circles {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.commute__hero--circles .circle-item {
  width: 18rem;
  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;
  border-radius: 50%;
  background-color: #008fd1;
  color: #fff;
  text-align: center;
  font-weight: 700;
  aspect-ratio: 1;
}
.commute__hero--circles .circle-inner {
  letter-spacing: 0;
  line-height: 1;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
}
.commute__hero--circles .circle-inner span {
  display: inline-block;
}
.commute__hero--circles .circle-text1 {
  line-height: 1.2;
}
.commute__hero--circles .circle-text1-1 {
  font-size: 3rem;
}
.commute__hero--circles .circle-text1-2 {
  font-size: 2rem;
}
.commute__hero--circles .circle-text1-3 {
  font-size: 2.5rem;
}
.commute__hero--circles .circle-text2 {
  line-height: 1.1;
}
.commute__hero--circles .circle-text2-1 {
  font-size: 3rem;
}
.commute__hero--circles .circle-text2-2 {
  font-size: 4rem;
}
.commute__hero--circles .circle-text2-3 {
  font-size: 3rem;
}
.commute__hero--circles .circle-text3 {
  line-height: 1.1;
}
.commute__hero--circles .circle-text3-1 {
  font-size: 2.4rem;
}
.commute__hero--circles .circle-text3-2 {
  font-size: 4rem;
}
.commute__hero--circles .circle-text3-3 {
  font-size: 3rem;
}
.commute__hero--circles .circle-text3-4 {
  font-size: 3rem;
}
.commute__hero--sentence {
  font-weight: 500;
  font-size: 1.8rem;
}
.commute__hero--sentence p {
  line-height: 2;
}
.commute__hero--navi {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.commute__hero--navi .navi-content {
  margin-left: -2.4rem;
  text-align: center;
  font-size: 1.8rem;
}
.commute__hero--navi .navi-content dt {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
.commute__hero--navi .navi-content dt::before, .commute__hero--navi .navi-content dt::after {
  content: "";
  width: 1px;
  height: 3.2rem;
  display: inline-block;
  background-color: #000;
}
.commute__hero--navi .navi-content dt::before {
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.commute__hero--navi .navi-content dt::after {
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.commute__hero--navi .navi-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.commute__hero--navi .navi-item {
  min-width: 19.8rem;
  height: 6.4rem;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.5rem;
  background-color: #ccc;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-weight: 700;
}
.commute__hero--navi .navi-item.item01 {
  background-color: #ff6b6a;
}
.commute__hero--navi .navi-item.item02 {
  background-color: #ff8d3a;
}
.commute__hero--navi .navi-item.item03 {
  background-color: #ff3645;
}
.commute__hero--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.commute__hero--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.commute__point .bg-02 {
  padding: 3rem 0;
}
.commute__point--bg {
  margin-bottom: 4rem;
}
.commute__point--visual {
  width: 21rem;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.commute__point--title {
  margin-bottom: 4rem;
}
.commute__point--title .text-lead {
  font-size: 2.1rem;
}
.commute__point--main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.commute__point--main .point-sentence {
  text-align: center;
  line-height: 1.5;
}
.commute__point--main .point-text {
  font-size: 2rem;
}
.commute__point--main .point-text-label {
  margin-bottom: 0.25em;
  font-size: 2.4rem;
}
.commute__point--main .point-text-label img {
  vertical-align: baseline;
}
.commute__point--main .point-text-thick {
  margin-top: 0.25em;
  padding-right: 0.25em;
  display: inline-block;
  background-color: white;
  font-weight: 700;
  font-size: 3.2rem;
}
.commute__point--feeling {
  margin-bottom: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.commute__point--feeling .feeling-text-label {
  padding: 2rem 3rem;
  position: relative;
  background-color: #e3f2fd;
  font-size: 2rem;
}
.commute__point--feeling .feeling-text-label span {
  font-size: 2.6rem;
}
.commute__point--feeling .feeling-text-label.triangle::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 100%;
  border-style: solid;
  border-top: 2rem solid transparent;
  border-right: 0;
  border-bottom: 2rem solid transparent;
  border-left: 3rem solid #e3f2fd;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.commute__point--features .features-visual {
  width: 18rem;
  height: 18rem;
  margin: 0 auto;
  margin-bottom: 3.5rem;
}
.commute__point--features .features-title {
  margin-bottom: 1.8rem;
  color: white;
  text-align: center;
  font-size: 2rem;
}
.commute__point--features .features-title span {
  display: block;
  background-color: #008fd1;
}
.commute__point--features .features-title span + span {
  margin-top: 0.5rem;
}
.commute__point--list {
  display: grid;
  gap: 7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.commute__support--lead {
  width: 95rem;
  margin: 0 auto;
  margin-bottom: 6rem;
  padding: 2rem 3rem;
  padding-right: 5rem;
  position: relative;
  background-color: #e3f2fd;
}
.commute__support--lead .support-visual {
  width: 14rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
.commute__support--lead .text-lead {
  font-size: 2.1rem;
}
.commute__support--list {
  width: 95rem;
  margin: 0 auto;
}
.commute__support--list li + li {
  margin-top: 2rem;
}
.commute__support--list .support-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.commute__support--list .support-visual {
  width: 25rem;
}
.commute__support--list .support-title {
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
}
.commute__support--list .support-title .highlight {
  padding: 0 0.2em;
  background-color: #d6e8f3;
}
.commute__support--list .support-sentence {
  font-size: 1.8rem;
}
.commute__choice--list {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem 2.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.commute__choice--list > * {
  width: calc((100% - 7.8rem) / 4);
}
.commute__choice li {
  padding: 5rem 0 3rem;
  position: relative;
  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;
  border: 2px solid #008fd1;
  border-radius: 2rem;
  background-color: white;
  font-weight: 700;
}
.commute__choice li::before {
  content: "";
  width: 9.5rem;
  height: 1rem;
  position: absolute;
  top: -0.2rem;
  left: 50%;
  background-color: white;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.commute .choice-visual {
  width: 7.5rem;
  height: 6.5rem;
  position: absolute;
  bottom: calc(100% - 4rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.commute__course .text-lead {
  margin-bottom: 10rem;
}
.commute__course--content + .commute__course--content {
  margin-top: 10rem;
}
.commute__course--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  color: white;
}
.commute__course .course-heading {
  margin-bottom: 6rem;
  font-size: 3rem;
}
.commute__course .ranking-title {
  margin-bottom: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid white;
  text-align: center;
  font-size: 2.1rem;
}
.commute__course .ranking-description {
  font-size: 1.4rem;
}
.commute__course .ranking-item {
  padding: 6rem 2rem 2rem 2rem;
  position: relative;
  background-color: #008fd1;
}
.commute__course .ranking-badge {
  width: 8rem;
  height: 8rem;
  padding: 1rem;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  border-radius: 50%;
  background-color: #008fd1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.commute__course .ranking-crown {
  width: 2.3rem;
  margin: 0 auto;
}
.commute__course .ranking-number {
  color: white;
  font-size: 4.2rem;
  line-height: 1;
}
.commute__course--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.commute__cycle--list {
  width: 85rem;
  margin: 0 auto;
}
.commute__cycle--list li + li {
  margin-top: 6rem;
}
.commute__cycle--list li + li::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  bottom: calc(100% + 2rem);
  left: 50%;
  background-color: #984886;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.commute__cycle .cycle-title {
  font-size: 1.8rem;
}
.commute__cycle .cycle-title span {
  color: #984886;
  font-size: 2.8rem;
}
.commute__cycle .cycle-icon {
  width: 5rem;
}
.commute__cycle .cycle-item {
  position: relative;
}
.commute__cycle .cycle-content {
  padding: 2rem 1.5rem;
  padding-left: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(224, 198, 220, 0.4);
}
.commute__cycle .cycle-number {
  height: 100%;
  padding: 0 1.7rem;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #984886;
  color: white;
  font-size: 2rem;
}
.commute__cycle .cycle-number span {
  color: #f7e58c;
  letter-spacing: 0;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  font-size: 5rem;
}
.commute__cycle .cycle-number::after {
  content: "";
  width: 3rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(100% - 0.16rem);
  background: #984886;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.commute__schools .school-info {
  width: 100%;
}
.commute__schools .school-info dt {
  font-weight: 700;
  font-size: 1.3rem;
}
.commute__schools .school-info dd {
  font-size: 1.2rem;
}
.commute__schools .map__commute--online {
  width: 46rem;
}
.commute__schools .map__commute--online .online-fukidashi {
  width: 25.4rem;
}
.commute__schools .map__commute--online .online-img {
  width: 20.8rem;
  top: 0;
}
.commute__benefit .text-lead {
  margin-bottom: 6rem;
}
.commute__benefit--content + * {
  margin-top: 6rem;
}
.commute__benefit .is-visuals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.commute__benefit .benefit-title {
  margin-bottom: 6rem;
  text-align: center;
}
.commute__benefit .benefit-visual {
  width: 35rem;
}
.commute__benefit .benefit-heading {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #008fd1;
  font-size: 3rem;
}
.commute__benefit .benefit-heading span {
  color: #008fd1;
}
.commute__benefit .benefit-subtitle {
  font-size: 2rem;
}
.commute__benefit .discounts-title {
  padding: 2.4rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: #008fd1;
  color: white;
  font-size: 2.4rem;
}
.commute__benefit .discounts-icon {
  width: 4.6rem;
}
.commute__benefit .discounts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.commute__benefit .discounts-list > * {
  width: calc((100% - 4rem) / 3);
}
.commute__benefit .discounts-item {
  padding: 2rem 1.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
}
.commute__benefit .discounts-sentence {
  padding: 1.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 700;
}
.commute__benefit .discounts-sentence .highlight-yel {
  font-size: 1.9rem;
}

/* =======================================
   Training Section (custom.cssより)
   ======================================= */
.training .map__school--cv {
  margin-top: 0;
}
.training .heading__02 {
  margin-bottom: 6.5rem;
}
.training li {
  list-style: none;
}
.training__hero {
  width: 100%;
  min-height: 44rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}
.training__hero .primary {
  color: #008fd1;
}
.training__hero .pink {
  color: #ff3544;
}
.training__hero--title {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 3.4rem;
}
.training__hero--title > span {
  padding: 0 3rem;
  display: table;
  background-color: #fff;
}
.training__hero--title > span + span {
  margin-top: 0.3em;
}
.training__hero--title .num {
  font-weight: bold;
  font-size: 6.6rem;
  line-height: 1;
}
.training__hero--benefits {
  width: 64rem;
  margin-top: 12rem;
  padding: 2rem 2rem;
  position: relative;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: center;
}
.training__hero--benefits .benefits-circle {
  width: 10rem;
  height: 10rem;
  position: absolute;
  right: calc(100% - 5.5rem);
  bottom: calc(100% - 0.5rem);
  z-index: 1;
  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;
  border-radius: 50%;
  background-color: #ff3544;
  color: white;
  font-size: 2rem;
}
.training__hero--benefits .benefits-circle::after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: calc(100% - 1rem);
  left: 50%;
  background: #ff3544;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: rotate(70deg);
          transform: rotate(70deg);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.training__hero--benefits .benefits-item {
  padding: 1rem;
  z-index: 1;
  border-radius: 1rem;
  background-color: #ffe100;
  -webkit-box-shadow: 0.1rem 0.1rem 0.3rem 0.1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0.1rem 0.1rem 0.3rem 0.1rem rgba(0, 0, 0, 0.2);
}
.training__hero--benefits .benefits-label {
  padding: 0.5rem 1rem;
  border-radius: 20rem;
  background-color: #231815;
  color: white;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
}
.training__hero--benefits .benefits-text {
  font-weight: 600;
  font-size: 3rem;
}
.training__hero--benefits .benefits-text .num {
  letter-spacing: 0;
  font-weight: bold;
  font-size: 4.4rem !important;
}
.training__hero--benefits::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 1rem;
  background-color: white;
  opacity: 60%;
}
.training__hero--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.training__hero--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.training-header {
  margin-bottom: 7rem;
}
.training-title {
  margin-bottom: 3rem;
  font-size: 3.6rem;
}
.training-description {
  font-weight: 600;
  font-size: 2rem;
}
.training__benefit--content {
  text-align: center;
}
.training__benefit .benefit-visual {
  width: 15rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.training__benefit .benefit-subtitle {
  font-weight: 900;
  font-size: 2.3rem;
}
.training__benefit .benefit-text {
  letter-spacing: 0.15rem;
  font-weight: 600;
  line-height: 1.7;
}
.training__benefit .benefit-details {
  width: 110rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #231815;
  border-radius: 2rem;
}
.training__benefit .benefit-subtitle {
  margin-bottom: 3.5rem;
}
.training__benefit .benefit-icons {
  width: 16.5rem;
  position: absolute;
  bottom: calc(100% - 1.5rem);
  left: 50%;
  border-radius: 2rem;
  background-color: #ff3544;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.training__benefit .benefit-icon {
  width: 2.4rem;
  margin: 0 auto;
  padding: 0.5rem 0;
  display: block;
}
.training__flow--header {
  margin-bottom: 5rem;
}
.training__flow--steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
.training__flow--steps .flow-step {
  padding: 6rem 4rem 3rem 4rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #231815;
  border-radius: 2rem;
  background-color: white;
}
.training__flow--steps .flow-badge {
  position: absolute;
  bottom: calc(100% - 4rem);
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
.training__flow--steps .flow-visual {
  width: 21rem;
  margin: 0 auto;
  margin-bottom: 4.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.training__flow--steps .flow-title {
  text-align: center;
  font-size: 2rem;
}
.training__flow--steps .flow-description {
  line-height: 1.7;
}
.training__flow .flow-title {
  margin-bottom: 3rem;
  font-size: 2rem;
}
.training__flow .flow-badge {
  width: 5rem;
}
.training__eligible--cards {
  width: 115rem;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 4.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.training__eligible .eligible-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #231815;
}
.training__eligible .eligible-card__title {
  padding: 0.5em 0;
  background-color: #55597f;
  color: white;
  text-align: center;
  font-size: 2rem;
}
.training__eligible .eligible-card__lead {
  padding: 1.5rem 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f5f5f5;
  font-weight: 600;
  font-size: 1.4rem;
}
.training__eligible .eligible-card__table {
  font-size: 1.7rem;
}
.training__eligible .eligible-card__table .eligible-row {
  padding: 1em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.training__eligible .eligible-card__table .eligible-th {
  font-weight: 900;
}
.training__eligible .eligible-card__table .eligible-td {
  font-weight: 600;
}
.training__eligible .eligible-card__table .eligible-row:nth-child(even) {
  background-color: #f5f5f5;
}
.training__courses .training-tabs {
  height: 7rem;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  font-weight: bold;
}
.training__courses .training-tab {
  border: none;
  background-color: #f5f5f7;
  font-size: 2rem;
}
.training__courses .training-tab.is-active {
  background-color: var(--theme-color, #db6a76);
  /* 押下したとき?色 */
  color: #fff;
  /* ?色を白に */
}
.training__courses .training-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  line-height: 1.5;
}
.training__courses .training-table * {
  letter-spacing: 0;
}
.training__courses .training-table thead th {
  padding: 2rem 0;
  background-color: var(--theme-color, #db6a76);
  color: white;
}
.training__courses .training-table th, .training__courses .training-table td {
  padding: 0.5rem 1rem;
}
.training__courses .training-table th {
  border-top: 1px solid #231815;
  background-color: #f5f5f7;
  font-weight: 600;
}
.training__courses .training-table td {
  border: 1px solid #231815;
  border-right: none;
}
.training__courses .training-table tr:first-child th {
  border-top: none;
}
.training__courses .training-table tr:first-child td {
  border-top: none;
}
.training__courses .training-table tr:last-child td {
  border-bottom: none;
}
.training__courses .training-table tr:nth-child(odd) td {
  border-bottom: none;
}
.training__courses .training-table tr:nth-child(odd) td:nth-child(3), .training__courses .training-table tr:nth-child(odd) td:nth-child(4) {
  text-align: center;
}
.training__courses .training-table tr:nth-child(even) td {
  border-top: 1px dashed #999;
  text-align: center;
}
.training__courses .training-table .th-01 {
  padding: 0.5rem 1em;
  text-align: left;
}
.training__courses .training-table .td-02 {
  font-size: 1.4rem;
}
.training__courses .training-table .td-03 {
  font-size: 1.4rem;
}
.training__courses .training-table .td-04 {
  font-size: 1.2rem;
}
.training__courses .training-table .td-05 span {
  font-size: 1.2rem;
}
.training__faq .faq-list dt + dd {
  margin-top: 1.4rem;
}
.training__faq .faq-list dl + dl {
  margin-top: 2.8rem;
}
.training__faq .faq-q, .training__faq .faq-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}
.training__faq .faq-q::before, .training__faq .faq-a::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-size: contain;
  background-repeat: no-repeat;
}
.training__faq .faq-q {
  font-weight: 600;
  font-size: 1.8rem;
}
.training__faq .faq-q::before {
  width: 2rem;
  height: 2rem;
  margin-top: 0.2em;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.9 19.35"><path fill="%23005bac" d="M16.25,12.95c-.31,1.01-.76,1.84-1.36,2.51l2.01,1.9-1.91,2-2.11-2c-.64.39-1.2.67-1.67.82-.79.26-1.73.39-2.82.39-2.29,0-4.18-.68-5.67-2.05-1.81-1.64-2.72-4.06-2.72-7.24S.93,3.65,2.79,2.01C4.3.67,6.19,0,8.44,0s4.17.71,5.71,2.13c1.78,1.64,2.67,3.94,2.67,6.89,0,1.56-.19,2.87-.57,3.93ZM9.6,15.31c.21-.6.49-.16.82-.3l-1.78-1.69,1.88-1.97,1.78,1.68c.28-.57.47-1.07.58-1.5.17-.64.26-1.39.26-2.25,0-1.97-.4-3.49-1.21-4.56s-1.98-1.61-3.53-1.61c-1.45,0-2.61.52-3.48,1.55-.87,1.03-1.3,2.58-1.3,4.63,0,2.4.62,4.13,1.86,5.17.8.67,1.76,1.01,2.88,1.01.42,0,.83-.5,1.21-.16Z"/></svg>');
}
.training__faq .faq-a {
  padding-left: 1em;
  font-weight: bold;
  font-size: 2rem;
}
.training__faq .faq-a::before {
  width: 3rem;
  height: 3rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.81 30.82"><path fill="%23ffec3f" d="M29.04 28.94l-.73-2.51-.53-1.84c4.5-6.06 3.99-14.65-1.53-20.12-6.04-5.99-15.8-5.95-21.79.1-5.99 6.04-5.95 15.8.1 21.79 5.47 5.43 13.99 5.9 20 1.45l1.95.49z"/><path fill="%23231815" d="M10.48 21.68l4.23-12.35h1.97l4.34 12.3h-2.2l-.85-2.54-4.45.02-.83 2.56h-2.22Zm3.6-4.36h3.29l-1.67-4.99z"/></svg>');
}


/* =======================================
   Responsive Styles (common.cssにな??また?上書きするスタイルのみ)
   ======================================= */

@media screen and (max-width: 768px) {
  .img-fluid {
    width: var(--width-sp) !important;
    max-width: none;
  }
  html {
    font-size: 1.3020833333vw;
  }
  body {
    font-size: 2.8rem;
  }
  .main__block {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .heading__01 .deco01 > span {
    width: 1.5rem;
  }
  .heading__02 {
    border-left-width: 0.6rem;
    letter-spacing: 0.08em;
    font-size: 4rem;
  }
  .heading__03 {
    font-size: 4.2rem;
  }
  .heading__03--text02 {
    margin-top: 0.25em;
    font-size: 2.4rem;
  }
  .heading__03 .heading-visual {
    width: 12rem;
    margin-top: -1rem;
  }
  .text-lead {
    font-size: 2.6rem;
  }
}

@media (max-width: 1024px) {
    /* PC/SP表示? */
    .pc-only { display: none !important; }
	.tablet { display: none !important; }
    .sp-only { display: block !important; }

    /* Layout/Base */
    body {
        min-width: auto;
        font-size: clamp(12px, 1.5vw, 20px);
    }
    .container {
        padding: 0 3.2rem;
    }
    .is-scroll {
        overflow-x: scroll;
    }
    .main {
        margin-top: 70px;
        overflow: hidden;
    }

    /* Header */
    .site-main {
        margin-top: 62px;
    }
    .header-nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px; left: 0; right: 0;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,.1);
    }
    .header-nav.active { display: flex; }

    /* Hamburger (sp.css) */
    .hamburger {
        width: 30px;
        height: 22px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }
    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: .3s;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { top: 18px; }

    /* Mobile Menu (sp.css/common.cssの上書?) */
    .mobile-menu__inner {
        display: block;
    }
    .mobile-menu__btn{
        position: relative;
        display: block;
        text-align: center;
        padding-right: 44px;
    }
    .mobile-menu__btn > span{
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        font-weight: 900;
    }
    .mobile-menu__close, .mobile-menu__bottom-close{
        right: 16px;
        top: 19px;
    }


    /* Footer 01 */
    .footer_01 {
        padding: 40px 0;
    }
    .page-id-1221 .footer_01, .page-id-1212 .footer_01 {
        margin-top: 40px;
    }
    .footer01__container {
        padding: 0 5px 0 24px;
    }
    .footer01__title {
        font-size: clamp(24px, 2.2vw, 48px);
        margin-bottom: 20px;
    }
    .footer01__grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer01__item {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .footer01__card-inner {
        top: 10px;
    }
    .footer01__icon img {
        width: clamp(30px, 7.6vw, 59px);
    }
    .footer01__copy {
        margin-top: 0;
        font-size: clamp(18px, 4vw, 33px);
    }
    .footer01__card-title {
        margin-top: 0;
        font-size: clamp(21px, 5.4vw, 42px);
    }
    .footer01__text {
        margin-top: 0;
        font-size: clamp(12px, 3.1vw, 24px);
        line-height: 1.4;
    }
    .footer01__btn{
        display: block;
        margin: 10px auto 0;
        width: 200px;
        padding: 8px 24px;
        border-radius: 25px;
    }
    .footer01__tel {
        grid-template-columns: 1fr;
        gap: 0;
        font-size: 12px;
        text-align: unset;
        margin: 25px 0 28px 0;
    }
    .footer01__tel .phone-number {
        font-size: 25px;
    }

    /* Footer 02 */
    .footer02__logo-top-img {
        margin-left: 20px;
        margin-top: 20px;
    }
    .footer02__main {
        display: flex;
        gap: 25px;
        margin-bottom: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer02__container {
        padding: 35px 35px;
    }
    .footer02__card {
        padding: clamp(12px, 1.5vw, 20px);
    }
    .footer02__card-title {
        font-size: clamp(16px, 1.5vw, 25px);
        margin: 0 0 0 0;
    }
    .footer02__section {
        margin: 20px 10px;
    }
    .footer02__section-title {
        font-size: clamp(16px, 1.5vw, 25px);
    }
    .footer02__sections {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer02__contact {
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
        gap: 40px;
    }
    .footer02__logo {
        height: 42px;
    }
    .footer02__logos {
        display: flex;
        gap: 24px;
        align-items: baseline;
        margin-top: 0px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer02__logos-flex {
        display: flex;
        gap: 40px;
        align-items: flex-end;
    }
    .footer03__logo {
        height: 54px;
    }
    .footer04 {
        width: 25px;
        height: 25px;
    }
    .footer02__top {
        padding: 0px 0;
    }
    .footer02__bottom {
        padding: 28px 35px;
    }
    .footer-rail {
        --line-inset-y: 65px;
        --edge-inset-x: clamp(0px, 0vw, 0px);
        --maxw: 1107px;
    }
    .footer-rail__inner {
        padding: 25px 0px 40px;
    }
    .footer-rail__item {
        flex: 1 1 0;
        display: flex;
        gap: 0;
        align-items: center;
        justify-content: center;
        padding: 6px 6px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-left: 1px solid var(--isa-blue);
    }
    .footer-rail__item:last-of-type {
        border-right: 1px solid var(--isa-blue);
    }
    .footer-rail__logo {
        height: 15px;
    }
    .footer-rail__label {
        font-size: 16px;
    }
    .fancybox__slide.has-close-btn {
        padding-top: 8rem !important;
    }
    .f-button.is-close-button {
        width: 8rem;
        height: 8rem;
        top: -8rem !important;
    }

    /* Hero Section (sp.css) */
    .hero {
        height: 125vh;
        margin-top: 0;
    }
    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-content{
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }
    .hero-lead{
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        line-height: 1.2;
        margin-top: 12px;
    }
    .hero-lead-bg {
        background: #fff;
        display: inline-block;
        padding: 0 .4em;
    }
    .hero-lead-bg:first-of-type {
        margin-bottom: 0.5rem;
    }
    .hero-title, .hero-title_02 {
        font-size: clamp(1.7rem, 4vw, 2.5rem);
        line-height: 1.2;
        background-color: unset;
        width: auto;
    }
    .hero-title-line {
        padding-left: 0;
    }
    .hero-cards{
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)) !important;
        gap: 0.375rem;
        width: 100%;
        min-height: auto;
        justify-content: center;
        align-items: center;
        margin-top: clamp(9px, 3vw, 31px);
    }
    .hero-cards .hero-card{
        min-width: 0 !important;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-card-left .hero-card-content h4 {
        font-size: clamp(1rem, 2vw, 1.75rem);
    }
    .hero-card-center .hero-card-content h4 .h4-large {
        font-size: clamp(0.8rem, 2vw, 1.6875rem);
    }
    .hero-card-right .hero-card-content h4 {
        font-size: clamp(0.8rem, 2vw, 1.75rem);
    }
    .hero-card-icon.red img{
        width: clamp(2.25rem, 8vw, 4.3125rem);
    }
    .hero-card-icon.orange img{
        width: clamp(2rem, 8vw, 3.8125rem);
    }
    .hero-card-icon.blue img{
        width: clamp(2.5rem, 8vw, 4.625rem);
    }

    /* Map Section (custom.css) */
    .map .heading__01 {
        font-size: 5rem;
    }
    .map__hero {
        padding-bottom: 4.2rem;
    }
    .map__hero .container {
        padding: 0 6rem;
    }
    .map__hero--title {
        margin-bottom: 0.75em;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1rem;
        -webkit-box-align: start;
        -ms-flex-align: start;
        flex-direction: column;
        background: none;
    }
    .map__hero--title span {
        padding: 0 0.2em;
        background-color: #fff;
    }
    .map__hero--sentence {
        color: #000;
        font-weight: 700;
        font-size: 3.2rem;
    }
    .map__hero--sentence p {
        line-height: 1.4;
    }
    .map__commute {
        padding-bottom: 0rem;
        background-color: white;
    }
    .map__commute--map {
        margin-right: -3.2rem;
        margin-left: -3.2rem;
    }
    .map__commute--map .map-inner {
        padding-top: 56.4rem;
    }
    .map__commute--map .map-content {
        width: 100%;
        top: 0;
        left: 0;
    }
    .map__commute--map .map-logo {
        display: none;
    }
    .map__commute--map .school-list {
        padding-top: 0;
        gap: 3rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .map__commute--map .school-box {
        width: calc((100% - 3rem) / 2);
    }
    .map__commute--map .school-box.sp-col1 {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 3rem;
    }
    .map__commute--map .school-box.sp-col1 .school-box-inner {
        width: calc((100% - 3rem) / 2);
    }
    .map__commute--map .school-box.sp-col1 .school-box-inner + .school-box-inner {
        margin-top: 0;
    }
    .map__commute--map .school-title {
        padding: 0.5em 0;
        font-size: 2.7rem;
    }
    .map__commute--map .school-title span {
        font-size: 3.2rem;
    }
    .map__commute--map .school-info {
        width: 80%;
    }
    .map__commute--map .school-info dt {
        padding-left: 2.4rem;
        background-size: 2rem auto;
        letter-spacing: 0;
        font-size: 2.4rem;
    }
    .map__commute--map .school-info dd {
        letter-spacing: 0.05em;
        font-size: 2.2rem;
    }
    .map__commute--map.v2 .map-content {
        top: 0;
        left: 0;
    }
    .map__commute--map.v2 .map-inner {
        padding-top: 56.4rem;
        display: block;
    }
    .map__commute--map.v2 .map__commute--online {
        width: auto;
        margin: 0 -3.2rem;
        padding: 4rem 5rem;
        position: relative;
        z-index: 2;
        background-color: #bde1f4;
    }
    .map__commute--map.v2 .map__commute--online::before {
        content: "";
        width: 100%;
        height: 80%;
        position: absolute;
        top: 12%;
        left: 0;
        z-index: -1;
        background-color: #fff;
        opacity: 0.9;
    }
    .map__commute--map.v2 .map__commute--online .online-fukidashi {
        width: 38rem;
    }
    .map__commute--map.v2 .map__commute--online .online-img {
        width: 32rem;
        top: 2rem;
        right: 6rem;
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    .map__commute--map.v2 .school-title {
        font-size: 3rem;
    }
    .map__commute--map.v2 .school-info {
        width: 80%;
    }
    .map__commute--map.v2 .school-info dt {
        padding-left: 3rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        background: url(/assets/page_images/map/map/icon_school.svg) no-repeat top left/1em auto;
        background-position-y: 0.7rem;
        color: #168ecd;
        font-size: 2.4rem;
    }
    .map__commute--map.v2 .school-info dt span {
        color: #333;
        font-size: 2.1rem;
    }
    .map__commute--map.v2 .school-info dd {
        display: none;
    }
    .map__commute--map.v2 .school-list {
        width: 100%;
        display: grid;
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .map__commute--map.v2 .school-box {
        width: 100%;
    }
    .map__commute--online {
        width: 100%;
        margin: 0;
        padding: 4rem 5rem;
        position: relative;
        z-index: 2;
        background-color: #bde1f4;
    }
    .map__commute--online::before {
        content: "";
        width: 100%;
        height: 80%;
        position: absolute;
        top: 12%;
        left: 0;
        z-index: -1;
        background-color: #fff;
        opacity: 0.9;
    }
    .map__commute--online .online-fukidashi {
        width: 38rem;
    }
    .map__commute--online .online-img {
        width: 32rem;
        top: 2rem;
        right: 6rem;
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    .map__school .tabs-nav {
        gap: 1.8rem;
    }
    .map__school .tabs-nav.col3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .map__school .school--title {
        font-size: 4.4rem;
    }
    .map__school .school-info {
        padding-right: 0;
        padding-left: 0;
        display: block;
    }
    .map__school .school-info dl + dl {
        margin-top: 2.5rem;
    }
    .map__school .school-info dt {
        font-size: 3.4rem;
    }
    .map__school .school-info dd {
        letter-spacing: 0;
        font-size: 2.8rem;
    }
    .map__school .school-blog {
        margin-top: 4rem;
    }
    .map__school .school-blog a {
        width: 62rem;
        height: 10rem;
        border-radius: 20rem;
        font-size: 3.4rem;
        line-height: 1.2;
    }
    .map__school .school-footer a {
        width: 100%;
        min-height: 13.4rem;
        font-size: 4rem;
        line-height: 1.2;
    }
    .map__school .school-footer a::after {
        width: 5.2rem;
        height: 5.2rem;
        top: calc(50% - 2.6rem);
    }
    .map__school--cv {
        background-image: url(/assets/page_images/map/map/cv_bg_sp.jpg);
    }
    .map__school--cv .container {
        padding: 0;
    }
    .map__school--cv .cv-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        background: none;
    }
    .map__school--cv .cv-item dt {
        font-size: 3rem;
    }
    .map__school--cv .cv-btn {
        width: 53.8rem;
        height: 12rem;
        border-radius: 2rem;
        font-size: 3.2rem;
    }
    .map__school--cv .cv-btn.button02 {
        padding-left: 0;
    }
    .map__school--cv .cv-btn-icon {
        display: none;
    }

    /* Material Section (custom.css) */
    .material__hero--inner {
        padding: 4.8rem 3.4rem;
        background-color: #e3f2fd;
    }
    .material__hero--inner .container {
        padding: 0;
        position: relative;
        z-index: 2;
    }
    .material__hero--column {
        display: block;
    }
    .material__hero--title {
        padding: 0;
        background: none;
        font-size: 4.3rem;
    }
    .material__hero--sentence {
        margin-top: 0.75em;
        color: inherit;
        font-weight: 700;
        font-size: 3.2rem;
    }
    .material__hero--sentence p {
        line-height: 1.6;
    }
    .material__hero--navi {
        margin-top: 4.8rem;
        padding: 2.4rem;
        position: relative;
        z-index: 2;
        border-radius: 5rem;
        background-color: #fff;
    }
    .material__hero--navi .navi-content {
        width: 43.6rem;
        margin: 0 auto;
    }
    .material__hero--navi .navi-content dt {
        font-size: 2.6rem;
    }
    .material__hero--navi .navi-content dt::before, .material__hero--navi .navi-content dt::after {
        content: none;
    }
    .material__hero--navi .navi-content ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .material__hero--navi .navi-person {
        width: 17.4rem;
        position: absolute;
        top: 0;
        left: -4rem;
        z-index: -1;
    }
    .material__hero--navi .navi-item {
        width: 100%;
        min-width: 0;
        height: 11.6rem;
        gap: 1rem;
        border-radius: 1.2rem;
        -webkit-box-shadow: 0.15rem 0.15rem 0.3rem rgba(0, 0, 0, 0.15);
        box-shadow: 0.15rem 0.15rem 0.3rem rgba(0, 0, 0, 0.15);
        letter-spacing: 0;
        font-size: 3.6rem;
    }
    .material__hero--bg {
        height: 32.5rem;
        z-index: 0;
    }
    .material__hero--pageNavi {
        padding: 2.4rem 0;
    }
    .material__hero--pageNavi .navi-list {
        gap: 1rem;
    }
    .material__hero--pageNavi .navi-list > li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .material__hero--pageNavi .navi-btn {
        width: 100%;
        height: 11.2rem;
        position: relative;
        border: 0.6rem solid #ccc;
        border-radius: 5.6rem;
    }
    .material__hero--pageNavi .navi-btn-icon {
        position: absolute;
        top: 50%;
        left: 1rem;
        opacity: 0.12;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .material__hero--pageNavi .navi-btn-text {
        letter-spacing: 0;
        font-size: 2.1rem;
    }
    .material__hero--pageNavi .navi-btn-text span {
        display: block;
        font-size: 3.1rem;
    }
    .material__hero--pageNavi .btn01 {
        border-color: #df7e5d;
    }
    .material__hero--pageNavi .btn01 .navi-btn-text span {
        color: #df7e5d;
    }
    .material__hero--pageNavi .btn02 {
        border-color: #db6a76;
    }
    .material__hero--pageNavi .btn02 .navi-btn-text span {
        color: #db6a76;
    }
    .material__hero--pageNavi .btn03 {
        border-color: #2772a2;
    }
    .material__hero--pageNavi .btn03 .navi-btn-text span {
        color: #2772a2;
    }
    .material__block {
        padding-top: 1.4rem;
    }
    .material__block .container {
        padding: 0;
    }
    .material__content--headline {
        height: 19rem;
        grid-template-columns: 21.4rem 1fr;
    }
    .material__content--headline .headline-visual {
        width: 100%;
        height: 100%;
    }
    .material__content--headline .headline-title {
        letter-spacing: 0;
        font-size: 4.2rem;
    }
    .material__content--headline .headline-title-icon {
        width: 5.4rem;
    }
    .material__content--list .inner {
        gap: 1.6rem 5rem;
        grid-template-columns: 1fr 1fr;
    }
    .material__content--list dt {
        padding-left: 1em;
        font-size: 3.2rem;
        grid-column: 1/3;
    }
    .material__content--list .material-btn {
        height: 7.2rem;
        padding: 0 1.6rem 0 2rem;
        border-radius: 3.6rem;
        font-size: 2.3rem;
    }
    .material__content--list .material-btn.btn01 .material-btn-icon {
        width: 3.2rem;
    }
    .material__content--list .material-btn.btn02 .material-btn-icon {
        width: 3.2rem;
    }
    .material__content--list .material-btn-arrow {
        width: 4rem;
    }

    /* Feature Section (custom.css) */
    .feature__hero {
        padding-top: 0;
    }
    .feature__hero--inner {
        padding: 5.8rem 3.4rem;
        background-color: #e3f2fd;
    }
    .feature__hero--inner .container {
        padding: 0;
        position: relative;
        z-index: 2;
    }
    .feature__hero--column {
        display: block;
    }
    .feature__hero--title {
        padding: 0 0.5em;
        font-size: 4.3rem;
    }
    .feature__hero--sentence {
        max-width: 47.2rem;
        color: inherit;
        letter-spacing: 0;
        font-weight: 700;
        font-size: 2rem;
    }
    .feature__hero--sentence p {
        line-height: 1.75;
    }
    .feature__hero--navi {
        margin-top: 7.2rem;
        padding: 2.4rem;
        position: relative;
        z-index: 2;
        border-radius: 5rem;
        background-color: #fff;
    }
    .feature__hero--navi .navi-content {
        width: 43.6rem;
        margin: 0 auto;
    }
    .feature__hero--navi .navi-content dt {
        font-size: 2.6rem;
    }
    .feature__hero--navi .navi-content dt::before, .feature__hero--navi .navi-content dt::after {
        content: none;
    }
    .feature__hero--navi .navi-content ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .feature__hero--navi .navi-person {
        width: 15.6rem;
        position: absolute;
        top: -1rem;
        left: -1rem;
        z-index: -1;
    }
    .feature__hero--navi .navi-item {
        width: 100%;
        min-width: 0;
        height: 11.6rem;
        gap: 1rem;
        border-radius: 1.2rem;
        -webkit-box-shadow: 0.15rem 0.15rem 0.3rem rgba(0, 0, 0, 0.15);
        box-shadow: 0.15rem 0.15rem 0.3rem rgba(0, 0, 0, 0.15);
        letter-spacing: 0;
        font-size: 3.6rem;
    }
    .feature__hero--bg {
        height: 39.8rem;
        z-index: 0;
    }
    .feature__hero--pageNavi {
        padding: 2.4rem 0;
    }
    .feature__hero--pageNavi .navi-list {
        gap: 1rem;
    }
    .feature__hero--pageNavi .navi-list > li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .feature__hero--pageNavi .navi-btn {
        width: 100%;
        height: 11.2rem;
        position: relative;
        border: 0.6rem solid #ccc;
        border-radius: 5.6rem;
    }
    .feature__hero--pageNavi .navi-btn-icon {
        position: absolute;
        top: 50%;
        left: 1rem;
        opacity: 0.12;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .feature__hero--pageNavi .navi-btn-text {
        letter-spacing: 0;
        font-size: 2.1rem;
    }
    .feature__hero--pageNavi .navi-btn-text span {
        display: block;
        font-size: 3.1rem;
    }
    .feature__hero--pageNavi .btn01 {
        border-color: #df7e5d;
    }
    .feature__hero--pageNavi .btn01 .navi-btn-text span {
        color: #df7e5d;
    }
    .feature__hero--pageNavi .btn02 {
        border-color: #db6a76;
    }
    .feature__hero--pageNavi .btn02 .navi-btn-text span {
        color: #db6a76;
    }
    .feature__hero--pageNavi .btn03 {
        border-color: #2772a2;
    }
    .feature__hero--pageNavi .btn03 .navi-btn-text span {
        color: #2772a2;
    }
    .feature__point--main .point-item {
        display: block;
    }
    .feature__point--main .point-item:nth-of-type(odd) .point-visual {
        margin-left: auto;
    }
    .feature__point--main .point-item:nth-of-type(odd) .point-text {
        margin-right: 0;
    }
    .feature__point--main .point-item:nth-of-type(even) .point-text {
        margin-left: auto;
    }
    .feature__point--main .point-item:nth-of-type(even) .point-text-label {
        right: -2rem;
        left: auto;
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    .feature__point--main .point-visual {
        width: 60rem;
    }
    .feature__point--main .point-text {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: 68.6rem;
        margin-top: -8rem;
    }
    .feature__point--main .point-text-label {
        padding: 0.5em 0.75em;
        font-size: 2.6rem;
    }
    .feature__point--main .point-text-label span {
        font-size: 3rem;
    }
    .feature__point--main .point-text-label::after {
        width: 3.2rem;
        height: 3.2rem;
    }
    .feature__point--main .point-text-title {
        font-size: 3.2rem;
    }
    .feature__point--main .point-text-title span {
        font-size: 3.6rem;
    }
    .feature__point--main .point-text-sentence {
        font-size: 2.6rem;
    }
    .feature__point--main .point-text-sentence p {
        line-height: 1.75;
    }
    .feature__point--sub {
        grid-template-columns: 1fr;
    }
    .feature__point--sub .heading__01 {
        font-size: 3.6rem;
    }
    .feature__point--sub .heading__01 .deco01 {
        margin-bottom: 0.25em;
    }
    .feature__point--sub .point-visual {
        margin-bottom: 4rem;
    }
    .feature__point--sub .point-title {
        margin-bottom: 1em;
        font-size: 3.2rem;
    }
    .feature__point--sub .point-title span {
        font-size: 3.2rem;
    }
    .feature__point--list .point-list {
        gap: 6.4rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .feature__point--list .point-list > * {
        width: 100%;
    }
    .feature__point--list .point-visual {
        aspect-ratio: 688/226;
    }
    .feature__point--list .point-visual-inner {
        gap: 4.8rem;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
    .feature__point--list .point-visual-title {
        font-size: 5.2rem;
    }
    .feature__point--list .point-sentence {
        letter-spacing: 0.08em;
    }
    .feature__point--list .point-btn {
        width: 60rem;
        height: 7.6rem;
        border-radius: 3.8rem;
        background-position: right 3rem center;
        background-size: 1.2rem auto;
        letter-spacing: 0;
        font-size: 3.4rem;
    }
    .feature__data--box .data-title {
        font-size: 4rem;
    }
    .feature__data--box .data-title span {
        font-size: 4rem;
    }
    .feature__data--box .data-content {
        padding: 4rem 2rem;
    }
    .feature__data--box .data-item {
        padding-right: 0;
        padding-left: 0;
        position: relative;
    }
    .feature__data--box .data-item:last-of-type {
        padding-bottom: 0;
        border-bottom: none;
    }
    .feature__data--box .data-icon {
        width: 7.2rem;
        height: 7.2rem;
        position: absolute;
        top: -1rem;
        left: 0;
    }
    .feature__data--box .data-icon.sp-t2 {
        top: 2rem;
    }
    .feature__data--box .data-icon img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }
    .feature__data--box .data-text dt {
        padding-left: 10rem;
        font-size: 4rem;
        line-height: 1.3;
    }
    .feature__data--box .data-text dd {
        margin-top: 0.5em;
        letter-spacing: 0.05em;
        font-size: 2.6rem;
    }
    .feature__data--box .data-result {
        width: 24rem;
        text-align: center;
        font-size: 4.6rem;
        line-height: 1;
    }
    .feature__data--box .data-result span {
        letter-spacing: 0;
    }
    .feature__data--box .data-result.pickup::before {
        width: 21.4rem;
        height: 13.8rem;
        bottom: -3rem;
        left: calc(50% - 10.7rem);
    }
    .feature__system--item {
        display: block;
    }
    .feature__system--item .item-visual {
        width: 100%;
    }
    .feature__system--item .item-text {
        padding: 4rem;
    }
    .feature__system--item .item-title {
        margin-bottom: 0.5em;
        letter-spacing: 0.025em;
        font-size: 3.6rem;
    }
    .feature__system--item .item-title::before, .feature__system--item .item-title::after {
        content: none !important;
    }
    .feature__system--item .item-sentence p {
        line-height: 1.75;
    }
    .feature__system--item .item-btn {
        width: 42rem;
        height: 9.2rem;
        margin-left: auto;
        padding: 0 2rem;
        border-radius: 4.6rem;
        letter-spacing: 0;
        font-size: 2.8rem;
    }
    .feature__system--item .item-btn-arrow {
        width: 5.2rem;
    }
    .feature__support--list > * {
        width: 100%;
    }
    .feature__support--item {
        padding-bottom: 4rem;
        border-radius: 5rem;
    }
    .feature__support--item::before {
        height: 34.2rem;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 10.8rem, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 10.8rem, 0% 100%);
    }
    .feature__support--item .item-number {
        left: 4.8rem;
    }
    .feature__support--item .item-number::before {
        font-size: 3.2rem;
    }
    .feature__support--item .item-number::after {
        font-size: 8.8rem;
    }
    .feature__support--item .item-visual {
        padding-left: 17.5rem;
    }
    .feature__support--item .item-visual-label {
        margin-bottom: 0.5em;
        font-size: 3.6rem;
    }
    .feature__support--item .item-btn {
        width: 60rem;
        height: 7.6rem;
        margin-top: 1em;
        border-radius: 3.8rem;
        background-position: right 3rem center;
        background-size: 1.2rem auto;
        letter-spacing: 0;
        font-size: 3.4rem;
    }
    .feature__support--item .item-btn.sp-sm {
        padding-left: 0.5em;
        letter-spacing: -0.05em;
        font-size: 3.2rem;
    }

    /* Commute Section (custom.css) */
    .commute .text-lead {
        font-size: 2.4rem;
    }
    .commute__hero {
        padding-top: 5rem;
        z-index: -1;
        background: #addaef;
    }
    .commute__hero--bg {
        height: 43rem;
    }
    .commute__hero--sentence {
        font-size: 2.2rem;
    }
    .commute__hero--sentence p {
        line-height: 1.6;
    }
    .commute__hero--circles {
        margin-top: 4rem;
        padding-bottom: 4rem;
    }
    .commute__hero--circles .circle-item {
        width: calc((100% - 4rem) / 3);
    }
    .commute__hero--circles .circle-text1-1 {
        font-size: 3.4rem;
    }
    .commute__hero--circles .circle-text1-2 {
        font-size: 2.4rem;
    }
    .commute__hero--circles .circle-text1-3 {
        font-size: 2.8rem;
    }
    .commute__hero--circles .circle-text2-1 {
        font-size: 3.4rem;
    }
    .commute__hero--circles .circle-text2-2 {
        font-size: 4.5rem;
    }
    .commute__hero--circles .circle-text2-3 {
        font-size: 3.4rem;
    }
    .commute__hero--circles .circle-text3-1 {
        font-size: 2.7rem;
    }
    .commute__hero--circles .circle-text3-2 {
        font-size: 4.5rem;
    }
    .commute__hero--circles .circle-text3-3 {
        font-size: 3.4rem;
    }
    .commute__hero--circles .circle-text3-4 {
        font-size: 3.4rem;
    }
    .commute__hero--circles .sp-md {
        font-size: 3.5rem;
    }
    .commute__hero--select {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }
    .commute__hero--select .commute__hero--navi {
        position: relative;
        display: block;
    }
    .commute__hero--select .commute__hero--navi .navi-person {
        width: 16rem;
        position: absolute;
        top: -2rem;
        left: -2rem;
    }
    .commute__hero--select .commute__hero--navi .navi-content {
        width: 100%;
        margin-left: auto;
        padding: 3rem;
        border-radius: 5rem;
        background-color: white;
    }
    .commute__hero--select .commute__hero--navi .navi-content--inner {
        width: 43.5rem;
        margin: 0 auto;
    }
    .commute__hero--select .commute__hero--navi .navi-content ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .commute__hero--select .commute__hero--navi .navi-content dt {
        font-size: 2.6rem;
    }
    .commute__hero--select .commute__hero--navi .navi-content dt::before, .commute__hero--select .commute__hero--navi .navi-content dt::after {
        content: none;
    }
    .commute__hero--select .commute__hero--navi .navi-item {
        height: 11.5rem;
        padding: 0 0.5em;
        border-radius: 1rem;
        font-size: 3.6rem;
    }
    .commute__cycle--list {
        width: 100%;
    }
    .commute__cycle--list li + li::after {
        width: 4rem;
        height: 3rem;
        bottom: calc(100% + 1.5rem);
    }
    .commute__cycle .cycle-content {
        padding-left: 2rem;
        gap: 5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .commute__cycle .cycle-title-sp {
        padding-top: 2rem;
        padding-left: 14rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 2.6rem;
    }
    .commute__cycle .cycle-title-sp span {
        font-size: 3.6rem;
    }
    .commute__cycle .cycle-title-sp .cycle-icon {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
    .commute__cycle .cycle-title-sp .cycle-title {
        font-size: 2.6rem;
    }
    .commute__cycle .cycle-item {
        position: relative;
    }
    .commute__cycle .cycle-number {
        height: 12rem;
    }
    .commute__point--title .heading__01 {
        margin-bottom: 3rem;
        font-size: 4.4rem;
    }
    .commute__point--main .point-text-thick {
        font-size: 4rem;
    }
    .commute__point--main .point-text .spOnly {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
    .commute__point--feeling {
        margin-bottom: 7rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .commute__point--feeling .highlight {
        font-size: 4.4rem !important;
    }
    .commute__point--feeling .feeling-text {
        font-size: 2.4rem;
    }
    .commute__point--feeling .feeling-text-label {
        font-size: 3.6rem;
    }
    .commute__point--feeling .feeling-text-label.triangle::after {
        top: calc(100% - 0.5rem);
        left: 50%;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .commute__point--list {
        grid-template-columns: 1fr;
    }
    .commute__point--list .features-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1em;
    }
    .commute__point--list .features-title {
        font-size: 3rem;
    }
    .commute__point--list .features-visual {
        margin-bottom: 0;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
    .commute__point--list .features-sentence {
        font-size: 2.2rem;
    }
    .commute__point--bg {
        padding-bottom: 10rem !important;
    }
    .commute__point--visual {
        top: calc(100% + 1rem);
        right: -8rem;
        left: auto;
    }
    .commute__support--lead {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }
    .commute__support--lead .support-visual {
        margin-right: -4rem;
        margin-bottom: -4rem;
    }
    .commute__support--list {
        width: 100%;
    }
    .commute__support .support-item {
        gap: 2rem;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .commute__support .support-title {
        font-size: 3rem;
    }
    .commute__support .support-visuals {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 3rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .commute__support .support-visual {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
    .commute .choice-visual {
        width: 100%;
        height: 8rem;
    }
    .commute__choice li {
        width: 100%;
        font-size: 2rem;
    }
    .commute__choice--list {
        display: grid;
        gap: 8rem 2.6rem;
        grid-template-columns: 1fr 1fr;
    }
    .commute__course .text-lead {
        margin-bottom: 5rem !important;
    }
    .commute__course .course-heading {
        margin-bottom: 10rem !important;
    }
    .commute__course--list {
        display: grid;
        gap: 5rem 2.5rem;
        grid-template-columns: 1fr 1fr;
    }
    .commute__course .course-heading {
        margin-bottom: 3rem;
    }
    .commute__schools {
        background-color: white;
    }
    .commute__schools .heading__02 {
        padding-left: 0;
        border-left: 0;
        text-align: center;
    }
    .commute__schools .text-lead {
        text-align: center;
    }
    .commute__schools .sp-lg {
        font-size: 6.3rem;
    }
    .commute__benefit--content + * {
        margin-top: 17rem;
    }
    .commute__benefit .is-visuals {
        gap: 4rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .commute__benefit .discounts-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .commute__benefit .discounts-title {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .commute__benefit .discounts-item {
        width: 100%;
        padding: 2.2rem 2.5rem 0;
    }
    .commute__benefit .discounts-icon {
        width: 2em;
    }
    .commute__benefit .discounts-title {
        font-size: 4rem;
    }
    .commute__benefit .discounts-text {
        font-size: 3.2rem;
    }
    .commute__benefit .discounts-sentence {
        padding: 2.5rem 0;
    }
    .commute__benefit .discounts-sentence .highlight-yel {
        font-size: 3.4rem;
    }
    .commute__benefit .benefit-title {
        margin-bottom: 4rem;
    }
    .commute__benefit .benefit-heading {
        font-size: 3.6rem;
    }
    .commute__benefit .benefit-subtitle {
        font-size: 2.4rem;
    }

    /* Training Section (custom.css) */
    .training-title {
        font-size: 4rem;
    }
    .training-description {
        letter-spacing: 0;
        font-size: 2.4rem;
    }
    .training__hero--title {
        letter-spacing: 0;
        font-size: 4.2rem;
    }
    .training__hero--title .num {
        font-size: 7.8rem;
    }
    .training__hero--benefits {
        width: 65.8rem;
        margin: 4.5rem auto 0;
        padding: 3.2rem 2rem;
        grid-template-columns: 1fr;
    }
    .training__hero--benefits .benefits-item {
        width: 50.6rem;
        margin: 0 auto;
        padding: 2.5rem;
    }
    .training__hero--benefits .benefits-circle {
        width: 14.4rem;
        height: 14.4rem;
        top: -2rem;
        right: auto;
        bottom: auto;
        left: -4.5rem;
        z-index: 2;
        font-size: 3rem;
    }
    .training__hero--benefits .benefits-label {
        font-size: 2.5rem;
    }
    .training__hero--benefits .benefits-text {
        margin-top: 2rem;
        letter-spacing: 0;
        font-weight: 700;
        font-size: 5rem;
        line-height: 1;
    }
    .training__hero--benefits .benefits-text .num {
        font-size: 8rem !important;
    }
    .training__benefit .benefit-visual {
        top: 3rem;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .training__benefit .benefit-info {
        padding: 20rem 2rem 0 2rem;
    }
    .training__benefit .benefit-details {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
    }
    .training__benefit .benefit-subtitle {
        font-size: 3rem;
    }
    .training__benefit .benefit-text {
        letter-spacing: 0;
        font-size: 2.6rem;
    }
    .training__flow--steps {
        gap: 15rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
    .training__flow .training-header {
        margin-bottom: 12rem;
    }
    .training__flow .flow-badge {
        width: 11rem;
    }
    .training__flow .flow-title {
        font-size: 4rem;
    }
    .training__flow .flow-visual {
        width: 41rem;
    }
    .training__flow .flow-description {
        font-size: 3rem;
    }
    .training__eligible .training-header {
        margin-bottom: 3.8rem;
    }
    .training__eligible--cards {
        width: 100%;
        gap: 3rem;
        grid-template-columns: 1fr;
    }
    .training__eligible .eligible-card__title {
        font-size: 2.8rem;
    }
    .training__eligible .eligible-card__lead {
        font-size: 2.2rem;
    }
    .training__eligible .eligible-card__table {
        font-size: 2.6rem;
    }
    .training__courses .training-panels--frame {
        margin: 0 -3.2rem;
        padding: 0 3.2rem;
        overflow: scroll;
        overflow-y: hidden;
    }
    .training__courses .training-panels--frame .training-panels {
        width: 150rem;
    }
    .training__courses .training-panels--sentence {
        margin-top: 3rem;
        letter-spacing: 0;
        font-size: 3.2rem;
        line-height: 1.7;
    }
    .training__courses .training-panels--sentence a {
        color: #008fd1;
        text-decoration: underline;
    }
    .training__courses .training-tabs {
        height: auto;
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    .training__courses .training-table tbody th {
        position: relative;
    }
    .training__courses .training-table tbody th + td {
        padding-left: 2rem;
    }
    .training__courses .training-table tbody .td-02 {
        font-size: 2.4rem;
    }
    .training__courses .training-table tbody .td-03 {
        font-size: 2.4rem;
    }
    .training__courses .training-table tbody .td-04 {
        font-size: 2.2rem;
    }
    .training__courses .training-table tbody .td-05 span {
        font-size: 2rem;
    }
    .training__courses .training-tab {
        padding: 2rem 0;
        font-size: 4.5rem;
    }
    .training__faq .faq-q {
        font-size: 2.6rem;
    }
    .training__faq .faq-q::before {
        width: 2.3rem;
    }
    .training__faq .faq-a {
        font-size: 2.4rem;
    }
    .training__faq .faq-a::before {
        width: 4.3rem;
        height: 4.3rem;
    }
}

@media (min-width: 1025px) {
  .spOnly {
    display: none !important;
  }
}