/* #region Global Styles */

:root {
    --color-blue: #0648De;
    --color-darkblue: #031B9F;
    --color-darkblue-rgb: 3, 27, 159;
    --color-skyblue: #05DCFF;
    --color-black: #18256F;
    --color-yellow: #F7D748;
    --color-blueblack: #06187C;
    --color-skyblue-dark: #2C6DFF;
    --color-skyblue-dark2: #005DAD;
    --color-lightgray: #D2E0EF;
    --color-green:#063900;
    --color-purple:#330095;
    --color-pink: #98002F;
    --color-orenge: #C11700;
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Poppins', sans-serif;
    --font-num-roboto: 'Roboto', sans-serif;
    --font-num-oswald: 'Oswald', sans-serif;

    /* SP 基準値（PC向けは pc.css 側で上書き） */
    --text-small: 12px;
    --text-medium: clamp(16px, 6vw, 18px);
    --text-big: clamp(18px, 6vw, 28px);

    --shadow-f-b: 20px 20px 30px 0px rgba(162, 168, 191, 0.5), -16px -16px 24px 0px rgba(255, 255, 255, 1);

    --title-color: var(--color-black);
    --section-radius-lg: 40px;
    --section-padding-y-sm: 40px;
    --section-padding-y-lg: 120px;

    --card-radius: 16px;
    --card-bg: #fff;
    --card-shadow: var(--shadow-f-b);

    --pill-radius: 50px;

    --icon-check-size: 1em;
}


/* #region Global Styles（p・幅など共通） */
p {
    font-size: 12px;
    line-height: 1.8;
}

