@charset "UTF-8";

/*=================================
top common 
================================ */

.title {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 4.8rem;
    line-height: 1;
    text-align: center;
    color: var(--blue);
    padding-top: 30px;
}

.title__linejp {
    display: flex;
    align-items: baseline;
    margin-top: 6px;
    gap: 6px;
}

.title__line {
    width: 80px;
    height: 1px;
    background-color: var(--blue);
}

.title__jp {
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    color: var(--blue);
    white-space: nowrap;
}

/* top common pc */
@media screen and (min-width: 769px) {
    .title {
        font-size: 10rem;
        padding-top: 60px;
    }

    .title__linejp {
        display: flex;
        align-items: baseline;
        margin-top: 16px;
        gap: 36px;
    }

    .title__line {
        width: 180px;
    }

    .title__jp {
        font-size: 1.4rem;
    }
}
/* pc 769px */

/*=================================
article header
================================ */
.article__header {
    background-image: url(../images/background_main-sp.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.catchcopy {
    padding-top: 24px;
}

.catchcopy p {
    font-family: 'Oswald';
    font-size: 2.4rem;
    line-height: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.catchcopy p:last-of-type {
    margin-top: 16px;
}

.catchcopy__deco--x {
    display: block;
    position: relative;
    margin-top: 12px;
}

.catchcopy__deco--x::before,
.catchcopy__deco--x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5px;
    height: 14px;
    background: #fff;
}

.catchcopy__deco--x::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.catchcopy__deco--x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

h2 {
    font-family: 'Noto Serif JP';
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: #FFFFFF;
    margin-top: 16px;
    padding-bottom: 38px;
}

.scroll {
    position: absolute;
    top: 24%;
    right: 10%;
}

.scroll a {
    position: absolute;
    left: 4px;
    bottom: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-family: 'Oswald';
    letter-spacing: 0.1em;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
    0% {
        bottom: 40px;
    }

    100% {
        bottom: 0px;
    }
}

@keyframes cirlemovehide {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

.scroll:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 40px;
    background: #fff;
}

/* article header pc */
@media screen and (min-width: 769px) {
    .article__header {
        position: relative;
        overflow: hidden; 
    }

    .bg-zoom {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../images/background_main-pc.png);
        background-size: cover;
        background-position: center;
        z-index: 1;
        animation: zoomInOut 10s ease-in-out infinite;
        transform-origin: center;
      }
      
      @keyframes zoomInOut {
        0%, 100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      .catchcopy,
      .article__header h2,
      .scroll {
        position: relative;
        z-index: 2;
      }
      
    .catchcopy {
        padding-top: 220px;
    }

    .catchcopy p {
        font-size: 7.2rem;
    }

    .catchcopy p:last-of-type {
        margin-top: 2px;
    }

    .catchcopy__deco--x {
        display: block;
        position: relative;
        margin-top: 20px;
        height: 40px;
    }

    .catchcopy__deco--x::before,
    .catchcopy__deco--x::after {
        height: 40px;
    }

    h2 {
        font-size: 2.8rem;
        margin-top: 64px;
        padding-bottom: 365px;
    }

    .scroll {
        position: absolute;
        top: 80%;
        left: 50%;
    }

    .scroll a {
        position: absolute;
        left: 4px;
        bottom: 10px;
        color: #fff;
        font-size: 1.2rem;
        font-family: 'Oswald';
        letter-spacing: 0.1em;
        writing-mode: vertical-lr;
        text-decoration: none;
        text-transform: uppercase;
    }

    .scroll:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: -4px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #fff;
        animation:
            circlemove 1.6s ease-in-out infinite,
            cirlemovehide 1.6s ease-out infinite;
    }

    @keyframes circlemove {
        0% {
            bottom: 60px;
        }

        100% {
            bottom: 0px;
        }
    }

    @keyframes cirlemovehide {
        0% {
            opacity: 0
        }

        50% {
            opacity: 1;
        }

        80% {
            opacity: 0.9;
        }

        100% {
            opacity: 0;
        }
    }

    .scroll:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 1px;
        height: 60px;
        background: #fff;
    }
}
/* pc 769px */

/*=================================
news
================================ */
.section--news {
    width: 343px;
    height: auto;
    margin: 0 auto;
    background: #FCFCFC;
    box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.25);
    padding: 0 22px 40px;
}


.title--newsall {
    padding-top: 0;
}

.title--news {
    font-weight: 400;
    font-size: 3rem;
    padding-top: 10px;
    margin-top: 0;
}

.title__jp--news {
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    display: block;
    text-align: center;
    color: var(--blue);
}

.title__line--news {
    display: block;
    width: 60px;
    margin: 12px auto 8px;
}

