    @charset "UTF-8";

/* youtube埋め込みレスポンシブ対応用.video {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding-top: 56.25%;
  height: 0;
  margin: 0 auto;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video .ytp-title-text{display: none !important;}
 */

/*----------------------------------
  SP
----------------------------------*/
html {
    scroll-behavior: smooth;
}

.pc {
    display: none;
}
.tab {
    display: none;
}
.fade {
    /* margin-top: 80vh; */
    opacity: 0;
    transition: opacity 0.3s;
}

.fade.view {
    opacity: 1;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
    animation-delay: 0.5s;
}
.delay-time10 {
    animation-delay: 1s;
}
.delay-time15 {
    animation-delay: 1.5s;
}
.delay-time20 {
    animation-delay: 2s;
}
.delay-time25 {
    animation-delay: 2.5s;
}
.delay-time30 {
    animation-delay: 3s;
}

/* フェードイン */
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}


/* 初期状態（透明で少し下にずらす）*/
.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s; /* 変化を滑らかにする */
}

/* 表示されたときの状態*/
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* スクロールを発生させるためのダミーコンテンツ */
body {
  height: 200vh; /* 画面をスクロールさせるため */
  background-color: #f0f0f0;
}

.content-wrapper {
  padding-top: 50vh; /* スクロールさせるための余白 */
}


#wrapper {
    overflow: hidden;
    position: relative;
    /* background: #f4f4f4; */
    background: url(../img/bg_check.png);
}
header {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 90px;
    padding: 0 0 0 2%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    z-index: 999;
    background: RGBa(256, 256, 256, 0.9) !important;
    /* filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3)); */
}
#header.DownMove {
    animation: DownAnime 0.5s forwards;
}

.header_inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    position: relative;
    display: flex;
    align-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1em 0;
}
.header_left {
    width: 35%;
    flex: 0 1 auto;
    position: relative;
    transition: 0.3s ease-out;
}
.header_right {
    width: 65%;
    position: absolute;
    right: 0;
}

.jc-between {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .jc-between {
        width: auto;
    }
}

/* header sp */

/* メニューのスタイル */
.menu {
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態では画面の外に隠れている */
    width: 240px;
    /* height: 100%; */
    height: 300px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    transition: right 0.3s ease; /* スライドインのアニメーション */
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
}

/* メニューが開いているとき */
.menu.open {
    right: 0;
}

/* ボタンのスタイル */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューリストのスタイル */
.menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}

.menu li {
    padding: 20px 0;
    font-size: 0.9em;
    border-bottom: 1px solid #444;
}

.menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

/* header sp */

h1 {
}
h1 img {
    max-width: 290px;
    min-width: 180px;
    width: 50%;
    margin-right: 3%;
    display: inline-block;
    vertical-align: middle;
}
h1 .txt {
    letter-spacing: 0;
    font-size: 13px;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    color: #043d78;
    display: block;
    margin-left: 3em;
}
ul.header_program {
    /* background: #fff;
    padding: .75em 4em;
    border-radius: 50vh;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.2)); */
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    height: auto;
    margin-top:1em;
}
ul.header_program li {
    margin-right: 1em;
}
ul.header_program li a {
    display: flex;
    align-items: center;
}

ul.header_program li img {
    width: 40px;
    height: 40px;
    margin-right: 0.5em;
}
ul.header_program li p {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.1em;
    text-align: center;
    margin-bottom: 0;
    display: inline-block;
}
ul.header_program li p:hover {
    color: #0087e5;
}
ul.header_program li a:hover {
    opacity: 1 !important;
}
ul.header_program li span {
    font-size: 0.65em;
    /* color:#fff;
    background:#043d78;
    padding:.1em; */
    font-weight: inherit;
    display: block;
}
ul.header_program li a.line {
    padding-bottom: 5px;
    position: relative;
}
ul.header_program li a.line::before {
    background: #ffde00;
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
}
ul.header_program li a.line:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

/* ハンバーガーメニュー */
.hd__menu {
    font-weight: bold;
    font-size: 1rem;
    z-index: 999;
    width: 62px;
    height: 62px;
    transition: 0.5s;
    margin: 0 0 0 auto;
    cursor: pointer;
    background: #053a77;
    position: relative;
}
.hd__hamburger {
    width: 40px;
    height: 15px;
    margin: 0 auto;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}
.hd__hamburger.active .hd__hamburger--top {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}
.hd__hamburger.active span {
    background: #fff;
}
@media screen and (max-width: 767px) {
    .hd__hamburger span {
        height: 2px;
        position: absolute;
    }
}
.hd__hamburger.active .hd__hamburger--bottom {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
    position: absolute;
}
.hd__hamburger.active span {
    background: #fff;
}
@media screen and (max-width: 767px) {
    .hd__hamburger span {
        height: 2px;
    }
}

element.style {
}
.g-nav__bg.active {
    right: 0;
}

@media screen and (max-width: 767px) {
    .g-nav__bg {
        width: 100vw;
        padding: 60px 10% 100px;
        margin-top: 52px;
    }
}
.g-nav__bg {
    position: fixed;
    top: 0;
    right: -120%;
    height: 100vh;
    min-width: 50vw;
    transition: all 0.5s;
    background: #fff;
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 100px 10% 100px;
    margin-top: 62px;
    z-index: 999;
}

.g-nav__bg--inner {
    width: fit-content;
    margin: 0 auto;
}
.g-nav__sp-ul {
    width: fit-content;
    margin: 0 auto 40px;
}
.g-nav__bg .g-nav__li {
    border: none;
    padding: 0;
}
.g-nav__li {
    position: relative;
    z-index: 9;
    flex: 1 1 auto;
    font-size: 1.4em;
}

.l_space {
    letter-spacing: -0.1em;
}

p.top_overview {
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    color: #043d78;
}

.video {
    display: block;
    margin: 0 0 0 auto;
    width: 100%;
    /* height: calc(100vh - 75px); */
    object-fit: cover;
    text-align: center;
}
.video-wrap {
    position: relative;
    margin-top: 70px;
    /* overflow: hidden; */
}
.video-wrap:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.video-container {
    text-align: center;
    font-size: 2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff;
    z-index: 10;
}

