@charset "UTF-8";

/* ----------------------------------------------------------------------
   Base
---------------------------------------------------------------------- */
html {
    font-size: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}
* {
    box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.7;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.section-title {
    font-size: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    padding-bottom: 16px;
    margin-bottom: 40px;
    background-image: url(../images/section-title-line.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
}
.pc_none{
    display: none;
}
@media screen and (max-width:768px) {
    .pc_none{
    display: block;
}
}
/* 最初は見えない状態 */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 画面内に入ったら付与されるクラス */
.js-fade.is-show {
    opacity: 1;
    transform: translateY(0);
}
.sr-only{
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    white-space: nowrap !important;
    border: 0 !important;
    clip-path: inset(50%) !important;
}

/* ----------------------------------------------------------------------
   Header
---------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    padding: 10px 40px;
    box-shadow: 0 2px 10px rgba(202, 202, 202, 0.5);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo{
    font-size: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
    font-weight: bold;
}
.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__info {
    text-align: center;
    font-size: 12px;
    color: #2872CD;
    font-weight: bold;
}
.header__info img{
    width: 18px;
}

.header__info-text {
    margin: 0;
}

.header__tel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
    line-height: 1;
}
.header__icon-phone {
    width: 20px;
    margin-right: 5px;
}
.header__hours {
    margin: 0;
}
.header__buttons {
    display: flex;
    gap: 10px;
}

.header__btn {
    border-radius: 100px;
    padding: 8px 48px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
}
.header__btn--mail {
    background-color: #FB5243;
}
.header__btn--line {
    background-color: #3ABF6D;
}
.menu-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
}
.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s;
}
.menu-btn.is-open span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
    position: absolute;
    top: 50%;
    transform: rotate(-45deg);
}
.sp_gnav_area{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100vh;
    padding: 64px 16px;
}
.sp_gnav_area.active{
    display: block;
}
.sp_gnav{
    text-align: center;
}
.sp_gnav li{
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 24px;
}
.sp_gnav_area .header__right{
    flex-direction: column;
}
.sp_gnav_area .header__buttons{
    flex-direction: column;
}
@media screen and (max-width:768px) {
    .sp_gnav_area .header__info {
            display: block;
            margin-bottom: 24px;
        }
    .sp_gnav_area .header__buttons{
        display: flex;
        row-gap: 24px;
    }
    .sp_gnav_area .header__buttons .header__btn{
        padding: 10px 64px;
    }
}
/* ----------------------------------------------------------------------
   Main Visual
---------------------------------------------------------------------- */
.fv {
    background: linear-gradient(135deg, #eaf4ff 0%, #fff 100%);
    padding-top: 85px;
    overflow: hidden;
}
.fv__inner {
    position: relative;
}
.fv__content {
    position: absolute;
    top: 13%;
    left: 10%;
    flex: 1;
    z-index: 2;
    padding-bottom: 60px;
}
.fv__catch {
    color: #2872CD;
    font-weight: bold;
    font-size: clamp(1.0625rem, 0.7324rem + 1.4085vw, 2rem);
    letter-spacing: 1.6px;
    margin-bottom: 8px;
}
.fv__title-box {
    margin-bottom: 40px;
}
.fv__title {
    color: #fff;
    line-height: 2;
}
.fv__title span {
    background-image: linear-gradient(90deg, #0355bb, #0283d8);
    font-size: clamp(1.75rem, 0.9577rem + 3.3803vw, 4rem);
    font-weight: bold;
    padding: 8px 16px;
}
.fv__check-item {
    font-size: clamp(1.125rem, 0.9489rem + 0.7512vw, 1.625rem);
    font-weight: bold;
    color: #2872CD;
    margin-bottom: 16px;
    padding-left: 42px;
    background-image: url(../images/check_icon.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 35px;
}
.fv__img-box {
    width: 100%;
}
.fv__img {
    width: 100%;
}

/* ----------------------------------------------------------------------
   News
---------------------------------------------------------------------- */
#news {
    padding: 80px 16px;
}
.news__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.news__title {
    font-size: 20px;
    margin: 0 40px 0 0;
    white-space: nowrap;
}
.news__list {
    flex: 1;
}
.news__item {
    display: flex;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 24px 0;
}
.news__date {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}
.news__category a{
    display: inline-block;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    padding: 4px;
    border-radius: 100px;
    width: 120px;
    text-align: center;
    background-color: #2872CD;
}
.news__link{
    text-align: left;
}
.news__btn-area {
    display: inline-block;
    margin-top: 40px;
}
.btn-arrow {
    display: flex;
    border: 1.5px solid #2872CD;
    color: #2872CD;
    padding: 16px 64px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    gap: 16px;
}
.btn-arrow img{
    width: 6px;
}

/* ----------------------------------------------------------------------
   Concept
---------------------------------------------------------------------- */
.concept {
    padding: 80px 16px;
    position: relative;
    overflow: hidden;
}
.concept__bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 0.5827rem + 16.7136vw, 15.625rem);
    line-height: 0.8;
    font-weight: 700;
    color: #F3F5F7;
    z-index: -1;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.1em;
}
.concept__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.concept__text_area{
    width: 55%;
}
.concept__header {
    margin-bottom: 40px;
}
.concept__lead {
    font-weight: 700;
    font-size: clamp(1.125rem, 0.8169rem + 1.3146vw, 2rem);
    margin-bottom: 8px;
}

.concept__title-wrapper {
    display: inline-block;
    font-weight: bold;
    font-size: clamp(1.25rem, 0.8099rem + 1.8779vw, 2.5rem);
    color: #fff;
}
.concept__tag {
    display: inline;
    padding: 0 16px;
    line-height: 1.8;
    margin-bottom: 5px;background-image: linear-gradient(90deg, #0355bb, #0283d8);
}
.concept__title {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    background-image: linear-gradient(90deg, #0355bb, #0283d8);
    line-height: 1.8;
}
.concept__text {
    line-height: 2;
}
.concept__images {
    width: 42%;
}
.concept__img-main {
    width: 100%;
}
.concept__gallery {
    width: 100%;
    display: flex;
    padding: 80px 0;
    overflow: hidden;
}
.concept__gallery-img {
    width: 25%;
    overflow: hidden;
    flex: 0 0 auto;
}
.concept__gallery-img img{
    width: 100%;
    aspect-ratio: 1 / 1;
}
.concept__gallery-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

/* ----------------------------------------------------------------------
   Strength
---------------------------------------------------------------------- */
#strength {
    background-color: #F3F5F7;
    padding: 80px 16px;
}

.strength__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.strength__item_area{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:24px;
}
.strength__item {
    width: 48.4%;
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    gap: 40px;
}
.strength__item--reverse {
    flex-direction: row-reverse;
}

.strength__img-box {
    text-align: center;
}

.strength__img {
    height: 150px;
}

.strength__content {
    width: 100%;
    text-align: center;
    margin-top: 24px;
}

.strength__point-label {
    display: inline-block;
    background-color: #2872CD;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 4px 24px;
    border-radius: 100px;
    font-size: 18px;
    margin-bottom: 16px;
}

.strength__item-title {
    font-size: 24px;
    font-weight: 700;
    color: #2872CD;
    margin: 0 0 20px 0;
}

.strength__text {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
}

/* ----------------------------------------------------------------------
   Course
---------------------------------------------------------------------- */
#course {
    padding: 80px 16px;
}
.course__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.course__card {
    display: flex;
    margin-bottom: 40px;
    gap: 40px;
}

.course__card--reverse {
    flex-direction: row-reverse;
}

.course__img-box {
    width: 40%;
}
.course__content {
    width: 56.8%;
}

.course__label {
    display: inline-block;
    color: #fff;
    padding: 4px 24px;
    border-radius: 100px;
    font-size: clamp(1.125rem, 0.993rem + 0.5634vw, 1.5rem);
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 16px;
}

.course__label--blue {
    background-color: #2269B1;
}

.course__label--red {
    background-color: #FB5243;
}

.course__label--green {
    background-color: #3ABF6D;
}

.course__text {
    line-height: 2.0;
}

/* ----------------------------------------------------------------------
Achievement
---------------------------------------------------------------------- */
#achievement {
    background-color: #F3F5F7;
    padding: 80px 0 60px 0;
    position: relative;
}
.achievement__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.achievement__title {
    font-size: clamp(2rem, 1.6479rem + 1.5023vw, 3rem);
    color: #2872CD;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.achievement__logo-icon {
    height: 100%;
    width: auto;
}
.achievement__group {
    margin-bottom: 40px;
}

.achievement__category {
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 18px;
    margin: 0 0 32px 0;
}

.achievement__category--red {
    background-color: #FB5243;
}

.achievement__category--blue {
    background-color: #2872CD;
}

.achievement__category--green {
    background-color: #3ABF6D;
}

.achievement__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.achievement__illustrations {
    width: 96%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20%;
}

/* ----------------------------------------------------------------------
   Voice
---------------------------------------------------------------------- */
#voice {
    padding: 80px 16px;
    background-color: #F8F2EB;
}

