@charset "utf-8";
/* ======================
article header
====================== */
.hero__group {
    display: flex;
    width: 100%;
    height: 700px;
    gap: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

    background-image: 
    linear-gradient(236deg, rgba(231, 241, 255, 0.8) 26.69%, rgba(255, 255, 255, 0.8) 52.76%),
    url(../images/bg.jpg);
        
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    background-color: lightgray;
}

.hero__title__main{
    display: flex;
    padding: 0 8px;
    justify-content: center;
    align-items: center;

    color: #000;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3; /* 41.6px */
    letter-spacing: 1.92px;
}

.hero__title__sub {
    display: flex;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.8px;
}

/* article header pc */
@media screen and (min-width: 769px) {
    .header__group {
    background-image: 
    linear-gradient(236deg, rgba(231, 241, 255, 0.8) 26.69%, rgba(255, 255, 255, 0.8) 52.76%),
    url(../images/bg.jpg);
        
    /* グラデーションと画像の両方に適用される背景設定 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    background-color: lightgray;
    }

    .hero__group {
        max-height: 700px;
        gap: 48px;
    }

    .hero__title__main {
        padding: 0;
        font-size: 10rem;
        letter-spacing: 6px;
    }

    .hero__title__sub {
        font-size: 2.0rem;
        letter-spacing: 1px;
    }
}

/* ======================
slideInRight
====================== */

/* 1. */
.slideInRight {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

/* 2. */
.slideInRight.animated {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.5s;
}

/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0,50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0,0);
    opacity: 1;
}

/* ======================
main
====================== */
.topics {
    display: block;
}
.section--about {
    display: flex;
    width: 100%;
    padding: 48px 16px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;

    position: relative;
}

.about__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 画像を配置 */
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* 不透明度を20%に設定 */
    opacity: 0.2; 
    
    /* コンテンツの下に配置　*/
    z-index: -1; 
}

.about__container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.section__title--business {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.title__en {
    display: flex;
    padding: 4px 0 6px 8px;
    align-items: flex-start;

    border-left: 1px solid #F27511;

    color: #F27511;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3; /* 20.8px */
    letter-spacing: 0.8px;
}

.title__jp {
    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--primary-black);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3; /* 31.2px */
    letter-spacing: 1.2px;
}

.about__content {
    display: flex;
    margin: 0 auto;
    width: 100%;
    padding: 24px 0;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.about__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.about__image img {
    width: 100%;
    height: 100%;
    border-radius: 6px 6px 2px 2px;
}

.about__mainCaption {
    display: flex;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.mainCaption__txt {
    display: block;
    width: 100%;

    color:  var(--primary-black);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3; 
    letter-spacing: 0.8px;
}

/* main header pc */
@media screen and (min-width: 769px) {
    .section--about {
        padding: 96px 0 64px 0;
    }

    .section__title--business {
        align-items: center;
    }

    .title__jp {
        font-size: 3.2rem;
    }

    .about__content {
        flex-direction: row-reverse;
        padding: 56px 60px;
        gap: unset;
        justify-content: center;
        gap: 56px;
    }

    .about__image {
        max-width: 490px;
        max-height: 360px;
    }

    .about__mainCaption {
        width: auto;
        align-items: flex-start;
        margin: 0;
    }

    .mainCaption__txt {
        width: auto;
        font-size: 1.8rem;
    }
}

/* ----------
programs
---------- */
.section--programsIn {
    display: flex;
    width: 100%;
    padding: 48px 0;
    flex-direction: column;
    align-items: center;
    align-self: stretch;

    position: relative;
}

.section--programsIn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    opacity: 0.2; 
    
    z-index: -1; 
}

.programsIn__inner{
    display: flex;
    width: 100%;
    padding: 48px 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.section__title--programs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    gap: 8px;
    align-self: stretch;
}

.programsIn__contents {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 24px;
    gap: 16px;
    width: 100vw;
    
    -webkit-overflow-scrolling: touch;
}

.programsIn__item {
    display: flex;
    
    margin-left: 0;
    margin-right: 0;
    
    width: 85vw;
    max-width: 340px;
    padding: 32px 16px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    
    flex-shrink: 0; 
    
    background: #F5F7FB;
}

.programsIn__image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.programsIn__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;

    border-radius: 2px;
}