.main_img {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin-top: 90px;
}
.main_img .main_text {
    position: absolute;
    bottom: 5%;
    left: 22%;
    transform: translate(-10%, -10%); /* 要素の自身の幅と高さの半分だけ移動して中央揃え */
    color: white;
    text-align: center;
    z-index: 2;
    font-size: 1.6em;
    line-height: 1.6em;
    font-weight: bold;
    letter-spacing:.1em;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7));
}

.main_text span {
    font-size:1.4em;
    font-weight:bold;
}

section.section_wh {
    background: #fff;
    padding: 40px 0;
    margin: 0 auto;
}
section.section_bl {
    background: #bad9e0;
    padding: 0 0 20px;
    margin: 0 auto;
}
.diagnosis {
    background: #043d78;
    /* position: relative; */
    width:100%;
    max-width:100%;
    height: 110px;
}
/* .diagnosis:before {
    content: "";
    position: absolute;
    top: 110px;
    left: 50%;
    margin-left: -60px;
    border: 60px solid transparent;
    border-top: 30px solid #043d78;
} */
.Gradation {
    width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-image: linear-gradient(90deg, #3d80c4 0%, #0c2447 50%, #3d80c4 100%);
  background-position: 0% 0%;
	background-size: 3000px 100%;
  animation: Grad 2.5s linear infinite;
  animation-delay:1s;
}

.Gradation_text{
  font-size: 30px;
  font-family: Arial;
  font-weight: 600;
  color: #fff;
 }

@keyframes Grad {
	0% {
		background-position: 0 0%;
	}
	100% {
		background-position: 3000px 0%;
	}
}

h3.diagnosis_ttl {
    color: #fff;
    background: transparent;
    margin: 0 auto;
    font-size: 1.6em !important;
    font-weight: bold;
    text-align: center;
}
.chart {
    width: 95%;

    margin: 0 auto;
}
section.section_check {
    background: url(../img/bg_check.png);
    padding: 40px 0;
    margin: 0 auto;
}
.feature {
    background:#fff;
    padding:1em;
    max-width:95%;
    margin:0 auto;
    filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.15));
    position:relative;
    border-radius:8px;
    margin:0 auto!important;
}

p.feature_txt {
    font-size:1.4em;
    font-weight:900;
    color:#043d78;
}
.feature_txt span {
    font-size:.7em;
    font-weight:inherit;
}
p.feature_num {
    position:absolute;
    top: -.35em;
    left: -.18em;
    font-family:"URW DIN",sans-serif;
    color:#e9f1f7;
    font-size:120px;
    z-index:-1;
}
/* .feature_txt:before {
    content:'';
    background:url(../img/checkbox.svg)no-repeat;
    display: inline-block;
    width:25px;
    height:25px;
    margin-right:.5em;
    background-size: contain;
    vertical-align: middle;
} */
.super {
    font-size: 0.8em;
	vertical-align: top;
}

.top_message {
    margin: 1.5em auto;
    text-align: center;
    color: #043d78;
    font-weight: bold;
    font-size: 1.4em !important;
    margin-top: 0 !important;
}
.lead_txt {
    font-size: 1.1em;
}
.lead_txt_s {
    font-size: 1em;
    font-weight: bold;
}
.start {
    width: 40%;
    display: block;
    margin: 0 auto;
}

/* 特徴スライド */
.feature-slide {
    max-width:95%!important;
    margin:0 auto;
}
.feature-slide .slide {
    width:100%;
}


/* 保護者の声 */
/* アイコンと名前のコンテナ */
.slide .parent_profile {
    display: flex;
    align-items: end;
    margin-bottom: 15px;
}
.slide .icon {
    width: 70px;
    height: 70px;
    margin: 0 15px 0 0;
}

.slide .name {
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #333;
    padding-bottom: 0.3em;
}

.slide .text {
    color: #555;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 0;
}
.voice-slide {
    max-width:95%!important;
    margin:0 auto;
}

/* ナビゲーション矢印のカスタマイズ */
.slick-prev:before,
.slick-next:before {
    color: #043d78 !important;
}

/* ドットナビゲーションのカスタマイズ */
.slick-dots li button:before {
    font-size: 10px !important;
    color: #aaa !important;
}
.slick-dots li.slick-active button:before {
    color: #555 !important;
}

/* slickの矢印設定を上書き */
.slick-prev,
.slick-next {
    /* 矢印を上下中央に配置 */
    top: 50%;
    transform: translateY(-50%);
    /* 矢印をスライダーの内部に表示 */
    z-index: 100;
    width: 30px !important;
    height: 30px !important;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px !important;
}

/* 左矢印の位置調整 */
.slick-prev {
    left: 10px; /* 左端から10px内側に配置 */
}

/* 右矢印の位置調整 */
.slick-next {
    right: 10px; /* 右端から10px内側に配置 */
}

/* スマホ用のブレイクポイントでさらに調整 */
.slick-prev {
    left: 5px !important; /* スマホではさらに内側に */
}
.slick-next {
    right: 5px !important; /* スマホではさらに内側に */
}
/* スライダー */
/* スライダーの全体的なスタイル */
.slick-slider {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 10px;
}

.slick-list {
    padding-bottom: 10px;
}

/* スライド間の余白 */
.slick-slide {
    padding: 0 10px;
}

/* テキストボックスのスタイル */
.slide .textbox {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* min-height: 520px; */
    max-height:500px;
    overflow-y: scroll;
    scrollbar-width: thin;
}
/* 保護者の声-end */