.title__linejp--news {
    display: block;
}

time {
    font-size: 1.2rem;
    line-height: 1;
}

.news__txt {
    margin-top: 4px;
}

.news__txt:last-of-type {
    margin-top: 14px;
}

.news__txt span {
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 2px;
    display: block;
}

/* news pc */
@media screen and (min-width: 769px) {
    .section--news {
        position: absolute;
        max-width: 1160px;
        min-width: 760px;
        width: 100%;
        height: auto;
        background: #FCFCFC;
        box-shadow: 24px 24px 24px rgba(0, 0, 0, 0.25);
        top: 110%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        padding: 60px;
        gap: 60px;
        z-index: 2;
    }

    .title--newsall {
        display: block;
        padding-top: 0;
    }

    .title--news {
        font-size: 7.2rem;
        padding-top: 10px;
        margin-top: 0;
        justify-items: left;
    }

    .title__line--news {
        margin: 16px auto 0;
    }

    .title__jp--news {
        font-size: 1.4rem;
        display: block;
        padding-top: 20px;
        justify-items: center;
        justify-content: center;
        position: relative;
    }

    time {
        font-size: 1.6rem;
        line-height: 1;
    }

    .news__txt--all {
        align-content: center;
    }

    .news__txt {
        margin-top: 0;
        display: flex;
        gap: 20px;
        align-items: baseline;
    }

    .news__txt:last-of-type {
        margin-top: 24px;
    }

    .news__txt span {
        font-size: 2rem;
        line-height: 1;
        margin-top: 0;
        display: block;
    }
}
/* pc 769px */

/*=================================
logos
================================ */
.logos--pc {
    display: none;
}

.logos--sp {
    padding: 20px 4.2% 20px;
}

/* logos pc */
@media screen and (min-width: 769px) {
    .logos--pc {
        display: block;
        padding: 120px 9.7% 0;
        position: absolute;
    }

    .logos--sp {
        display: none;
    }
}
/* pc 769px */

/*=================================
about
================================ */
#about {
    background-image: url(../images/background_about-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 0 var(--contentPadding);
}

.title--about {
    text-align: start;
}

.about__catchcopy {
    font-family: 'Noto Serif JP';
    font-size: 2rem;
    color: var(--blue);
    margin-top: 10px;
}

.about__txt {
    font-size: 1.6rem;
    padding-bottom: 40px;
}

.about__txt p {
    margin-top: 24px;
}

.pcBr {
    display: none;
}

/* about pc */
@media screen and (min-width: 769px) {
    #about {
        background-image: url(../images/background_about-pc.png);
        padding: 243px 9.7% 60px;
    }

    .title--aboutall {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1160px;
        height: auto;
        gap: 40px;
        margin: 0 auto;
    }

    .title--about {
        white-space: nowrap;
    }

    .about__catchcopy {
        font-size: 2.8rem;
        margin-top: 0;
        padding-top: 30px;
    }

    .about__txt {
        padding-bottom: 0;
        font-size: 2rem;
        line-height: 1.8;
        text-align: center;
        max-width: 1140px;
        margin: 60px auto;
    }

    .about__txt p {
        margin-top: 24px;
    }

    .pcBr {
        display: inline;
    }
}
/* pc 769px */

/*=================================
strength
================================ */
#strength {
    padding: 0 var(--contentPadding) 40px;
    background-image: url(../images/background_strength-sp.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title--strength {
    text-align: center;
    color: #FFF;
}

.title--strengthall {
    justify-items: flex-start;
    width: 180px;
    height: auto;
    margin: 0 auto;
}

.title__line--strength {
    background-color: #FFF;
}

.title__jp--strength {
    color: #FFF;
}

.strength__item {
    margin: 30px auto 0;
    filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.25));
    max-width: 343px;
}

.strength__title {
    font-weight: 500;
    font-size: 2.4rem;
    text-align: center;
}

.strength__txt {
    font-size: 1.6rem;
    margin-top: 12px;
}

.strength__titletxt {
    align-items: center;
    padding: 14px 32px 50px;
    gap: 12px;
    background: #FFFFFF;
}

/* strength pc */
@media screen and (min-width: 769px) {
    #strength {
        padding: 0 9.7% 164px;
        background-image: url(../images/background_strength-pc.png);
    }

    .title--strengthall {
        justify-items: start;
        margin: 0 auto;
        width: 402px;
    }

    .title__linejp--strength {
        padding-left: 0;
    }

    .strength__list {
        display: flex;
        gap: 48px;
    }

    .strength__item {
        margin-top: 60px;
        filter: drop-shadow(24px 24px 24px rgba(0, 0, 0, 0.25));
        max-width: 1160px;
    }

    .strength__item--inde {
        margin-top: 148px;
    }

    .strength__txt {
        font-size: 1.8rem;
        margin-top: 12px;
    }
}
/* pc 769px */