.voice__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.voice__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.voice__card {
    width: calc((100% - 80px) / 3);
    background: #fff;
    padding: 32px 50px;
    border-radius: 8px;
    text-align: center;
    min-height: 464px;
}

.voice__icon-box {
    margin-bottom: 15px;
}
.voice__icon {
    width: auto;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.voice__name {
    font-size: 14px;
    color: #818181;
    font-weight: 500;
}
.voice__card-title {
    font-size: 20px;
    font-weight: bold;
    color: #2872CD;
    margin-bottom: 10px;
}
.voice__text {
    text-align: left;
    line-height: 1.8;
}
.marker {
    background: linear-gradient(transparent 60%, #ffef3e 60%);
}

/* ----------------------------------------------------------------------
Access
---------------------------------------------------------------------- */
#access {
    padding: 80px 16px;
}
.access__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.access__content {
    display: flex;
    gap: 40px;
}
.access__map {
    width: 50%;
}

.access__info {
    width: 50%;
}
.access__name {
    font-size: 24px;
    color: #2872CD;
    font-weight: bold;
    margin-bottom: 4px;
}

.access__address {
    font-size: 16px;
    margin-bottom: 16px;
}

.access__buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.access__btn {
    display: block;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 100px;
    height: 92px;
}

.access__btn--blue {
    background-color: #2872CD;
    padding: 10px 15px;
}

.access__btn--green {
    background-color: #3ABF6D;
    font-weight: 700;
    font-size: 18px;
    line-height: 92px;
}
.access__btn-main {
    display: block;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}
.tel__btn-main{
    display: flex;
    gap: 8px;
    justify-content: center;
}
.access__btn--green .access__btn-main{
    line-height: 60px;
}

.access__btn--green .access__btn-main {
    font-size: 18px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}
.access__btn-main img{
    width: 18px;
}
.access__btn-sub {
    font-size: 13px;
    display: block;
}
.access__map{
    width: 48%;
}
.access__map iframe{
    width: 100%;
}

/* ----------------------------------------------------------------------
   Footer CTA
---------------------------------------------------------------------- */
.footer-cta {
    padding: 80px 16px;
    background-image: url(../images/f_CTA_bgi.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.footer-cta__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    background: #fff;
    padding: 56px;
}
.footer-cta__title {
    font-size: clamp(1.375rem, 1.1549rem + 0.939vw, 2rem);
    font-weight: bold;
    color: #2872CD;
    margin-bottom: 40px;
}
.footer-cta__grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-cta__left {
    width: 45.2%;
}
.footer-cta__right {
    width: 43.3%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-cta__tel-btn {
    display: flex;
    flex-direction: column;
    color: #2872CD;
    background: #F0F0F0;
    height: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 55, 0.1);
}
.footer-cta__label {
    display: flex;
    position: relative;
    gap:4px;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.125rem, 0.993rem + 0.5634vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    background-color: #2872CD;
    padding: 12px 4px;
    margin-bottom: 50px;
}
.footer-cta__label::after{
    content: '';
    position: absolute;
    border-top: 18px solid rgba(0, 0, 0, 0);
    border-right: 18px solid rgba(0, 0, 0, 0);
    border-bottom: 18px solid #2872CD;
    border-left: 18px solid #2872CD;
    transform: rotate(-45deg);
    bottom: -8px;

}
.footer-cta__label img{
    width: 25.52px;
}
.footer-cta__number {
    display: flex;
    justify-content: center;
    font-size: clamp(2rem, 1.6479rem + 1.5023vw, 3rem);
    gap:16px;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1;
}
.footer-cta__number img{
    width: 23.91px;
}
.footer-cta__hours {
    font-size: 14px;
    color: #333;
}

.footer-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 60px;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.125rem, 0.993rem + 0.5634vw, 1.5rem);
    height: 112px;
    box-shadow: 0 0 20px rgba(0, 0, 55, 0.1);
}