.programsIn__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(0, 0, 0, 0.4); 
    
    z-index: 1; 
    
    transition: background-color 0.3s ease;
}

.programsIn__num {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    color: var(--primary-white);
    font-family: Montserrat;
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
}

.programsIn__detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px;
    min-height: 200px;
    gap: 16px;
    align-self: stretch;

    background: var(--primary-white);
}

.programsIn__title--student {
    display: flex;
    padding-bottom: 4px;
    align-items: flex-start;
    gap: 8px;

    border-bottom: 1px solid var(--primary-orange);

    color: var(--primary-orange);
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
}

.programsIn__txt {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;

    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.75px;
}

.tagIn__group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.content__tagIn--highschool {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;

    border-radius: 2px;
    background: var(--primary-green);

    color: var(--primary-white);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
}

.content__tagIn--student {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;

    border-radius: 2px;
    background: var(--primary-orange);

    color: var(--primary-white);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
}

.programsIn__title--company {
    display: flex;
    padding-bottom: 4px;
    align-items: flex-start;
    gap: 8px;

    border-bottom: 1px solid var(--primary-blue);

    color: var(--primary-blue);
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
}

.content__tagIn--campany {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;

    border-radius: 2px;
    background: var(--primary-blue);

    color: var(--primary-white);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
}

.content__tagIn--local {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;

    border-radius: 2px;
    background: #6A1C78;

    color: var(--primary-white);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
}

/* programs header pc */
@media screen and (min-width: 769px) {
    .section--programsIn {
        padding: 0;
    }

    .programsIn__container {
        max-width: 1280px;
        width: 90%;
        margin: 0 auto;
    }

    .programsIn__inner {
        padding: 96px 0;
        gap: 40px;
    }

    .section__title--programs {
        align-items: center;
        padding: 0;
        align-self: unset;
    }

    .programsIn__contents {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-right: -30px;
        width: 100%;
        padding: 0;
    }

    .programsIn__item {
        padding: 0;
        gap: unset;
        background: none;
        width: calc(33.333% - 30px);
        margin-right: 30px;
        margin-bottom: 30px;
        flex-grow: 0;
        flex-shrink: 0;
    }

    .programsIn__num {
        font-size: 5.6rem;
    }

    .programsIn__detail {
        padding: 16px 24px 40px 24px;
        min-height: 236.5px;
    }

    .programsIn__txt {
        font-size: 1.6rem;
    }
}

/* ----------
case
---------- */
.section--case {
    display: flex;
    padding: 0 16px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;

    position: relative;
}

.section--case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    opacity: 0.2; 
    
    z-index: -1; 
}