/* section */
section h2:not([class]) {
    font-size: 1.4em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2em;
    position: relative;
    z-index: 10;
}
section h2:not([class]):before {
    content: "";
    display: inline-block;
    background: url(../img/header2.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: -10;
    top: -5px;
    left: 3%;
}
section h3:not([class]) {
    font-size: 1.2em !important;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1em;
    background: #fff;
    margin: 0 auto 1em;
    width: 100%;
    padding: 0.5em 0.5em 0;
}
section h3:not([class]):after {
    content: "···";
    display: block;
    font-size: 1.5em;
    color: #555;
    margin-top: -10px;
    letter-spacing: 0.3em;
}
section h2.merit_statement {
    font-size: 1.5em;
    letter-spacing:.1em;
    font-weight: 700!important;
    text-align: center;
    margin-bottom: 1em;
    position: relative;
    z-index: 10;
}
section h2.merit_statement span {
    font-size:1.5em;
    font-weight:inherit;
}
.section_inner {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
}
.scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar::-webkit-scrollbar {
    display: none;
}

h5:not([class]) {
    font-weight: bold;
    font-size: 1.2em;
    border-bottom: 1px solid #888;
    margin-bottom: 0.5em;
    padding-top: 0;
}

.outline {
    font-size: 1.2em;
    font-weight:500;
    line-height: 1.6em;
    letter-spacing: 0.05em;
    text-align: center;
}


/* プログラム */
.program_intro {
    background:#fff;
    padding:2em;
    margin-bottom:2em;
    filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.15));
}
.program_intro > div {
    margin-bottom:1em;
}
.program_intro_ttl {
    display:flex;
    align-items:center;
    border-bottom:1px solid #ccc;
    padding-bottom:1em;
    margin-bottom:1.25em;
}
.logo_img {
    width:25%;
    height:25%;
    margin-right:1em;
}
.logo_txt {
    width:75%;
    color:#043d78;
    font-size:1.1em;
    line-height:1.2em;
    font-weight:bold;
    margin-bottom:0!important;
}
.logo_txt span {
    font-size:.6em;
    line-height:0;
    font-weight:bold;
}
.program_intro img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 5px;
}
.program_intro .text {
    font-size:.9em;
}
.program_apply {
    background:#fff;
    font-size:.9em;
    border:1px solid #0087e5;
    border-radius:4px;
    padding:.75em 2em;
    text-align:center;
    color:#0087e5!important;
}

.program_apply:hover {
    background:#0087e5;
    border:1px solid #0087e5;
    color:#fff!important;
    opacity:1;
}

/* 背景フレーム */
.bg-bl {
    background: #e5f4ff;
    border-radius: 10px;
    padding: 1.5em;
    font-size: 1em;
    font-weight: bold;
    color: #666;
    line-height: 1.8;
}
.bg-line {
    background: #fff;
    border: 2px solid #043d78;
    border-radius: 10px;
    padding: 1.5em;
}
.bg-doubleline {
    background: #fff;
    border: 5px double #ccc;
    padding: 1.5em;
}
.scroller_testimonial {
    width: 100%;
    max-height: 200px;
    overflow-y: scroll;
    scrollbar-width: thin;
    border: 2px solid #043d78;
    border-radius: 10px;
    background: #fff;
    padding: 2em;
}
.scroller_testimonial p {
    font-size: 0.85em;
    line-height: 1.4em;
}
.scroller_ceo {
    width: 100%;
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: thin;
    background: #fff;
    border: 1px solid #ccc;
    padding: 2em;
}
.scroller_ceo p {
    font-size: 0.85em;
}
/* .profile {
    width: clamp(10vw, 140px, 30vw);
    object-fit: cover;
    border-radius: 50%;
    object-position: 0px 8px;
    background: #eaeaea;
    display: block;
    margin: 0 auto 1em;
} */
.biography {
    background: #f8f8f8;
    color:#555;
    padding:1em;
    font-size:.9em;
    line-height:1.8em;
}
.biography span {
    border-bottom:1px dotted #555;
    padding-bottom:.25em;
    display:block;
    margin-bottom:.25em;
}
.profile img {
    width:100%;
    height:100%;
    border-radius: 8px;
    margin-bottom:1em;
}
.testimonial {
    font-weight: bold;
    text-align: center;
    font-size: 0.9em;
}
.testimonial span {
    background: #333;
    color: #fff;
    padding: 0.25em 1em;
    font-size: 0.9em;
}
.ttl {
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
}
.guardians {
    padding: 2% 0;
    margin-bottom: 2em;
    min-height: 300px;
}
.guardians div {
    border: 2px solid #043d78;
    padding: 2em;
    font-size: 0.9em;
    width: 100%;
    height: 300px;
}

.feature01 {
    color: #888;
    text-align: center;
    font-weight: bold;
    background: url(../img/feature01.png) no-repeat;
}
.feature01 span {
    font-size: 0.75em;
}

/* 保護者の声　続きを見る */
.gardians {
    background:#fff;
    padding:1em;
    font-size:.85em;
    filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.15));
}
.gardians .parent_profile {
    display: flex;
    align-items: end;
    margin-bottom: 15px;
}
.gardians .icon {
    width: 70px;
    height: 70px;
    margin: 0 15px 0 0;
}

.gardians .name {
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #333;
    padding-bottom: 0.3em;
}



.readmore {
  position: relative;
  padding: 0 0 40px;
}

.readmore h4{
	color: #043d78;
    font-weight: bold;
    margin: 1em 0 0.5em 0 !important;
}

.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 100px;
  padding: .5em 0;
  color: #fff;
	font-size:0.75em;
  text-align: center;
  border-radius: 5px;
  background-color: #333;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}
.readmore label:hover {
    background:#fff;
    color:#333;
    border: 1px solid #333;
    transition:.3s;
}
.readmore label::before{
  content: '続きを読む';
}

.readmore input[type="checkbox"]:checked ~ label::before {
  content: '閉じる';
}

.readmore input[type="checkbox"]{
  display: none;
}

.readmore-content {
  position: relative;
  height: 14em;
  overflow: hidden;
}

.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}

.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  display: none;
}

.readmore p:empty{
	display:none;
}

/* 保護者の声　続きを見る-end */

/* .program {
    border: 1px solid #ccc;
    border-radius: 8px;
}
a.program_apply {
    background: #0087e5;
    border: #0087e5;
    border-radius: 50vh;
    padding: 0.5em 1em;
    display: block;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    color: #fff !important;
    box-shadow: 0 4px 0 #043d78;
}
a.program_apply:hover {
    transform: translateY(4px);
    box-shadow: 0 1px #0087e5;
    opacity: 1;
} */
.logo,
.logo_footer {
    font-size: 0.75em;
    width: 90%;
    padding: 1em;
    margin: 0 auto;
    background: #fff;
    filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.2));
}
.logo {
    min-height: 200px;
}
.logo_footer {
    min-height: 240px;
}
/* .program_apply {
    width: 90%;
    position: absolute;
    bottom: 5%;
    margin-bottom: 0;
} */
.logo img {
    margin: 0 auto;
    height: 70px;
    width: clamp(14vw, 150px, 100vw);
    display: block;
}
.logo img.square {
    width: 70px;
    display: block;
    margin: 0 auto;
}
.logo span {
    color: #043d78;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    display: block;
    margin-bottom: 0.5em;
}
.logo span.logo_ttl {
    background: #043d78;
    color: #fff;
    padding: 0.25em 0.5em;
    margin-bottom: 0.25em;
    font-size: 0.9em;
}
/* 早期英語学習の３つのメリット */
.merit {
    background: #fff;
    padding: 1.5em;
    min-height: 110px;
    margin-bottom: 3em;
    filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.15));
    min-height:160px;
}
.merit p {
    font-size: 0.8em;
    margin-bottom: 0 !important;
}
.merit img {
    width: 90%;
    display: block;
    margin: .5em auto;
}
.merit img.img02 {
    width: 110%;
    display: block;
    margin: 1em auto;
}
.merit_num {
    margin-top:-70px;
    font-family: "URW DIN", "Segoe UI", "Arial", sans-serif;
    font-size:1.2em!important;
    color:#043d78;
}
.merit_num span {
    font-family: "URW DIN", "Segoe UI", "Arial", sans-serif;
    font-size: 2.5em;
    font-weight: bold;
    margin-left: 0.25em;
}
p.merit_ttl {
    /* color: #0087e5; */
    color:#043d78;
    font-weight: 700;
    font-size: 1em;
    line-height:1.3em;
    margin-bottom:1em!important;
}