.footer-cta__btn--mail {
    display: flex;
    gap: 8px;
    background-color: #FB5243;
    padding: 38px 8px;
}
.footer-cta__btn--mail img{
    width: 30px;
}

.footer-cta__btn--line {
    background-color: #3ABF6D;
}

/* ----------------------------------------------------------------------
   Footer
---------------------------------------------------------------------- */
.footer {
    background-color: #F3F5F7;
    padding: 40px 16px 24px 16px;
    font-size: 12px;
}
.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.footer__logo-area {
    margin-bottom: 20px;
    width: 24.4%;
}

.footer__logo {
    font-size: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    column-gap: 24px;
    row-gap: 16px;
    margin-top: 16px;
}

.footer__copyright {
    font-size: 12px;
    text-align: center;
    display: block;
}

/* ----------------------------------------------------------------------
   News Archive
---------------------------------------------------------------------- */
#news_archive {
    background-color: #F3F5F7;
    padding-top: 220px;
    padding-bottom: 120px;
}

#news_archive .section-title {
    margin-bottom: 40px;
}

.news__archive_inner {
    max-width: 1080px;
    padding: 64px 60px;
    margin: 0 auto;
    background-color: #fff;
}

#news_archive .news__list {
    margin-bottom: 40px;
}

/* ----------------------------------------------------------------------
   News page
---------------------------------------------------------------------- */
.news_page_inner {
    max-width: 1120px;
    margin: 0 auto;
    background-color: #fff;
    padding: 80px 40px;
}
.news_page_contents {
    max-width: 800px;
    margin: 0 auto;
}
.news_page_date {
    display: flex;
    column-gap: 24px;
    row-gap: 8px;
    margin-bottom: 32px;
}
.news_page_title {
    display: block;
    font-weight: bold;
    font-size: clamp(1.25rem, 0.6818rem + 2.4242vw, 2.5rem);
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
}
.thumb_main {
    padding: 40px 0;
}
.news_page_btn{
    text-align: center;
}
.news_page_the_contents h2,
.news_page_the_contents h3,
.news_page_the_contents h4,
.news_page_the_contents h5,
.news_page_the_contents h6{
	margin:32px 0 16px;
}
.news_page_the_contents p,
.news_page_the_contents ul,
.news_page_the_contents ol{
	margin-bottom:16px;
}
.news_page_the_contents h2{
	color:#fff;
	font-weight:bold;
	font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
	padding:8px 16px;
	background-color:#2872CD;
}
.news_page_the_contents h3{
	color:#2872CD;
	font-weight:bold;
	font-size: clamp(1.125rem, 1.081rem + 0.1878vw, 1.25rem);
	border-bottom:1.5px solid #2872CD;
}
.news_page_the_contents h4,
.news_page_the_contents h5,
.news_page_the_contents h6{
	color:#2872CD;
	font-weight:bold;
}
.news_page_the_contents strong{
	font-weight:bold;
}
.news_page_the_contents ul li{
	position: relative;
  	padding-left: 1.5em;
	line-height:1.8;
}
.news_page_the_contents ul li::before{
	content: '';
 	 position: absolute;
  	top: 0.7em;
  	left: 0.3em;
  	width: 7px; 
  	height: 7px;              
  	background-color: #FB5243;
  	border-radius: 50%;       
}
.news_page_the_contents ol{
	list-style-type: decimal;
	counter-reset: li;
}
.news_page_the_contents ol li{
	display: flex;
    align-items: center;
    padding: .3em;
}
.news_page_contents ol li::before{
	display: inline-block;
    min-width: 1.7em;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #FB5243;
    color: #fff;
    font-weight: bold;
    font-size: .75em;
    line-height: 1.7em;
    text-align: center;
    content: counter(li);
    counter-increment: li;
}

