@charset "utf-8";
/* MV */
.mv {
    position: relative;
    line-height: 0;
    overflow: hidden;
}

#mv-video {
    width: 100%;
    height: 48.571vw;
}

@media screen and (max-width: 1000px) and (min-width: 769px) {
    #mv-video {
        height: 485px;
        object-fit: cover;
        object-position: center;
    }
}

@media screen and (max-width: 768px) {
    #mv-video {
        height: 177.778vw;
    }
}

.mv-inner {
    position: absolute;
    left: 0;
    bottom: 28%;
    width: 100%;
    text-align: center;
    color: #fff;
}

.mv-txt {
    font-size: min(2.9vw, 3.8rem);
    line-height: 2;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-shadow: 0 0 0.02em rgba(0, 0, 0, .3), 0 0 0.04em rgba(0, 0, 0, .3), 0 0 0.06em rgba(0, 0, 0, .3), 0 0 0.08em rgba(0, 0, 0, .3), 0 0 0.1em rgba(0, 0, 0, .3), 0 0 0.12em rgba(0, 0, 0, .3);
}

.mv-tit {
    font-size: min(10vw, 13rem);
    line-height: 1.3;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
    text-shadow: 0 0 0.02em rgba(0, 0, 0, .2), 0 0 0.04em rgba(0, 0, 0, .2), 0 0 0.06em rgba(0, 0, 0, .2), 0 0 0.08em rgba(0, 0, 0, .2), 0 0 0.1em rgba(0, 0, 0, .2), 0 0 0.12em rgba(0, 0, 0, .2);
}

.mv-txt p {
    overflow: hidden;
}

.mv-txt span {
    opacity: 0;
    transform: translateY(100%);
    display: inline-block;
}

.mv-txt p:nth-of-type(1) span {
    transition: .5s ease-out .3s;
}

.mv-txt p:nth-of-type(2) span {
    transition: .5s ease-out .8s;
}

.mv.is-view .mv-txt span {
    opacity: 1;
    transform: translateY(0);
}

.mv-tit h2 {
    overflow: hidden;
}

.mv-tit span {
    opacity: 0;
    transform: translateY(100%);
    display: inline-block;
    transition: .7s ease-out 1.3s;
}

.mv.is-view .mv-tit span {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .mv-inner {
        bottom: 9%;
    }

    .mv-txt {
        font-size: 6vw;
        line-height: 1.5;
        margin: 0 0 7em;
    }

    .mv-tit {
        font-size: 18vw;
        line-height: 0.9;
    }
}

/* About */
.about {
    background: #fff;
    margin: 0 0 110px;
}

.about-bg {
    width: 100%;
    height: 90vh;
    background: url("../img/top/bg01.webp") no-repeat center center/cover;
    position: relative;
    left: 0;
    top: 0;
    transition: .5s ease-out .5s;
}

.about-bg::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    opacity: 0;
    transition: opacity .2s ease-out, height 1s ease-out;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.about.is-show .about-bg {
    position: sticky;
}

.about.is-active .about-bg {
    opacity: 0;
}

.about.is-active .about-bg:before {
    opacity: 1;
    height: 70vh;
}

.about-wrap {
    position: relative;
    z-index: 1;
    padding: 150px 0 0 0;
    margin-top: -90vh;
}

.about-desc {
    max-width: 800px;
    margin: 0 auto 120px;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .about-bg {
        height: 80vh;
        background: url("../img/top/bg01_sp.webp") no-repeat center center/cover;
    }

    .about {
        margin: 0 0 60px;
    }

    .about-wrap {
        padding: 80px 0 0 0;
        margin-top: -80vh;
    }

    .about-desc {
        margin: 0 auto 60px;
    }
}

/* Structure */
.structure-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 0 80px;
}

.structure-nav a {
    width: 23.17%;
    height: 285px;
    background: #fff;
    color: #0032a0;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, .25);
    padding: 10px 0 0 0;
    position: relative;
    z-index: 1;
    transition: .5s ease-out;
    overflow: hidden;
}