.case__inner {
    display: flex;
    width: 100%;
    padding: 48px 8px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.section__title--case {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.case__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.case__item {
    display: flex;
    width: 100%;
    padding: 32px;
    padding-right: 24px;
    padding-left: 24px;
    flex-direction: column;
    align-items: center;
    gap: 32px;

    background: #FFF7F2;
}

.case__img {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 2px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.case__img img {
    width: 100%;
    height: 100%;
}

.case__detail {
    display: flex;
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    background: var(--primary-white);
}

.case__titleGroup {
    display: flex;
    padding-bottom: 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;

    border-bottom: 1px solid var(--primary-blue);
}

.case__num {
    color: var(--primary-blue);
    font-family: Montserrat;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.75px;
}

.case__title {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.8px;
}

.case__content {
   display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start; 
}

.case__txt {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.75px;
}

/* case  pc */
@media screen and (min-width: 769px) {
    .section--case {
        padding: 0;
    }

    .case__inner {
        padding: 96px 0;
        gap: 40px;
    }

    .section__title--case {
        align-items: center;
        padding: 0;
        align-self: unset;
    }

    .case__contents {
        max-width: 1320px;
    }

    .case__item {
        flex-direction: row-reverse;
        padding: 32px 60px;
        background: none;
    }

    .case__img {
        width: 40%;
    }

    .case__detail {
        padding: 0;
        background: none;
    }

    .case__titleGroup {
        gap: 16px;
        border-bottom: unset;
    }

    .case__num {
        font-size: 2.0rem;
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .case__title {
        display: inline-block;
        font-size: 2.4rem;
        border-bottom: 1px solid var(--primary-blue);
    }

    .case__txt {
        font-size: 1.6rem;
    }
}

/* ----------
seminar
---------- */
.section--seminar {
    display: flex;
    padding: 0 16px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;

    position: relative;
}

.section--seminar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    opacity: 0.2; 
    
    z-index: -1; 
}

.seminar__inner {
    display: flex;
    width: 100%;
    padding: 48px 8px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.section__title--seminar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.seminar__contents {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.seminar__item {
    display: flex;
    width: 100%;
    padding: 32px;
    padding-right: 24px;
    padding-left: 24px;
    flex-direction: column;
    align-items: center;

    background: #FFF7F2;
}

.seminar__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.btn--admission {
    display: none;
}

.seminar__img {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.seminar__img img {
    width: 100%;
    height: 100%;
}

.seminar__detail {
    display: flex;
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    background: var(--primary-white);
}

.seminar__scedule {
    display: flex;
    width: 100%;
    align-items: flex-start;

    color: var(--primary-black);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
}

.seminar__txt {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 500;
    list-style: disc;
    list-style-position: inside;
}

/* seminar  pc */
@media screen and (min-width: 769px) {
    .section--seminar {
        padding: 0;
    }

    .seminar__inner {
        padding: 96px 0;
        gap: 40px;
    }

    .section__title--seminar {
        align-items: center;
        padding: 0;
        align-self: unset;
    }

    .seminar__item {
        padding: 0 60px;
        background: none;
    }

    .seminar__content {
       flex-direction: row;
       justify-content: center;
    }

    .seminar__img {
        width: 50%;
    }

    .seminar__detail {
        padding: 24px;
        border-radius: 10px;
        border: 5px solid #FFCBAD;
        background: var(--primary-white);
    }

    .seminar__scedule {
        font-size: 1.6rem;
    }

    .seminar__txt {
        font-size: 1.6rem;
    }
}

/* ----------
Instagram
---------- */
.section--instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    padding: 32px 16px;
    width: 100%; 
    background: #FFF7F2;
}

.instagram__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram__inner {
    display: flex;
    padding: 48px 8px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.section__title--instagram {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.title__jp--instagram {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;

    border-radius: 2px;
    background: var(--primary-blue);

    color: var(--primary-white);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.2px;
}

.instagram__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 24px;
}

.instagram-iframe-wrapper {
    max-width: 540px; 
    width: 100%;
    margin: 0 auto; 
    
    overflow: hidden; 
}

.instagram-iframe-wrapper iframe {
    width: 100%;
}

iframe[src*="instagram.com"] {
    width: 100%; 

    border: none; 
}



/* instagram  pc */
@media screen and (min-width: 769px) {
    .section--instagram {
        padding: 96px 0;
        gap: 40px;
    }

    .instagram__inner {
        padding: 0;
        gap: 40px;
    }

    .section__title--instagram {
        align-items: center;
    }

    .title__jp--instagram {
        font-size: 3.2rem;
    }

    .instagram__contents {
        flex-direction: row;
        gap: 56px;
    }

    .instagram-iframe-wrapper {
        max-width: none;
        max-height: 600px;
    }
}