.width-set {
    max-width: 1536px !important;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.width-set-small {
    max-width: 1375px !important;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.text-small {
    font-size: var(--text-small);
}

.text-medium {
    font-size: var(--text-medium);
}

.text-big {
    font-size: var(--text-big);
}

/* #endregion Global Styles */

/* #region deco Styles */
.hightlight {
    display: inline-block;
    background-color: var(--color-darkblue);
    color: white;
    padding: .1em .2em;
    font-weight: 900;
}

.hightlight02 {
    display: inline-block;
    background-color: var(--color-green);
    color: white;
    padding: .1em .2em;
    font-weight: 900;
}

.hightlight03 {
    display: inline-block;
    background-color: var(--color-skyblue-dark2);
    color: white;
    padding: .1em .2em;
    font-weight: 900;
}

.hightlight04 {
    display: inline-block;
    background-color: var(--color-purple);
    color: white;
    padding: .1em .2em;
    font-weight: 900;
}

.hightlight05 {
    display: inline-block;
    background-color: var(--color-pink);
    color: white;
    padding: .1em .2em;
    font-weight: 900;
}

.hightlight06 {
    display: inline-block;
    background-color: var(--color-orenge);
    color: white;
    padding: .1em .2em;
    font-weight: 900;
}

.blue {
    color: var(--color-blue);
}

.yellow {
    color: var(--color-yellow);
}

.skyblue {
    color: var(--color-skyblue);
}

/* #endregion deco Styles */

/* #region block Styles */

.title1 {
    position: relative;
    font-weight: 900;
    line-height: 1.2em;
    color: var(--title-color);
    text-align: center;
    z-index: 5;
    margin-top: 10px;
    margin-bottom: 40px;

    .title1__subhead {
        color: var(--color-blue);
        font-size: var(--text-small);
        font-weight: bold;
        font-family: var(--font-en);
        margin: 0 0 25px;
    }

    .title1__supplement {
        font-size: var(--text-medium);
        display: inline-block;
        border-bottom: 3px solid var(--title-color);
        margin-bottom: .7em;
    }
}

.title1--nega {
    --title-color: white;

    color: var(--title-color);

    .title1__subhead {
        color: var(--color-skyblue);
    }
}

.title2 {
    position: relative;
    z-index: 5;
    text-align: left;
    margin-top: 10px;

    h2 {
        font-weight: 900;
        line-height: 1.2;
        color: var(--color-blueblack);
    }
}

.title2__subhead {
    color: var(--color-blueblack);
    font-size: var(--text-medium);
    font-weight: bold;
    font-family: var(--font-en);
    position: relative;
    padding-left: 1.2em;
    line-height: auto;
}

.title2__subhead::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 1em;
    color: var(--color-skyblue-dark);
}

.btn1 {
    position: relative;
    display: inline-block;
    text-decoration: none;
    max-width: fit-content;
}

.btn1__body {
    background-image: linear-gradient(90deg, #FFF726, #ffb806);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    padding: 1.2em 3.5em 1.2em 1.5em;
    display: flex;
    gap: .7em;
    width: fit-content;
    box-shadow: rgba(2, 39, 195, 0.2) 0px 8px 20px 0px;
    color: var(--color-blueblack);
    border: 1px solid rgba(24 37 111 / 0.3);
    background-size: 160% 100%;
    background-position: left center;
    transition:
        background-position 1s ease,
        box-shadow .2s ease,
        color .25s ease;
}

.btn1:hover {
    transform: translateY(-3px);
}

.btn1:hover .btn1__body {
    background-position: right center;
    box-shadow: rgba(2, 39, 195, 0.7) 0px 8px 15px;
}

.btn1__body span::after {
    content: "";
    display: inline-block;
    width: .8em;
    height: 1em;
    background-image: url(../img/icon/arrow2.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
    transform: translateX(2em);
}

.btn1:hover .btn1__body span::after {
    animation: arrow-wiggle .8s linear infinite;
}

/* 揺れ幅 */
@keyframes arrow-wiggle {
    0% {
        transform: translateX(2em);
    }

    50% {
        transform: translateX(2.4em);
    }

    100% {
        transform: translateX(2em);
    }
}

.btn1__subtitle {
    display: block;
    position: absolute;
    font-size: var(--text-small);
    background-color: white;
    border: 1px solid var(--color-blue);
    border-radius: 50px;
    padding: .3em 2em;
    max-width: fit-content;
    top: -1em;
    left: 50%;
    transform: translate(-50%, 0);
    white-space: nowrap;
    font-weight: bold;
    color:var(--color-blue);
}



.btn1__body-icon {
    width: 25px;
    height: 25px;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.btn1--blue {
    .btn1__body {
        background-image: linear-gradient(90deg, #0B98FF, #0038b1);
        color: white;
    }

    .btn1__subtitle {
        color: var(--color-blueblack);
    }
}

.btn1--blue .btn1__body span::after {
    background-image: url(../img/icon/arrow1.png);
}

.btn1--blue .btn1__body span::after {
    background-image: url(../img/icon/arrow1.png);
}


/* #endregion block Styles */

/* #region section helper */

.section--bg-line {
    isolation: isolate;
    background-image: url(../img/bg/bg-line.png);
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% auto;
    overflow: hidden;
}

.section--bg-blue {
    position: relative;
    isolation: isolate;
    background-image: url(../img/bg/bg-blue-grd.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    border-radius: var(--section-radius-lg);
}

.section--bg-yellow {
    position: relative;
    isolation: isolate;
    background-image: url(../img/bg/bg-yellow.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    border-radius: var(--section-radius-lg);
}

/* 汎用セクション余白（必要なら） */
.section--py-sm {
    padding-top: var(--section-padding-y-sm);
    padding-bottom: var(--section-padding-y-sm);
}

.section--py-lg {
    padding-top: var(--section-padding-y-lg);
    padding-bottom: var(--section-padding-y-lg);
}

/* #endregion section helper */

/* #region card helper */

.card {
    background-color: var(--card-bg);
    border-radius: var(--card-radius);
}

.card--shadow {
    box-shadow: var(--card-shadow);
}

.card--border-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* #endregion card helper */

/* #region list helper */

.list--check {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list--check li {
    position: relative;
    margin-left: 1.5em;
    margin-bottom: .8em;
}

.list--check li::before {
    content: url(../img/icon/icon-check.png);
    position: absolute;
    left: 0;
    top: 0.2em;
    width: var(--icon-check-size);
    transform: translateX(-1.5em);
}

.list--check-blue li::before {
    content: url(../img/icon/icon-check-blue.png);
}

/* #endregion list helper */


/* #region UI style */

header {
    background-color: transparent;
    z-index: 9999;
}

/* 
footer {
    z-index: 3;
    isolation: isolate;
    margin-top: -2px;
    background-color: var(--color-blueblack);
    padding: 80px 0 20px;
    color: white;
}

.footer__inner {
    display: grid;
    grid-template-columns: 42fr 58fr;
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas:
        "services services"
        "info guide"
        "info guide";
    gap: 40px;
}

.footer__services {
    grid-area: services;
}

.footer__info {
    grid-area: info;
}

.footer__guide {
    grid-area: guide;
}

.footer__service-item-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    gap: 20px;
}

.footer__service-item {
    flex: 1;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    background-image: url(../img/bg/bg-blue-grd.png);
    background-size: 540px 1010px;
    background-repeat: no-repeat;
    background-position: center center;
    white-space: nowrap;
    font-weight: 900;
    padding: 1em 2em;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer__service-item:nth-of-type(2) {
    background-position: 40% 60%;
}

.footer__service-item:nth-of-type(3) {
    background-position: 60% 40%;
}

.footer__service-item:nth-of-type(4) {
    background-position: 80% 30%;
}

.footer__service-item:nth-of-type(5) {
    background-position: 20% 80%;
}

.footer__service-item:nth-of-type(6) {
    background-position: 30% 30%;
}

.footer__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "company phone"
        "address address";
}

.footer__info-company {
    grid-area: company;

    span {
        font-size: 10px;
        font-weight: bold;
        line-height: 1.2;
    }

    h2 {
        font-size: 60px;
        font-weight: 900;
        font-family: var(--font-en);
        line-height: 1;
    }
}

.footer__info-phone {
    grid-area: phone;
    font-weight: bold;
    font-size: 32px;
    font-family: var(--font-en);
}

.footer__info-address {
    grid-area: address;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6;
    margin-top: 10px;

    p {
        margin-bottom: .7em;
    }
}

.footer__address-item {
    display: grid;
    grid-template-columns: 90px auto;
}

.footer__info-contact {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.footer__info-contact > * {
    flex: 1;
    width: 100%;
}

.footer__copyright {
    grid-area: copyright;
    text-align: center;
    color: white;
    font-size: var(--text-small);
    opacity: 0.6;
    margin-top: 40px;
} */

/* #endregion UI style */