.structure-nav p {
    height: 144px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: min(1.8vw, 1.8rem);
    line-height: 1.56;
    font-weight: 500;
}

.structure-nav a::after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url("../img/common/ic-circle-arrow.svg") no-repeat top left/100% 100%;
    transition: .5s ease-out;
}

.structure-nav a:hover {
    background: #0032a0;
    color: #fff;
    box-shadow: none;
}

.structure-nav a:hover:after {
    background: url("../img/common/ic-circle-arrow_white.svg") no-repeat top left/100% 100%;
    bottom: 13px;
}

@media screen and (max-width: 768px) {
    .structure-nav {
        margin: 0 0 40px;
    }

    .structure-nav a {
        width: 49%;
        margin: 0 2% 2% 0;
        height: min(58vw, 260px);
    }

    .structure-nav a:nth-of-type(2n) {
        margin-right: 0;
    }

    .structure-nav p {
        font-size: min(3.2vw, 1.6rem);
        height: min(25vw, 125px);
    }

    .structure-nav figure {
        width: min(11.2vw, 56px);
        margin: 0 auto;
        display: block;
    }
}

.structure-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.structure-item {
    margin: 0 0 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, .25);
    padding: 40px min(4.1vw, 50px);
    font-weight: 500;
}

.structure-item .img.radius {
    border-radius: 10px;
    overflow: hidden;
}

.structure-item .tit {
    font-size: 2.8rem;
    line-height: 1.357;
    color: #0032a0;
    font-weight: 500;
    margin: 0 0 20px;
}

.structure-item .tit span {
    display: block;
    margin: 10px 0 0 0;
}

.structure-item .tit sup {
    font-size: 0.55em;
    display: inline-block;
}

.structure-item .cap {
    margin: 15px 0 0 0;
}

.structure-note {
    color: #0032a0;
}

