@charset "utf-8";

/*
Theme Name: PLJAPAN
Author: pl-japan
Description: Custom WordPress Theme
Version: 1.0
*/
/* =====================
RESET
===================== */
*,
*::before,
*::after {
    box-sizing: border-box
}

*:not(dialog) {
    margin: 0
}

@media (prefers-reduced-motion:no-preference) {
    html {
        interpolate-size: allow-keywords
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%
}

input,
button,
textarea,
select {
    font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word
}

p {
    /* text-wrap: pretty; */
}


#root,
#__next {
    isolation: isolate
}

/* =====================
BASE
===================== */
html {
    font-size: 16px;
}

@media screen and (max-width: 960px) {
    html {
        font-size: 14px;
    }
}

@media screen and (max-width: 680px) {
    html {
        font-size: 12px;
    }
}

body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    color: var(--main);
}

:root {
    --main: #191D55;
    --sub: #00B3C1;
    --bg: #DEE0E4;
    --fs-xs: 0.875rem;
    /* 14px */
    --fs-sm: 1rem;
    /* 16px */
    --fs-md: 1.25rem;
    /* 20px */
    --fs-lg: 1.5rem;
    /* 24px */
    --fs-xl: 2rem;
    /* 32px */
    --fs-2xl: 2.5rem;
    /* 40px */
    --fs-3xl: 3.75rem;
    /* 60px */
    --ff-en: "Inter", sans-serif;
    --ff-jp: "Noto Sans JP", sans-serif;
    --ff-mincho: "Shippori Mincho", serif;
}

a {
    text-decoration: none;
}

h1,
h2 {
    color: var(--main);
    font-weight: 600;
    font-family: var(--ff-mincho);
}

.sp,
.tb {
    display: none;
}

@media screen and (max-width: 960px) {
    .tb {
        display: block;
    }

    section h2.section__title {
        font-size: var(--fs-2xl);
    }
}

@media screen and (max-width: 680px) {
    .sp {
        display: block;
    }

    section h2.section__title {
        font-size: var(--fs-xl);
        line-height: 1.4;
    }
}

/* =====================
HEADER
===================== */