/* 「英語」はいつから始めるべき？ */
.learning_kids {
    position: relative;
    min-height: 500px;
}

.learning_txt {
    background: #fff;
    margin: 0 auto;
    border-radius: 10px;
    padding: 1.5em;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    color: #555;
    line-height: 1.8;
    filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.2));
    position: absolute;
    top: 10em;
    z-index: 0;
}

.learning_kids01 {
    background-image: url(../img/learning_kids01.png);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: 300px 300px;
    background-position: -48px -58px;
    position: absolute;
    top: -2em;
    z-index: 10;
}
.learning_kids02 {
    background-image: url(../img/learning_kids02.png);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: 300px 300px;
    background-position: -62px -24px;
    position: absolute;
    right: 1em;
    bottom: 0;
}
.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 30px solid #0087e5;
    border-bottom: 0;
    margin: 0 auto 1em;
}
.learning_comment {
    font-size:1.4em;
    font-weight:bold;
    letter-spacing:.05em;
    padding-left:1.5em;
}
.learning_comment::before, .learning_comment::after {
    content: "";
    position: absolute;
    margin: auto;
}
.learning_comment::before {
    width: 9px;
    height: 9px;
    top: 16px;
    left: 6px;
    background: #ffde00;
}
.learning_comment::after {
    width: 13px;
    height: 13px;
    top: 4px;
    left: 12px;
    background: #0095d0;
}
.learning_comment2 {
    font-size:1em;
    font-weight:bold;
}
.mission01,
.mission02 {
    background: #fff;
    padding: 1.5em 2em;
    width: 100%;
    max-width: 750px;
    margin-bottom: 4em;
    box-shadow: 0 0 5px #ccc;
}
.mission02 {
    float: right;
}
.mission_txt {
    font-size: 0.9em;
    line-height: 1.8em;
}
.mission_ph01 img {
    box-shadow: 0 0 5px #ccc;
}

.policy_point {
    position: relative;
    padding: 3px 50px 3px 10px;
    background: #043d78;
    z-index: 10;
    display: inline-block;
    margin-bottom: 0;
}
.policy_point:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 24px transparent;
    border-top: solid 38px #f9f7f1;
}
.policy_point span {
    font-size: 1.3em;
    /* font-weight:bold; */
    color: #fff;
    line-height: 1.3;
}
.policy_point span:before {
    content: "POINT";
    font-size: 0.6em;
    margin-right: 0.5em;
}

.link_otherinfo {
    background: #043d78;
    color: #fff !important;
    border-radius: 20px;
    padding: 7px 14px;
    /* display: inline-block; */
    text-align: center;
    font-size: 0.75em;
    line-height: 1em !important;
    box-shadow: 0 2px #bbb;
}
.link_otherinfo:after {
    content: "\f0da";
    font-size: 1em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}
.link_otherinfo:hover {
    transform: translateY(2px);
    box-shadow: none;
    opacity: 1;
    color: inherit;
    transition: 0.3s;
}
.link_txt {
    text-decoration: none;
    font-weight: bold;
}
.link_txt:hover {
    text-decoration: underline;
    opacity: 1;
    transition: 0.3s;
}

/* 校舎 */
.school > .card2 {
    min-height: 360px;
    margin-bottom: 2rem;
}
.school_ttl {
    border: 1px solid #043d78;
    color: #043d78;
    padding: 0.5em 1.5em;
    display: inline-block;
    font-size: 1.1em !important;
    padding-bottom: 0.25em;
    margin-bottom: 0.5em;
}
.school {
    margin-bottom: 3em;
}
.school p {
    font-size: 0.85em;
}
.school p span {
    font-weight: bold;
}
.school img {
    width: 100%;
    margin-bottom: 0.5em;
}
.school iframe {
    width: 100%;
    height: 220px;
    margin-bottom: 0.5em;
}

/* コース紹介 */
.about_course,
.course_selection {
    font-size: 1.3rem;
    line-height: 1.2em;
    color: #043d78;
    text-align: center;
    margin-bottom: 20px;
}
.about_course:before,
.course_selection:before {
    content: "";
    background: url(../img/ico_about_course.png) no-repeat;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 5px;
    background-size: contain;
    vertical-align: middle;
}
.course_btn a {
    display: block;
    border: 1px solid #043d78;
    border-radius: 8px;
    padding: 10px 0;
    color: #043d78 !important;
    font-size: 1.1em;
    text-align: center;
    background: #fff;
}
.course_btn a:hover {
    display: block;
    border: 1px solid #043d78;
    border-radius: 8px;
    padding: 10px 0;
    background: #043d78;
    color: #fff !important;
}
.course_btn a:hover {
    opacity: 1;
}
.course_frm {
    border: 2px dotted #043d78;
    background: #fff;
    padding: 20px 25px;
    margin: 0 auto 40px;
}
.course_col_beginners,
.course_col_core {
    position: relative;
    margin-bottom: 20px;
}
.course_col_scholars {
    position: relative;
}
.course_col_beginners:before {
    content: "";
    background: url(../img/ico_info_beginners.png) no-repeat;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 7px;
    background-size: contain;
    vertical-align: middle;
}
.course_col_core:before {
    content: "";
    background: url(../img/ico_info_core.png) no-repeat;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 7px;
    background-size: contain;
    vertical-align: middle;
}
.course_col_scholars:before {
    content: "";
    background: url(../img/ico_info_scholars.png) no-repeat;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 7px;
    background-size: contain;
    vertical-align: middle;
}