/* ----------------------------------------------------------------------
   pagination
---------------------------------------------------------------------- */
.page-list{
    text-align: center;
    margin-top: 40px;
}
.page-numbers{
    font-size: 12px;
    font-weight: bold;
    padding: 11px 16px;
    color: #2872CD;
    border: 1px solid #2872CD;
    background-color: #fff;
}
.page-numbers.current{
    color: #fff;
    background-color: #2872CD;
}

/* ----------------------------------------------------------------------
   page design
---------------------------------------------------------------------- */
.page_design {
    background-color: #F3F5F7;
    padding: 160px 16px 120px;
}
.page_inner {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 16px; */
}
.contact_inner{
    max-width: 800px;
    margin: 0 auto;
}
.contact_policy{
    background-color: #fff;
    border: 1px solid #ccc;
    padding: .75rem 1rem;
    height: 300px;
    overflow: auto;
    margin-bottom: 16px;
}
.smf-action .smf-button-control__control{
    background-color: #2872CD;
    border: 1px solid #2872CD;
    color: #fff;
    font-weight: bold;
    border-radius: 100px;
    background-image: none;
    width: 300px;
    padding: 16px;
}
.smf-action .smf-button-control__control[data-action="back"]{
    background-color: #fff;
    border: 1px solid #2872CD;
    color: #2872CD;
}
/* 必須ラベル */
.smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
	content: "必須";
	display: inline-block;
	padding: 5px 6px;
	color: #fff;
	background-color: #2872CD;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	margin-left: 1em;
	border-radius: 4px;
}
/* ----------------------------------------------------------------------
   404
---------------------------------------------------------------------- */
.no_design{
    text-align: center;
}
.no_btn{
    display: inline-block;
    margin-top: 40px;
    background-color: #2872CD;
    color: #fff;
    font-weight: bold;
    padding: 8px 32px;
    border-radius: 100px;
}