/*=================================
service
================================ */
#service {
    padding: 0 var(--contentPadding) 40px;
    background-image: url(../images/background_service-sp.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title--service {
    color: #FFF;
    text-align: start;
}

.title__jp--service {
    color: #FFF;
}

.service__txt {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #FFFFFF;
    margin-top: 30px;
}

.btn__list {
    margin-top: 30px;
}

.btn__houjin,
.btn__kojin {
    box-sizing: border-box;
    width: 300px;
    height: auto;
    margin: 0 auto;
    align-items: center;
    padding: 14px 60px 24px;
    border: 1px solid #FFFFFF;
}

.btn__kojin {
    margin-top: 10px;
}

.btn__houjin p,
.btn__kojin p {
    font-size: 2.4rem;
    color: #FFF;
    text-align: center;
}

.btn__houjin span,
.btn__kojin span {
    font-size: 2rem;
}

.btn__houjin:hover,
.btn__kojin:hover {
    background-color: #000;
}


.arrow {
    position: relative;
    display: inline-block;
    width: 180px;
    height: 1px;
    margin-top: 4.6px;
    border-radius: 9999px;
    background-color: #FFF;
    justify-content: center;
    margin: 0 auto;
    display: block;
}

.arrow::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 7.5px;
    height: 1px;
    border-radius: 9999px;
    background-color: #FFF;
    transform: rotate(45deg);
    transform-origin: calc(100% - 0.5px) 50%;
}

/* service pc */
@media screen and (min-width: 769px) {
    #service {
        padding: 0 9.7% 164px;
        background-image: url(../images/background_service-pc.png);
    }

    .title--serviceall {
        max-width: 1160px;
        margin: 0 auto;
    }

    .service__txt {
        font-size: 2rem;
        margin-top: 80px;
    }

    .service__txtbtn {
        display: flex;
        max-width: 1160px;
        height: auto;
        justify-content: space-between;
        gap: 16%;
        align-items: center;
        margin: 0 auto;
    }

    .btn__list {
        margin-top: 0px;
    }

    .btn__houjin,
    .btn__kojin {
        padding: 20px 60px 30px;
        white-space: nowrap;
        width: 320px;
        height: auto;
    }

.btn__kojin {
    margin-top: 40px;
}

.btn__houjin p,
.btn__kojin p {
    font-size: 3.6rem;
}

.btn__houjin span,
.btn__kojin span {
    font-size: 3.2rem;
}

.arrow {
    margin-top: 6px;
    width: 220px;
}
}
/* pc 769px */

/*=================================
underwriter
================================ */
#underwriter {
    padding: 0 var(--contentPadding) 40px;
    background-image: url(../images/background_underwriter-sp.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title--underwriterall {
    justify-items: flex-start;
    width: 270px;
    height: auto;
    margin: 0 auto;
}

.underwriter__txt {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--blue);
    margin-top: 30px;
}

.underwriter__list {
    filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.25));
}

.underwriter__list:first-of-type {
    margin-top: 30px;
}

.underwriter__item {
    font-size: 1.8rem;
    line-height: 1;
    text-align: center;
    color: #FFFFFF;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    width: 343px;
    height: 90px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #FFFFFF;
    align-content: center;
}

.underwriter__item--blank {
    display: none;
}

.underwriter__item:hover {
    opacity: 0.5;
}

.btn__arrow {
    margin-top: 40px;
}

/* underwriter pc */
@media screen and (min-width: 769px) {
    #underwriter {
        padding: 0 9.7% 60px;
        background-image: url(../images/background_underwriter-pc.png);
    }

    .title--underwriterall {
        justify-items: start;
        margin: 0 auto;
        width: 562px;
    }

    .title__linejp--underwriter {
        padding-left: 0;
    }

    .underwriter__txt {
        font-size: 2rem;
        margin-top: 60px;
        padding: 0 20%;
    }

    .underwriter__list {
        filter: drop-shadow(24px 24px 24px rgba(0, 0, 0, 0.25));
        display: flex;
        justify-content: center;
    }

    .underwriter__listall {
        width: 786px;
        margin: 0 auto;
    }

    .underwriter__list:first-of-type {
        margin-top: 60px;
    }

    .underwriter__item {
        font-size: 2rem;
        width: 393px;
        height: 100px;
    }

    .underwriter__item--blank {
        display: block;
        opacity: 0;
    }

    .underwriter__item:hover {
        opacity: 0.5;
    }

    .underwriter__item--blank:hover {
        opacity: 0;
    }
}
/* pc 769px */