@media screen and (min-width: 769px) {
    .structure-item.is-full {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .structure-item.is-half {
        width: calc(50% - 15px);
    }

    .structure-item .inner {
        width: 51.5%;
        max-width: 520px;
    }

    .structure-item .img {
        width: 44.5%;
        max-width: 480px;
    }

    .structure-item#use {
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .structure-item {
        padding: 20px;
    }

    .structure-item .tit {
        font-size: min(5.6vw, 2rem);
        text-align: center;
    }

    .structure-item .tit img {
        width: 56px;
        margin: 0 auto;
        display: block;
    }

    .structure-item .tit span {
        margin: 10px 0 0 0;
    }

    .structure-item .img {
        max-width: 480px;
        margin: 20px auto 0;
    }
}

/* Scheme */
.scheme {
    margin: 0 auto 180px;
}

.scheme-tit {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    background: #a3a494;
    color: #fff;
    border-radius: 6px;
    padding: 15px 15px 15px 25px;
    margin: 0 0 60px;
}

.scheme-tit p {
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .scheme {
        margin: 0 auto 80px;
    }

    .scheme-tit {
        font-size: 1.8rem;
        padding: 10px 15px;
        margin: 0 0 30px;
    }

    .scheme-tit p {
        font-size: 1.2rem;
        margin: 5px 0 0 0;
        width: 100%;
    }

    .scheme-img {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .scheme-img img {
        width: 1000px;
        max-width: inherit;
    }
}

/* Intro */
.intro {
    padding: 100px 0 140px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 500px;
    display: block;
    background: url("../img/top/bg02.webp") no-repeat top center/cover;
}

@media screen and (max-width: 768px) {
    .intro {
        padding: 60px 0 80px;
    }

    .intro::before {
        height: 300px;
        background: url("../img/top/bg02_sp.webp") no-repeat top center/auto 100%;
    }
}

/* Effect */
.effect {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, .25);
    text-align: center;
    padding: 80px 20px;
    margin: 0 0 110px;
}

.effect .m-desc {
    max-width: 710px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    line-height: 1.83;
}

.effect-img {
    line-height: 1;
    margin: 30px 0 0;
}

.effect .note {
    margin: 30px 0 0 0;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

@media screen and (max-width: 768px) {
    .effect {
        padding: 30px 20px;
        border-radius: 10px;
        margin: 0 0 60px;
    }
}

/* Reason */
.reason .m-title {
    margin: 0 0 50px;
}

.reason-inner {
    background: #e5eaf5;
    border-radius: 12px;
    padding: 0 20px;
}

.reason-list {
    max-width: 830px;
    margin: 0 auto;
    width: 100%;
}

.reason-list li {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #838ba5;
    padding: 48px 0;
}

.reason-list li:last-of-type {
    border-bottom: none;
}

.reason-list .num {
    line-height: 1;
    width: 170px;
    text-align: center;
    margin: 10px 0 0 0;
}

.reason-list .num img {
    height: 50px;
    width: auto;
}

.reason-list .txt {
    font-size: 2.2rem;
    line-height: 1.63;
    font-weight: 500;
    color: #07174b;
    width: calc(100% - 170px);
    max-width: 595px;
}

@media screen and (max-width: 768px) {
    .reason .m-title {
        margin: 0 0 30px;
    }

    .reason-list li {
        padding: 30px 0;
    }

    .reason-list .num {
        width: 100%;
        margin: 0 0 15px;
    }

    .reason-list .num img {
        height: 40px;
    }

    .reason-list .txt {
        width: 100%;
        font-size: 1.8rem;
    }
}

/* Property */
.property {
    background: #e5eaf5;
    padding: 110px 0;
}

.property-tit {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: bold;
    border: 1px solid #0032a0;
    color: #0032a0;
    width: 100%;
    max-width: 440px;
    padding: 1em 0;
    text-align: center;
    margin: 0 auto 110px;
    position: relative;
    overflow: hidden;
}

.property-tit::before {
    content: "";
    background: #0032a0;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: .6s ease-out .3s;
}

.property-tit.is-view::before {
    width: 0;
}

@media screen and (max-width: 768px) {
    .property {
        padding: 80px 0 50px;
    }

    .property-tit {
        font-size: 2.4rem;
        margin: 0 auto 80px;
        max-width: 260px;
    }
}

.property-box {
    margin-bottom: 60px;
    background: #fff;
    border-radius: 8px;
    padding: min(7vw, 80px) 20px;
}

.property-box:last-of-type {
    margin-bottom: 0;
}

.property-box .wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.property-box .tit {
    font-size: 2.3rem;
    line-height: 1.4;
    text-align: center;
    border-bottom: 1px solid #000;
    margin: 0 0 45px;
    padding: 0 0 40px;
}

.property-box .photo {
    text-align: center;
    margin: 0 0 70px;
}

.property-box .info-tit {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 400;
    margin: 0 0 20px;
}

.property-box .info-tbl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.property-box .info-tbl dt {
    width: 88px;
    padding: 6px 0;
    background: #e5eaf5;
    text-align: center;
    font-size: 1.4rem;
    margin: 0 0 20px;
}

.property-box .info-tbl dd {
    width: calc(100% - 110px);
    line-height: 1.375;
    margin: 0 0 20px;
    min-height: 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.property-box .info-tbl dd p:not(:last-of-type) {
    margin: 0 0 13px;
}

.property-box .map {
    line-height: 1;
}

.property-box .map iframe {
    height: 350px;
    width: 100%
}

@media screen and (min-width: 769px) {
    .property-box .inner {
        display: flex;
        justify-content: space-between;
    }

    .property-box .info {
        width: 53.67%;
    }

    .property-box .map {
        width: 43.33%;
    }
}

@media screen and (max-width: 768px) {
    .property-box {
        margin: 0 0 40px;
        padding: 30px 20px;
    }

    .property-box .tit {
        font-size: 2rem;
        margin: 0 0 25px;
        padding: 0 0 20px;
    }

    .property-box .photo {
        max-width: 460px;
        width: 100%;
        margin: 0 auto 20px;
    }

    .property-box .info {
        margin: 0 0 20px;
    }

}

/* Process */
.process {
    background: #4c6fbc;
    color: #fff;
    padding: 110px 0;
}

.process .m-title2 {
    margin: 0 0 60px;
}

.process-notes {
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 80px 30px;
}

.process-notes .tit {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
}

.process-notes .rows {
    margin: 20px 0 0 0;
}

.note-bottom {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .process {
        padding: 60px 0;
    }

    .process .m-title2 {
        margin: 0 0 30px;
    }
}

/* Flow */
.flow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 70px;
}

.flow li {
    width: 14.167%;
    background: #fff;
    color: #4d4d4d;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, .2);
    font-weight: 500;
    position: relative;
    padding: 18px;
}

.flow-tit {
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
    color: #0032a0;
    margin: 0 0 10px;
}

.flow-tit span {
    display: block;
    font-size: 1.2em;
    color: #0032a0;
    font-weight: bold;
}

.flow-txt {
    font-size: 1.4rem;
    line-height: 1.43;
}

.flow li:nth-of-type(1) {
    transition-delay: 0s;
}

.flow li:nth-of-type(2) {
    transition-delay: .2s;
}

.flow li:nth-of-type(3) {
    transition-delay: .4s;
}

.flow li:nth-of-type(4) {
    transition-delay: .6s;
}

.flow li:nth-of-type(5) {
    transition-delay: .8s;
}

.flow li:nth-of-type(6) {
    transition-delay: 1s;
}

@media screen and (min-width: 769px) {
    .flow li:not(:last-of-type):after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        width: 0;
        height: 0;
        margin-top: -20px;
        border-top: min(2vw, 20px) solid transparent;
        border-left: min(1.8vw, 18px) solid #0032a0;
        border-bottom: min(2vw, 20px) solid transparent;
        transform: translateX(50%);
    }

    .flow-tit {
        min-height: 90px;
    }

    .flow li {
        opacity: 0;
        transform: scale(0.9) translateX(-30%);
        transform-origin: left;
        transition: .5s;
    }

    .flow.is-view li {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@media screen and (max-width: 768px) {
    .flow {
        margin: 0 0 50px;
    }

    .flow li {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 20px 0;
    }

    .flow li:not(:last-of-type) {
        margin: 0 0 30px;
    }

    .flow li:not(:last-of-type):after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 0;
        height: 0;
        margin: 0 auto;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 14px solid #0032a0;
        transform: translateY(10px);
    }

    .flow-tit {
        width: 150px;
        font-size: 1.8rem;
    }

    .flow-txt {
        width: calc(100% - 150px);
        padding: 0 20px 0 0;
        font-size: 1.3rem;
    }

    .flow li {
        opacity: 0;
        transform: scale(0.9) translateY(-30%);
        transform-origin: top;
        transition: .5s;
    }

    .flow.is-view li {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Service */
.service {
    background: #e5eaf5;
    color: #0032a0;
    padding: 110px 0;
}

.service-tit {
    font-size: 3rem;
    line-height: 2;
    text-align: center;
    margin: 0 0 50px;
}

@media screen and (max-width: 768px) {
    .service {
        padding: 60px 0;
    }

    .service-tit {
        font-size: min(5.4vw, 2.4rem);
        line-height: 1.7;
    }
}

/* Achieve */
.achieve {
    margin: 0 auto 110px;
}

.achieve-info {
    background: #fff;
    font-weight: 500;
    border-radius: 8px;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 20px 0;
}

.achieve-info ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.achieve-info li {
    border-right: 1px solid #0032a0;
    padding: 0 min(4vw, 3em);
}

.achieve-info li:last-of-type {
    border: none;
}

.achieve-info .txt {
    font-size: min(2.8vw, 2.4rem);
}

.achieve-info .num {
    font-size: min(5.8vw, 5rem);
    line-height: 1;
    display: inline-block;
}

.achieve-box #gmap {
    width: 100%;
    height: min(100vw, 500px);
}

.achieve-box .note {
    margin: 10px 0 0 0;
}

@media screen and (min-width: 769px) {
    .achieve-box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .achieve-box .map {
        width: 41.25%;
    }

    .achieve-box .gmap {
        width: 47.5%;
    }
}

@media screen and (max-width: 768px) {
    .achieve {
        margin: 0 auto 60px;
    }

    .achieve-info {
        margin: 0 auto 40px;
        padding: 0 20px;
    }

    .achieve-info li {
        border-bottom: 1px solid #0032a0;
        border-right: none;
        padding: 20px 0;
        width: 100%;
    }

    .achieve-info p {
        width: 200px;
        margin: 0 auto;
    }

    .achieve-info .txt {
        font-size: 2rem;
    }

    .achieve-info .num {
        font-size: 4.2rem;
    }

    .achieve-box .map {
        text-align: center;
        margin: 0 0 40px;
    }
}

/* Sale Slider */
.sale-slider {
    color: #000;
}

.sale-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.sale-slider .swiper-slide {
    width: 180px !important;
    text-align: center;
}

.sale-slider .img {
    position: relative;
    line-height: 1;
}

.sale-slider .num {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: #4d4d4d;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.sale-slider .txt {
    font-size: 1.4rem;
    line-height: 1.43;
    margin: 10px 0 0 0;
}

.sale-slider .note {
    background: #a91e24;
    color: #fff;
    line-height: 1;
    padding: 5px 0;
    margin: 10px 0 0 0;
}

@media screen and (max-width: 768px) {
    .sale-slider .txt {
        font-size: 1.2rem;
    }
}

/* Record */
.record {
    padding: 120px 0;
}

.record .m-title2 {
    margin: 0 0 30px;
}

.record-desc {
    line-height: 1.8;
    margin: 0 auto 70px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .record {
        padding: 60px 0 80px;
    }

    .record .m-title2 {
        margin: 0 0 20px;
    }

    .record-desc {
        text-align: left;
        margin: 0 0 40px;
    }
}

.policy {
    background: #e5eaf5;
    text-align: center;
    border-radius: 8px;
    padding: 50px 20px;
    margin: 0 0 100px;
}

.policy-tit {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 50px;
}

.policy-tit span {
    display: inline-block;
    border-bottom: 1px solid #000;
    padding: 0 0 5px;
}

@media screen and (max-width: 768px) {
    .policy {
        padding: 30px 20px;
        margin: 0 0 55px;
    }

    .policy-tit {
        font-size: 1.8rem;
        margin: 0 0 30px;
    }
}

.revenue-head {
    font-size: 2.7rem;
    line-height: 1.4;
    font-weight: 500;
    padding: 15px 4%;
    position: relative;
    border: 1px solid #0032a0;
    cursor: pointer;
}

.revenue-outer {
    padding: 40px 4%;
    display: block;
    border: 1px solid #ccd6ec;
    border-top: none;
}

.revenue-txt ul {
    margin: 15px 0 80px;
}

.revenue-txt li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 10px;
}

.revenue-txt li:last-of-type {
    margin: 0;
}

.revenue-txt li:before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    background: #686868;
    border-radius: 100%;
    position: absolute;
    top: 11px;
    left: 0;
}

@media screen and (min-width: 769px) {
    .revenue-inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .revenue-txt {
        width: 46.8%;
    }

    .revenue-img {
        width: 52.2%;
    }
}

@media screen and (max-width: 768px) {
    .revenue-head {
        font-size: 2rem;
        padding: 15px 50px 15px 20px;
    }

    .revenue-outer {
        padding: 30px 20px;
    }

    .revenue-img {
        text-align: center;
    }

    .revenue-txt {
        margin: 0 0 30px;
    }

    .revenue-txt ul {
        margin: 15px 0 30px;
    }
}

/* FAQ */
.faq {
    margin: 0 0 110px;
}

.faq-list {
    margin: 0 0 25px;
}

.faq-item {
    margin: 0 0 15px;
    border: 2px solid #e5eaf5;
    font-weight: 500;
}

.faq-item:last-of-type {
    margin: 0;
}

.faq-item .question {
    background: #e5eaf5;
    position: relative;
    padding: 20px 80px 20px 4%;
    font-size: 2.2rem;
    line-height: 1.4;
    cursor: pointer;
}

.faq-item .question i {
    display: block;
    width: 31px;
    height: 31px;
    position: absolute;
    top: 50%;
    right: 30px;
    margin-top: -15px;
    transition: .3s;
}

.faq-item .question i:before,
.faq-item .question i:after {
    content: "";
    position: absolute;
    display: block;
    background: #000;
}

.faq-item .question i:before {
    top: 15px;
    left: 0;
    width: 100%;
    height: 1px;
}

.faq-item .question i:after {
    top: 0;
    left: 15px;
    width: 1px;
    height: 100%;
}

.faq-item .question:hover {
    color: #0032a0;
}

.faq-item.is-active .question i:after {
    display: none;
}

.faq-item .anwser {
    background: #fff;
    padding: 20px 4%;
    min-height: 92px;
    display: none;
}

.faq-item.is-active .anwser {
    display: block;
}

.faq-note {
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .faq {
        margin: 0 0 60px;
    }

    .faq-item .question {
        font-size: 1.8rem;
        padding: 15px 40px 15px 20px;
    }

    .faq-item .question i {
        transform: scale(0.8);
        right: 8px;
    }
}

/* Company */
.company {
    background: #eaeaf3;
    padding: 110px 0 10px;
}

.company-desc {
    font-size: 2.2rem;
    line-height: 2;
    text-align: center;
    color: #2f2d83;
    margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
    .company {
        padding: 60px 0 10px;
    }

    .company-desc {
        font-size: 1.8rem;
        text-align: left;
        margin: 0 0 40px;
    }
}

/* Partner */
.partner {
    background: #fff;
    color: #2f2d83;
    border-radius: 8px;
    padding: 100px 20px 60px;
    text-align: center;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, .25);
    margin-bottom: 80px;
}

