@charset "utf-8";

/* !root
---------------------------------------------------------- */
:root {
    /* color */
    --main: #002E7F;
    --sub: #003A8F;
    --bk1: #0397E0;
    --bk2: #E5F5FC;
    --cta: #FFE10F;
    --black: #394C69;
    --white: #ffffff;
    --gray: #F0F2F5;
    --gray-transparent: rgba(0, 0, 0, .1);

    /* 共通 */
    --border-bottom-btn: 3px solid transparent;
    --border-bottom: 5px solid transparent;

    /* font-size */
    --xs: 0.75rem; /* 12px */
    --s: 0.875rem; /* 14px */
    --m: 1.125rem; /* 18px */
    --l: 1.25rem; /* 20px */
    --xl: 1.5rem; /* 24px */
    --xl2: 1.75rem; /* 28px */
    --xl2: 1.875rem; /* 30px */
    --xl3: 2rem; /* 32px */
}

/* !reset
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
    display: block;
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
    margin: 0;
    padding: 0;
}
input,
textarea {
    margin: 0;
    font-size: 100%;
}
label {
    cursor: pointer;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 100%;
}
fieldset,
img {
    border: 0;
}
img {
    vertical-align: top;
    max-width: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: normal;
}
ol,
ul {
    list-style: none;
}
caption,
th {
    text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}
q:after,
q:before {
    content: "";
}
a,
input,
select,
textarea,
button {
    outline: none;
}
abbr,
acronym {
    border: 0;
}
*,
*:before,
*::after {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}

/* !Inline Align ------------------------------------------------------------ */
/*common*/
a {
    transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op img {
    transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op:hover img {
    opacity: 0.7;
    -webkit-opacity: 0.7;
    -moz-opacity: 0.7;
}


html {
    overflow-y: scroll;
    font-size: 100%;
}
/* html:has(body.is-scroll)::-webkit-scrollbar {
    display: none;
} */

body {
    color: var(--black);
    background: var(--white);
    font-size: 1rem;
    font-family: "Noto Sans", sans-serif;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
}

/* html:has(body.is-scroll),
body.is-scroll {
    overflow: hidden;
    overscroll-behavior: none;
} */

section {
    background-color: var(--white);
    padding: 120px 0;
}
@media screen and (max-width: 767px) {
    section {
        padding: 60px 0;
        scroll-margin-top: 40px;
    }
}

.pc {
    display: block;
}

.sp {
    display: none;
}


/* !Layout
---------------------------------------------------------- */
.l-header {
    font-weight: 800;
    display: flex;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: var(--white);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .16);
    /* transform: translateY(-80px); */
    transition: .5s ease;
}
.l-header.is-active {
    transform: translateY(0);
}

.l-header__logo {
    width: 305px;
    padding: 15px 20px;
    margin: 0 auto 0 0;
    cursor: pointer;
}
.l-header__logo svg {
    width: 100%;
    height: 100%;
}
.l-header__logo span {
    font-size: 0.625rem;
    font-weight: 700;
    text-align: center;
    color: var(--main);
}

.l-header__column.is-sp {
    display: none;
}

.l-header__column {
    display: flex;
}

.l-header__nav {
    align-self: center;
    margin: 0 28px 0 0;
}

.l-header__list {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin: 0 0 0 auto;
}
.l-header__list a {
    font-size: var(--xs);
    color: var(--main);
}

.l-header__mypage {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 10px 10px 14px;
    background-color: var(--bk2);
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: var(--xs);
    font-weight: 800;
    color: var(--main);
}
.l-header__mypage svg {
    width: 23px;
    height: 24px;
    margin: auto 0 5px;
}

.l-header__cta {
    display: block;
    width: 190px;
    height: 80px;
    padding: 0 20px;
    background-color: var(--cta);
}
.l-header__cta p {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--m);
    color: var(--main);
}
.l-header__cta svg {
    margin: 0 0 0 10px;
}

