/* mv */
.t-mv {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: url('../images/mv-bg.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
}
.t-mv__cc {
    font-size: calc(70px + 60 * (100vw - 768px) / 1152);
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.1;
    position: absolute;
    left: 10.4%;
    bottom: 15%;
}
@media screen and (max-width: 768px) {
    .t-mv {
        background: url('../images/mv-bg-sp.jpg') center center no-repeat;
        background-size: cover;
    }
    .t-mv__cc {
        font-size: calc(34px + 46 * (100vw - 300px) / 468);
        text-align: center;
        left: 50%;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
}





/* top section ttl */
.t-sec-ttl {
    font-size: 16px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}
.t-sec-ttl span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    margin-right: 10px;
}





/* news */
.t-news {
    width: 100%;
    padding: 140px 0 70px;
}
.t-news__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.t-news__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t-news__cnt {
    margin-top: 20px;
}
.t-news__cnt li {
    border-bottom: 1px solid #EBEBEB;
    padding: 50px 0;
}
.t-news__cnt li a {
    display: flex;
    align-items: baseline;
    transition: all 0.6s ease;
}
.t-news__cnt li a:hover {
    opacity: 0.6;
    transition: all 0.6s ease;
}
.t-news__cnt li a span {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-right: 50px;
}
.t-news__cnt li a p {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .t-news {
        padding: 100px 0 50px;
    }
    .t-news__cnt {
        margin-top: 15px;
    }
    .t-news__cnt li {
        padding: 25px 0;
    }
    .t-news__cnt li a {
        flex-wrap: wrap;
    }
    .t-news__cnt li a:hover {
        opacity: 1;
    }
    .t-news__cnt li a span {
        width: 100%;
        display: flex;
        font-size: 12px;
        margin-right: 0;
    }
    .t-news__cnt li a p {
        font-size: 12px;
        margin-top: 10px;
    }
}





/* service */
.t-service {
    width: 100%;
    padding: 70px 0;
}
.t-service__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.t-service__img__wrap {
    width: 47.5%;
    height: 500px;
    position: relative;
}
.t-service__img {
    width: 50vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.t-service__img img {
    width: 100%;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    object-position: 80% 50%;
}
.t-service__txt {
    width: 46.25%;
}
.t-service__exp {
    margin-top: 30px;
}
.t-service__exp strong {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.t-service__exp p {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 30px;
}
@media screen and (max-width: 768px) {
    .t-service {
        padding: 50px 0;
    }
    .t-service__img__wrap {
        width: 95%;
        height: 250px;
    }
    .t-service__img {
        width: 120%;
        height: 100%;
    }
    .t-service__img img {
        border-radius: 15px;
    }
    .t-service__txt {
        width: 100%;
        margin-top: 50px;
    }
    .t-service__exp {
        margin-top: 20px;
    }
    .t-service__exp strong {
        font-size: 24px;
    }
    .t-service__exp p {
        font-size: 12px;
        margin-top: 20px;
    }
}





/* works */
.t-works {
    width: 100%;
    padding: 70px 0;
}
.t-works__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.t-works__container h2 {
    justify-content: center;
}
.t-works__cnt {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.t-works__cnt li {
    width: 28.33%;
}
.t-works__img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}
/*
.t-works__img img {
    width: 100%;
    height: 100%;
}
*/
.t-works__txt {
    margin-top: 30px;
}
.t-works__txt h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.t-works__txt h3 span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}
.t-works__txt p {
    font-size: 15px;
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
    .t-works {
        padding: 50px 0;
    }
    .t-works__container h2 {
        justify-content: left;
    }
    .t-works__cnt {
        margin-top: 30px;
    }
    .t-works__cnt li {
        width: 100%;
        margin-top: 50px;
    }
    .t-works__cnt li:first-child {
        margin-top: 0;
    }
    .t-works__img {
        height: 200px;
        border-radius: 15px;
    }
    .t-works__txt {
        margin-top: 20px;
    }
    .t-works__txt h3 {
        font-size: 22px;
    }
    .t-works__txt h3 span {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .t-works__txt p {
        font-size: 12px;
        margin-top: 20px;
    }
}





/* partner */
.t-partner {
    width: 100%;
    padding: 70px 0 140px;
}
.t-partner__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t-partner__txt {
    width: 46.25%;
}
.t-partner__exp {
    margin-top: 30px;
}
.t-partner__exp strong {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.t-partner__exp p {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 30px;
}
.t-partner__img__wrap {
    width: 47.5%;
    height: 500px;
    position: relative;
}
.t-partner__img {
    width: 50vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.t-partner__img img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    object-position: 50% 50%;
}
@media screen and (max-width: 768px) {
    .t-partner {
        padding: 50px 0 100px;
    }
    .t-partner__container {
        flex-wrap: wrap;
    }
    .t-partner__txt {
        width: 100%;
        margin-top: 50px;
        order: 2;
    }
    .t-partner__exp {
        margin-top: 20px;
    }
    .t-partner__exp strong {
        font-size: 24px;
    }
    .t-partner__exp p {
        font-size: 12px;
        margin-top: 20px;
    }
    .t-partner__img__wrap {
        width: 95%;
        height: 250px;
        order: 1;
    }
    .t-partner__img {
        width: 120%;
    }
    .t-partner__img img {
        border-radius: 15px;
    }
}