.course_col_beginners:after,
.course_col_core:after,
.course_col_scholars:after {
    font-family: "Font Awesome 5 Free";
    content: "\f30b";
    font-weight: 900;
    margin-left: 5px;
}
.card_course {
    background: #fff;
    border-top: 8px solid #043d78;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}
.card_course_inner,
.card_info_inner {
    padding: 15px 20px;
}
.card_course_inner h4 {
    text-align: center;
    font-size: 1.1em;
    color: #043d78;
    margin-bottom: 1rem;
}
.card_course_beginners_bg,
.card_course_core_bg,
.card_course_scholars_bg {
    padding: 10px 20px;
    color: #fff;
    text-align: center;
}
.card_course_beginners_bg {
    background: #036eb8;
}
.card_course_core_bg {
    background: #043d78;
}
.card_course_scholars_bg {
    background: #142948;
}

/* 入塾説明会のお申込み */
.card_info {
    background: #fff;
    margin-top: 60px;
    margin-bottom: 80px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}
.card_info h4 {
    line-height: 1.8em;
    margin-left: 0;
    margin-bottom: 10px;
    font-weight: bold;
}
.info_icon {
    font-weight: bold;
    display: inline-block;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0 10px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
.card_info p {
    margin-left: 20px;
}

/* コースアコーディオン */
.acd-check {
    display: none;
}
.acd-label {
    background: transparent;
    display: block;
    position: relative;
    border-bottom: 2px dotted #888;
    margin: 0 0 20px;
    font-weight: 700;
}
/* .acd-label:after{
    box-sizing: border-box;
    content: '\f078';
    display: block;
    font-family: "Font Awesome 5 Free";
    color:#333;
    height: 52px;
    margin: 20px;
    position: absolute;
    right: 0;
    top: -100px;
} */
.acd-check:checked {
    content: "\f077";
}
.acd-content {
    height: 0;
    opacity: 0;
    padding: 0;
    transition: 0.5s;
    visibility: hidden;
    /* border-bottom:1px dotted #333; */
}
.acd-content p {
    margin-bottom: 10px;
}

.acd-check:checked + .acd-label + .acd-content {
    height: 400px;
    opacity: 1;
    visibility: visible;
}
.acd-check:checked + .acd-label + .acd-content_overflow {
    height: 100%;
    width: 100%;
    overflow: scroll;
}
.acd-content_overflow > p span {
    font-size: 0.75em;
    margin-left: 1em;
}
.acd_click {
    color: #ff6c00;
    font-size: 0.75em;
}
.acd_click:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    font-weight: 900;
    margin-right: 5px;
}
.acd_click:hover {
    text-decoration: underline;
    font-weight: bold;
}
.info_tbl {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 0.9em;
    line-height: 1.1em;
}
.info_tbl tr:first-child {
    border-top: 1px solid #888;
}
.info_tbl tr:last-child {
    border-bottom: 1px solid #888;
}
.info_tbl th,
.info_tbl td {
    width: 18%;
    font-size: 0.9em;
    padding: 10px;
    text-align: center;
    border-bottom: 1px dotted #888;
    border-right: 1px dotted #888;
    vertical-align: middle;
}
.info_tbl th.target,
.info_tbl td.target {
    width: calc(100% - 18% * 4);
}
.info_tbl th:last-child,
.info_tbl td:last-child {
    border-right: none;
}

.info_tbl th {
    background: #f8f8f8;
}

/* お問い合わせ */
.phone {
    font-size: 1.2em !important;
    font-weight: 700 !important;
    text-align: center;
}
.guide_tbl {
    width: 90%;
    border-collapse: collapse;
    margin: 10px auto;
    font-size: 0.9em;
}
.guide_tbl tr {
}
.guide_tbl th {
    background: #f8f8f8;
    font-weight: 700;
}
.guide_tbl th,
.guide_tbl td {
    text-align: center;
    padding: 3px 0;
}

/* よくあるご質問 */
.faq > label {
    display: block;
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
    background: #f9f7f1;
}
.faq > label > input {
    display: none;
}
.faq > label > dt {
    position: relative;
    padding: 2em 3.5em 2em 4em;
    font-size: 1rem;
    border-bottom: 1px solid #333;
}
.faq > label > label {
    display: inline;
}
.faq > label > label > dd {
    position: relative;
    padding: 2em 3.5em 2em 6em;
    font-size: 1rem;
    border-bottom: 1px solid #333;
}
.faq > label > dt {
    /* background-color: #e3eef9; */
    background:#f8f8f8;
}

.faq > label > dt {
    font-weight: 700;
}
.faq > label > dt::before {
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
    font-size: 2em;
}
.faq > label > label > dd::before {
    position: absolute;
    top: 50%;
    left: 2em;
    transform: translateY(-50%);
    font-size: 2em;
}
.faq > label > dt {
    z-index: 1;
}
.faq > label > dt::before {
    content: "Q";
    color: #043d78;
    font-family: "DIN Alternate", sans-serif;
    font-weight: normal;
}
.faq > label > label > dd::before {
    content: "A";
    color: #c34e4e;
    font-family: "DIN Alternate", sans-serif;
    font-weight: normal;
}
.faq > label > dt span:after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: 900;
}
.faq > label > label > dd {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateY(-2em);
    margin: 0;
    visibility: hidden;
}
.faq > label > input:checked ~ label > dd {
    position: relative;
    background: #fff;
    transform: translateY(0px);
    visibility: visible;
    transition: 0.5s;
}

/* 代表挨拶 */
.work {
    background: #fff;
    padding: 3em 1em;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}
.work img {
    width: 60%;
    display: block;
    margin: 0 auto 10px;
}
.work p {
    font-size: 0.8em;
    line-height: 1.2em;
    text-align: center;
}
.work p span {
    font-weight: 700;
}