.header {
    padding: 24px 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.header__logo a {
    text-decoration: none;
}

.header__logo h1 {
    font-size: var(--fs-xl);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__right__upper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.header__tel a {
    color: var(--main);
    text-decoration: none;
    font-size: var(--fs-xl);
    font-family: var(--fs-en);
    font-weight: 600;
    position: relative;
    line-height: 1;
}

.header__tel a:hover {
    opacity: .7;
}

.header__tel a::before {
    content: "";
    width: 32px;
    height: 32px;
    background: url(./img/tel.svg) no-repeat center center /contain;
    display: inline-block;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.header__nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.header__nav a {
    text-decoration: none;
    color: var(--main);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.header__cta {
    display: flex;
    gap: 9px;
}

.header__cta--mobile {
    display: none;
}

.header__nav .header__tel a{
    font-size: var(--fs-xl);
    font-weight: 600;
    padding-left: 40px;
}
.header__nav .header__tel a:before{
    left: 0;
}

.btn {
    padding: 24px;
    border-radius: 4px;
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: opacity .3s ease;
}

.btn:hover {
    opacity: .7;
}

.btn--dark {
    background: var(--main);
}

.btn--blue {
    background: var(--sub);
}

.header__hamburger {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main);
    transition: .3s;
}

.header__hamburger span:nth-child(1) {
    top: 0;
}

.header__hamburger span:nth-child(2) {
    top: 10px;
}

.header__hamburger span:nth-child(3) {
    bottom: 0;
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

@media screen and (max-width: 1300px) {
    .header {
        padding: 20px;
    }

    .header__logo h1 {
        font-size: var(--fs-xl);
    }
}

@media screen and (max-width: 1200px) {
    .header__cta {
        display: none;
    }
}

@media screen and (max-width: 960px) {

    .header__right {
        gap: 20px;
    }

    .header__right__upper {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    /* ナビ非表示 */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fffffff1;
        padding: 80px 20px;
        transition: .3s;
    }

    .header__nav.active {
        right: 0;
    }

    .header__nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    /* ハンバーガー表示 */
    .header__hamburger {
        display: block;
        z-index: 100;
    }

    /* 電話アイコン位置調整 */
    .header__tel a::before {
        left: -32px;
    }

    /* CTAを通常は非表示のまま */

    .header__tel,
    .header__cta {
        display: none;
    }

    /* メニュー開いた時にナビ内で表示 */
    .header__nav.active .header__cta--mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
        align-items: flex-start;
    }

    .header__cta--mobile .btn {
        color: #fff;
        width: 60%;
        max-width: 300px;
    }

    /* ナビの中にCTAを入れる前提 */
    .header__nav {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 680px) {
    .header__cta--mobile .btn {
        width: 100%;
    }

}

/* =====================
HERO
===================== */
.hero {
    height: 100vh;
    background: url(./img/hero.png) no-repeat center center /cover;
}

.hero__inner {
    padding: 24px 40px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    width: 100%;
}

.hero h1 {
    font-size: 76px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-mincho);
    font-weight: 700;
    color: var(--main);
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.hero h1 span {
    font-weight: 600;
    font-size: var(--fs-2xl);
}

@media screen and (max-width: 960px) {
    .hero {
        height: 80vh;
    }

    .hero__inner {
        padding: 24px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.3;
        padding: 0 24px;
    }

    .hero h1 span {
        font-size: var(--fs-lg);
        display: block;
        margin-top: 16px;
    }
}

@media screen and (max-width: 680px) {
    .hero {
        height: auto;
        min-height: 70vh;
    }

    .hero__inner {
        padding: 150px 16px 56px;
    }

    .hero h1 {
        position: static;
        transform: none;
        font-size: var(--fs-2xl);
        text-align: left;
        line-height: 1.4;
        padding: 0;
    }

    .hero h1 span {
        font-size: var(--fs-md);
        margin-top: 12px;
    }
}

/* =====================
FEATURES
===================== */
.features {
    background: linear-gradient(180deg, #005AB3 0%, #090D3B 100%);
    padding: 80px 0 96px;
}

.features__inner {
    width: 100%;
    max-width: 1568px;
    margin: 0 auto;
    padding: 0 20px;
}

.features__inner h2 {
    font-size: var(--fs-2xl);
    color: #fff;
    text-align: center;
    margin-bottom: 56px;
}

.features__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.features__card {
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 960px) {
    .features {
        padding: 64px 0 80px;
    }

    .features__inner h2 {
        margin-bottom: 40px;
    }

    .features__cards {
        gap: 12px;
    }
}

@media screen and (max-width: 680px) {
    .features {
        padding: 56px 0 64px;
    }

    .features__inner {
        padding: 0 16px;
    }

    .features__inner h2 {
        margin-bottom: 32px;
    }

    .features__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features__card img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* =====================
ABOUT
===================== */
.about {
    padding: 128px 0 120px;
    background: url(./img/about-bg.png) no-repeat bottom right / 50%;
}

.about__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about__inner h2 {
    font-size: var(--fs-3xl);
    margin-bottom: 64px;
}

.about__body {
    max-width: 700px;
    font-size: 28px;
    color: var(--main);
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .about {
        padding: 96px 0 80px;
        background-size: 70%;
    }

    .about__inner h2 {
        margin-bottom: 40px;
    }

    .about__body {
        max-width: 100%;
        font-size: 20px;
    }
}

@media screen and (max-width: 680px) {
    .about {
        padding: 72px 0 64px;
        background-size: cover;
    }

    .about__inner {
        padding: 0 16px;
    }

    .about__inner h2 {
        margin-bottom: 32px;
        line-height: 1.4;
    }

    .about__body {
        font-size: var(--fs-md);
        line-height: 1.7;
    }
}

/* =====================
REASON
===================== */
.reason {
    padding: 126px 0 72px;
    background-color: var(--bg);
    position: relative;
}

.reason::before {
    content: "PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN";
    width: 158px;
    height: 100%;
    font-size: 128px;
    color: rgba(25, 29, 85, 0.08);
    font-family: "Source Serif 4", serif;
    font-weight: 600;
    writing-mode: vertical-rl;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 30px;
    letter-spacing: 0.05em;
}

.reason__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reason__inner h2 {
    font-size: var(--fs-3xl);
    text-align: center;
    margin-bottom: 70px;
}

.reason__body {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.reason__card {
    display: flex;
    gap: 72px;
}

.reason__image {
    position: relative;
    flex: 0 0 508px;
}

.reason__number {
    position: absolute;
    top: -0.5em;
    left: -0.5em;
    font-size: 88px;
    z-index: 10;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: italic;
    line-height: 1.0;
    background: url(./img/num-bg.svg) no-repeat center bottom / contain;
}

.reason__text h3 {
    font-size: var(--fs-xl);
    margin-bottom: 32px;
}

.reason__text p {
    font-size: var(--fs-md);
    font-weight: 500;
}

@media screen and (max-width: 960px) {
    .reason {
        padding: 96px 0 64px;
    }

    .reason::before {
        font-size: 80px;
        left: 8px;
        width: 96px;
    }

    .reason__inner h2 {
        margin-bottom: 48px;
    }

    .reason__card {
        gap: 40px;
    }

    .reason__image {
        flex: 0 0 40%;
    }

    .reason__number {
        font-size: 64px;
        left: 0;
    }
}

@media screen and (max-width: 680px) {
    .reason {
        padding: 80px 0 48px;
    }

    .reason__inner h2 {
        line-height: 1.4;
    }

    .reason::before {
        display: none;
    }

    .reason__body {
        gap: 48px;
    }

    .reason__card {
        flex-direction: column;
        gap: 20px;
    }

    .reason__image {
        width: 100%;
    }

    .reason__image img {
        width: 100%;
        height: auto;
    }

    .reason__number {
        font-size: 56px;
        left: 0;
    }

    .reason__text h3 {
        font-size: var(--fs-lg);
        margin-bottom: 20px;
    }

    .reason__text p {
        font-size: var(--fs-md);
    }
}

/* =====================
POINT
===================== */
.point {
    padding: 220px 0;
    background-color: var(--main);
    position: relative;
}

.point::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 162px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./img/point-deco.svg);
}

.point::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 162px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./img/point-deco.svg);
    transform: rotate(180deg);
}

.point__inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.point__head {
    margin-bottom: 88px;
}

.point__head h2 {
    font-size: var(--fs-3xl);
    margin-bottom: 24px;
    text-align: center;
    color: #fff;
}

.point__head h3 {
    font-size: var(--fs-2xl);
    color: #fff;
    text-align: center;


}

.point__body {
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.point__card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.point__text {
    padding: 40px 0 40px 56px;
}

.point__text h4 {
    font-size: var(--fs-xl);
    margin-bottom: 22px;
    border-bottom: 4px solid var(--sub);
    display: inline-block;
}

.point__text p {
    font-size: var(--fs-md);
    font-weight: 500;
    line-height: 1.85;
    color: #191D55;
    letter-spacing: 0.02em;
}

.point__image {
    flex: 0 0 400px;
}

@media screen and (max-width: 960px) {
    .point {
        padding: 160px 0;
    }

    .point::before,
    .point::after {
        height: 120px;
    }

    .point__head {
        margin-bottom: 56px;
    }

    .point__head h2 {
        font-size: var(--fs-2xl);
        margin-bottom: 16px;
    }

    .point__head h3 {
        font-size: var(--fs-lg);
    }

    .point__body {
        gap: 56px;
    }

    .point__card {
        gap: 24px;
    }

    .point__text {
        padding: 32px 0 32px 32px;
    }

    .point__image {
        flex: 0 0 300px;
    }
}

@media screen and (max-width: 680px) {
    .point {
        padding: 120px 0;
    }

    .point::before,
    .point::after {
        height: 80px;
    }

    .point__head {
        margin-bottom: 40px;
    }

    .point__head h2 {
        margin-bottom: 12px;
    }

    .point__head h3 {
        font-size: var(--fs-md);
    }

    .point__body {
        gap: 40px;
    }

    .point__card {
        flex-direction: column;
    }

    .point__text {
        padding: 24px 20px 0;
    }

    .point__text h4 {
        font-size: var(--fs-lg);
        margin-bottom: 12px;
    }

    .point__text p {
        font-size: var(--fs-md);
        line-height: 1.7;
    }

    .point__image {
        flex: none;
        width: 100%;
    }

    .point__image img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 200px;
        object-fit: cover;
    }
}

/* =====================
LINEUP
===================== */
.lineup {
    padding: 126px 0 72px;
    background-color: var(--bg);
    position: relative;
    z-index: 0;
}

.lineup::before {
    content: "PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN PAINT LINE JAPAN";
    width: 158px;
    height: 100%;
    font-size: 128px;
    color: rgba(25, 29, 85, 0.08);
    font-family: "Source Serif 4", serif;
    font-weight: 600;
    writing-mode: vertical-rl;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 30px;
    letter-spacing: 0.05em;
    z-index: -1;
}

.lineup__inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.lineup__inner h2 {
    font-size: var(--fs-3xl);
    margin-bottom: 70px;
    text-align: center;
}

.lineup__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    flex-wrap: wrap;
}

.lineup__card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.lineup__image {
    width: 100%;
    height: 228px;
    object-fit: cover;
}


.lineup__image img {
    object-fit: cover;
    display: block;
    height: 100%;
    width: 100%;
}

.lineup__text {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lineup__text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    text-wrap-mode: wrap;
    text-wrap-style: pretty;
}

.lineup__tag {
    font-size: var(--fs-xs);
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    gap: 4px 10px;
    flex-wrap: wrap;
}

.lineup__tag span {
    color: #fff;
    background-color: var(--main);
    padding: 4px 8px;
}

.lineup__desc {
    font-size: var(--fs-md);
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 32px;
}

.lineup__more {
    width: 100%;
    text-align: right;
    margin-top: auto;
}

.lineup__more a {
    text-decoration: none;
    color: var(--main);
    font-weight: 600;
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: var(--fs-sm);
    gap: 7px;
}

.lineup__more a::after {
    content: '';
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(./img/more-btn.svg) no-repeat center center /contain;
}

.lineup__more a:hover::after {
    transform: translateX(5px);
    transition: transform 0.3s ease-in-out;
}

@media screen and (max-width: 960px) {
    .lineup {
        padding: 96px 0 64px;
    }

    .lineup::before {
        font-size: 80px;
        left: 10px;
        width: 100px;
    }

    .lineup__inner h2 {
        font-size: var(--fs-2xl);
        margin-bottom: 48px;
    }

    .lineup__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .lineup__image {
        height: 200px;
    }

    .lineup__text {
        padding: 24px;
    }

    .lineup__text h3 {
        font-size: var(--fs-lg);
        margin-bottom: 12px;
    }

    .lineup__desc {
        font-size: var(--fs-md);
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 680px) {
    .lineup {
        padding: 80px 0 56px;
    }

    .lineup::before {
        display: none;
    }

    .lineup__inner {
        padding: 0 16px;
    }

    .lineup__inner h2 {
        margin-bottom: 32px;
        line-height: 1.4;
    }

    .lineup__items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lineup__image {
        height: 180px;
    }

    .lineup__text {
        padding: 20px;
    }

    .lineup__text h3 {
        /* font-size: var(--fs-md); */
    }

    .lineup__tag {
        font-size: 10px;
    }

    .lineup__desc {
        font-size: var(--fs-md);
        margin-bottom: 20px;
    }

    .lineup__more a {
        font-size: var(--fs-xs);
    }

    .lineup__more a::after {
        width: 24px;
        height: 24px;
    }
}

/* =====================
SERVICE
===================== */
.service {
    padding: 120px 0;
}

.service__inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.service__inner h2 {
    font-size: var(--fs-3xl);
    text-align: center;
    margin-bottom: 70px;
}

.service__body {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    flex-wrap: wrap;
}

.service__body img {
    width: 100%;
}

.service__lead {
    font-size: var(--fs-lg);
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.service__link {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px auto 56px;
}

.service__link__item a {
    font-size: var(--fs-md);
    font-weight: 600;
    text-align: center;
    color: var(--main);
    text-decoration: none;
    padding: 24px 140px;
    border: 2px solid var(--main);
    border-radius: 4px;
    display: block;
}

.service__link__item a.dark {
    background-color: var(--main);
    color: #fff;
}

.service__banner {
    width: 100%;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.service__banner img {
    width: 100%;
}

@media screen and (max-width: 960px) {
    .service {
        padding: 96px 0;
    }

    .service__inner h2 {
        margin-bottom: 48px;
    }

    .service__lead {
        font-size: var(--fs-md);
        margin-bottom: 32px;
    }

    .service__body {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .service__link {
        gap: 24px;
        margin: 32px auto 48px;
    }

    .service__link__item a {
        padding: 20px 80px;
    }
}

@media screen and (max-width: 680px) {
    .service {
        padding: 72px 0;
    }

    .service__inner {
        padding: 0 16px;
    }

    .service__inner h2 {
        margin-bottom: 32px;
    }

    .service__lead {
        font-size: var(--fs-md);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .service__body {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service__link {
        flex-direction: column;
        gap: 16px;
        margin: 24px auto 32px;
    }

    .service__link__item {
        width: 100%;
    }

    .service__link__item a {
        width: 100%;
        padding: 16px;
    }

    .service__banner {
        margin-top: 24px;
    }
}

/* =====================
MOVIE
===================== */
.movie {
    background: linear-gradient(180deg, #005AB3 0%, #090D3B 100%);
    padding: 120px 0;
}

.movie__inner {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

.movie__inner img {
    width: 100%;
}

@media screen and (max-width: 960px) {
    .movie {
        padding: 96px 0;
    }

    .movie__inner {
        padding: 0 20px;
    }
}

@media screen and (max-width: 680px) {
    .movie {
        padding: 72px 0;
    }

    .movie__inner {
        padding: 0 16px;
    }

    .movie__inner img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* =====================
CTA
===================== */
.cta {
    padding: 120px 0;
    background: url(./img/cta-bg.jpg) no-repeat center center /cover;
}

.cta__inner {
    width: 100%;
    max-width: 1285px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta__inner h2 {
    font-size: 54px;
    text-align: center;
    margin-bottom: 70px;
    color: #fff;
    width: 100%;
}

.cta__desc {
    font-size: var(--fs-md);
    font-weight: 500;
    text-align: center;
    margin-bottom: 54px;
    color: #fff;
}

.cta__links {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px auto 56px;
}

.cta__link {
    display: flex;
    gap: 47px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__link a {
    font-weight: 600;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 45px 60px 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    display: block;
    background-color: rgba(25, 29, 85, 0.9);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta__link a:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
}

.cta__link a .cta__label {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta__link a .cta__text {
    font-size: 28px;
    position: relative;
    padding-left: 46px;
    font-weight: 600;
}

.cta__link a .cta__tel {
    font-size: var(--fs-2xl);
    font-family: var(--ff-en);

}

.cta__link a .cta__text::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.cta__link a .cta__contact::before {
    width: 34px;
    height: 27px;
    background: url(./img/mail.svg) no-repeat center center /contain;
}

.cta__link a .cta__tel::before {
    width: 40px;
    height: 40px;
    background: url(./img/tel-gr.svg) no-repeat center center /contain;
}

@media screen and (max-width: 960px) {
    .cta {
        padding: 96px 0;
    }

    .cta__inner h2 {
        margin-bottom: 48px;
    }

    .cta__desc {
        margin-bottom: 40px;
    }

    .cta__links {
        gap: 24px;
        margin: 32px auto 48px;
    }

    .cta__link a {
        min-width: 300px;
        padding: 36px 40px 48px;
    }

    .cta__link a .cta__label {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .cta__link a .cta__text {
        font-size: 22px;
        /* padding-left: 36px; */
    }

    .cta__link a .cta__tel {
        font-size: var(--fs-xl);
    }
}

@media screen and (max-width: 680px) {
    .cta {
        padding: 72px 0;
    }

    .cta__inner {
        padding: 0 16px;
    }

    .cta__inner h2 {
        margin-bottom: 32px;
        line-height: 1.4;
    }

    .cta__desc {
        font-size: var(--fs-md);
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .cta__links {
        flex-direction: column;
        gap: 16px;
        margin: 24px auto 32px;
    }

    .cta__link {
        width: 100%;
    }

    .cta__link a {
        width: 100%;
        min-width: auto;
        padding: 28px 20px 32px;
    }

    .cta__link a .cta__label {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* =====================
FOOTER
===================== */
.footer {
    background-color: var(--main);
    color: #fff;
    padding: 96px 0;
}

.footer__inner {
    width: 100%;
    max-width: 1608px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

/* ===== 左 ===== */
.footer__info {
    margin-right: 80px;
}

.footer__logo {
    font-size: var(--fs-xl);
    font-weight: 600;
    margin-bottom: 24px;
}

.footer__address {
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer__tel a {
    font-size: var(--fs-2xl);
    font-family: var(--ff-en);
    font-weight: 600;
    position: relative;
    padding-left: 40px;
    color: #fff;
}

.footer__tel a::before {
    content: "";
    width: 32px;
    height: 32px;
    background: url(./img/tel-w.svg) no-repeat center center / contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== 中央 ===== */
.footer__nav {
    display: flex;
    gap: 40px;
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: 20px;
}

.footer__list a {
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: 600;
}

.footer__list>li>a {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer .sub-menu {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.footer .sub-menu li {
    margin-bottom: 16px;
}

.footer .sub-menu a {
    font-weight: 400;
    position: relative;
    padding-left: 16px;
}

.footer .sub-menu a::before {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.footer__list a:hover {
    opacity: .7;
}

/* ===== 右 ===== */
.footer__cta {
    margin-left: auto;
    margin-top: 50px;
}

.footer__cta__inner {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer__btn {
    display: block;
    padding: 24px 27px;
    border-radius: 4px;
    font-size: var(--fs-sm);
    font-weight: 600;
    text-align: center;
    min-width: 230px;
}

.footer__btn--gray {
    background: #fff;
    color: var(--main);
}

.footer__btn--primary {
    background: var(--sub);
    color: #fff;
}

/* ===== 下部 ===== */
.footer__bottom {
    text-align: right;
    margin-top: 32px;
}

.footer__copyright {
    font-size: var(--fs-xs);
    color: #fff;
}

@media screen and (max-width: 960px) {
    .footer {
        padding: 72px 0;
    }

    .footer__inner {
        gap: 40px;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .footer__info {
        margin-right: 40px;
        width: 100%;
    }

    .footer__nav {
        gap: 24px;
        width: 100%;
    }

    .footer__cta {
        margin-top: 32px;
        width: 100%;
        margin-left: 0;
    }

    .footer__cta__inner {
        justify-content: flex-start;
    }

    .footer__btn {
        min-width: 180px;
        padding: 20px;
    }
}

@media screen and (max-width: 680px) {
    .footer {
        padding: 56px 0;
    }

    .footer__inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer__info {
        margin-right: 0;
    }

    .footer__nav {
        flex-direction: column;
        gap: 24px;
    }

    .footer__list li {
        margin-bottom: 16px;
    }

    .footer .sub-menu {
        margin-top: 12px;
    }

    .footer__cta {
        width: 100%;
        margin-top: 24px;
    }

    .footer__cta__inner {
        flex-direction: column;
    }

    .footer__btn {
        width: 100%;
        padding: 18px;
    }

    .footer__bottom {
        text-align: center;
        margin-top: 24px;
    }
}