@charset "UTF-8";

.p-intro{
    margin-top: var(--pt-main);
}
.p-intro__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-intro__title{
    font-size: var(--fs-title-ll);
    line-height: var(--lh-m);
    font-weight: 500;
    letter-spacing: var(--ls-sub-title);
}
.p-intro__text{
    font-size: var(--fs-text-l);
    line-height: var(--lh-m);
    margin-top: calc(20 * var(--px));
}
.p-intro__image{
    width: calc(377 * var(--px));
}
@media screen and (max-width: 767px){
    .p-intro__wrapper{
        display: block;
    }
    .p-intro__text{
        margin-top: calc(10 * var(--px));
    }
    .p-intro__image{
        width: calc((275 / 335) * 100%);
        margin: calc(20 * var(--px)) auto 0;
    }
}

.p-education{
    margin-top: var(--mt-section);
}
.p-education__intro{
    text-align: center;
    font-size: var(--fs-text-m);
    line-height: var(--lh-m);
    margin-top: var(--mt-section-title-bottom-narrow);
}
.p-education__list{
    margin-top: calc(40 * var(--px));
    display: flex;
    flex-wrap: wrap;
}
.p-education__item{
    width: 48.334%;
    margin: 3.332% 3.332% 0 0;
}
.p-education__item:nth-child(2n){
    margin-right: 0;
}
.p-education__item:nth-child(-n+2){
    margin-top: 0;
}
.p-education__item-link{
    display: block;
    background: var(--cl-white);
    padding: var(--p-item-company-link);
    border-radius: var(--radius-base);
}
.p-education__item-icon{
    width: calc(90 * var(--px));
    height: calc(35 * var(--px));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: var(--radius-base);
    font-size: var(--fs-text-ss);
    background: var(--cl-gold-light);
    position: absolute;
    top: 0;
    right: 0;
}
.p-education__item-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-education__item-image{
    width: calc(260 * var(--px));
    flex-shrink: 0;
    border-radius: var(--radius-base);
    overflow: hidden;
}
.p-education__item-logo{
    width: calc(235 * var(--px));
}
.p-education__item-text{
    margin-top: calc(20 * var(--px));
    font-size: var(--fs-text-s);
    line-height: var(--lh-m);
}
.p-education__item-text-point{
    font-weight: bold;
    color: var(--cl-orange);
}
@media screen and (max-width: 767px){
    .p-education__intro{
        text-align: left;
    }
    .p-education__list{
        display: block;
    }
    .p-education__list{
        margin-top: calc(20 * var(--px));
    }
    .p-education__item,
    .p-education__item:nth-child(2n),
    .p-education__item:nth-child(-n+2){
        width: 100%;
        margin: 0;
    }
    .p-education__item:nth-child(n+2){
        margin-top: calc(25 * var(--px));
    }
    .p-education__item-icon{
        width: calc(70 * var(--px));
        height: calc(25 * var(--px));
    }
    .p-education__item-image{
        width: calc((100 / 295) * 100%);
    }
    .p-education__item-logo{
        width: calc((180 / 295) * 100%);
        max-width: calc(250 * var(--px));
        margin: 0 auto;
    }
    .p-education__item-text{
        margin-top: calc(10 * var(--px));
    }
}