.l-header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    padding: 20px 10px 12px;
    flex: 0 0 80px;
    aspect-ratio: 1 / 1;
    border: none;
    background-color: var(--white);
    position: relative;
    cursor: pointer;
}
.l-header__hamburger span:not(:last-child) {
    display: block;
    width: 23px;
    height: 3px;
    background-color: var(--main);
    position: relative;
    transition: ease .4s;
}
.l-header__hamburger span:nth-child(1) {
    margin: 3px 0 0 0;
    top: 0;
}
.l-header__hamburger span:nth-child(2) {
    margin: 5px 0;
}
.l-header__hamburger span:nth-child(3) {
    top: 0;
}
.l-header__hamburger span:last-child {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    font-size: var(--xs);
    font-weight: 800;
    color: var(--main);
}
.l-header__hamburger.is-open span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
    top: -11px;
    transform: rotate(-45deg);
}

@media screen and (max-width: 929px) {
    .l-header__logo {
        width: 215px;
        height: 65px;
        padding: 15px;
        position: relative;
    }
    .l-header__logo span {
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        display: block;
    }

    .l-header__column.is-pc {
        display: none;
    }
    .l-header__column.is-sp {
        display: flex;
    }
}

.l-drawer {
    display: none;
    width: 100%;
    height: 100vh;
    padding: 120px 16px 40px;
    margin: 0;
    background-color: var(--white);
    position: fixed;
    top: 0;
    z-index: 2;
}

.l-drawer__nav {
    margin: 0 0 40px 0;
}

.l-drawer__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin: 0 0 20px 0;
}
.l-drawer__item {
    padding: 20px 8px;
    border-top: 1px dashed var(--main);
}
.l-drawer__item:nth-last-child(-n + 2),
.l-drawer__item:last-child {
    border-bottom: 1px dashed var(--main);
}
.l-drawer__item a {
    font-size: var(--s);
    font-weight: 700;
    line-height: 1;
    color: var(--main);
}
.l-drawer__item span {
    font-size: var(--xs);
    color: var(--bk1);
    display: block;
    line-height: 1;
}
@media screen and (max-width: 924px) {
    .l-drawer {
        display: block;
        transition: ease .4s;
        transform: translateX(100%);
    }
    .l-drawer.is-open {
        transform: translateX(0);
        overscroll-behavior: none;
    }

    .l-drawer__cta {
        display: block;
        width: 100%;
        max-width: 220px;
        height: auto;
        padding: 20px;
        background-color: var(--cta);
        border: 2px solid var(--white);
        border-radius: 2px;
        margin: 0 auto;
        box-shadow: 0px 5px 0px 0px var(--gray-transparent);
    }
    .l-drawer__cta p {
        display: flex;
        gap: 0 10px;
        justify-content: center;
        align-items: center;
        font-size: var(--m);
        font-weight: 800;
        color: var(--main);
    }
}

.l-main {
    margin-top: 80px;
}

.l-footer {
    background-color: var(--black);
    border-bottom: 12px solid var(--main);
}
.l-footer a {
    color: var(--white);
    font-weight: 700;
}
.l-footer__inner {
    width: 848px;
    max-width: calc(100% - 40px);
    padding: 62px 20px 38px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.l-footer__official {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
}
.l-footer__official.sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .l-footer__official.sp {
        display: flex;
    }
    .l-footer__official.pc {
        display: none;
    }
}
.l-footer__official svg {
    width: 24px;
    height: 24px;
    margin: 0 0 0 49px;
}
.l-footer__contact {
    display: flex;
    gap: 0 20px;
    margin: 40px 0 58px 0;
}
.l-footer__nav {
    display: flex;
    gap: 0 40px;
    font-size: var(--s);
    margin: 0 0 18px 0;
}
.l-footer__copyright {
    color: var(--white);
    font-weight: 700;
    font-size: var(--s);
}
@media screen and (max-width: 767px) {
    .l-footer__inner {
        padding: 60px 0 27px;
    }

    .l-footer__contact {
        margin: 20px 0 47px 0;
    }

    .l-footer__official svg {
        margin: 0 0 0 5px;
    }

    .l-footer__nav {
        flex-direction: column;
        gap: 7px;
    }
    .l-footer__nav li {
        text-align: center;
    }

    .l-footer__copyright {
        font-size: 0.625rem;
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* !Component
---------------------------------------------------------- */
.c-bk {
    width: 100%;
    height: 100%;
}
.c-bk::before {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    background: url(/baymobile/asset/img/img-bk.jpg) no-repeat center center / cover;
}

.c-inner {
    width: 1020px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    border-radius: 40px;
}

.c-title {
    text-align: center;
    color: var(--black);
    font-size: 2.625rem;
    line-height: 1.4;
    font-weight: 700;
}
.c-inner > .c-title {
    margin: 0 0 34px 0;
}
.c-title__alphabet {
    display: block;
    color: var(--bk1);
    font-size: var(--xl);
}
@media screen and (max-width: 767px) {
    .c-title {
        font-size: var(--xl3);
    }

    .c-inner > .c-title {
        margin: 0 0 20px 0;
    }
    
    .c-title__alphabet {
        font-size: 1rem;
    }
}

.c-label {
    font-size: var(--l);
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black);
    margin: 0 0 16px 0;
}
@media screen and (max-width: 767px) {
    .c-label {
        font-size: 1rem;
    }
}

.c-lead {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--main);
    margin: 0 0 8px 0;
}
@media screen and (max-width: 767px) {
    .c-lead {
        font-size: var(--m);
    }
}

