/*----------------------------------------------------- */
/*  セクションタイトル          */
/*----------------------------------------------------- */
.cmn_ttl{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 80px;
}
.cmn_ttl .en{
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.5;
}
@media screen and (max-width:767px) {
    .cmn_ttl{
        margin-bottom: 60px;
    }
}
@media screen and (max-width:599px) {
    .cmn_ttl .en{
        font-size: clamp(36px, 1.3898rem + 4.3011vw, 48px);
    }
}


/*----------------------------------------------------- */
/*  mv           */
/*----------------------------------------------------- */
.mv{
    position: relative;
    overflow: hidden;
}

.mv img{
    width: 74%;
    margin-left: 26%;
    opacity: 0;
    -webkit-animation: fadein 0.5s ease-out 0.3s 1 forwards;
    animation: fadein 0.5s ease-out 0.3s 1 forwards;
}

@media screen and (max-width: 767px) {
    .mv img {
        width: 80%;
        margin-left: 20%;
    }
}

.mv--txtarea {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mv--txtarea .inner {
    width: 100%;
    max-width: none;
    height: 100%;
    padding-left: 6.25%;
    padding-right: 6.25%;
    display: flex;
    align-items: center;
}

/* タイトル */
.mv--txtarea .ttl, .mv--txtarea .txt {
    line-height: 1;
}

.mv--txtarea .ttl {
    margin-top: 0.5em;
    margin-bottom: 0.25em;
    font-size: clamp(28px, -0.3766rem + 4.4304vw, 56px);
    letter-spacing: 0.09em;
}

.mv--txtarea .ttl > span {
    padding: 0.17em 0.5em 0.25em;
    margin-bottom: 0.5em;
}

.mv--txtarea .ttl > span, .mv--txtarea .txt > span {
    position: relative;
    display: inline-block;
}

.mv--txtarea .ttl span span {
    position: relative;
    z-index: 2;
    opacity: 0;
    -webkit-animation: fadein 0.1s ease-out 1.8s 1 forwards;
    animation: fadein 0.1s ease-out 1.8s 1 forwards;
}

.mv--txtarea .ttl > span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 100%;
    background-color: #fff;
    opacity: 0;
    -webkit-animation: fadein 0.1s ease-out 1.8s 1 forwards;
    animation: fadein 0.1s ease-out 1.8s 1 forwards;
}

.mv--txtarea .ttl > span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    z-index: 1;
    display: block;
    background-color: #e47300;
    -webkit-animation: hero_ttl_bg 0.9s ease-out 1.1s 1 forwards;
    animation: hero_ttl_bg 0.9s ease-out 1.1s 1 forwards;
}