.p-list{
    margin-top: var(--mt-section);
}
.p-list__intro{
    text-align: center;
    font-size: var(--fs-text-m);
    line-height: var(--lh-m);
    margin-top: var(--mt-section-title-bottom-narrow);
}
.p-list__list{
    margin-top: calc(50 * var(--px));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.c-section-title + .p-list__list{
    margin-top: 3.332%;
}
.p-list__item{
    width: 48.334%;
    margin-top: 3.332%;
}
.p-list__item:only-child{
    margin-top: 0;
}
.p-list__item-link{
    background: var(--cl-white);
    display: block;
    padding: var(--p-item-company-link);
    border-radius: var(--radius-base);
    overflow: hidden;
}
.p-list__item-intro{
    display: flex;
    align-items: center;
}
.p-list__item-image{
    width: calc(260 * var(--px));
    border-radius: var(--radius-base);
    overflow: hidden;
    flex-shrink: 0;
}
.p-list__item-logo{
    width: calc(189 * var(--px));
}
.p-list__item-logo,
.p-list__item-title{
    margin-left: calc(30 * var(--px));
}
.p-list__item-title{
    font-size: var(--fs-youtube);
    font-weight: bold;
}
.p-list__item-text{
    font-size: var(--fs-text-s);
    line-height: var(--lh-m);
    margin-top: calc(20 * var(--px));
}
.p-list__item-point{
    color: var(--cl-orange);
    font-weight: bold;
}
@media screen and (max-width: 767px){
    .p-list__list{
        display: block;
        margin-top: calc(30 * var(--px));
    }
    .c-section-title + .p-list__list{
        margin-top: calc(20 * var(--px));
    }
    .p-list__item{
        width: 100%;
    }
    .p-list__item-image{
        width: calc((100 / 295) * 100%);
    }
    .p-list__intro{
        text-align: left;
    }
    .p-list__item{
        margin-top: calc(20 * var(--px));
    }
    .p-list__item-logo{
        width: calc((130 / 295) * 100%);
        max-width: calc(189 * var(--px));
        margin: 0 auto;
    }
    .p-list__item-text{
        margin-top: calc(10 * var(--px));
    }
    .p-list__item-title{
        margin-left: 0;
        text-align: center;
        flex-grow: 1;
    }
}

.p-world{
    width: 100%;
    background: var(--cl-white);
    padding: var(--p-item-company);
    border-radius: var(--radius-base);
}
.p-world__intro{
    height: calc(142 * var(--px));
    padding-left: calc(290 * var(--px));
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.p-world__intro-image{
    width: calc(260 * var(--px));
    border-radius: var(--radius-base);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.p-world__intro-title{
    font-size: var(--fs-title-m);
    font-weight: bold;
}
.p-world__intro-text{
    margin-top: calc(15 * var(--px));
    font-size: var(--fs-text-s);
    line-height: var(--lh-m);
}
.p-world__movie{
    padding: var(--p-item-company);
    background: var(--cl-gray-light);
    margin-top: calc(40 * var(--px));
    border-radius: var(--radius-base);
}
.p-world__movie-title{
    font-size: var(--fs-title-3s);
    font-weight: 500;
}
.p-world__movie-text{
    margin-top: calc(15 * var(--px));
    font-size: var(--fs-text-ss);
    line-height: var(--lh-m);
}
.p-world__movie-text a{
    text-decoration: underline;
}
.p-world__movie-text a::after{
    content: '\f08e';
    display: inline-block;
    transform: scale(0.8);
    transform-origin: left center;
    font-family: var(--font-icon);
    font-weight: bold;
    margin-left: calc(4 * var(--px));
}
.p-world__list{
    margin-top: calc(30 * var(--px));
    display: flex;
    flex-wrap: wrap;
}
.p-world__movie-text + .p-world__list{
    margin-top: calc(20 * var(--px));
}
.p-world__item{
    width: 31.415%;
    margin: 2.8775% 2.8775% 0 0;
}
.p-world__item:nth-child(3n){
    margin-right: 0;
}
.p-world__item:nth-child(-n+3){
    margin-top: 0;
}
.p-world__link{
    display: block;
    padding: calc(20 * var(--px)) calc(20 * var(--px)) calc(10 * var(--px));
    background: var(--cl-white);
    border-radius: var(--radius-base);
}
.p-world__image{
    width: calc(183 * var(--px));
    margin: 0 auto;
    border-radius: var(--radius-base);
    overflow: hidden;
}
.p-world__logo{
    width: calc(183 * var(--px));
    margin: calc(5 * var(--px)) auto 0;
}
.p-world__button{
    margin-top: calc(40 * var(--px));
    display: flex;
    justify-content: center;
}
.p-world__button .c-button:nth-child(2) {
    margin-left: calc(30 * var(--px));
}
.p-world__button-film{
    width: calc(197 * var(--px));
    height: auto;
}
@media screen and (max-width: 767px){
    .p-world__intro{
        height: auto;
        padding-left: 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    .p-world__intro-image{
        width: calc((100 / 295) * 100%);
        position: static;
    }
    .p-world__intro-title{
        width: calc((195 / 295) * 100%);
        text-align: center;
    }
    .p-world__intro-text{
        width: 100%;
        margin-top: calc(10 * var(--px));
    }
    .p-world__movie{
        margin-top: calc(20 * var(--px));
    }
    .p-world__list{
        margin-top: calc(20 * var(--px));
        display: block;
    }
    .p-world__movie-text + .p-world__list{
        margin-top: calc(15 * var(--px));
    }
    .p-world__item,
    .p-world__item:nth-child(4n),
    .p-world__item:nth-child(-n+4){
        width: 100%;
        margin: 0;
    }
    .p-world__item:nth-child(n+2){
        margin-top: calc(15 * var(--px));
    }
    .p-world__link{
        display: flex;
        align-items: center;
        padding: calc(10 * var(--px));
    }
    .p-world__image{
        width: calc((80 / 235) * 100%);
        flex-shrink: 0;
    }
    .p-world__logo{
        width: 100%;
        max-width: calc(212 * var(--px));
        padding-right: calc(15 * var(--px));
        margin-top: 0;
    }
    .p-world__button{
        display: block;
        margin-top: calc(20 * var(--px));
    }
    .p-world__button .c-button:nth-child(2) {
        margin: calc(15 * var(--px)) 0 0;
    }
    .p-world__button-film{
        width: calc(176 * var(--px));
    }
}

.p-other{
    display: flex;
    justify-content: space-between;
    margin-top: var(--mt-section);
}
.p-other__item{
    width: calc(25% - (90 * var(--px) / 4));
    background: var(--cl-white);
    padding: calc(25 * var(--px));
    border-radius: var(--radius-base);
}
.p-other__text{
    font-size: var(--fs-text-ss);
    line-height: var(--lh-m);
    margin-top: var(--mt-brackets-title-bottom-narrow);
}
@media screen and (max-width: 767px){
    .p-other{
        display: block;
    }
    .p-other__item{
        width: 100%;
        padding: calc(15 * var(--px)) calc(20 * var(--px));
    }
    .p-other__item:nth-child(n+2){
        margin-top: calc(20 * var(--px));
    }
}