.c-text {
    font-size: var(--m);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 18px 0;
}
@media screen and (max-width: 767px) {
    .c-text {
        font-size: var(--s);
    }
}

.c-spot {
    background-color: var(--bk2);
    color: var(--main);
    padding: 13px 32px 12px;
    border-bottom: var(--border-bottom);
    border-color: var(--bk1);
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .c-spot {
        font-size: var(--xl2);
    }
}
.c-step {
    display: flex;
    gap: 0 30px;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    border-top: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    color: var(--main);
    line-height: 1.213;
}
.c-step__number {
    padding: 10px 20px;
    border-right: 1px solid var(--main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2.375rem;
    font-weight: 800;
    line-height: 1;
}
.c-step__number span {
    font-size: 1rem;
}
.c-step__lead {
    font-size: var(--xl2);
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .c-step {
        gap: 0 10px;
    }
    .c-step__number {
        padding: 10px 8px;
    }
    .c-step__lead {
        font-size: var(--xl);
    }
}

.c-table {
    width: 100%;
    background-color: var(--white);
    border: 2px solid var(--main);
    text-align: center;
    font-weight: 700;
    color: var(--main);
}
.c-table th,
.c-table td {
    border: 1px solid var(--main);
}
.c-table th {
    text-align: center;
    padding: 20px 10px;
    font-weight: 700;
    font-size: var(--l);
}
.c-table tr td:first-child {
    background-color: #eef1f3;
}
.c-table tr td:nth-child(2) {
    background-color: var(--white);
}
.c-table td {
    width: 50%;
    padding: 20px 10px;
    font-size: var(--l);
    line-height: 1.2;
}
.c-table td span {
    font-size: var(--xl2);
}
@media screen and (max-width: 767px) {
    .c-table th,
    .c-table td {
        font-size: var(--xs);
        line-height: 1;
        padding: 10px 5px;
    }
    .c-table td span {
        font-size: 1rem;
    }
}

.c-flex {
    max-width: 848px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0 19px;
}
.c-flex__item {
    background-color: var(--white);
    padding: 10px 10px 15px 10px;
    margin: 0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.125rem;
    text-align: center;
}
.c-flex__item figcaption {
    padding-top: 10px;
    margin-top: auto;
    font-weight: 700;
    color: var(--main);
}
@media screen and (max-width: 767px) {
    .c-flex {
        display: flex;
        flex-direction: row;
        gap: 0 10px;
        max-width: calc(100% - 24px);
    }

    .c-flex__item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 5px;
    }
    .c-flex__item img {
        width: 100px;
        height: auto;
    }
    .c-flex__item figcaption {
        width: 100%;
        margin: 0;
        padding: 0;
        font-size: var(--xs);
        text-align: center;
        line-height: 1;
    }
}

.c-aspect {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}
.c-aspect img {
    width: 100%;
    height: auto;
}
.c-aspect p {
    font-size: 2.5625rem;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    text-align: center;
    color: var(--bk1);
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .c-aspect p {
        font-size: 1.1875rem;
    }
}

