@charset "utf-8";

/*==========================
article header
==========================*/
.article__header {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
}

.mainvisual__image {
    width: 100%;
}

.main__titles {
    position: absolute;
    width: 587px;
    height: 587px;
    padding: 180px 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
    bottom: -222px;
    left: -36px;
}

.main__title {
    color: var(--primary-black, #1C1C1C);
    font-size: 4rem;
    line-height: normal;
    font-weight: 400;
    text-align: center;
}

.main__subtitle {
    font-size: 3rem;
    line-height: 1.7;
    text-align: center;
}

/* main sp */
@media screen and (max-width:769px) {
    .article__header {
        height: auto;
    }

    .main__titles {
        width: 180px;
        height: 180px;
        padding: 57px 0;
        left: -7px;
        bottom: -65px;
    }

    .main__title {
        font-size: 1.6rem;
    }

    .main__subtitle {
        font-size: 1.2rem;
    }
}/* sp 769px */

/* topic */
.section {
    padding-left: 50px;
    padding-right: 50px;
}

.section__topic {
    position: relative;
    background: var(--primary-white, #FDFDFF);
}

.company__maintitle {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 400;
}

.company__maintxt {
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 50px;
}

.company__subtxt {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 1175px;
    margin: 0 auto;
}

.topic__movie {
    width: 70%;
    max-width: 900px;
    display: block;
    margin: 100px auto;
}

/* topic sp */
@media screen and (max-width: 769px){
    .section__topic {
        padding-left: 0;
        padding-right: 0;
    }

    .company__maintitle {
        font-size: 2rem;
        font-weight: 400;
    }

    .company__maintxt {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-top: 20px;
        padding: 0 20px;
    }

    .company__subtxt {
        font-size: 1.6rem;
        margin: 0 auto;
        padding: 0 20px;
    }

    .topic__movie {
        width: 100%;
        margin: 50px 0;
    }
}/* sp 769px */

/* ci */
.section__ci {
    background: var(--primary-lightblue);
    padding-bottom: 30px;
}

.ci__grp {
    max-width: 1325px;
    border-radius: 20px;
    background: #fff;
    padding: 46px 50px;
    text-align: center;
    margin: 100px auto;
}

.company__topic {
    text-align: center;
    font-size: 2.4rem;
    margin: 10px auto 0;
}

.company__topic::before {
    content: '●●●●';
    color: var(--primary-blue, #000078);
    margin-right: 15px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    vertical-align: middle;
}

.company__topic::after {
    content: '●●●●';
    color: var(--primary-blue, #000078);
    margin-left: 15px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    vertical-align: middle;
}

.ci__txt {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
}

.img__cilogo {
    max-width: 500px;
}

/* ci sp */
@media screen and (max-width:1025px) {
    .section__ci {
        padding: 30px 20px;
    }

    .ci__grp {
        padding: 25px 10px;
        margin: 36px auto;
    }

    .company__topic {
        font-size: 2rem;
    }

    .company__topic::before {
        font-size: 0.5rem;
    }

    .company__topic::after {
        font-size: 0.5rem;
    }

    .ci__txt {
        font-size: 1.4rem;
    }

    .img__cilogo {
        max-width: 100%;
    }
}/* sp 769px */

/* top message */
.section__top {
    background: var(--primary-white);
}

.top__grp {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.top__img-wrapper {
    display: grid;
}

.top__txtgrp {
    font-weight: 400;
    line-height: 1.7; 
}

.top__main {
    font-size: 2.4rem;
    text-align: center;
    margin-left: 33px;
}

.top__txt {
    font-size: 2rem;
    margin-top: 10px;
    margin-left: 50px;
    background: #FFF;
    border-radius: 20px;
    max-width: 770px;
    padding: 20px;
}

.top__name {
    font-size: 2rem;
    text-align: right;
    margin: 20px 20px 0 0;
}

.img__top {
    width: 364px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    transition: opacity .3s ease-in, visibility .3s ease-in;
}

.img__top-after {
    opacity: 0;
    visibility: hidden;
}

.top__img-wrapper:hover .img__top-before {
    opacity: 0;
    visibility: hidden;
}

.top__img-wrapper:hover .img__top-after {
    opacity: 1;
    visibility: visible;
}

/* top sp */
@media screen and (max-width:769px) {
    .section__top {
        padding: 30px 20px;
    }

    .top__grp {
        display: block;
    }

    .top__img-wrapper {
        display: grid;
        justify-content: center;
    }

    .top__txtgrp {
        font-weight: 400;
        line-height: 1.7; 
    }

    .top__main {
        font-size: 1.6rem;
        margin: 30px auto;
    }

    .top__txt {
        font-size: 1.4rem;
        margin: 0 auto;
        max-width: 350px;
    }

    .top__name {
        font-size: 1.4rem;
        text-align: center;
        margin: 20px 0 0 140px;
    }

    .img__top {
        width: 270px;
        height: auto;
    }
}/* sp 769px */

/* infomation */
.section__information {
    background: linear-gradient(180deg, rgba(253, 253, 255, 0.39) 0%, rgba(175, 215, 255, 0.37) 68.75%, rgba(0, 129, 255, 0.34) 100%);
}

.company__topic {
    margin-bottom: 55px;
}

.information__title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    background: #FFF;
    max-width: 1200px;
    border-radius: 20px;
    margin: 30px auto 0;
    padding: 32px 0;
    position: relative;
}

.information__title::after {
    content: '';
    width: 25px;
    height: 17px;
    background-image: url(../images/triangle_blue.png);
    background-repeat: no-repeat;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: 50% 50%;
    background-size: contain;
    transition: transform .25s ease;
    position: absolute;
}

.information__title[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

.information__list {
    background: #FFF;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.information__list.active {
    height: auto;
    padding: 50px 90px;
    margin: -16px auto;
}

.information__item {
    font-size: 2.4rem;
    min-width: 360px;
    padding-left: 70px;
}

.information__contents {
    font-size: 2.4rem;
    font-weight: 400;
    min-width: 370px;
    padding-left: 70px;
    margin-bottom: 63px;
}

.information__contents:last-of-type {
    width: 650px;
}

.information__list:nth-of-type(2)  .information__item {
    padding-left: 30px;
}

.information__list:nth-of-type(2)  .information__contents {
    padding-left: 30px;
}

.information__contents:last-of-type::after {
    display: none;
}

.information__brsp {
    display: none;
}

.information__txt {
    text-align: center;
    font-size: 2rem;
    margin: 80px auto 10px;
}

/* information sp */
@media screen and (max-width:769px) {
    .section__information {
        padding: 30px 20px;
    }

    .company__topic {
        margin-bottom: 30px;
    }

    .information__title {
        font-size: 1.6rem;
        font-weight: 400;
        max-width: 346px;
        margin: 21px auto 0;
        padding: 15px 0;
    }

    .information__title::after {
        width: 13px;
        height: 10px;
    }

    .information__list {
        display: flex;
        flex-wrap: wrap;
        max-width: 346px;
        padding: 0;
        margin: 0;
        height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .information__list.active {
        height: auto;
        padding: 25px 15px 15px;
        margin: -20px auto 20px;
    }

    .information__item {
        font-size: 1.4rem;
        min-width: 92px;
        margin-bottom: 33px;
        padding-left: 20px;
    }

    .information__contents {
        font-size: 1.4rem;
        width: 206px;
        min-width: 166px;
        padding-left: 27px;
        margin-bottom: 0;
    }

    .information__contents:last-of-type {
        width: 200px;
    }

    .information__list:nth-of-type(2) {
        display: block;
    }

    .information__list:nth-of-type(2)  .information__item {
        padding-left: 0;
        text-align: left;
        margin: 0;
    }

    .information__list:nth-of-type(2)  .information__contents {
        padding-left: 0;
        text-align: left;
        width: auto;
        margin-bottom: 20px;
    }

    .information__brsp {
        display: block;
    }

    .information__txt {
        font-size: 1.6rem;
        margin: 80px auto 10px;
    }
}/* sp 769px */

/* authentication */
.authentication__grp {
    background: #FFF;
    border-radius: 0 0 20px 20px;
    max-width: 1200px;
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;   
}

.authentication__grp.active {
    height: auto;
    padding: 10px 90px 50px;
    margin: -16px auto;
}

.authentication__img {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.img__authentication-logo {
    width: 200px;
    height: 200px;
}

.img__authenticationA {
    max-width: 400px;
    object-fit: contain;
}

.img__authenticationB {
    max-width: 750px;
}

.img__authenticationC {
    max-width: 600px;
    text-align: center;
    margin: 0 auto 30px;
}

.information__subtitle {
    font-size: 2.4rem;
    font-weight: 400;
    text-align: center;
    position: relative;
    margin: 50px auto 20px;
    background: var(--primary-lightblue);
}

.authentication__maintxt {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.7;
    font-weight: 500;
    margin: 30px auto;
}

.authentication__txt {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 10px auto 50px;
    max-width: 1000px;
}


.policy__grp {
    background: #FFF;
    border-radius: 0 0 20px 20px;
    max-width: 1200px;
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease; 
}


.policy__grp.active {
    height: auto;
    padding: 10px 90px 60px;
    margin: -20px auto;
}
.policy__txt {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
}

.policy__list:first-of-type .policy__txt {
    margin-bottom: 0;
}

.policy__sign {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: right;
}

.policy__sign:first-of-type {
    margin-top: 60px;
}

/* recruit sp */
@media screen and (max-width:769px) {
    .authentication__grp {
        max-width: 346px;
        padding: 0;
        margin: 0;
        height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .authentication__grp.active {
        height: auto;
        max-width: 346px;
        padding: 10px 20px 50px;
        margin: -10px auto 20px;
    }

    .authentication__img {
        display: block;
        text-align: center;
    }

    .img__authentication-logo {
        width: 200px;
        height: auto;
        margin-bottom: 20px;
    }

    .img__authenticationA {
        max-width: 100%;
    }

    .img__authenticationB {
        max-width: 300px;
    }

    .img__authenticationC {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 30px;
    }

    .information__subtitle {
        font-size: 1.6rem;
        margin: 50px auto;
    }

    .information__subtitle::before {
        width: 30%;
        height: 2px;
        display: inline-block;
        position: absolute;
        background-position: left;
        top: 20px;
        left: 0;
    }

    .authentication__list:nth-of-type(2) .information__subtitle::before {
        width: 20%;
    }

    .information__subtitle::after {
        width: 30%;
        height: 2px;
        display: inline-block;
        position: absolute;
        background-position: right;
        top: 20px;
        right: 0;
    }

    .authentication__list:nth-of-type(2) .information__subtitle::after {
        width: 20%;
    }

    .authentication__maintxt {
        font-size: 1.6;
        margin: 30px auto;
    }

    .authentication__txt {
        font-size: 1.4rem;
        margin: 10px auto 50px;
        max-width: 300px;
    }

    .policy__grp {
        border-radius: 0 0 20px 20px;
        max-width: 346px;
        padding: 0;
        margin: 0;
        height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease; 
    }

    .policy__grp.active {
        height: auto;
        padding: 10px 20px 60px;
        margin: -20px auto 20px;
    }

    .policy__txt {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .policy__list:first-of-type .policy__txt {
        margin-bottom: 0;
    }

    .policy__sign {
        font-size: 1.4rem;
        text-align: right;
    }

    .policy__sign:first-of-type {
        margin-top: 60px;
    }
}/* sp 769px */