/* ----------------------------------------------------------------------
   Responsive (Max 768px)
---------------------------------------------------------------------- */
@media (max-width: 1000px){
    /* .header__info,.header__buttons{
        display: none;
    } */
    .header{
        padding: 10px 24px;
    }
    .header__right{
        gap: 14px;
    }
    .header__btn{
        padding: 8px 24px;
    }
    .fv__content{
        top: 9%;
        left: 5%;
    }
    .fv__title-box{
        margin-bottom: 24px;
    }
    .footer-cta__grid {
        flex-direction: column;
        align-items: center;
    }
    .footer-cta__left,.footer-cta__right{
        width: 85%;
    }
    .footer-cta__inner{
        padding: 40px 16px;
    }
    .footer-cta__tel-btn{
        padding-bottom: 32px;
    }

}

@media (max-width: 768px) {
    /* primary */
    .section-title{
        margin-bottom: 32px;
    }
    .news, .concept, .strength, .course,.access, .voice{
        padding: 40px 16px;
    }

    /* Header */
    .header__info,
    .header__buttons {
        display: none;
    }
    .header__right {
        gap: 0;
    }
    /* FV */
    .fv{
        padding-top: 60px;
    }
    .fv__content{
        top: 55%;
        left: 3%;
    }
    .fv__title span{
        padding: 0 8px;
        line-height: 1.8;
    }
    .fv__check-item {
    padding-left: 30px;
    background-size: 24px;
    -webkit-text-stroke: 0.1px #fff;
    }
    .fv__title-box{
        margin-bottom: 24px;
    }
    /* News */
    .news__inner {
        flex-direction: column;
    }
    .news__title {
        margin-bottom: 20px;
    }
    .news__btn-area {
        margin: 40px auto 0;
    }

    /* Concept */
    .concept__inner{
        flex-direction: column-reverse;
    }
    .concept__text_area{
        width: 100%;
    }
    .concept__header{
        margin-bottom: 24px;
    }
    .concept__title-wrapper{
        font-size: clamp(1.3125rem, 0.8944rem + 1.784vw, 2.5rem);
    }
    .concept__images{
        width: 100%;
    }
    .concept__body {
        flex-direction: column;
    }
    .concept__bg-text {
        top: 20px;
    }
    .concept__gallery{
        padding: 0 0 40px 0;
    }
    .achievement__illustrations{
        bottom: -10%;
    }
    /* Strength */
    .strength__item{
        width: 100%;
    }
    .strength__item,
    .strength__item--reverse {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        margin-bottom: 16px;
    }

    .strength__img-box,
    .strength__content {
        width: 100%;
    }

    /* Course */
    .course__card,
    .course__card--reverse {
        flex-direction: column;
    }

    .course__img-box,
    .course__content {
        width: 100%;
    }

    /* Voice */
    .voice__card {
        width: 80%;
        max-width: none;
        min-height: auto;
    }
    .voice__grid{
        gap:24px;
    }

    /* Access */
    .access__content {
        flex-direction: column;
    }

    .access__map,
    .access__info {
        width: 100%;
    }

    /* Footer CTA */
    .footer-cta__grid {
        flex-direction: column;
    }

    /* Footer */
    .footer__inner{
        flex-direction: column;
        gap: 24px;
    }
    .footer__logo-area{
        width: 100%;
        margin-bottom: 0;
    }
    .footer__nav{
        margin-bottom: 24px;
    }
    .footer__nav-list{
        margin-top: 0;
        row-gap: 4px;
    }
    /* news_page */
    .news_page_date{
        flex-direction: column;
    }
    .news_page_inner{
        padding: 40px 24px;
    }
    .news_page_title{
        padding-bottom: 8px;
    }
    .thumb_main{
        padding: 24px 0;
    }
    /* page design */
    .page_design {
        background-color: #F3F5F7;
        padding: 120px 16px 40px;
    }
}

@media screen and (max-width:540px){
    .news__item{
        flex-direction: column;
        align-items: start;
        gap: 8px;
    }
    .achievement__illustrations {
        bottom: -2%;
    }
    .voice__card{
        width: 100%;
        padding: 32px 24px;
    }
    .footer-cta__left,.footer-cta__right{
        width: 100%;
    }
    .footer-cta__label img {
        width: 16px;
    }
    .footer-cta__number img {
        width: 18px;
    }
    .footer-cta__btn{
        height: 80px;
    }
}