.c-button {
    max-width: 360px;
    width: 100%;
}
.c-button a {
    width: 100%;
    padding: 30px 36px 23px;
    background-color: #073c7e;
    border: 2px solid var(--white);
    border-radius: 4px;
    box-shadow: 0px 5px 0px 0px var(--gray-transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: var(--l);
    line-height: 1.35;
    transition: .3s all ease-out;
}
.c-button a:hover {
    transform: translateY(3px);
    box-shadow: none;
}
@media screen and (max-width: 767px) {
    .c-button a {
        padding: 20px;
        font-size: var(--s);
        letter-spacing: -0.05em;
    }
}

.c-cta {
    max-width: 530px;
    width: 100%;
    margin: -20px auto 0;
    position: relative;
    transition: .5s all;
    padding-top: 110px;
}
.c-cta a {
    width: 100%;
    padding: 8px clamp(10px, 2.36vw, 20px);
    border-radius: 20px;
    background-color: var(--cta);
    border: 3px solid #000000;
    color: #000000;
    box-shadow: 0px 5px 0px 0px #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    transition: .3s all ease-out;
}
.c-cta a:hover {
    box-shadow: none;
    transform: translateY(5px);
}
.c-cta a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(
        0deg, rgba(255, 225, 15, 1),
        rgba(255, 225, 15, 0)
    );
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: multiply;
}
.c-cta p {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    gap: 0 20px;
    justify-content: space-between;
    align-items: center;
}
.c-cta .c-icon__square {
    z-index: 1;
}
.c-cta img {
    position: absolute;
    bottom: 0;
    right: 5px;
    height: 180px;
    width: auto;
}
@media screen and (max-width: 767px) {
    .c-cta {
        max-width: 325px;
        width: calc(100% - 20px);
        padding-top: 170px;
        margin-top: 0;
    }
    .c-cta a {
        align-items: center;
        padding: 11px 20px;
    }

    .c-cta p {
        width: 100%;
        font-size: 1.375rem;
        gap: 0 10px;
        justify-content: center;
    }
    .c-cta img {
        bottom: calc(100% + 3px);
        left: 50%;
        transform: translateX(-50%);
        max-height: 170px;
        max-width: none;
    }
}

.c-icon__square {
    width: 20px;
    height: 20px;
    color: var(--white);
}
.c-icon__square.icon-bk--black {
    --arrow-color: #000000;
}
.c-icon__square.icon-white--black {
    --arrow-color: #000000;
    --outline-color: #000000;
}
.c-icon__square.icon-bk--blue {
    --arrow-color: var(--main);
}
.c-icon__square.icon-bk--white {
    color: var(--main);
    --arrow-color: var(--white);
}

.c-line {
    height: 1px;
    margin: 32px 0;
    background-image: repeating-linear-gradient(
        90deg, 
        var(--black), 
        var(--black) 4px, 
        transparent 4px, 
        transparent 8px
    );
}
@media screen and (max-width: 767px) {
    .c-line {
        margin: 20px 0;
    }
}

.c-link {
    text-decoration: underline;
    color: inherit;
}

.c-accordion {
    border-radius: 4px;
    border: 1px solid var(--black);
    background-color: var(--white);
}
.c-accordion__title {
    list-style: none;
    padding: 36px 24px 35px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.c-accordion__title-icon {
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--main);
}
.c-accordion__title-icon::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--main);
    transform: rotate(90deg);
    transition: .3s all;
}
.c-accordion[open] .c-accordion__title-icon::before {
    transform: rotate(180deg);
    transform-origin: center;
}
.c-accordion__content {
    padding: 0 24px;
    margin: 5px 0 24px 0;
}
.c-accordion__content .c-lead {
    padding: 0 0 5px 0;
    border-bottom: 1px solid var(--black);
    margin: 0 0 22px 0;
    color: var(--black);
}
.c-accordion__content .c-text:has(+ .c-text) {
    margin: 0 0 32px 0;
}
.c-accordion__content p {
    display: flex;
    gap: 0 20px;
}
.c-accordion__content .c-text p:has(~ p) {
    margin: 0 0 12px 0;
}
.c-accordion__content p span {
    width: 50%;
}
@media screen and (max-width: 767px) {
    .c-accordion__title {
        padding: 15px 10px;
    }
    .c-accordion__title-icon, 
    .c-accordion__title-icon::before {
        width: 10px;
    }

    .c-accordion__content {
        padding: 0 10px;
        margin: 5px 0 15px 0;
    }

    .c-accordion__content p span {
        font-size: var(--s);
    }

    .c-accordion__content .c-text:has(~ .c-text) {
        margin: 0 0 15px 0;
    }
}