/* ボタン */
.form_btn_beginners,
.form_btn_core,
.form_btn_jr,
.form_btn_uni,
.form_btn_scholars {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2em;
    color: #fff;
    border-radius: 10px;
    padding: 20px 0;
    text-align: center;
    min-height: 110px;
    vertical-align: middle;
    width: 100%;
    margin: 20px auto 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.form_btn_beginners span,
.form_btn_core span,
.form_btn_jr span,
.form_btn_uni span,
.form_btn_scholars span {
    font-size: 0.8em;
}
.form_btn_beginners:hover,
.form_btn_core:hover,
.form_btn_jr:hover,
.form_btn_uni:hover,
.form_btn_scholars:hover {
    position: relative;
    display: block;
    top: 2px;
    left: 0;
    transition: 0.5s;
    cursor: pointer;
}
.form_btn_beginners a:hover,
.form_btn_core a:hover,
.form_btn_jr a:hover,
.form_btn_uni a:hover,
.form_btn_scholars a:hover a:hover {
    opacity: 1;
}
.form_btn_beginners {
    background-color: #036eb8;
}
.form_btn_core {
    background-color: #043d78;
}
.form_btn_jr {
    background-color: #508e2a;
}
.form_btn_uni {
    background-color: #195731;
}
.form_btn_scholars {
    background-color: #142948;
}
.btn_info,
.btn_guide {
    display: block;
    width: 100%;
    max-width: 600px;
    font-weight: 700;
    line-height: 1em;
    color: #fff !important;
    border-radius: 50vh;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    padding: 20px 0;
    min-height: 50px;
}
.btn_info {
    background: #f37c06;
    color: #fff !important;
}
.btn_guide {
    background: #ffc600;
    color: #fff;
}
.btn_info:hover,
.btn_guide:hover {
    position: relative;
    display: block;
    top: 2px;
    left: 0;
    transition: 0.5s;
    cursor: pointer;
    opacity: 1;
}
.btn_info_gy {
    display: block;
    width: 100%;
    max-width: 600px;
    font-weight: 700;
    line-height: 1em;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    padding: 20px 0;
    min-height: 50px;
    background: #ccc;
}
a.btn_diagnosis {
    display: block;
    width: 100%;
    max-width: 600px;
    background:#142948;
    border-radius:10px;
    font-weight: 700;
    line-height: 1em;
    color: #fff !important;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    padding: 20px 0;
    min-height: 50px;
}
a.btn_diagnosis:hover {
    opacity:1;
    background:#fff;
    border:1px solid #142948;
    color:#142948!important;
}


.footer {
    position: fixed;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    height: 100px;
    z-index: 10;
}
.footer_inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* .footer_box > .btn_info,.footer_box > .btn_guide {
  width:90%;
  font-size:.9em;
  color:#fff;
  margin:0 auto 20px;
  min-height:60px;
  padding:20px 0;
} */

/* パンくず */
.bread_area {
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 220px;
    right: 0;
    margin: 0 auto;
}
.bread_area_info {
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 2;
}
.breadcrumb {
    padding-left: 0;
    float: right;
    font-size: 13px;
}
.breadcrumb li {
    display: inline;
    list-style: none;
    font-weight: 700;
}

.breadcrumb li:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    padding: 0 3px;
    color: #333;
}

.breadcrumb li:last-child:after {
    content: "";
}

.breadcrumb li:first-child a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    font-weight: 900;
    font-size: 1.1em;
}
.breadcrumb li a {
    text-decoration: none;
}

.breadcrumb li a:hover {
    /* text-decoration: underline; */
    position: relative;
    top: 0;
    left: 2px;
    opacity: 1;
}
.flex_company {
    display: flex;
    flex-wrap: wrap-reverse;
}
.flex_company01 {
    width: 100%;
}

.company {
    background: #043d78;
    color: #fff;
    width: 100%;
    max-width: 100%;
    height: 260px;
}
.company_inner {
    width: 100%;
    max-width: 1400px;
    padding:2em 0;
    margin: 0 auto;
    font-size: 1em;
}
.company_inner > div {
    justify-content:space-between;
    display:flex;
    align-items: end;
}
.company_inner img {
    width: clamp(10vw, 12em, 100vw);
    display: block;
}

.company_name {
    font-size:.75em;
}
.company_name span {
    font-size:1.3em;
    margin-bottom:1em;
    display:block;
}
.copyright {
    width: 100%;
    max-width: 1400px;
    font-size: 0.75em;
    text-align: center !important;
    line-height: 1;
    margin: 10px auto;
    padding-top: 20px;
    border-top:1px dotted #fff;
}
#page_top {
    width: 60px;
    height: 60px;
    border-radius: 40px;
    position: fixed;
    right: 40px;
    bottom: 90px;
    opacity: 0.8;
    background-color: #22457a;
    z-index: 20;
}
#page_top a {
    position: relative;
    display: block;
    width: 6px;
    height: 60px;
    text-decoration: none;
}
#page_top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f077";
    font-size: 20px;
    color: #fff;
    position: absolute;
    width: 60px;
    height: 60px;
    top: 30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
.inquiry {
    border-top: 1px solid #043d78;
    border-bottom: 1px solid #043d78;
    margin: 1em auto;
}
.inquiry th {
    font-weight: bold;
}
.inquiry th,
.inquiry td {
    text-align: left;
    padding: 0.5em;
    font-size: 1.2em;
}

