@charset "utf-8";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

body  {
    font-size: 1.8rem;
    line-height: 1.6;
    color:#333;
    font-style: normal;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif , "Yu Gothic", YuGothic, "Meiryo", sans-serif;
}

/*-----------------------------------------------
共通
-----------------------------------------------*/

/*レイアウト*/
.container{
    max-width: 1200px;
    margin: 0 auto;
}

/*ボタン：ホバー*/
a.rollover:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

/*PC表示・SP非表示*/
body .pc-item {
    display: block; 
}

body .sp-item {
    display: none; 
}

/*PC改行なし*/
.br-sp {
    display: none; 
}

/*PC改行*/
.br-pc {
    display: block; 
}

@media screen and (max-width: 768px) {
    .br-sp {
        display: block; 
    }

    .br-pc {
        display: none; 
    }
}


/*-----------------------------------------------
メニュー
-----------------------------------------------*/
.site-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/*ロゴ*/
.logo {
    flex-shrink: 0;
    max-width: 75px;
    margin-right: auto;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/*ナビゲーション*/
.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-list li a {
    color: #333;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-list li a:hover {
    color: #FF6B00;
}

/*CTAボタン*/
.header-cta {
    flex-shrink: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #FF8C00 0%, #FF6B00 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #FF7700 0%, #FF5500 100%);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

.btn-primary i {
    font-size: 1.2rem;
}

/*ハンバーガーメニューボタンとモバイルメニューをデスクトップでは非表示*/
.hamburger-btn,
.mobile-menu {
    display: none;
}

/*-----------------------------------------------
メニュー タブレット
-----------------------------------------------*/

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav-list {
        gap: 15px;
    }

    .nav-list li a {
        font-size: 1.4rem;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 1.4rem;
    }

    /* メインビジュアル */
    .fv-section {
        min-height: 500px;
        padding: 60px 20px;
    }

    .fv-text {
        flex: 0 0 50%;
        max-width: 100%;
    }

    .fv-images {
        flex: 0 0 50%;
        max-width: 100%;
    }
}

/*-----------------------------------------------
メニューSP
-----------------------------------------------*/
@media screen and (max-width: 768px) {
    /*PC非表示・SP表示*/
    body .pc-item {
        display: none !important;
    }

    body .sp-item {
        display: block;
    }

    .container {
        padding: 0 20px;
    }

    .site-header {
        padding: 15px 0;
    }

    .header-inner {
        gap: 15px;
    }

    /* ハンバーガーボタン */
    .hamburger-btn {
        display: block;
        position: absolute;
        top: 22px;
        right: 20px;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
        padding: 0;
    }

    .hamburger-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: all 0.3s ease;
    }

    .hamburger-btn span:nth-child(1) {
        top: 0;
    }

    .hamburger-btn span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-btn span:nth-child(3) {
        bottom: 0;
    }

    /* ハンバーガーボタン開いた状態（×印） */
    .hamburger-btn.open span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

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

    .hamburger-btn.open span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* モバイルメニュー */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 1001;
        display: none;
        padding: 100px 30px 30px 30px;
        box-sizing: border-box;
        overflow-y: auto;
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu-content {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* ロゴを上部に配置 */
    .mobile-menu-logo {
        position: absolute;
        top: 15px;
        left: 20px;
        z-index: 1001;
    }

    .mobile-menu-logo img {
        height: 40px;
        width: auto;
        display: block;
    }

    .mobile-menu-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .mobile-menu-nav li {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-nav li:last-child {
        border-bottom: none;
    }

    .mobile-menu-nav a {
        font-size: 1.8rem;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        display: block;
        padding: 20px 10px;
        transition: color 0.3s ease;
    }

    .mobile-menu-nav a:hover {
        color: #FF6B00;
    }

    /* モバイルメニュー内のCTAボタン */
    .mobile-menu-cta {
        text-align: center;
        padding-top: 20px;
    }

    .mobile-menu-cta .btn-primary {
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1.6rem;
    }
}

/* メインビジュアル SP */
@media screen and (max-width: 768px) {
    .fv-section {
        min-height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .fv-text {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        order: 1;
    }

    .fv-images {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        order: 2;
    }
}

/*-----------------------------------------------
メインビジュアル
-----------------------------------------------*/

.fv-bg {
    width: 100%;
    height: auto;
    background: url('../img/fv-bg.webp') center center / cover no-repeat;
    padding: 80px 0;
    
}

.fv-container{
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.fv-text {
    max-width: 815px;
}

.fv-text img {
    width: 100%;
    height: auto;
    display: block;
}

.fv-images {
    max-width: 540px;
    position: absolute;
    top: -5%;
    right: -15%;
    z-index: 5;
}

.fv-images img {
    width: 100%;
    height: auto;
    display: block;
}

/*-----------------------------------------------
メインビジュアル タブレット
-----------------------------------------------*/

@media screen and (max-width: 1024px) {
    .fv-container{
        max-width: 980px;
        margin: 0 auto;
        box-sizing: border-box;
        position: relative;
    }
    
    .fv-text {
        max-width: 615px;
    }
    
    .fv-images {
        max-width: 340px;
        position: absolute;
        top: -5%;
        right: 2%;
        z-index: 5;
    }
}

/*-----------------------------------------------
メインビジュアルSP
-----------------------------------------------*/
@media screen and (max-width: 768px) {
    .fv-bg {
        background: none;
        padding: 0;
        
    }
    
    .fv-container{
        max-width: 100%;
    }

    .fv-container img{
        width: 100%;
        height: auto;
    }

}

/*-----------------------------------------------
CTA
-----------------------------------------------*/
.cta-section {
    width: 100%;
    background: url('../img/cta-bg.webp') center center / cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid #333;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text-image {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.cta-text-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-button-wrapper {
    width: 100%;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #FF8C00 0%, #FF6B00 100%);
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
    min-width: 500px;
    border-radius: 5px;
}

.cta-button:hover {
    background: linear-gradient(90deg, #FF7700 0%, #FF5500 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    transform: translateY(-3px);
}

.cta-button i {
    font-size: 1.6rem;
}

.cta-note {
    font-size: 1.6rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/*-----------------------------------------------
CTA タブレット
-----------------------------------------------*/
@media screen and (max-width: 1024px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content {
        gap: 35px;
        padding: 50px 30px;
        max-width: 800px;
    }

    .cta-button {
        font-size: 1.8rem;
        padding: 18px 35px;
        min-width: 280px;
    }
}

/*-----------------------------------------------
CTA SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-container {
        padding: 0 15px;
    }

    .cta-content {
        max-width: 80%;
        gap: 20px;
        padding: 40px 20px;
    }

    .cta-text-image {
        max-width: 100%;
    }

    .cta-button {
        font-size: 1.6rem;
        padding: 16px 30px;
        min-width: 90%;
        width: 100%;
        max-width: 320px;
    }

    .cta-button i {
        font-size: 1.4rem;
    }

    .cta-note {
        font-size: 1rem;
        text-align: left;
        text-align: justify;
    }
}

/*-----------------------------------------------
お客様の声
-----------------------------------------------*/
.voice-section {
    padding: 80px 0;
    background-color: #fff;
}

/* セクションタイトル */
.section-title01 {
    text-align: center;
    margin-bottom: 40px;
}

.section-title01 .title-main {
    font-size: 4.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.section-title01 .title-sub {
    font-size: 3.4rem;
    font-weight: 600;
    background: linear-gradient(90deg, #0338E8 0%, #44A5F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.voice-title-bottom {
    width: 100%;
    max-width: 876px;
    margin: 0 auto;
    padding-bottom: 6rem;
}

.voice-title-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

/* お客様の声コンテンツ */
.voice-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.voice-row:last-child {
    margin-bottom: 0;
}

.voice-card {
    flex: 1;
    background: #fff;
    border: 5px solid #E5E5E5;
    padding: 65px 30px 30px 30px;
    position: relative;
}

.voice-content-inner {
    display: flex;
    gap: 20px;
}

.voice-image {
    max-width: 156px;
    width: 100%;
}

.voice-image img {
    width: 100%;
    height: auto;
    display: block;
}

.voice-image-note {
    font-size: 1.2rem;
    color: #999;
    margin: 0;
}

.voice-text {
    position: relative;
}

.quotation-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    max-width: 66px;
    height: auto;
}

.quotation-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.voice-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.light-blue{
    color: #44A5F7;
}
.voice-profile {
    margin-bottom: 20px;
}

.voice-name {
    background: #44A5F7;
    color: #fff;
    padding: 8px;
    font-size: 1.9rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: inline-block;
}

.voice-career {
    font-size: 2rem;
    font-weight: 600;
    color: #44A5F7;
    margin: 0;
}

.voice-comment {
    font-size: 2rem;
    line-height: 1.7;
    color: #333;
}

.voice-hr {
    border: 1px solid #E5E5E5;
    margin-bottom: 2rem;
}

.voice-comment p {
    margin: 0 0 15px 0;
}

.voice-comment p:last-child {
    margin-bottom: 0;
}

/*-----------------------------------------------
お客様の声 タブレット
-----------------------------------------------*/
@media screen and (max-width: 1024px) {
    .voice-section {
        padding: 60px 0;
    }

    .voice-row {
        gap: 30px;
    }

    .voice-card {
        padding: 55px 25px 25px 25px;
    }

    .voice-heading {
        font-size: 2.4rem;
    }

    .voice-comment {
        font-size: 2rem;
    }

    .quotation-icon {
        position: absolute;
        top: 10px;
        right: 20px;
        max-width: 46px;
        height: auto;
    }
}

/*-----------------------------------------------
お客様の声 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {
    .voice-section {
        padding: 50px 0;
    }

    /* セクションタイトル */
    .section-title01 {
        margin-bottom: 40px;
    }

    .section-title01 .title-main {
        font-size: 3.4rem;
    }

    .section-title01 .title-sub {
        font-size: 2.2rem;
    }

    .voice-text {
        margin-bottom: 40px;
    }

    .voice-title-bottom {
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
        padding-bottom: 6rem;
    }

    .voice-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .voice-card {
        padding: 45px 20px 20px 20px;
    }

    .quotation-icon {
        width: 35px;
        height: 35px;
        right: 15px;
    }

    .voice-heading {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .voice-name {
        font-size: 1.3rem;
        padding: 6px 12px;
    }

    .voice-career {
        font-size: 1.4rem;
    }

    .voice-comment {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 430px) {

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

    .title-main {
        font-size: 2.4rem;
    }

    .title-sub {
        font-size: 2.0rem;
    }

    .voice-title-bottom {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-bottom: 3rem;
    }

    .voice-content-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .quotation-icon {
        width: 45px;
        height: 45px;
        right: 15px;
    }

    .voice-image{
        margin: 0 auto;
    }

    .voice-text {
        margin-bottom: 0px;
    }

    .voice-heading {
        font-size: 2.4rem;
    }

    .voice-name {
        font-size: 1.6rem;
    }
}

/*-----------------------------------------------
問題提起
-----------------------------------------------*/
.nayami-bg{
    background: #F4F4F4;
    clip-path: polygon(0 0, 50% 20%, 100% 0, 100% 100%, 0 100%);
    padding-bottom: 8rem;
    position: relative;
    z-index: 1;
}

.nayami-ttile{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding-top: 27rem;
    padding-bottom: 6rem;
}

.nayami-ttile img{
    width: 100%;
    height: auto;
}

.nayami-img{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.nayami-img img{
    width: 100%;
    height: auto;
}

/*-----------------------------------------------
問題提起 タブレット
-----------------------------------------------*/
@media screen and (max-width: 1024px) {
    .nayami-bg{
        clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 100%, 0 100%);
        padding-bottom: 8rem;
    }
    
    .nayami-ttile{
        padding-top: 15rem;
        padding-bottom: 6rem;
    }
    
    .nayami-img{
        max-width: 980px;
        width: 100%;
        margin: 0 auto;
    }
    
    .nayami-img img{
        width: 100%;
        height: auto;
    }
}

/*-----------------------------------------------
問題提起 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {
    .nayami-bg{
        clip-path: polygon(0 0, 50% 5%, 100% 0, 100% 100%, 0 100%);
        padding-bottom: 8rem;
    }
    
    .nayami-ttile{
        padding-top: 10rem;
        padding-bottom: 6rem;
        max-width: 95%;
    }
    
    .nayami-img{
        max-width: 95%;
        width: 100%;
        margin: 0 auto;
    }

    .nayami-bg::after {
        width: 80px;
        height: 80px;
    }

}

@media screen and (max-width: 400px) {
    .nayami-ttile{
        padding-top: 6rem;
        padding-bottom: 4rem;
        max-width: 95%;
    }
    
    .nayami-img{
        max-width: 85%;
    }

}

/*-----------------------------------------------
解決策
-----------------------------------------------*/
.arrow{
    max-width: 70px;
    width: 100%;
    margin-top: -13rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4rem;
    position: relative;
    z-index: 100;
}

.arrow img{
    width: 100%;
    height: auto;
}
.solution-bg{
    width: 100%;
    background: url('../img/solution-bg.webp') center center / cover no-repeat;
    padding: 80px 0;
}

.solution-txt{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.solution-txt img{
    width: 100%;
    height: auto;
}

/*-----------------------------------------------
解決策 タブレット
-----------------------------------------------*/
@media screen and (max-width: 1024px) {
    .solution-txt{
        max-width: 980px;
    }
}

/*-----------------------------------------------
解決策 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {
    .solution-bg{
        background: url('../img/solution-bg-sp.webp') center center / cover no-repeat;
        padding: 40px 0;
    }

    .solution-txt{
        max-width: 80%;
    }
    
    .arrow{
        max-width: 60px;
        margin-top: -8.5rem;
        padding-bottom: 2rem;
    }
}

@media screen and (max-width: 390px) {

    .solution-txt{
        max-width: 70%;
    }
    
    .arrow{
        max-width: 40px;
        margin-top: -8.5rem;
        padding-bottom: 2rem;
    }
}

/*-----------------------------------------------
選ばれる理由
-----------------------------------------------*/
.reason-bg{
    padding-top: 12rem;
}

.section-title02 {
    text-align: center;
    margin-bottom: 40px;
}

.section-title02 .title-main {
    font-size: 4.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.section-title02 .title-sub {
    font-size: 3.4rem;
    font-weight: 600;
    background: linear-gradient(90deg, #FF8702 0%, #FE5502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.reason-contents{
    max-width: 1200px;
    margin: auto;
}

.reason-box{
    display: flex;
    gap: 4rem;
    padding-bottom: 6rem;
}

.reason-box:last-child{
    padding-bottom: 12rem;
}

.reason-box-rev{
    display: flex;
    flex-direction: row-reverse;
    gap: 6rem;
    padding-bottom: 6rem;
}

.reason-item{
    max-width: 540px;
}

.reason{
    font-size: 6rem;
    font-weight: bold;
    background: linear-gradient(90deg, #FF8702 0%, #FE5502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0px;
    padding-top: 0px;
}

.reason-title {
    font-size: 3.8rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(90deg, #FF8702 0%, #FE5502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.underline {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #FF8702;
    margin-top: 15px;
}

.reason-copy{
    font-size: 1.8rem;
    text-align: justify;
}

.reason-img{
    max-width: 600px;
}

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

/*-----------------------------------------------
選ばれる理由 タブレット
-----------------------------------------------*/

@media screen and (max-width: 1024px) {

.reason-contents{
    max-width: 90%;
    margin: auto;
}

}

/*-----------------------------------------------
選ばれる理由 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {

    .reason-box{
        display: flex;
        flex-direction: column;
        gap: 4rem;
        padding-bottom: 6rem;
    }

    .section-title02 {
        margin-bottom: 40px;
    }
    
    .section-title02 .title-main {
        font-size: 3.4rem;
    }
    
    .section-title02 .title-sub {
        font-size: 2.2rem;
    }
    
    .reason-box-rev{
        display: flex;
        flex-direction: column;
        gap: 6rem;
        padding-bottom: 6rem;
    }

    .reason-item{
        max-width: 100%;
    }

    .reason-img{
        max-width: 100%;
    }

    .reason-copy{
        font-size: 1.8rem;
        text-align: justify;
    }
}

@media screen and (max-width: 520px) {

    .reason-bg{
        padding-top: 8rem;
    }

    .reason-box{
        gap: 3rem;
    }
    
    .reason-box-rev{
        gap: 3rem;
    }

    .reason{
        font-size: 4rem;
    }
    
    .reason-title {
        font-size: 2.55rem;
        line-height: 1.2;
    }
    
}

@media screen and (max-width: 375px) {

}

/*-----------------------------------------------
カリキュラム・サポート内容
-----------------------------------------------*/
.support-bg{
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 12rem;
}

.support-contents{
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.support-contents:last-child{
    margin-top: 12rem;
}

.support-item01{
    width: 520px;
}

.support-img{
    padding-bottom: 4rem;
    max-width: 520px;
}

.support-img img{
    width: 100%;
    height: auto;
}

.support-subtitle p{
    background: linear-gradient(90deg, #0338E8 0%, #44A5F7 100%);
    color: #fff;
    font-size: 4rem;
    display: inline-block;
    padding: 0rem 2rem;
    margin-bottom: 1rem;
}

.support-subtitle p:last-child{
    margin-bottom: 0;
}

.support-item02{
    width: 625px;
    background-color: #F3F1F0;
    padding: 4rem 3rem 3rem 3rem;
    margin-top: 4rem;
}

.support-copy{
    padding-top: 4rem;
    font-size: 1.8rem;
    line-height: 1.4;
}

/* コースリスト */
.course-list{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.course-item{
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.course-check{
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.course-content{
    flex: 1;
}

.course-title{
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.course-desc{
    font-size: 2.4rem;
    color: #666;
    line-height: 1.6;
}

.course-note{
    font-size: 1.8rem;
    color: #333;
    line-height: 1.8;
    margin-top: 3rem;
    margin-bottom: 0;
    padding: 0 0.5rem;
}

.course-buttons{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 3rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.btn-course-outline,
.btn-course-primary{
    display: block;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    padding: 2rem 3rem;
    border-radius: 5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    list-style: 1.2;
}

.btn-course-outline{
    color: #333;
    font-size: 3rem;
    padding: 0px;
    margin: 0px;
}

.btn-course-primary{
    background: linear-gradient(90deg, #0338E8 0%, #44A5F7 100%);
    color: #fff;
    border: none;
    position: relative;
}

.btn-course-primary::after{
    content: '〉';
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
}

.btn-course-primary:hover{
    opacity: 0.9;
}

.support-icon01{
    max-width: 365px;
    margin-left: auto;
    padding-top: 2rem;
}

.support-icon01 img{
    width: 100%;
    height: auto;
}

.support-icon02{
    max-width: 365px;
    margin-left: auto;
    margin-top: -6rem;
}

.support-icon02 img{
    width: 100%;
    height: auto;
}

.support-icon03-box{
    position: relative;
}

.support-icon03{
    max-width: 197px;
    position: absolute;
    top: 0px;
    right: -5%;
}

.support-icon03 img{
    width: 100%;
    height: auto;
}

/*-----------------------------------------------
カリキュラム・サポート内容 タブレット
-----------------------------------------------*/
@media screen and (max-width: 1024px) {

    .support-bg{
        max-width: 980px;
        margin: 0 auto;
        padding-bottom: 12rem;
    }

    .support-subtitle p{
        font-size: 3rem;
    }

    .support-icon01{
        max-width: 300px;
    }
    
    .support-icon02{
        max-width: 300px;
        margin-top: -3rem;
    }
    
    .support-icon03{
        max-width: 197px;
        position: absolute;
        top: -10px;
        right: -5%;
    }
    
}

/*-----------------------------------------------
カリキュラム・サポート内容 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {

    .support-bg{
        max-width: 90%;
        padding-bottom: 12rem;
    }
    
    .support-contents{
        display: flex;
        gap: 3rem;
        align-items: flex-start;
        flex-direction: column;
    }

    .support-item01{
        width: 100%;
    }
    
    .support-img{
        max-width: 100%;
    }
    
    .support-item02{
        width: 100%;
    }
    
    .support-item03{
        width: 100%;
    }

    .support-subtitle p{
        font-size: 4rem;
    }

    .support-icon01{
        max-width: 250px;
        margin-top: -10rem;
    }
    
    .support-icon02{
        max-width: 250px;
        margin-top: -15rem;
    }
    
    .support-icon03{
        max-width: 197px;
        position: absolute;
        top: -10px;
        right: -5%;
    }

    .support-copy{
        font-size: 2rem;
        line-height: 1.5;
        padding-top: 2.5rem;
    }

    .course-note{
        font-size: 2rem;
        line-height: 1.5;
    }

    .support-item02{
        margin-top: 0px;
        padding: 2rem;
    }
}

@media screen and (max-width: 420px) {

    .support-subtitle p{
        font-size: 2.3rem;
    }

    .support-icon01{
        max-width: 250px;
        margin-top: -2rem;
    }
    
    .support-icon02{
        max-width: 200px;
        margin-top: -4rem;
    }
    
    .support-icon03{
        max-width: 107px;
        position: absolute;
        top: -8px;
        right: -5%;
    }

    /* コースリスト */
    .course-list{
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .course-item{
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .course-check{
        width: 2.5rem;
        height: 2.5rem;
        flex-shrink: 0;
        margin-top: 0.5rem;
    }


    .course-title{
        font-size: 2rem;
        font-weight: bold;
        color: #333;
        line-height: 1.2;
    }

    .course-desc{
        font-size: 1.6rem;
        color: #666;
        line-height: 1.4;
    }

    .course-buttons{
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 3rem;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-course-outline,
    .btn-course-primary{
        display: block;
        text-align: center;
        font-size: 2rem;
        font-weight: bold;
        padding: 1.5rem 2rem;
        border-radius: 5rem;
        text-decoration: none;
        transition: all 0.3s ease;
        line-height: 1.2;
    }

    .btn-course-outline{
        color: #333;
        font-size: 1.8rem;
        padding: 0px;
        margin: 0px;
    }

    .course-note{
        font-size: 1.6rem;
        line-height: 1.5;
    }

}

/*-----------------------------------------------
価格
-----------------------------------------------*/
.price-bg{
    background-color: #E9EDF1;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.price-mess{
    max-width: 655px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #108FE2;
    font-size: 3.2rem;
    text-align: center;
}

.price-txt{
    font-size: 2rem;
    text-align: center;
    padding-top: 2rem;
}

.price-box{
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding-top: 6rem;
}

.price-item{
    max-width: 460px;
    width: 100%;
}

.price-item img{
    width: 100%;
    height: auto;
}

/*-----------------------------------------------
注意事項
-----------------------------------------------*/
.precautions{
    max-width: 690px;
    margin: 0 auto;
    padding-top: 4rem;
}

.precautions-title{
    font-size: 2.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.precautions-title::before,
.precautions-title::after{
    content: '';
    flex: 1;
    height: 1px;
    background-color: #333;
}

.precautions-content{
    max-width: 690px;
    margin: 0 auto;
}

.precautions-item{
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 400;
}

/*-----------------------------------------------
価格 タブレット
-----------------------------------------------*/
@media screen and (max-width: 1028px) {

    .price-box{
        max-width: 960px;
    }
    
    .price-item{
        max-width: 50%;
    }
}
/*-----------------------------------------------
価格 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {

    .price-bg{
        max-width: 100%;
        width: 100%;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    
    .price-mess{
        max-width: 90%;
        font-size: 2.6rem;
        line-height: 1.2;
        padding: 1rem 0;
    }
    
    .price-txt{
        max-width: 90%;
        margin: auto;
        font-size: 1.8rem;
        padding-top: 1rem;
    }
    
    .price-box{
        max-width: 75%;
        margin: 0 auto;
        flex-direction: column;
        gap: 4rem;
        padding-top: 4rem;
    }
    
    .price-item{
        max-width: 100%;
        width: 100%;
    }
    
    .price-item img{
        width: 100%;
        height: auto;
    }

    .precautions{
        max-width: 90%;
        padding-top: 4rem;
    }
    
}

@media screen and (max-width: 400px) {

    .price-mess{
        max-width: 90%;
        font-size: 2.2rem;
        line-height: 1.2;
        padding: 1rem 0;
    }
    
    .price-txt{
        max-width: 90%;
        margin: 0 auto;
        font-size: 1.6rem;
        padding-top: 1rem;
        text-align: left;
        text-align: justify;
    }

    /*-----------------------------------------------
    注意事項
    -----------------------------------------------*/
    .precautions{
        max-width: 90%;
        margin: 0 auto;
        padding-top: 4rem;
    }
    
    .precautions-title{
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .precautions-content{
        max-width: 90%;
        margin: 0 auto;
    }
    
    .precautions-item{
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

/*-----------------------------------------------
他社との比較
-----------------------------------------------*/
.hikaku{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding-top: 10rem;
}

.hikaku h2{
    font-size: 5rem;
    text-align: center;
    padding-bottom: 4rem;
}

.hikaku-img{
    max-width: 1100px;
    width: 100%;
}
.hikaku-img img{
    width: 100%;
    height: auto;
}

/*-----------------------------------------------
価格 タブレット
-----------------------------------------------*/
@media screen and (max-width: 1028px) {
    .hikaku-img{
        max-width: 980px;
        margin: 0 auto;
    }
}
/*-----------------------------------------------
他社との比較 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {
    
    .hikaku{
        max-width: 100%;
        padding: 10rem 2rem 0;
    }
    
    .hikaku h2{
        font-size: 3.5rem;
    }
    
    .hikaku-scroll{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .hikaku-img{
        width: 700px;
        min-width: 700px;
    }
    
    .hikaku-img img{
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* スクロールバーのカスタマイズ（webkit系ブラウザ） */
    .hikaku-scroll::-webkit-scrollbar {
        height: 10px;
    }
    
    .hikaku-scroll::-webkit-scrollbar-thumb {
        background: #aaa;
        border-radius: 5px;
    }
    
    .hikaku-scroll::-webkit-scrollbar-track {
        background: #ddd;
    }
}

@media screen and (max-width: 400px) {
    
    .hikaku{
        padding: 8rem 1rem 0;
    }
    
    .hikaku h2{
        font-size: 2.8rem;
    }
    
    .hikaku-img{
        width: 600px;
        min-width: 600px;
    }
}

/*-----------------------------------------------
最安値の理由
-----------------------------------------------*/
.about-bg{
    max-width: 915px;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 16rem;
}

.about-title{
    background-color: #4C6073;
    color: #fff;
    text-align: center;
    font-size: 4rem;
    line-height: 1.2;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.exclamation-mark-icon{
    max-width: 110px;
    width: 100%;
    position: absolute;
    top: -45%;
    right: 45%;
}

.exclamation-mark-icon img{
    width: 100%;
    height: auto;
}

.about-box{
    padding: 4rem 2rem;

}

.about-txt{
    font-size: 2.2rem;
    text-align: center;
}

.point{
    max-width: 755px;
    margin: 0 auto;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.point img{
    width: 100%;
    height: auto;
}

/*-----------------------------------------------
最安値の理由 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {

    .about-bg{
        max-width: 90%;
        margin-top: 16rem;
    }

    .about-title{
        font-size: 3rem;
        padding-top: 4rem;
    }
    
    .exclamation-mark-icon{
        max-width: 90px;
    }
}

@media screen and (max-width: 768px) {
    .about-bg{
        max-width: 90%;
        margin-top: 10rem;
    }

    .about-title{
        background-color: #4C6073;
        color: #fff;
        text-align: center;
        font-size: 2rem;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    
    .exclamation-mark-icon{
        max-width: 70px;
        top: -50%;
        right: 40%;
    }
    
    .about-box{
        padding: 1.5rem;
    }
    
    .about-txt{
        font-size: 1.4rem;
        text-align: left;
        text-align: justify;
    }
    
    .point{
        max-width: 100%;
        width: 100%;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/*-----------------------------------------------
当スクールへの想い
-----------------------------------------------*/
.msg-bg{
    background-color: #E9EDF0;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.msg-container{
    max-width: 1000px;
    margin: 0 auto;
}

.msg-title img{
    width: 100%;
    height: auto;
}

.msg-box{
    background-color: #fff;
    padding: 4rem;
}

.msg-box:last-child{
    padding-top: 3rem;
}

.msg-heading{
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #0338E8 0%, #44A5F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding-bottom: 4rem;
}

.msg-txt{
    max-width: 840px;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: 450;
}

.msg-bold{
    color: #0338E8;
    font-weight: bold;
}

.msg-underline{
    text-decoration: underline;
    font-weight: bold;
}

.msg-list{
    max-width: 840px;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    list-style: none;
}

.msg-list li{
    font-size: 2rem;
    font-weight: bold;
    color: #0338E8;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.msg-list li::before{
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background-color: #0338E8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 1rem;
}

.msg-list li:last-child{
    margin-bottom: 0;
}

.name{
    max-width: 840px;
    margin: 0 auto;
    padding-top: 4rem;
    display: flex;
    gap: 1rem;
}

.name-jp{
    font-size: 3.6rem;
    font-weight: bold;
    color: #333;
    display: inline-block;
    margin-right: 1rem;
}

.name-en{
    font-size: 1.6rem;
    color: #333;
    margin-top: 0.5rem;
}

.name-position{
    font-size: 1.6rem;
    color: #333;
}

/*-----------------------------------------------
当スクールへの想い タブレット
-----------------------------------------------*/
@media screen and (max-width: 1028px) {
    .msg-container{
        max-width: 800px;
    }

    .msg-heading{
        font-size: 4.6rem;
    }

}

/*-----------------------------------------------
当スクールへの想い SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {
    .msg-bg{
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .msg-container{
        max-width: 90%;
    }
    
    .msg-box{
        padding: 2rem;
    }
    
    .msg-box:last-child{
        padding-top: 3rem;
    }
    
    .msg-heading{
        font-size: 4rem;
        text-align: left;
        padding-bottom: 4rem;
    }
    
    .msg-txt{
        max-width: 100%;
        font-size: 1.6rem;
    }
    
    .msg-list{
        max-width: 100%;
        padding-top: 3rem;
        padding-bottom: 3rem;
        list-style: none;
    }
    
    .msg-list li{
        font-size: 1.8rem;
    }
    
    .name{
        max-width: 100%;
        margin: 0 auto;
        padding-top: 4rem;
        display: flex;
        gap: 0.5rem;
    }
    
    .name-jp{
        font-size: 2.8rem;
    }
    
    .name-en{
        font-size: 1.2rem;
        color: #333;
        margin-top: 0.5rem;
    }
    
    .name-position{
        font-size: 1.2rem;
        color: #333;
    }
}

@media screen and (max-width: 520px) {

    .msg-heading{
        font-size: 2.4rem;
        line-height: 1.2;
        padding-bottom: 2rem;
        text-align: center;
    }

    .name{
        padding-top: 2rem;
    }

    .msg-box:last-child{
        padding-top: 0px;
    }
}

/*-----------------------------------------------
よくある質問
-----------------------------------------------*/
.faq-bg{
    max-width: 840px;
    margin: 0 auto;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.faq-box{
    max-width: 840px;
    margin: 0 auto;
}

.faq-item{
    margin-bottom: 3rem;
}

.faq-item:last-child{
    margin-bottom: 0px;
}

.faq-question{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 3rem 2.5rem 3rem;
    background-color: #FF6600;
    border-radius: 10px;
}

.faq-answer{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2.5rem 3rem 2.5rem 0px;
}

.faq-answer{
    background-color: #fff;
}

.faq-q-icon{
    font-size: 3.4rem;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
    line-height: 0.9;
}

.faq-a-icon{
    width: 4.5rem;
    height: 4.5rem;
    background-color: #666;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: bold;
    flex-shrink: 0;
    border-radius: 10px;
}

.faq-q-text{
    font-size: 2.4rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    padding-bottom: 0.5rem;
}

.faq-a-text{
    font-size: 1.8rem;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

/*-----------------------------------------------
よくある質問 SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {

    .faq-bg{
        max-width: 90%;
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
}

@media screen and (max-width: 420px) {

    .faq-question{
        align-items: center;
        padding: 2rem 2rem 2rem 2rem;
    }
    
    .faq-q-icon{
        font-size: 2.8rem;
        color: #fff;
        line-height: 0;
    }
    
    .faq-q-text{
        font-size: 1.8rem;
    }
    
    .faq-a-text{
        font-size: 1.6rem;
    }
}

/*-----------------------------------------------
お問い合わせフォーム
-----------------------------------------------*/
.form-bg{
    background-color: #F0F0F0;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.form-container{
    max-width: 840px;
    margin: 0 auto;
}

.form-title{
    font-size: 4.6rem;
    text-align: center;
    padding-bottom: 4rem;
}

.micro-copy{
    background-color: #fff;
    padding: 2rem 0;
    font-size: 2rem;
    text-align: center;
}

/*-----------------------------------------------
お問い合わせフォーム SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {

    .form-bg{
        padding-top:6rem;
        padding-bottom: 6rem;
    }

    .form-container{
        max-width: 90%;
    }

    .form-title{
        font-size: 3rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .micro-copy{
        padding: 2rem;
        font-size: 1.6rem;
        text-align: left;
        text-align: justify;
    }
}
/*-----------------------------------------------
フッター
-----------------------------------------------*/
footer{
    background-color: #44A5F7;
    padding: 30px 0;
    color: #fff;
    text-align: center;
}

.footer_link {
    font-size: 17px;
    padding: 10px 0;
}

.footer_link a {
    color: #fff;
    text-decoration: none;
}

.copy {
    font-size: 15px;
}

/*-----------------------------------------------
フッター SP
-----------------------------------------------*/
@media screen and (max-width: 768px) {

    footer{
        padding: 2rem 0;
        color: #fff;
        text-align: center;
    }
    
    .footer_link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .copy {
        font-size: 1.2rem;
    }
}