.c-notes,
.c-list {
    font-size: 0.875rem;
    font-weight: 700;
}
.c-notes li,
.c-list li {
    padding: 0 0 0 15px;
}
.c-notes li:not(:last-child),
.c-list li:not(:last-child) {
    margin: 0 0 3px 0;
}
.c-notes li::before {
    content: '※';
    margin: 0 0 0 -15px;
}

.c-list li::before {
    content: '・';
    margin: 0 0 0 -15px;
}

@media screen and (max-width: 767px) {
    .c-notes,
    .c-list {
        font-size: var(--xs);
    }
}

.c-tab__list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.c-tab__button {
    width: 50%;
    padding: 17px 20px 15px;
    border: 1px solid var(--main);
    outline: 1px solid var(--main);
    outline-offset: -1px;
    box-shadow: 0px 5px 0px 0px var(--gray-transparent);
    background-color: var(--white);
    text-align: center;
    color: var(--main);
    font-size: var(--l);
    font-weight: 700;
    cursor: pointer;
    transition: 0.1s all ease-out;
}
.c-tab__button:hover {
    outline: 3px solid var(--main);
    outline-offset: -3px;
}
.c-tab__button.is-active {
    background-color: var(--main);
    color: var(--white);
    font-weight: bold;
}
.c-tab__panel {
    width: 960px;
    max-width: calc(100% - 60px);
    margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
    .c-tab__button {
        font-size: 1rem;
        padding: 22px 9px;
        font-feature-settings: "palt";
    }

    .c-tab__panel {
        max-width: calc(100% - 20px);
        margin-top: 30px;
    }
}

.c-tab__content {
    display: none;
    animation: fadeIn .4s ease-in-out;
    margin: 0 0 48px 0;
}
.c-tab__content.is-active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media screen and (max-width: 767px) {
    .c-tab__content {
        margin: 0 0 24px 0;
    }
}


/* !Project
---------------------------------------------------------- */
.p-kv {
    padding: 30px 0 60px 0;
    position: relative;
}
.p-kv.kv-before {
    background-image: linear-gradient(
        90deg,
        #eefcff 16.9%,
        #ffffff 50%,
        #d9e9ff 83%
    );
}
.p-kv.kv-after {
    background-image: linear-gradient(
        90deg,
        var(--bk1) 16.9%,
        var(--sub) 83%
    );
}
.p-kv::before {
    content: '';
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0);
}
.kv-before::before {
    background-image: linear-gradient(
        180deg,
        transparent,
        #ffffff
    );
}
.kv-after::before {
    background-image: linear-gradient(
        transparent,
        #394c69
    );
}
@media screen and (max-width: 767px) {
    .p-kv {
        padding: 15px 0 60px 0;
    }
    .kv-before {
        padding: 0 0 60px 0;
        margin: -20px 0 0 0;
    }
    .kv-before .p-kv__button {
        bottom: 40px;
    }
}