.mv--txtarea .ttl > span:nth-of-type(2)::after {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

@keyframes fadein{
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hero_ttl_bg{
    0% {
        left: 0;
        right: 100%;
    }
    40% {
        left: 0;
        right: 0;
    }

    60% {
        left: 0;
        right: 0;
    }
    100% {
        left: 100%;
        right: 0;
    }
}

.mv--txtarea .txt {
    font-size: clamp(14px, 0.4193rem + 0.9494vw, 20px);
    font-weight: 500;
    letter-spacing: 0.09em;
    opacity: 0;
    transform: translateX(-8px);
    -webkit-animation: fadein_lft 0.5s ease-out 2.3s 1 forwards;
    animation: fadein_lft 0.5s ease-out 2.3s 1 forwards;
}
.mv--txtarea .txt > span {
    padding: 0.4em 0.5em 0.5em;
    background-color: #fff;
    margin-bottom: 0.75em;
}
@keyframes fadein_lft{
    0% {
        opacity: 0;
        transform: translateX(-8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width:767px) {
    .mv--txtarea .ttl {
        margin-top: 10.5em;
        margin-bottom: 16px;
        font-size: clamp(20px, 0.8921rem + 1.7897vw, 28px);
    }
    .mv--txtarea .txt{
        font-size: 14px;
        font-size: clamp(12px, 0.6605rem + 0.4474vw, 14px);
    }
}

@media screen and (max-width:420px) {
    .mv--txtarea .ttl {
        margin-top: 8.5em;
        margin-bottom: 0.2em;
    }
    .mv--txtarea .txt > span {
        margin-bottom: 0.3em;
    }
}

/*----------------------------------------------------- */
/*  about           */
/*----------------------------------------------------- */
.about{
    padding: 190px 0 130px;
    margin-top: -60px;
    background-color: #f9f9f9;
}
.about .inner{
    max-width: 800px;
    width: 90%;
    margin-inline:auto;
}
.about_txt_wrap{
    border-radius: 18px;
    background-color: #fff;
    box-shadow: 6px 4px 0 0 rgba(193, 193, 193, 0.25) ;
    padding: 40px 20px;
    position: relative;
    display: flex;
    justify-content: center;
}
.about_txt_wrap::before, .about_txt_wrap::after{
    content: "";
    display: inline-block;
    width: 75px;
    height: 75px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
}
.about_txt_wrap::before{
    background-image: url(../img/about01.png);
    top: -40px;
    left: 2%;
}
.about_txt_wrap::after{
    background-image: url(../img/about02.png);
    bottom: -40px;
    right: 2%;
}
.about_txt{
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 36px;
    text-align: center;
    letter-spacing: 5px;
}
@media screen and (max-width:767px) {
    .about{
        padding: 160px 0 100px;
        margin-top: -60px;
    }
    .about_txt_wrap::before, .about_txt_wrap::after{
        width: 60px;
        height: 60px;
    }
    .about_txt_wrap::before{
        top: -30px;
    }
    .about_txt_wrap::after{
        bottom: -30px;
    }
    .about_txt{
        font-size: clamp(20px, 0.5341rem + 3.5794vw, 36px);
    }
}
@media screen and (max-width:599px) {
    .about_txt {
        letter-spacing: 1px;
    }
    .about_txt_wrap::before, .about_txt_wrap::after{
        width: 50px;
        height: 50px;
    }
}

/*----------------------------------------------------- */
/*  business           */
/*----------------------------------------------------- */
.business{
    padding: 130px 0;
}
.business .inner{
    max-width: 1120px;
    width: 90%;
    margin-inline:auto;
}
.business_btn_wrap{
    display: flex;
    gap: 4%;
    justify-content: center;
}
.business_btn {
    position: relative;
    display: inline-block;
    width: 48%;
    padding: 80px 7.5%;
    color: #fff;
    font-size: 30px;
    background-color: #e47300;
    overflow: hidden;
    z-index: 1;
}
.business_btn:nth-child(2) {
    background-color: #03296A;
}
.business_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/top_service01.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
}
.business_btn:nth-of-type(2)::before {
    background-image: url(../img/top_service02.png);
}
.business_btn:hover::before {
    opacity: 1;
}
.business_btn span {
    position: relative;
    z-index: 2;
}
.business_btn_num{
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}
.business_btn_txt{
    font-weight: 500;
    letter-spacing: 5px;
    display: block;
    text-align: center;
}
.business .cmn_btn{
    color: #111;
    border: 1px solid #111;
}
.business .cmn_btn::after{
    border-right: 2px solid #111;
    border-bottom: 1px solid #111;
}
@media screen and (max-width:999px) {
    .business_btn {
        padding: 80px 5.5%;
        font-size: 24px;
    }
}
@media screen and (max-width:767px) {
    .business{
        padding: 100px 0;
    }
    .business_btn_wrap{
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .business_btn{
        width: 60%;
    }
    .business_btn:nth-child(2) {
        margin-top: 40px;
    }
}
@media screen and (max-width:599px) {
    .business .inner{
        width: 100%;
    }
    .business_btn{
        width: 80%;
        padding: 60px 5.5%;
    }
}

/*----------------------------------------------------- */
/*  company           */
/*----------------------------------------------------- */
.company{
    padding: 130px 0;
    background-color: #f9f9f9;
}
.company .inner{
    max-width: 920px;
    width: 90%;
    margin-inline:auto;
}
.company_table{
    max-width: 920px;
    width: 100%;
    margin-inline:auto;
    border-collapse: separate;
    border-spacing: 0 16px;
    letter-spacing: 1px;
}
.company_table th{
    background-color: #111;
    border: 1px solid #111;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    width: 24.1%;
    padding: 10px 5px;
}
.company_table td{
    background-color: #fff;
    border: 1px solid #d3d3d3;
    font-weight: 500;
    width: 75.8%;
    padding: 10px 40px;
}
.ggmp-wrap{
    max-width: 920px;
    width: 100%;
    margin-top: 80px;
    margin-inline:auto;
}
.ggmp{
    width: 100%;
    height: 550px;
}
@media screen and (max-width:767px) {
    .company{
        padding: 100px 0;
    }
    .company_table th{
        font-size: 16px;
    }
}
@media screen and (max-width:599px) {
    .company_table{
        font-size: 0.9rem;
    }
    .company_table th{
        padding: 10px 0;
        width: 26%;
    }
    .company_table td{
        padding: 10px 20px;
    }
}