.partner-inner {
    max-width: 770px;
    margin: 0 auto;
}

.partner-logo {
    margin: 0 0 60px;
}

.partner-tit {
    font-size: 2rem;
    line-height: 2;
    margin: 0 0 60px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.partner-txt {
    line-height: 2;
    margin: 0 0 40px;
    text-align: left;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 40px;
}

.partner-list a {
    display: block;
    position: relative;
    line-height: 1;
    overflow: hidden;
    transition: .4s;
}

.partner-list p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #fff;
    font-weight: 500;
    z-index: 1;
}

.partner-list img {
    width: 100%;
    transition: .4s ease-out;
    transform-origin: center;
}

.partner-list a:hover {
    background: #000;
}

.partner-list a:hover img {
    transform: scale(1.1);
    opacity: .7;
}

.partner-btn a {
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #000;
    padding: 21px 0;
    display: block;
    position: relative;
    font-weight: 500;
    z-index: 1;
    overflow: hidden;
}

.partner-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 40px;
    height: 12px;
    display: block;
    margin-top: -6px;
    background: #2f2d83;
    mask: url("../img/common/ic-arrow.svg") no-repeat center right/100% auto;
    -webkit-mask: url("../img/common/ic-arrow.svg") no-repeat center right/100% auto;
    transition: .3s ease-out;
}

.partner-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2f2d83;
    transition: transform 0.3s ease-out;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: bottom right;
    inset: 0 0 0 0;
}

.partner-btn a:hover {
    color: #fff;
}

.partner-btn a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.partner-btn a:hover::after {
    background: #fff;
    right: 10px;
}

@media screen and (min-width: 769px) {
    .partner-list li {
        margin: 0 10px 10px 0;
        width: calc(25% - 10px);
    }

    .partner-list li:nth-of-type(4n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .partner {
        padding: 50px 20px 40px;
    }

    .partner-logo {
        margin: 0 auto 35px;
        width: 200px;
    }

    .partner-tit {
        font-size: 1.8rem;
        line-height: 1.8;
        margin: 0 0 30px;
    }

    .partner-list li {
        margin: 0 10px 10px 0;
        width: calc(50% - 10px);
    }

    .partner-list li:nth-of-type(2n) {
        margin-right: 0;
    }
}