.p-kv__inner {
    width: 1280px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
}
.p-kv__main {
    position: relative;
}
.p-kv__main img {
    width: 100%;
    height: auto;
}
.p-kv__catch {
    max-width: 594px;
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.p-kv__copy {
    max-width: 497px;
    width: calc(100% - 52px);
    height: auto;
}
.p-kv__button {
    max-width: 390px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}
.p-kv__button a {
    width: 100%;
    padding: 11px 54px 10px;
    border-radius: 50px;
    border: 2px solid var(--white);
    box-shadow: 0px 0px 20px 0px var(--white);
    background-color: var(--cta);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000000;
}
.p-kv__button span {
    font-size: 1rem;
    background-color: var(--white);
    padding: 5px 16px;
    border-radius: 14px;
}
.p-kv__button p {
    width: 100%;
    font-size: 1.4375rem;
    display: flex;
    gap: 0 20px;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .p-kv__inner {
        max-width: calc(100% - 30px);
    }

    /* .p-kv__button {
        top: calc(100% - 6px);
    } */
    .p-kv__button a {
        padding: 11px 33px;
        position: relative;
    }
    .p-kv__button a::after {
        content: '';
        display: block;
        height: 2rem;
        position: absolute;
    }

    .p-kv__button p {
        gap: 0 10px;
        justify-content: center;
    }
}

.p-campaign {
    padding: 54px 0 120px 0;
}
.p-campaign .c-spot {
    margin: 0 0 48px 0;
    background-color: var(--main);
    color: var(--white);
}
@media screen and (max-width: 767px) {
    .p-campaign {
        padding: 25px 0 60px 0;
    }

    .p-campaign .c-spot {
        margin: 0 0 24px 0;
    }
}

.p-special {
    background-color: rgba(0, 58, 143, 0.85);
}
.p-special .c-inner,
.p-option .c-inner {
    background-color: var(--white);
    padding: 80px 30px;
}
@media screen and (max-width: 767px) {
    .p-special .c-inner,
    .p-option .c-inner {
        padding: 40px 10px;
    }
}

.p-special__item {
    display: grid;
    gap: 32px 48px;
}
.p-special__item:has(.p-special__image) {
    grid-template-columns: clamp(200px, 25vw, 300px) 1fr;
}
.p-special__item:not(:has(.p-special__image)) {
    grid-template-columns: minmax(0, 1fr);
}
.p-special__item .c-flex,
.p-special__item .c-notes {
    grid-column: 1 / -1;
}
.p-special__item > .c-notes {
    margin: -8px 0 0 0;
}
.p-special__item > .c-notes li {
    padding: 0;
}
@media screen and (max-width: 767px) {
    .p-special__item .c-flex {
        max-width: 100%;
    }
    .p-special__item:has(.p-special__image) {
        grid-template-columns: 100px 1fr;
        gap: 20px 10px;
    }
    .p-special__item > .c-notes {
        margin: -8px 0 0 0;
    }
}

.p-special__content {
    background-color: var(--bk2);
    padding: 48px 56px;
    border-bottom: var(--border-bottom);
    border-color: var(--gray-transparent);
    border-radius: 4px 4px 0 0;
}
.p-special__content:has(~ .p-special__content) {
    margin: 0 0 32px 0;
}
.p-special__content .c-step {
    margin: 0 0 32px 0;
}

.p-special__image {
    aspect-ratio: 1 / 1;
    padding: 35px 42px 35px 26px;
    border-radius: 4px;
    background-color: var(--white);
}
/* .p-special__detail {
    place-items: center;
} */
.p-special__detail h3 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4;
}
.p-special__notes {
    grid-column: 1 / -1;
}
.p-special__star {
    width: 100%;
    border: 1px solid var(--black);
    margin: 0 0 24px 0;
}
.p-special__star th,
.p-special__star td {
    font-weight: 700;
    font-size: var(--l);
    text-align: center;
    border: 1px solid var(--black);
    padding: 20px;
}
.p-special__star td {
    background: var(--white);
}
.p-special__detail-text {
    font-size: 1rem;
    font-weight: 700;
}
.p-special__detail-text + .c-list {
    margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
    .p-special__content .c-step {
        margin: 0 0 20px 0;
    }

    .p-special__item {
        display: grid;
        flex-direction: column;
        gap: 20px 0;
    }
    
    .p-special__content {
        padding: 24px 16px;
        margin: 0 0 16px 0;
    }
    .p-special__content:has(~ .p-special__content) {
        margin: 0 0 20px 0;
    }
    
    .p-special__image {
        width: 100%;
        padding: 5px;
        margin: auto;
    }

    .p-special__detail h3 {
        font-size: var(--m);
    }

    .p-special__star th,
    .p-special__star td {
        padding: 10px 5px;
        font-size: var(--xs);
    }

    .p-special__detail-text {
        font-size: var(--s);
    }

    .p-special__detail-text + .c-list {
        margin: 0 0 10px 0;
    }
}
@media screen and (min-width: 768px) {
    .p-special__detail {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .p-special .c-cta img {
        height: 160px;
        right: -15px;
    }
}

.p-plan__item {
    margin: 0 0 80px 0;
}

.p-plan__item > :not(.c-spot),
.p-plan .c-accordion {
    width: 848px;
    max-width: calc(100% - 112px);
    margin: 0 auto;
}
.p-plan__item .c-spot {
    margin: 0 0 48px 0;
}
.p-plan__item > .c-lead {
    margin: 0 auto 40px;
}
.p-plan__item .c-table {
    margin: 0 auto 40px;
}
.p-plan__item .c-table td:first-child { width: 23.585%; }
.p-plan__item .c-table td:nth-child(2) { width: 47.170%; }
.p-plan__item .c-table td:last-child { width: 29.245%; }
@media screen and (max-width: 767px) {
    .p-plan .c-accordion {
        margin: -20px auto 0;
    }

    .p-plan__item {
        margin: 0 0 40px 0;
    }

    .p-plan__item > :not(.c-spot),
    .p-plan .c-accordion {
        width: 100%;
        max-width: calc(100% - 20px);
    }
    .p-plan__item .c-table {
        margin: 0 auto 20px;
    }
    .p-plan__item .c-spot {
        margin: 0 0 20px 0;
    }

    .p-plan__item .c-flex {
        width: 100%;
        max-width: calc(100% - 20px);
    }
    .p-plan__item .c-flex__item {
        text-align: left;
        gap: 0;
        padding: 5px;
    }

    .p-plan__item > .c-lead {
        font-size: 1rem;
        margin: 0 auto 20px;
    }
}

.p-option {
    background-color: rgba(240, 247, 250, 0.9);
}
.p-option .c-inner:has(~ .c-inner) {
    margin: 0 auto 80px;
}
.p-option__item {
    padding: 48px 56px;
    margin: 0 0 40px 0;
    background-color: var(--bk2);
    border-bottom: var(--border-bottom);
    border-color: var(--gray-transparent);
}
.p-option__item:not(:last-of-type) {
    margin: 0 0 40px 0;
}
.p-option__item .c-table,
.p-option__item .c-notes:not(:last-child) {
    margin: 0 0 24px 0;
}
.p-option__item .c-aspect {
    margin: 0 0 32px 0;
}
.p-option__button {
    display: flex;
    gap: 0 24px;
    justify-content: center;
    margin: 24px 0 0 0;
}
.p-option__detail .c-accordion:not(:last-child) {
    margin: 0 0 24px 0;
}
.c-inner .p-option__item:last-child {
    margin: 0;
}
@media screen and (max-width: 767px) {
    .p-option__item {
        padding: 24px 16px;
    }
    .p-option__item:not(:last-of-type) {
        margin: 0 0 24px 0;
    }

    .p-option .c-inner:has(~ .c-inner) {
        margin: 0 auto 40px;
    }

    .p-option__button {
        flex-direction: column;
        gap: 10px 0;
        align-items: center;
    }
}

.p-flow__item {
    background-color: var(--gray);
    padding: 48px 56px;
    border-radius:  4px 4px 0 0;
    border-bottom: var(--border-bottom);
    border-color: var(--main);
}
.p-flow__item:not(:last-child) {
    margin: 0 0 48px 0;
}

.p-flow__item .c-step {
    margin: 0 0 32px 0;
}
.p-flow__item .c-accordion:not(:last-child) {
    margin: 0 0 24px 0;
}

@media screen and (max-width: 767px) {
    .p-flow__item .c-step {
        margin: 0 0 20px 0;
    }

    .p-flow__item {
        padding: 24px 16px;
    }
    .p-flow__item:not(:last-child) {
        margin: 0 0 24px 0;
    }
    .p-flow__item .c-accordion:not(:last-child) {
        margin: 0 0 10px 0;
    }
}


/* !Utility
---------------------------------------------------------- */
.u-center {
    text-align: center;
}

.u-border {
    border: 2px solid var(--gray);
}

.u-bk-color {
    background-color: var(--gray);
}

.u-inner-btn {
    width: 1020px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .u-inner-btn {
        margin: 20px auto 0;
    }
}

.u-flex {
    gap: clamp(11px, 3vw, 67px);
}
@media screen and (max-width: 767px) {
    .u-flex {
        flex-direction: row;
        max-width: 100%;
    }
}

.u-width {
    width: 100%;
}

.u-pd {
    padding: 0;
}

.u-mg {
    margin: 0 ;
}

.u-mg-32 {
    margin: 0 0 32px 0;
}

@media screen and (max-width: 767px) {
    .u-hide {
        display: none;
    }

    .u-mg-32 {
    margin: 0 0 15px 0;
}
}