.catch_txt {
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: center;
    color: #555;
    font-weight: bold;
    margin-bottom: 2em;
}
.underline_y {
    background: linear-gradient(transparent 60%, #ffdf00 60%);
    font-weight: inherit;
}
.caption {
    font-size: 0.75em;
    text-align: right;
}
dl.event_date {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}
dl.event_date dt {
    width: 25%;
    font-size: 0.9em;
    text-align: center;
    padding: 0.2em;
    margin-bottom: 10px;
    border: 1px solid #043d78;
    color: #043d78;
}
dl.event_date dd {
    width: 70%;
    font-size: 0.9em;
    margin-left: 3%;
    padding-top: 0.25em;
    font-weight: bold;
}
dl.event_date dd.date_closing {
    width: 70%;
    font-size: 0.9em;
    margin-left: 3%;
    padding-top: 0.25em;
    font-weight: bold;
    color: #bbb;
}
dl.event_date dd span {
    font-size: 1.4em;
    font-weight: bold;
}
/* Q&A */
.faq_q,
.faq_a {
    overflow: hidden;
    align-items: center;
    line-height: 1.8em;
    margin-bottom: 1em;
}
.faq_a {
    margin-bottom: 2em;
}
.faq_q .faq_no,
.faq_a .faq_no {
    float: left;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
    font-family: "Helvetica Neue", Arial;
}
.faq_q .faq_no {
    background-color: #043d78;
}
.faq_a .faq_no {
    background-color: #388ee7;
}
.faq_q .faq_txt,
.faq_a .faq_txt {
    margin-bottom: 0;
    padding-left: 3em;
    color: #333;
    box-sizing: border-box;
}
.faq_q .faq_txt {
    font-weight: bold;
    color: #043d78;
}
.faq_a:last-child {
    margin-bottom: 0;
}

.webinar_btn_gr {
    background: #ccc;
    padding: 7px 10px;
    margin: 0 auto;
    display: block;
    border-radius: 30px;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.2em;
    margin: 20px 0 0;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}
.disc {
    list-style-type: disc;
    margin: 10px 10px 10px 1.5em;
    font-size: 0.9em;
}
.branch {
    width: 60%;
}
.icon_theme {
    display: block;
    margin: 0 auto;
}
.speciality {
    border: 1px solid #043d78;
    background: #fff;
    padding: 25px;
    box-shadow: 5px 5px #043d78;
    min-height: 210px;
}
.voice {
    border: 1px solid #043d78;
    background: #fff;
    padding: 0.5em;
    /* box-shadow: 0 5px 5px #ccc; */
    min-height: 360px;
}
.voice p {
    font-size: 0.9em;
}
.speciality_ttl,
.voice_ttl {
    color: #043d78;
    font-weight: bold;
    font-size: 1.25em;
}
.unique_curri {
    border: 1px solid #043d78;
    background: #fff;
}
.unique_curri_ttl_core,
.unique_curri_ttl_uni,
.unique_curri_ttl_sch {
    padding: 1em;
    color: #fff;
    font-weight: bold;
    font-size: 1.05em;
    line-height: 1.4em;
    text-align: center;
}
.unique_curri_ttl_core span,
.unique_curri_ttl_uni span,
.unique_curri_ttl_sch span {
    background: #fff;
    padding: 0.1em 0.5em;
    font-size: 0.9em;
    color: #282828;
    margin-top: 0.25em;
    display: inline-block;
}
.unique_curri_ttl_core {
    background: #043d78;
}
.unique_curri_ttl_uni {
    background: #195731;
}
.unique_curri_ttl_sch {
    background: #142948;
}
.unique_curri p {
    font-size: 0.9em;
}

.tbl_unique2025 {
    width: 100%;
    margin-bottom: 0.25em;
}
.tbl_unique2025 tr.unique2025_core {
    border: 1px solid #043d78;
}
.tbl_unique2025 tr.unique2025_uni {
    border: 1px solid #195731;
}
.tbl_unique2025 tr.unique2025_sch {
    border: 1px solid #142948;
}

.tbl_unique2025 tr.unique2025_core th {
    background: #043d78;
}
.tbl_unique2025 tr.unique2025_uni th {
    background: #195731;
}
.tbl_unique2025 tr.unique2025_sch th {
    background: #142948;
}
.tbl_unique2025 th {
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 1em 0.25em;
    vertical-align: middle;
}
.tbl_unique2025 th span {
    background: #fff;
    color: #282828;
    padding: 0.25em 1em;
    border-radius: 4px;
    font-size: 0.9em;
    display: inline-block;
    margin-top: 0.5em;
}
.tbl_unique2025 td {
    font-size: 0.9em;
    background: #fff;
    padding: 1em;
}
.tbl_unique2025 td.space {
    background: #f9f7f2;
}

/* 冬期講習 */
.seasonal_point_num {
    background: #ffa800;
    padding: 3px 10px;
    font-size: 1.1em;
    font-weight: bold;
    margin-right: 0.5em;
    display: inline-block;
    margin-bottom: 0.25em;
}

/* 入塾の流れ */
.info_flow_step {
    background: #043d78;
    color: #fff;
    padding: 1em;
    font-size: 1em;
    line-height: 1.6em !important;
    margin-top: 0 !important;
}
.info_flow_step span {
    font-size: 1.3em;
}
.info_flow_step_ttl {
    border-top: 1px solid #043d78;
    border-bottom: 1px solid #043d78;
    padding: 0.75em 0;
    font-size: 1.1em;
    color: #043d78;
    text-align: center;
}
.info_flow_step_line {
    border-bottom: 1px solid #888;
    padding-bottom: 0.25em;
    font-weight: bold;
}
.info_flow_step_line span {
    font-size: 0.85em;
    font-weight: normal;
}
.info_flow_join {
    border: 1px solid #043d78;
    background: #fff;
    padding: 0.35em 0.5em;
    box-shadow: 2px 2px #043d78;
    display: inline-block;
    color: #043d78;
    font-size: 1.1em;
    margin-top: 0 !important;
    margin-bottom: 0.5em !important;
    min-width: 180px;
    text-align: center;
}
.bg_join {
    background: #036eb8;
    border-radius: 4px;
    color: #fff;
    padding: 0.25em 0.5em;
    display: inline-block;
}
.bg_level {
    background: #ffc000;
    border-radius: 4px;
    padding: 0.25em 0.5em;
    display: inline-block;
}
.frm_lgy {
    background: #ecf7ff;
}
.frm_dotted {
    border: 1px dotted #888;
    border-radius: 8px;
    background: #fff;
}
.partition {
    border-bottom: solid 1px #ccc;
    width: 60% !important;
    margin: 0 auto;
    margin-bottom: 2em;
}

.footer_inner {
    max-width: 1000px;
    width: 90%;
}
.footer_inner p {
    color: #fff;
    font-weight: bold;
}

.iframe-container {
    position: relative;
    width: 100%; /* 幅を親要素に合わせる */
    padding-top: 56.25%; /* 16:9の比率にする場合 (9 ÷ 16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----------------------------------
  TABLET
----------------------------------*/

@media (max-width: 1020px) and (min-width: 768px) {
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }
    .sp_pc {
        display: none;
    }
    .header_inner img {
        width: 30%;
    }

    .main_img_container {
        background-position: 40% 20%;
    }
    .main_img_inner h1 {
        font-size: 4rem;
        top: 280px;
        right: 0;
    }
    .main_img_inner p {
        font-size: 1.6rem;
        top: 370px;
        right: 45px;
        text-align: center;
    }
    .acd-label:after {
        top: -90px;
    }
    .acd-check:checked + .acd-label + .acd-content_overflow {
        overflow: visible;
    }
    .contact:before {
        width: 100%;
        height: 100%;
    }
    .company img {
        width: 30%;
    }
    .work img {
        width: 20%;
    }
    .summer_bnr {
        bottom: 10%;
        left: 78%;
        z-index: 10;
    }
    .header_left {
        width: 30%;
    }
    .header_right {
        width: 70%;
    }
    ul.header_program {
        padding: 0.5em 2em;
    }
}
/*----------------------------------
  PC
----------------------------------*/

@media screen and (min-width: 1024px) {
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }
    p.top_overview {
        font-size: 2em;
    }
    .header_left {
        width: 35%;
    }
    .illust p {
        margin-top: 35px;
    }
    .acd-check:checked + .acd-label + .acd-content_overflow {
        overflow: visible;
    }

    .course_frm {
        width: 70%;
    }
    header {
        height: 100px;
    }
    /* section */
    section h2:not([class])  {
        font-size: 2.2em;
    }
    section h2:not([class]) :before {
        top: -6px;
        left: 30px;
    }
    section h3:not([class]) {
        width: 50%;
        font-size: 1.6em !important;
    }
    section h2.merit_statement {
    font-size: 2.2em;
    }
    h1 .txt {
        font-size: 15px;
    }
    .lead_txt {
        font-size: 1.2em;
    }
    .start {
        width: 80%;
    }
    .logo {
        min-height: 220px;
    }
    .logo_footer {
        min-height: 260px;
    }
    .bg-bl {
        font-size: 1.2em;
    }
    .lead_txt {
        font-size: 1.4em;
    }
    .scroller_testimonial img {
        width: 100%;
    }
    .outline {
        font-size: 1.2em;
    }
    
.main_img .main_text {
    position: absolute;
    bottom: 0;
    left: 60%;
    transform: translate(0%, -30%); /* 要素の自身の幅と高さの半分だけ移動して中央揃え */
    text-align:left;
    font-size: 2.4em;
    line-height: 2em;
}
    
/* 早期英語学習の３つのメリット */
.merit {
    min-height:240px;
}
.merit p {
    font-size: .9em;
    line-height:1.8em;
}
.merit img {
    width: 40%;
}
.merit img.img02 {
    width: 50%;
}
p.merit_ttl {
    font-size: 1.4em;
    line-height:1.4em!important;
}
p.merit_ttl span {
    font-family: "impact", "Segoe UI", "Arial", sans-serif;
    font-size: 2em;
    font-weight: bold;
    margin-right: 0.25em;
}
.merit_num {
    margin-top:-50px;
}

/* 「英語」はいつから始めるべき？ */
.learning_kids {
    position: relative;
    min-height: 200px;
}
.learning_txt {
    font-size: 1.3em;
    top: 0;
    width: 60%;
}
.learning_kids01 {
    position: absolute;
    left: 6em;
    top: -6em;
}
.learning_kids02 {
    position: absolute;
    right: 6em;
    bottom: -8em;
}
.learning_comment {
    font-size:1.6em;
}
.learning_comment2 {
    font-size:1.3em;
}

h3.diagnosis_ttl {
    font-size: 1.7em !important;
}
.feature {
    padding:2.5em;
}
p.feature_num {
    top: -.57em;
    left: -.4em;
}
.feature_txt {
    font-size:1.4em;
}


/* プログラム */
.program_intro > div {
    margin-bottom:0;
}
.logo_img {
    width:10%;
    height:10%;
    margin-right:1em;
}
.logo_txt {
    width:90%;
    font-size:1.4em;
    line-height:1.2em;
}
.logo_txt span {
    font-size:.6em;
    line-height:0;
    font-weight:bold;
}


        .message {
            height: 500px;
            background-position: 65% 10%;
        }
        .info_tbl {
            width: 80%;
            background: #fff;
            font-size: 1em;
            line-height: 1.6em;
        }
        .form_btn_beginners,
        .form_btn_core,
        .form_btn_jr,
        .form_btn_uni,
        .form_btn_scholars {
            width: 40%;
        }

        .work img {
            width: 20%;
        }

        .acd-check:checked + .acd-label + .acd-content_beginners {
            height: 300px;
        }
        .acd-check:checked + .acd-label + .acd-content_core {
            height: 500px;
        }
        .acd-check:checked + .acd-label + .acd-content_jr {
            height: 200px;
        }
        .acd-check:checked + .acd-label + .acd-content_uni {
            height: 750px;
        }
        .acd-check:checked + .acd-label + .acd-content_scholars {
            height: 1100px;
        }

        .footer_webinar {
            height: 140px;
        }
        .header_inner img {
            width: 55%;
        }
        .icon_theme {
            margin: 2em auto 0;
            width: 80%;
        }
        .btn50 {
            width: 50%;
        }

        .gotoform {
            padding-top: 200px;
            padding-left: 0;
        }
        .gotoform span {
            display: block;
            width: 440px;
            margin: 0 auto;
            background: #ffc600;
            border-radius: 30px;
            text-align: center;
            padding: 10px 5px;
        }
        .gotoform span:after {
            font-family: "Font Awesome 5 Free";
            content: "\f138";
            font-weight: 900;
            margin-left: 0.5em;
            font-size: 1em;
        }

        .school img {
            width: 50%;
            max-width: 280px;
            vertical-align: top;
        }
        .school iframe {
            width: 50%;
            max-width: 310px;
            height: 185px;
        }
        .top_message {
            font-size: 2em !important;
        }
        #page_top {
            bottom: 25px;
        }

        .tbl_unique2025 th {
            width: 30%;
        }
        .tbl_unique2025 td {
            width: 70%;
        }

        .slide .icon {
            width: 35%;
            height: 35%;
            border-radius: 50%;
            object-fit: contain;
            background: #eaeaea;
            padding: 5px;
            margin: 0 auto 1em;
        }
        .slide .text {
            color: #555;
            font-size: 0.9em;
            line-height: 1.6;
        }
}

/* メインビジュアル（スライダー） */
.main-visual ul.main-slide {
    max-width: 100%;
}
.main-visual ul.main-slide li img {
    width: 100vw;
    height: 70vh;
    object-fit: cover;
    object-position:top;
}

/* 生徒の声（スライダー） */
.profile-slide {
    max-width: 100%;
}

.profile-slide .row {
    display: flex !important;
}
