@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 56px);
    margin: 0 auto;
    z-index: 9;
    height: calc(var(--fixed-header-height) * 1px);
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 10px;
}
@media screen and (max-width: 1110px) {
    .l-header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }
}

/*  l-header-container
--------------------------------------------- */
.l-header-container {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    padding-inline: 16px 28px;
}
@media screen and (max-width: 1110px) {
    .l-header-container {
        padding-inline: 16px 8px;
    }
}

/*  l-header-logo
--------------------------------------------- */
.l-header-logo {
    width: 400px;
    margin-right: auto;
}
.l-header-logo__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-logo__link {
        transition: opacity 0.3s;
    }
    .l-header-logo__link:hover {
        opacity: 0.6;
    }
}
.l-header-logo__link img {
    width: 100%;
    height: auto;
}

/*  l-header-menu
--------------------------------------------- */
@media screen and (min-width: 1111px) {
    .l-header-menu {
        display: block !important;
    }
}
@media screen and (max-width: 1110px) {
    .l-header-menu {
        position: fixed;
        top: calc(var(--fixed-header-height) * 1px);
        left: 0;
        width: 100%;
        height: calc(100% - var(--fixed-header-height) * 1px);
        overflow-y: auto;
        display: none;
        background-color: rgba(17, 52, 88, 0.9);
    }
}
@media screen and (max-width: 1110px) {
    .l-header-menu__container {
        padding: 50px 20px 100px;
    }
}

/*  l-header-nav
--------------------------------------------- */
.l-header-nav__list {
    display: flex;
    gap: 28px;
}
@media screen and (max-width: 1110px) {
    .l-header-nav__list {
        display: block;
    }
}
@media screen and (max-width: 1110px) {
    .l-header-nav__item {
        border-bottom: 1px solid #fff;
    }
    .l-header-nav__item:first-of-type {
        border-top: 1px solid #fff;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header-nav__item {
        transition: opacity 0.3s;
    }
    .l-header-nav__item:hover {
        opacity: 0.6;
    }
}
.l-header-nav__link {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4285714286;
    color: var(--color-black-3);
}
@media screen and (max-width: 1110px) {
    .l-header-nav__link {
        display: block;
        padding: 35px;
        color: #fff;
    }
}

/*  l-header-menu-button
--------------------------------------------- */
.l-header-menu-button {
    display: none;
    position: relative;
    padding: 15px;
    border: 0;
    border-radius: 0;
    background: none;
    margin: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    touch-action: manipulation;
    cursor: pointer;
}
@media screen and (max-width: 1110px) {
    .l-header-menu-button {
        display: block;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header-menu-button {
        transition: opacity 0.3s;
    }
    .l-header-menu-button:hover {
        opacity: 0.6;
    }
}
.l-header-menu-button__lines {
    position: relative;
    display: block;
    width: 30px;
    height: 20px;
}
.l-header-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 2px;
    background-color: #007bbb;
    transition: 0.3s;
}
.l-header-menu-button__line--top {
    top: 0;
}
.is-menu-opened .l-header-menu-button__line--top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.l-header-menu-button__line--center {
    top: 50%;
    margin-top: -1px;
}
.is-menu-opened .l-header-menu-button__line--center {
    background-color: rgba(0, 0, 0, 0);
}

.l-header-menu-button__line--bottom {
    bottom: 0;
}
.is-menu-opened .l-header-menu-button__line--bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    padding: 40px 0 16px;
    background-color: var(--color-black-3);
}
@media screen and (max-width: 750px) {
    .l-footer {
        margin-top: -1px;
    }
}
.l-footer__logo {
    display: block;
    width: 500px;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .l-footer__logo {
        width: 100%;
        max-width: 300px;
        /* Adjust as needed */
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-footer__logo {
        transition: opacity var(--hover-duration);
    }
    .l-footer__logo:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-footer__copyright {
    margin-top: 52px;
    padding-top: 16px;
    text-align: center;
    border-top: 1px solid #C9C9C9;
}
.l-footer__copyright-txt {
    display: block;
    font-family: var(--ff-helvetica);
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

/* ---------------------------------------------
*   l-footer-nav
--------------------------------------------- */
.l-footer-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .l-footer-nav__list {
        flex-direction: column;
        gap: 15px;
    }
}
.l-footer-nav__item {
    position: relative;
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4166666667;
    color: #FFFFFF;
}
.l-footer-nav__item:last-of-type::before {
    display: none;
}
.l-footer-nav__item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .l-footer-nav__item::before {
        display: none;
    }
}
.l-footer-nav__link {
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav__link:hover {
        opacity: 0.6;
    }
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 70px;
    background-color: #EE001E;
    border: 1px solid #EE001E;
    border-radius: 100px;
    gap: 10px;
    color: #ffffff;
    transition: all 0.3s;
    text-decoration: none;
}
.c-btn:hover {
    background-color: #fff;
    color: #EE001E;
}
.c-btn:hover .c-btn__icon::before {
    background-color: #EE001E;
}
@media screen and (max-width: 750px) {
    .c-btn {
        width: 100%;
        max-width: 240px;
        height: 55px;
        margin: 0 auto;
    }
}
.c-btn--2 {
    width: 280px;
    height: 46px;
}
.c-btn--2 .c-btn__txt {
    font-size: 16px;
}
@media screen and (max-width: 750px) {
    .c-btn--2 .c-btn__txt {
        font-size: 18px;
    }
}
.c-btn--2 .c-btn__icon {
    width: 13px;
    height: 15px;
}
.c-btn--2 .c-btn__icon::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url("../img/common/icon_arrow.svg");
            mask-image: url("../img/common/icon_arrow.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #fff;
    transition: background-color 0.3s;
}
.c-btn--2:hover .c-btn__icon::before {
    background-color: #EE001E;
}
.c-btn--3 {
    width: 52.7426160338%;
    height: 60px;
    padding-inline: 20px;
}
@media screen and (max-width: 900px) {
    .c-btn--3 {
        width: 250px;
    }
    .c-btn--3:nth-of-type(n+2) {
        margin-top: 15px;
    }
}
@media screen and (max-width: 750px) {
    .c-btn--3 {
        height: 55px;
    }
}
.c-btn--3 .c-btn__txt {
    font-size: 20px;
}
@media screen and (max-width: 750px) {
    .c-btn--3 .c-btn__txt {
        font-size: 18px;
    }
}
.c-btn--3 .c-btn__icon {
    width: 16px;
    height: 16px;
}
.c-btn--3 .c-btn__icon::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url("../img/common/icon_blank.svg");
            mask-image: url("../img/common/icon_blank.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #fff;
    transition: background-color 0.3s;
}
.c-btn--3:hover .c-btn__icon::before {
    background-color: #EE001E;
}
.c-btn--4 {
    width: 52.7426160338%;
    height: 60px;
    padding-inline: 20px;
}
@media screen and (max-width: 900px) {
    .c-btn--4 {
        width: 250px;
    }
    .c-btn--4:nth-of-type(n+2) {
        margin-top: 15px;
    }
}
@media screen and (max-width: 750px) {
    .c-btn--4 {
        height: 55px;
    }
}
.c-btn--4 .c-btn__txt {
    font-size: 20px;
    padding-bottom: 2px;
    line-height: 1.2;
}
@media screen and (max-width: 750px) {
    .c-btn--4 .c-btn__txt {
        font-size: 18px;
        padding-bottom: 0;
    }
}
.c-btn--4 .c-btn__icon {
    width: 14px;
    height: 16px;
    flex-shrink: 0;
}
.c-btn--4 .c-btn__icon::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url("../img/common/icon_arrow.svg");
            mask-image: url("../img/common/icon_arrow.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #fff;
    transition: background-color 0.3s;
}
.c-btn--4:hover .c-btn__icon::before {
    background-color: #EE001E;
}
.c-btn__txt {
    display: block;
    font-weight: 500;
    font-size: 20px;
}
@media screen and (max-width: 750px) {
    .c-btn__txt {
        font-size: 18px;
    }
}
.c-btn__icon {
    position: relative;
    display: block;
}
.c-btn__icon--magnifier {
    width: 23px;
    height: 23px;
}
@media screen and (max-width: 750px) {
    .c-btn__icon--magnifier {
        width: 20px;
        height: 20px;
    }
}
.c-btn__icon--magnifier::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url("../img/common/icon_magnifier.svg");
            mask-image: url("../img/common/icon_magnifier.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #fff;
    transition: background-color 0.3s;
}
.c-btn__body {
    max-width: 880px;
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
.c-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    padding: 40px 48px;
    background: url("../img/common/img_kv03.png") center no-repeat, #fff;
    background-size: cover;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
@media screen and (max-width: 1000px) {
    .c-card {
        padding: 40px 20px 40px 20px;
    }
}
@media screen and (max-width: 750px) {
    .c-card {
        display: block;
        padding: 20px;
    }
}
.c-card--2 {
    background-image: url("../img/common/img_kv05.png");
}
.c-card__ttl {
    display: block;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4642857143;
    color: #222222;
}
.c-card__txt {
    display: block;
    margin-top: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4375;
    color: #222222;
}
.c-card__btn {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
    margin-top: 32px;
}
@media screen and (max-width: 900px) {
    .c-card__btn {
        display: block;
    }
}
.c-card:not(.c-card--2):hover .c-btn {
    background-color: #fff;
    color: #EE001E;
}
.c-card:not(.c-card--2):hover .c-btn .c-btn__icon::before {
    background-color: #EE001E;
}

/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    background-color: #8BC5FF;
    height: 450px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-kv {
        height: auto;
        padding-top: calc(var(--fixed-header-height) * 1px);
    }
}
.c-kv__container {
    max-width: 1220px;
    height: 100%;
    margin: 0 auto;
    padding: 0 0 0 20px;
}
@media screen and (max-width: 750px) {
    .c-kv__container {
        padding: 0;
    }
}
.c-kv__head {
    margin-top: 55px;
    z-index: 2;
}
@media screen and (max-width: 750px) {
    .c-kv__head {
        width: 100%;
        margin-top: 0;
        text-align: center;
    }
}
.c-kv__body {
    height: 100%;
}
@media screen and (max-width: 750px) {
    .c-kv__body {
        display: none;
    }
}
.c-kv__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    height: 100%;
    max-width: 1290px;
}
@media screen and (max-width: 750px) {
    .c-kv__inner {
        display: block;
        height: auto;
        padding-block: 50px;
    }
}
.c-kv__img {
    position: absolute;
    width: 73.5245901639%;
    top: 55%;
    right: -9%;
    translate: 0 -50%;
}
.c-kv__img img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
}
.c-kv__ttl {
    display: block;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.1;
    color: #FFFFFF;
}
@media screen and (max-width: 750px) {
    .c-kv__ttl {
        font-size: 32px;
    }
}
.c-kv__ttl--s {
    margin-top: 10px;
    font-size: 28px;
}
@media screen and (max-width: 750px) {
    .c-kv__ttl--s {
        font-size: 24px;
        display: block;
        margin-top: 5px;
    }
}
.c-kv__lead {
    display: block;
    margin-top: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    color: #FFFFFF;
}
@media screen and (max-width: 750px) {
    .c-kv__lead {
        font-size: 14px;
    }
}
.c-kv__btn {
    margin-top: 40px;
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
/* ---------------------------------------------
*   c-list-top
--------------------------------------------- */
.c-list-top {
    max-width: 1220px;
    margin: 60px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}
@media screen and (max-width: 1050px) {
    .c-list-top {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 780px) {
    .c-list-top {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 750px) {
    .c-list-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
}
.c-list-top__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    padding-bottom: 14px;
    border: 1px solid #D1D1D1;
    border-radius: 5px;
    gap: 0;
}
.c-list-top__img {
    height: 207px;
    overflow: hidden;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .c-list-top__img {
        height: auto;
    }
}
.c-list-top__img img {
    width: 100%;
    height: 100%;
    border-radius: 4px 4px 0 0;
    -o-object-fit: contain;
       object-fit: contain;
    transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-top__img:hover img {
        scale: 1.05;
    }
}
.c-list-top__name {
    display: block;
    margin-top: 13px;
    padding-inline: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    color: var(--color-black-3);
}
@media screen and (max-width: 750px) {
    .c-list-top__name {
        font-size: 12px;
        padding-inline: 5px;
    }
}
.c-list-top__btn-area {
    display: flex;
    gap: 8px;
    margin-top: 9px;
    padding-inline: 12px;
}
@media screen and (max-width: 750px) {
    .c-list-top__btn-area {
        display: block;
        gap: 10px;
        padding-inline: 8px;
    }
}
.c-list-top__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding-block: 7px 9px;
    background-color: #222222;
    border-radius: 5px;
    border: 1px solid #222222;
    transition: all 0.3s;
    text-decoration: none;
}
.c-list-top__btn:hover {
    background-color: #fff;
}
.c-list-top__btn:hover .c-list-top__btn-txt {
    color: #222222;
}
.c-list-top__btn:hover .c-list-top__btn-icon::before {
    background-color: #222222;
}
@media screen and (max-width: 750px) {
    .c-list-top__btn {
        padding-block: 6px;
        gap: 4px;
    }
    .c-list-top__btn:nth-of-type(n+2) {
        margin-top: 5px;
    }
}
.c-list-top__btn-txt {
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    transition: color 0.3s;
}
@media screen and (max-width: 750px) {
    .c-list-top__btn-txt {
        font-size: 10px;
    }
}
.c-list-top__btn-icon {
    position: relative;
    display: block;
    width: 13px;
    height: 16px;
}
@media screen and (max-width: 750px) {
    .c-list-top__btn-icon {
        width: 10px;
        height: 12px;
    }
}
.c-list-top__btn-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url("../img/common/icon_dl.svg");
            mask-image: url("../img/common/icon_dl.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #fff;
    transition: background-color 0.3s;
}

/* ---------------------------------------------
*   c-list-news
--------------------------------------------- */
.c-list-news {
    max-width: 1000px;
    margin: 16px auto 0;
}
.c-list-news__item {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 20px 40px;
    border-bottom: 1px solid #DCDCDC;
    text-decoration: none;
    /* Ensure it looks like a link or not? Usually block links don't have underline */
    color: inherit;
    transition: opacity 0.3s;
}
.c-list-news__item:last-of-type {
    border-bottom: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-news__item:hover {
        opacity: 0.7;
    }
}
@media screen and (max-width: 750px) {
    .c-list-news__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0;
    }
}
.c-list-news__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
@media screen and (max-width: 750px) {
    .c-list-news__inner {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
    }
}
.c-list-news__day {
    flex-shrink: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--color-black-3);
}
@media screen and (max-width: 750px) {
    .c-list-news__day {
        font-size: 14px;
    }
}
.c-list-news__cat {
    flex-shrink: 0;
    display: block;
    background: #E8F4FF;
    border-radius: 100px;
    width: 150px;
    padding-block: 5px 6px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4285714286;
    text-align: center;
    color: #003EE2;
}
@media screen and (max-width: 750px) {
    .c-list-news__cat {
        width: 100px;
        font-size: 12px;
        padding-block: 4px 5px;
    }
}
.c-list-news__txt {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4375;
    color: #222222;
}
@media screen and (max-width: 750px) {
    .c-list-news__txt {
        font-size: 14px;
    }
}

/* ---------------------------------------------
*   c-section-news
--------------------------------------------- */
.c-section-news {
    background: url("../img/top/bg_01.png") center no-repeat;
    background-size: 100% 100%;
    padding: 60px 20px;
    margin-top: 60px;
}
.c-section-news__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 43px 20px 52px;
    border-radius: 15px;
    background-color: #fff;
}
.c-section-news__ttl-en {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.2em;
    color: #003EE2;
}
.c-section-news__ttl-ja {
    display: block;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4375;
    text-align: center;
    color: var(--color-black-3);
}
.c-section-news__btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: 28px auto 0;
}

/* ---------------------------------------------
*   c-section-cta
--------------------------------------------- */
.c-section-cta {
    background-color: var(--color-black-3);
    padding: 48px 20px;
}
.c-section-cta__container {
    display: grid;
    grid-template-columns: repeat(2, 48.3050847458%);
    justify-content: space-between;
    -moz-column-gap: 20px;
         column-gap: 20px;
    column-gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-cta__container {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   p-top-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-search-kv
--------------------------------------------- */
.p-search-kv {
    position: relative;
    background-color: #8BC5FF;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .p-search-kv {
        height: auto;
        padding-top: calc(var(--fixed-header-height) * 1px);
        padding-bottom: 50px;
    }
}
.p-search-kv__inner {
    position: relative;
    width: 100%;
    max-width: 1420px;
    height: 280px;
    margin: 0 auto;
    padding: 0 0 0 20px;
    display: flex;
    gap: 118px;
    justify-content: space-around;
    align-items: center;
}
@media screen and (max-width: 750px) {
    .p-search-kv__inner {
        display: block;
        height: 100%;
        padding: 0;
        text-align: center;
    }
}
.p-search-kv__head {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-top: 50px;
}
@media screen and (max-width: 750px) {
    .p-search-kv__head {
        width: 100%;
    }
}
.p-search-kv__body {
    height: 100%;
    display: flex;
    align-items: flex-end;
}
@media screen and (max-width: 750px) {
    .p-search-kv__body {
        display: none;
    }
}
.p-search-kv__img {
    position: absolute;
    width: 61%;
    top: 50%;
    translate: 0 -50%;
    right: -7%;
}
.p-search-kv__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.p-search-kv__ttl {
    display: flex;
    align-items: center;
    gap: 37px;
    padding-right: 200px;
}
@media screen and (max-width: 750px) {
    .p-search-kv__ttl {
        display: block;
        text-align: center;
        padding-right: 0;
    }
}
.p-search-kv__ttl-jp {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0px 0 50px rgba(14, 7, 142, 0.3);
    letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
    .p-search-kv__ttl-jp {
        font-size: 36px;
        line-height: 1.4;
    }
}
.p-search-kv__ttl-en {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0px 0 50px rgba(14, 7, 142, 0.3);
}
@media screen and (max-width: 750px) {
    .p-search-kv__ttl-en {
        display: block;
        font-size: 20px;
    }
}

/* ---------------------------------------------
*   p-search-intro
--------------------------------------------- */
.p-search-intro {
    padding: 40px 0 37px;
    text-align: center;
}
.p-search-intro__inner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.p-search-intro__txt {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}
@media screen and (max-width: 750px) {
    .p-search-intro__txt {
        font-size: 14px;
        text-align: left;
    }
}
.p-search-intro__txt--2 {
    margin-top: 50px;
}

/* ---------------------------------------------
*   p-search-filter
--------------------------------------------- */
.p-search-filter {
    position: sticky;
    top: var(--sticky-top-base, 76px);
    z-index: 8;
    background-color: #fff;
    padding-bottom: 50px;
}
.p-search-filter__inner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.p-search-filter__box {
    background: linear-gradient(145deg, #6DA6F2 0%, #6DA6F2 36%, #89c3ff 35%, #89c3ff 100%);
    border-radius: 15px;
    padding: 27px 48px 28px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
@media screen and (max-width: 900px) {
    .p-search-filter__box {
        padding: 27px 20px 28px;
    }
}
.p-search-filter__ttl {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
@media screen and (max-width: 750px) {
    .p-search-filter__ttl {
        font-size: 20px;
    }
}
.p-search-filter__form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 847px;
}
.p-search-filter__input {
    width: 100%;
    flex: 1;
    height: 56px;
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 0 30px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.p-search-filter__input::-moz-placeholder {
    color: #ccc;
}
.p-search-filter__input::placeholder {
    color: #ccc;
}
.p-search-filter__submit {
    background-color: #ee0000;
    color: #fff;
    border: none;
    border-radius: 0 30px 30px 0;
    height: 56px;
    width: 180px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s;
}
.p-search-filter__submit:hover {
    opacity: 0.8;
}
@media screen and (max-width: 750px) {
    .p-search-filter__box {
        background: #89c3ff;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    .p-search-filter__form {
        position: relative;
        flex-direction: column;
        gap: 10px;
    }
    .p-search-filter__input {
        width: 100%;
        padding: 0 20px;
        padding-block: 10px;
        border-radius: 35px;
        margin-bottom: 0;
    }
    .p-search-filter__submit {
        width: 100%;
        height: 46px;
        padding: 0;
        border-radius: 35px;
        font-size: 14px;
    }
}

/* ---------------------------------------------
*   p-search-list
--------------------------------------------- */
.p-search-list {
    padding-bottom: 80px;
}
.p-search-list__inner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.p-search-list__table {
    width: 100%;
    border-collapse: collapse;
}
@media screen and (max-width: 750px) {
    .p-search-list__table {
        display: block;
    }
}
.p-search-list__thead {
    position: sticky;
    z-index: 7;
    top: calc(var(--sticky-top-base, 76px) + var(--filter-height, 0px));
    background-color: #eef5ff;
}
@media screen and (max-width: 750px) {
    .p-search-list__thead {
        display: none;
    }
}
.p-search-list__th {
    padding: 18px 8px;
    font-weight: 700;
    color: #003EE2;
    font-size: 16px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    white-space: nowrap;
    text-align: center;
}
.p-search-list__th:nth-of-type(1) {
    width: 10.1694915254%;
}
.p-search-list__th:nth-of-type(2) {
    width: 18.949153%;
}
.p-search-list__th:nth-of-type(3) {
    width: 31.186440678%;
}
.p-search-list__th:nth-of-type(4) {
    width: 10.1694915254%;
    min-width: 98px;
}
.p-search-list__th:nth-of-type(5) {
    width: 10.1694915254%;
    min-width: 98px;
}
.p-search-list__th:nth-of-type(6) {
    width: 10.1694915254%;
    min-width: 98px;
}
.p-search-list__th:nth-of-type(7) {
    width: 10.1694915254%;
    min-width: 98px;
}
.p-search-list__th:last-child {
    border-right: none;
}
@media screen and (max-width: 750px) {
    .p-search-list__tbody {
        display: block;
    }
}
.p-search-list__tr {
    border-bottom: 1px solid #ddd;
}
.p-search-list__tr:last-child {
    border-bottom: none;
}
@media screen and (max-width: 750px) {
    .p-search-list__tr {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
        border: 1px solid #ddd;
        margin-bottom: 20px;
        border-radius: 5px;
    }
    .p-search-list__tr:last-child {
        border: 1px solid #ddd;
    }
}
.p-search-list__td {
    padding: 24px 10px 21px;
    font-size: 14px;
    vertical-align: middle;
}
@media screen and (max-width: 750px) {
    .p-search-list__td {
        display: block;
        padding: 0;
        border: none;
    }
}
@media screen and (max-width: 750px) {
    .p-search-list__td--code {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        font-size: 16px;
    }
    .p-search-list__td--code::before {
        content: "品番";
        font-weight: 700;
        color: #003EE2;
        flex-shrink: 0;
    }
}
@media screen and (max-width: 750px) {
    .p-search-list__td--name {
        width: 100%;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .p-search-list__td--name::before {
        content: "製品名";
        font-weight: 700;
        color: #003EE2;
    }
}
.p-search-list__td--detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
@media screen and (max-width: 860px) {
    .p-search-list__td--detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
@media screen and (max-width: 750px) {
    .p-search-list__td--detail {
        display: flex;
        width: 100%;
        margin-bottom: 10px;
        gap: 20px;
        font-size: 16px;
    }
}
.p-search-list__td--btn {
    text-align: center;
    width: 100px;
}
@media screen and (max-width: 750px) {
    .p-search-list__td--btn {
        display: flex;
        width: calc(50% - 5px);
        text-align: center;
    }
}
.p-search-list__tag {
    display: inline-block;
    padding: 14px 17px;
    background-color: #ffecec;
    color: #ee0000;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}
.p-search-list__pagetop {
    text-align: center;
    margin-top: 60px;
}

/* ---------------------------------------------
*   c-btn-pagetop
--------------------------------------------- */
.c-btn-pagetop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 48px;
    background-color: var(--color-black-3);
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    transition: opacity 0.3s;
    margin: 0 auto;
}
.c-btn-pagetop:hover {
    opacity: 0.8;
}

/* ---------------------------------------------
*   c-btn-sm
--------------------------------------------- */
.c-btn-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    padding-bottom: 2px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.c-btn-sm--catalog, .c-btn-sm--url, .c-btn-sm--cad, .c-btn-sm--manual {
    background-color: #333;
}
.c-btn-sm:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
}

/* ---------------------------------------------
*   p-search-banners
--------------------------------------------- */
.p-search-banners {
    background-color: #333;
    padding: 60px 0;
    color: #fff;
}
.p-search-banners__inner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.p-search-banners__list {
    display: flex;
    gap: 30px;
    justify-content: center;
}
@media screen and (max-width: 750px) {
    .p-search-banners__list {
        flex-direction: column;
    }
}
.p-search-banners__item {
    background-color: #fff;
    border-radius: 10px;
    width: 48%;
    /* approx */
    padding: 30px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
@media screen and (max-width: 750px) {
    .p-search-banners__item {
        width: 100%;
    }
}
.p-search-banners__content {
    text-align: center;
}
.p-search-banners__content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.p-search-banners__content p {
    font-size: 14px;
    margin-bottom: 20px;
}
.p-search-banners__btns {
    display: flex;
    gap: 10px;
    justify-content: center;
}
@media screen and (max-width: 750px) {
    .p-search-banners__btns {
        flex-direction: column;
    }
}

.c-btn-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 30px;
    background-color: #ee0000;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.c-btn-banner:hover {
    opacity: 0.8;
}

/* ---------------------------------------------
*   p-product-kv
--------------------------------------------- */
.p-product-kv {
    position: relative;
    background-color: #8BC5FF;
    height: 280px;
    color: #fff;
    overflow: hidden;
}
.p-product-kv__inner {
    position: relative;
    width: 100%;
    max-width: 1420px;
    height: 280px;
    margin: 0 auto;
    padding: 0 0 0 20px;
    display: flex;
    gap: 110px;
    justify-content: end;
    align-items: center;
}
.p-product-kv__head {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.p-product-kv__body {
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.p-product-kv__img {
    position: absolute;
    width: 61%;
    top: 50%;
    translate: 0 -50%;
    right: -7%;
}
.p-product-kv__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.p-product-kv__ttl {
    display: flex;
    align-items: baseline;
    gap: 20px;
}
.p-product-kv__ttl-jp {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.p-product-kv__ttl-en {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* ---------------------------------------------
*   p-product-detail
--------------------------------------------- */
/* ---------------------------------------------
*   p-product-detail
--------------------------------------------- */
.p-product-detail {
    padding: 60px 0;
}
@media screen and (max-width: 750px) {
    .p-product-detail {
        padding: 40px 0;
    }
}
.p-product-detail__inner {
    width: 100%;
    max-width: 1240px;
    /* 1200px content + 20px*2 padding */
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.p-product-detail__upper {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    gap: 60px;
    margin-top: -210px;
    padding: 49px 49px 46px 46px;
}
@media screen and (max-width: 750px) {
    .p-product-detail__upper {
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
        margin-top: 0;
    }
}

/* ---------------------------------------------
*   p-product-slider
--------------------------------------------- */
.p-product-slider {
    width: calc(50% - 30px);
    display: flex;
    gap: 10px;
    /* user had added flex-shrink: 0 here which caused overflow - removed it */
}
@media screen and (max-width: 1000px) {
    .p-product-slider {
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 750px) {
    .p-product-slider {
        width: 100%;
        flex-direction: column;
    }
}

#main-slider {
    flex: 1;
    /* Allow filling remaining space */
    width: auto;
    /* Let flex handle width */
    max-width: 420px;
    aspect-ratio: 420/312;
    height: auto;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    overflow: hidden;
    /* Fixed size on PC */
    order: 2;
    min-width: 0;
    padding-inline: 20px;
    /* Allow shrinking below content size if needed */
}
@media screen and (max-width: 750px) {
    #main-slider {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 420/312;
        order: 1;
        margin-bottom: 10px;
        padding-inline: 0;
    }
}
#main-slider .splide__slide {
    width: 100%;
    height: 100% !important;
    border-radius: 15px;
}
#main-slider .splide__slide img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: contain;
       object-fit: contain;
    /* Ensure image fits inside the fixed box */
    display: block;
}

#thumbnail-slider {
    width: 80px;
    /* Frame size for thumbnails column */
    flex-shrink: 0;
    order: 1;
}
@media screen and (max-width: 1000px) {
    #thumbnail-slider {
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    #thumbnail-slider {
        width: 100%;
        order: 2;
    }
}
#thumbnail-slider .splide__track {
    height: 100%;
}
#thumbnail-slider .splide__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media screen and (max-width: 1000px) {
    #thumbnail-slider .splide__list {
        flex-direction: row;
        gap: 0;
    }
}
#thumbnail-slider .splide__slide {
    width: 80px !important;
    height: 60px !important;
    border: 1px solid #DCDCDC;
    padding-inline: 5px;
    border-radius: 5px;
    /* Border for all thumbnails */
    cursor: pointer;
    position: relative;
    /* If using mask for inactive */
    /* Mask for inactive state */
}
#thumbnail-slider .splide__slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.6);
    transition: opacity 0.3s;
    pointer-events: none;
}
#thumbnail-slider .splide__slide.is-active {
    /* Active state: remove mask */
    border-color: #003EE2;
    /* Active border color suggestion */
}
#thumbnail-slider .splide__slide.is-active::after {
    opacity: 0;
}
#thumbnail-slider .splide__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
}
@media screen and (max-width: 750px) {
    #thumbnail-slider .splide__slide {
        width: auto;
        height: auto;
        max-width: 80px;
        max-height: 60px;
    }
}
@media (hover: hover) and (pointer: fine) {
    #thumbnail-slider .splide__slide {
        transition: border-color 0.3s;
    }
    #thumbnail-slider .splide__slide:hover {
        border-color: #003EE2;
    }
}

.splide__track--draggable {
    height: 100% !important;
}

/* ---------------------------------------------
*   p-product-info
--------------------------------------------- */
.p-product-info {
    width: calc(50% - 30px);
    margin-top: 41px;
}
@media screen and (max-width: 750px) {
    .p-product-info {
        width: 100%;
        margin-top: 0;
    }
}
.p-product-info__ttl {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 26px;
}
@media screen and (max-width: 750px) {
    .p-product-info__ttl {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.p-product-info__row {
    display: flex;
    padding: 11px 0;
}
@media screen and (max-width: 750px) {
    .p-product-info__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
.p-product-info__dt {
    width: 120px;
    background-color: #eef5ff;
    color: #003EE2;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 100px;
    margin-right: 24px;
    flex-shrink: 0;
}
@media screen and (max-width: 750px) {
    .p-product-info__dt {
        margin-right: 0;
        width: auto;
        padding: 0 15px;
        font-size: 14px;
    }
}
.p-product-info__dd {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .p-product-info__dd {
        font-size: 16px;
    }
}

/* ---------------------------------------------
*   p-product-tabs
--------------------------------------------- */
.p-product-tabs {
    max-width: 1100px;
    margin: 0 auto;
}
.p-product-tabs__triggers {
    display: flex;
    gap: 10px;
    /* No bottom border here, the content block will provide the border */
    /* But we need the active tab to merge with content. */
    /* Common technique: Buttons sit on bottom line. */
}
@media screen and (max-width: 750px) {
    .p-product-tabs__triggers {
        gap: 5px;
    }
}
.p-product-tabs__trigger {
    width: 32.733%;
    padding: 19px 0;
    background-color: #f0f0f0;
    /* Inactive Gray */
    border: 1px solid #ddd;
    border-bottom: none;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    transition: background-color 0.3s, opacity 0.3s;
}
.p-product-tabs__trigger.is-current {
    background-color: #fff;
    color: #003EE2;
    /* Make it overlap the content border if needed, or just look seamless */
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
}
.p-product-tabs__trigger:hover:not(.is-current) {
    opacity: 0.8;
}
@media screen and (max-width: 750px) {
    .p-product-tabs__trigger {
        font-size: 14px;
        padding: 15px 0;
        border-radius: 5px 5px 0 0;
    }
}
.p-product-tabs__content {
    background-color: #fff;
    padding: 40px 60px;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 1;
    margin-top: -1px;
}
@media screen and (max-width: 750px) {
    .p-product-tabs__content {
        padding: 30px 20px;
    }
}
.p-product-tabs__target {
    display: none;
}
.p-product-tabs__target.is-current {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ---------------------------------------------
*   p-product-parts (Tab 1)
--------------------------------------------- */
.p-product-parts__item {
    border-bottom: 1px solid #ddd;
    padding: 27px 0;
}
.p-product-parts__item:first-child {
    padding-top: 0;
}
.p-product-parts__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.p-product-parts__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
@media screen and (max-width: 750px) {
    .p-product-parts__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
.p-product-parts__info {
    flex: 1;
    width: 100%;
}
.p-product-parts__code {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}
.p-product-parts__name {
    font-weight: 700;
    font-size: 16px;
    padding-left: 18px;
}
@media screen and (max-width: 750px) {
    .p-product-parts__name {
        padding-left: 0;
    }
}
.p-product-parts__desc {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 6px;
    color: #666;
}
@media screen and (max-width: 750px) {
    .p-product-parts__desc {
        font-size: 14px;
    }
}
.p-product-parts__btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 307px;
    flex-shrink: 0;
}
@media screen and (max-width: 750px) {
    .p-product-parts__btns {
        width: 100%;
    }
}

/* ---------------------------------------------
*   p-product-specs (Tab 2)
--------------------------------------------- */
.p-product-specs__lead {
    margin-bottom: 40px;
    line-height: 2;
    font-size: 18px;
}
@media screen and (max-width: 750px) {
    .p-product-specs__lead {
        font-size: 15px;
        margin-bottom: 30px;
    }
}
.p-product-specs__block {
    margin-bottom: 33px;
}
.p-product-specs__block:last-child {
    margin-bottom: 0;
}
.p-product-specs__ttl {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
    margin-bottom: 17px;
    color: #333;
    position: relative;
}
.p-product-specs__ttl--line {
    display: inline;
    border-bottom: 2px solid #003EE2;
    padding-right: 10px;
}
@media screen and (max-width: 750px) {
    .p-product-specs__ttl {
        font-size: 18px;
    }
}
.p-product-specs__txt {
    line-height: 1.8;
    font-size: 18px;
}
@media screen and (max-width: 750px) {
    .p-product-specs__txt {
        font-size: 15px;
    }
}

/* ---------------------------------------------
*   p-product-related (Tab 3)
--------------------------------------------- */
.p-product-related__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media screen and (max-width: 750px) {
    .p-product-related__list {
        grid-template-columns: 1fr;
    }
}
.p-product-related__item {
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    /* Flex layout as requested for side-by-side */
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    background-color: #fff;
}
.p-product-related__item:hover {
    opacity: 0.8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 850px) {
    .p-product-related__item {
        flex-direction: column;
        align-items: flex-start;
    }
}
.p-product-related__img {
    width: 200px;
    height: 148px;
    flex-shrink: 0;
}
.p-product-related__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 750px) {
    .p-product-related__img img {
        border-radius: 0;
    }
}
@media screen and (max-width: 850px) {
    .p-product-related__img {
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    .p-product-related__img {
        height: auto;
    }
}
.p-product-related__info {
    flex: 1;
    padding: 24px;
}
@media screen and (max-width: 850px) {
    .p-product-related__info {
        padding: 20px;
        width: 100%;
    }
}
.p-product-related__name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.p-product-related__link {
    display: block;
    font-size: 12px;
    color: #ee0000;
    font-weight: 700;
}

/* ---------------------------------------------
*   p-news
--------------------------------------------- */
.p-news {
    padding: 60px 0;
}
.p-news__inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ---------------------------------------------
*   p-news-filter
--------------------------------------------- */
.p-news-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 750px) {
    .p-news-filter {
        gap: 10px 5px;
    }
}
.p-news-filter__item {
    width: calc(25% - 15px);
}
@media screen and (max-width: 750px) {
    .p-news-filter__item {
        width: calc(50% - 10px);
    }
}
.p-news-filter__btn {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    background-color: #fff;
    padding-bottom: 2px;
    color: #003EE2;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}
@media screen and (max-width: 750px) {
    .p-news-filter__btn {
        height: 40px;
        font-size: 16px;
    }
}
.p-news-filter__btn:hover {
    background-color: #EE001E;
    color: #fff;
    border-color: transparent;
}
.p-news-filter__btn:hover[data-cat=new] {
    background-color: #2B73BA;
}
.p-news-filter__btn:hover[data-cat=discontinued] {
    background-color: #c0c0c0;
}
.p-news-filter__btn:hover[data-cat=event] {
    background-color: #E761A4;
}
.p-news-filter__btn:hover[data-cat=column] {
    background-color: #87ceeb;
}
.p-news-filter__btn:hover[data-cat=product] {
    background-color: #3cb371;
}
.p-news-filter__btn:hover[data-cat=update] {
    background-color: #ffa500;
}
.p-news-filter__btn:hover[data-cat=other] {
    background-color: #CC6262;
}
.p-news-filter__btn.is-active {
    background-color: #EE001E;
    color: #fff;
}
.p-news-filter__btn.is-active[data-cat=new] {
    background-color: #2B73BA;
}
.p-news-filter__btn.is-active[data-cat=discontinued] {
    background-color: #c0c0c0;
}
.p-news-filter__btn.is-active[data-cat=event] {
    background-color: #E761A4;
}
.p-news-filter__btn.is-active[data-cat=column] {
    background-color: #87ceeb;
}
.p-news-filter__btn.is-active[data-cat=product] {
    background-color: #3cb371;
}
.p-news-filter__btn.is-active[data-cat=update] {
    background-color: #ffa500;
}
.p-news-filter__btn.is-active[data-cat=other] {
    background-color: #CC6262;
}

/* ---------------------------------------------
*   p-news-list
--------------------------------------------- */
.p-news-list {
    margin-bottom: 55px;
}
.p-news-list__item {
    display: flex;
    align-items: center;
    padding: 25px 40px 24px;
    border-top: 1px solid #ddd;
    gap: 23px;
    transition: opacity 0.3s;
}
.p-news-list__item:first-child {
    border-top: none;
}
.p-news-list__item:nth-of-type(11) {
    border-top: none;
}
@media screen and (max-width: 750px) {
    .p-news-list__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 0;
    }
}
@media (hover: hover) and (pointer: fine) {
    .p-news-list__item:hover {
        opacity: 0.7;
    }
}
.p-news-list__date {
    font-weight: 700;
    width: 100px;
    flex-shrink: 0;
    font-size: 14px;
}
.p-news-list__cat {
    width: 150px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .p-news-list__cat {
        width: 100px;
        height: 28px;
        font-size: 14px;
        padding-bottom: 1px;
    }
}
.p-news-list__cat[data-cat=new] {
    background-color: #2B73BA;
}
.p-news-list__cat[data-cat=discontinued] {
    background-color: #c0c0c0;
}
.p-news-list__cat[data-cat=event] {
    background-color: #E761A4;
}
.p-news-list__cat[data-cat=column] {
    background-color: #87ceeb;
}
.p-news-list__cat[data-cat=product] {
    background-color: #3cb371;
}
.p-news-list__cat[data-cat=update] {
    background-color: #ffa500;
}
.p-news-list__cat[data-cat=other] {
    background-color: #CC6262;
}
.p-news-list__txt {
    flex: 1;
    line-height: 1.6;
    font-size: 16px;
    margin-left: 25px;
}
@media screen and (max-width: 750px) {
    .p-news-list__txt {
        margin-left: 0;
    }
}

/* ---------------------------------------------
*   p-news-pager
--------------------------------------------- */
.p-news-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}
.p-news-pager__item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Default: No background, no border */
    color: #333;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.3s;
    border-radius: 4px;
}
.p-news-pager__item:hover:not(.is-active):not(.is-disabled):not(.p-news-pager__item--prev):not(.p-news-pager__item--next) {
    opacity: 0.7;
}
.p-news-pager__item.is-active {
    background-color: #000;
    color: #fff;
}
.p-news-pager__item--prev, .p-news-pager__item--next {
    font-size: 0;
    position: relative;
}
.p-news-pager__item--prev::before, .p-news-pager__item--next::before {
    content: "";
    display: block;
    width: 14px;
    height: 16px;
    background-color: #000;
    -webkit-mask-image: url("../img/common/icon_pagenation.svg");
    mask-image: url("../img/common/icon_pagenation.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.p-news-pager__item--prev:hover, .p-news-pager__item--next:hover {
    opacity: 0.7;
}
.p-news-pager__item--prev {
    transform: rotate(180deg);
}
.p-news-pager__item.is-disabled {
    pointer-events: none;
    cursor: default;
    opacity: 1;
}
.p-news-pager__item.is-disabled::before {
    background-color: #ccc !important;
}

/* ---------------------------------------------
*   p-news-detail
--------------------------------------------- */
.p-news-detail {
    position: relative;
    padding: 60px 0 100px;
    /* Media Object (Image + Text) */
    /* Floating Image */
    /* Table */
}
@media screen and (max-width: 750px) {
    .p-news-detail {
        padding: 40px 0 80px;
    }
}
.p-news-detail__container {
    max-width: 1100px;
    margin: -150px auto 0;
    border-radius: 15px;
    background-color: #fff;
    padding: 80px 20px 0;
}
@media screen and (max-width: 750px) {
    .p-news-detail__container {
        margin-top: 0;
        padding: 80px 0 0 0;
        border-radius: 0;
    }
}
.p-news-detail__inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.p-news-detail__head-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.p-news-detail__date {
    font-weight: 700;
    flex-shrink: 0;
    font-size: 24px;
}
@media screen and (max-width: 750px) {
    .p-news-detail__date {
        font-size: 20px;
    }
}
.p-news-detail__cat {
    width: 150px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .p-news-detail__cat {
        width: 100px;
        height: 28px;
        font-size: 14px;
        padding-bottom: 1px;
    }
}
.p-news-detail__cat[data-cat=new] {
    background-color: #2B73BA;
}
.p-news-detail__cat[data-cat=discontinued] {
    background-color: #c0c0c0;
}
.p-news-detail__cat[data-cat=event] {
    background-color: #E761A4;
}
.p-news-detail__cat[data-cat=column] {
    background-color: #87ceeb;
}
.p-news-detail__cat[data-cat=product] {
    background-color: #3cb371;
}
.p-news-detail__cat[data-cat=update] {
    background-color: #ffa500;
}
.p-news-detail__cat[data-cat=other] {
    background-color: #CC6262;
}
.p-news-detail__ttl {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    color: #222;
    margin-top: 20px;
}
@media screen and (max-width: 750px) {
    .p-news-detail__ttl {
        font-size: 24px;
        margin-top: 20px;
    }
}
.p-news-detail__block--block40 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.p-news-detail__block--block60 {
    margin-top: 60px;
    margin-bottom: 60px;
}
.p-news-detail__block--center {
    display: flex;
    justify-content: center;
}
.p-news-detail__txt {
    font-size: 16px;
    line-height: 2;
    color: #333;
    text-align: justify;
    word-break: break-all;
    overflow-wrap: break-word;
}
@media screen and (max-width: 750px) {
    .p-news-detail__txt {
        font-size: 15px;
    }
}
.p-news-detail__figure {
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 750px) {
    .p-news-detail__figure {
        width: 100%;
    }
}
.p-news-detail__img-wrap {
    border-radius: 10px;
}
.p-news-detail__img-wrap--full {
    width: 480px;
    height: 350px;
    margin-inline: auto;
    border: 1px solid #ddd;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 750px) {
    .p-news-detail__img-wrap--full {
        width: 100%;
        height: auto;
        aspect-ratio: 480/350;
    }
}
.p-news-detail__img-wrap--full img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    vertical-align: bottom;
}
.p-news-detail__img-wrap--half {
    width: 380px;
    height: 253px;
    margin-inline: auto;
    border: 1px solid #ddd;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 750px) {
    .p-news-detail__img-wrap--half {
        width: 100%;
        height: auto;
        aspect-ratio: 380/253;
    }
}
.p-news-detail__img-wrap--half img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    vertical-align: bottom;
}
@media screen and (max-width: 750px) {
    .p-news-detail__img-wrap img {
        border-radius: 9px;
    }
}
.p-news-detail__figure {
    margin-left: auto;
    margin-right: auto;
}
.p-news-detail__row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media screen and (max-width: 750px) {
    .p-news-detail__row {
        flex-direction: column;
        gap: 20px;
    }
}
.p-news-detail__row .p-news-detail__figure {
    margin: 0;
}
.p-news-detail__caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
    line-height: 1.5;
    width: 100%;
}
.p-news-detail__media {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
@media screen and (max-width: 750px) {
    .p-news-detail__media {
        flex-direction: column;
        gap: 20px;
    }
}
.p-news-detail__media--rev {
    flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
    .p-news-detail__media--rev {
        flex-direction: column;
    }
}
.p-news-detail__media-img {
    flex-shrink: 0;
}
.p-news-detail__media-img .p-news-detail__figure {
    margin: 0;
}
@media screen and (max-width: 750px) {
    .p-news-detail__media-img {
        width: 100%;
    }
}
.p-news-detail__media-body {
    flex: 1;
    min-width: 0;
}
.p-news-detail__float-img {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
}
.p-news-detail__float-img .p-news-detail__figure {
    margin: 0;
}
@media screen and (max-width: 750px) {
    .p-news-detail__float-img {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.p-news-detail__float--rev .p-news-detail__float-img {
    float: right;
    margin-right: 0;
    margin-left: 40px;
}
@media screen and (max-width: 750px) {
    .p-news-detail__float--rev .p-news-detail__float-img {
        float: none;
        margin-left: 0;
    }
}
.p-news-detail__table-wrap {
    width: 100%;
    overflow-x: auto;
}
.p-news-detail__table {
    width: 100%;
    border-collapse: collapse;
}
.p-news-detail__table th,
.p-news-detail__table td {
    padding: 20px;
    border: 1px solid #ddd;
    font-size: 16px;
    line-height: 1.8;
    vertical-align: middle;
}
.p-news-detail__table th {
    background-color: #EBF5FF;
    font-weight: 700;
    width: 200px;
    text-align: center;
    color: #003EE5;
}
.p-news-detail__table td {
    padding: 20px 32px;
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .p-news-detail__table th,
    .p-news-detail__table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }
    .p-news-detail__table th {
        border-bottom: 1px solid #ddd;
    }
    .p-news-detail__table tr {
        border-bottom: 1px solid #ddd;
        display: block;
        margin-bottom: 20px;
    }
}

/* Button Variants */
.c-btn--gray {
    background-color: #555;
    border-color: #555;
    color: #fff;
}
.c-btn--gray:hover {
    background-color: #fff;
    color: #555;
}
.c-btn--gray:hover .c-btn__thumb--external {
    background-color: #555;
}
.c-btn--blue {
    background-color: #003EE5;
    border-color: #003EE5;
    color: #fff;
}
.c-btn--blue:hover {
    background-color: #fff;
    color: #003EE5;
}
.c-btn--blue:hover .c-btn__icon::before {
    background-color: #003EE5;
}
.c-btn--black {
    background-color: #222222;
    border-color: #222222;
    color: #fff;
}
.c-btn--black:hover {
    background-color: #fff;
    color: #222222;
}
.c-btn--black:hover .c-btn__icon::before {
    background-color: #222222;
}
.c-btn__thumb {
    display: block;
    width: 16px;
    height: 16px;
    background-color: #fff;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    transition: background-color 0.3s;
}
.c-btn__thumb--external {
    mask-image: url("../img/common/icon_external.svg");
    -webkit-mask-image: url("../img/common/icon_external.svg");
}
.c-btn__thumb--pdf {
    mask-image: url("../img/common/icon_pdf.svg");
    -webkit-mask-image: url("../img/common/icon_pdf.svg");
}
.c-btn:hover .c-btn__thumb--pdf {
    background-color: #EE001E;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.p-contact {
    padding: 40px 0 100px;
    background-color: #fff;
    /* ---------------------------------------------
    *   Validation Error Styles
    --------------------------------------------- */
}
.p-contact__inner {
    width: 100%;
    max-width: 1140px;
    /* 1100px + padding */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.p-contact__ttl {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 37px;
    font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 750px) {
    .p-contact__ttl {
        font-size: 16px;
    }
}
.p-contact__lead {
    text-align: center;
    color: #003EE2;
    font-weight: 700;
    margin-bottom: 60px;
    font-size: 14px;
}
.p-contact-form {
    width: 100%;
}
.p-contact-form__section-ttl {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 7px;
}
.p-contact-form__table {
    border-top: 1px solid #ddd;
    margin-bottom: 48px;
}
.p-contact-form__row {
    display: flex;
}
.p-contact-form__row:nth-child(n+2) {
    border-top: 1px solid #ddd;
}
.p-contact-form__row:last-child {
    border-bottom: 1px solid #ddd;
}
.p-contact-form__row--item {
    margin-top: 20px;
}
.p-contact-form__row--bottom {
    border-bottom: 1px solid #ddd;
}
.p-contact-form__label {
    width: 25.5%;
    /* Approx 30% width */
    background-color: #eef6fc;
    /* Light Sky Blue */
    color: #003EE2;
    /* Navy Text */
    padding: 33px 5px 33px 25px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.4;
    font-size: 18px;
}
.p-contact-form__required {
    color: #ff0000;
    font-weight: 700;
    vertical-align: bottom;
}
.p-contact-form__input {
    width: 80%;
    padding: 20px;
    background-color: #fff;
    min-height: 54px;
    /* Date Input Customization */
    /* Select Customization */
}
.p-contact-form__input input[type=text],
.p-contact-form__input input[type=tel],
.p-contact-form__input input[type=email] {
    width: 100%;
    max-width: 100%;
    padding: 13px 20px 13px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    line-height: normal;
}
.p-contact-form__input input[type=text]::-moz-placeholder, .p-contact-form__input input[type=tel]::-moz-placeholder, .p-contact-form__input input[type=email]::-moz-placeholder {
    color: #C9C9C9;
}
.p-contact-form__input input[type=text]::placeholder,
.p-contact-form__input input[type=tel]::placeholder,
.p-contact-form__input input[type=email]::placeholder {
    color: #C9C9C9;
}
.p-contact-form__input input[type=text]:focus,
.p-contact-form__input input[type=tel]:focus,
.p-contact-form__input input[type=email]:focus {
    outline: none;
    border-color: #003EE2;
}
.p-contact-form__input input[type=date] {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    padding: 13px 20px 13px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    line-height: normal;
    position: relative;
    cursor: pointer;
    text-align: left;
    color: #000;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /* Show custom icon via background on the input itself or a pseudo element wrapper. 
       Since we can't easily add pseudo to input in some browsers, 
       let's use background image on the input. */
    background: #fff url("../img/common/icon_calendar.svg") no-repeat right 19px center;
    background-size: 20px auto;
}
@media screen and (max-width: 750px) {
    .p-contact-form__input input[type=date] {
        min-height: 52px;
    }
}
.p-contact-form__input input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("../img/common/icon_calendar.svg") no-repeat center center;
    background-size: contain;
    cursor: pointer;
    /* Hide default indicator visually but keep it clickable */
    opacity: 0;
    z-index: 2;
    appearance: none;
    -webkit-appearance: none;
}
@-moz-document url-prefix() {
    .p-contact-form__input input[type=date] {
        background-image: none !important;
    }
}
.p-contact-form__input select {
    width: 100%;
    max-width: 100%;
    padding: 13px 40px 13px 20px;
    /* Right padding for arrow */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    line-height: normal;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    background: #fff url("../img/common/icon_pulldawn.svg") no-repeat right 19px center;
    background-size: 11px auto;
    cursor: pointer;
}
.p-contact-form__input select:invalid {
    color: #aaa;
}
.p-contact-form__input select:focus {
    outline: none;
    border-color: #003EE2;
}
.p-contact-form__input textarea {
    width: 100%;
    max-width: 100%;
    padding: 13px 20px 13px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6;
    height: 228px;
    resize: vertical;
}
.p-contact-form__input textarea::-moz-placeholder {
    color: #aaa;
}
.p-contact-form__input textarea::placeholder {
    color: #aaa;
}
.p-contact-form__input textarea:focus {
    outline: none;
    border-color: #003EE2;
}
.p-contact-form__input-group {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.p-contact-form__input-group:last-child {
    margin-bottom: 0;
}
.p-contact-form__input-group--zip input {
    width: 120px;
}
.p-contact-form__input-group span {
    font-weight: 700;
}
.p-contact-form__confirm {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 27px;
    font-size: 16px;
}
.p-contact-form__btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
@media screen and (max-width: 750px) {
    .p-contact-form__btn {
        flex-direction: column-reverse;
        gap: 20px;
    }
}
.p-contact .p-contact-error-summary {
    background-color: #fef2f2;
    padding: 36px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    color: #e60012;
}
.p-contact .p-contact-error-summary__ttl {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
    .p-contact .p-contact-error-summary__ttl {
        font-size: 16px;
    }
}
.p-contact .p-contact-error-summary__list {
    display: block;
    line-height: 1.8;
    font-size: 18px;
}
@media screen and (max-width: 750px) {
    .p-contact .p-contact-error-summary__list {
        font-size: 14px;
    }
}
.p-contact .p-contact-form__row.is-error .p-contact-form__label {
    background-color: #fef2f2;
    color: #e60012;
}
.p-contact .p-contact-form__row.is-error .p-contact-form__required {
    color: #e60012;
}
.p-contact .p-contact-form__row.is-error .p-contact-form__input input,
.p-contact .p-contact-form__row.is-error .p-contact-form__input select,
.p-contact .p-contact-form__row.is-error .p-contact-form__input textarea {
    border: 1px solid #e60012;
    background-color: #fff;
}
.p-contact .c-btn-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #EE001E;
    /* Magenta gradient */
    color: #fff;
    width: 400px;
    height: 70px;
    border-radius: 50px;
    /* Capsule */
    font-size: 21px;
    font-weight: 700;
    border: 1px solid #EE001E;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
@media screen and (max-width: 750px) {
    .p-contact .c-btn-submit {
        padding-bottom: 2px;
    }
}
.p-contact .c-btn-submit__arrow {
    margin-left: 20px;
    font-weight: 400;
    position: relative;
    width: 14px;
    height: 16px;
}
.p-contact .c-btn-submit__arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    mask-image: url("../img/common/icon_arrow.svg");
    -webkit-mask-image: url("../img/common/icon_arrow.svg");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-color: #fff;
    transition: background-color 0.3s;
}
.p-contact .c-btn-submit:hover {
    background-color: #fff;
    color: #EE001E;
}
.p-contact .c-btn-submit:hover .c-btn-submit__arrow::before {
    background-color: #EE001E;
}
.p-contact .c-btn-back {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #222222;
    width: 400px;
    height: 70px;
    border-radius: 50px;
    font-size: 21px;
    font-weight: 700;
    border: 1px solid #AAAAAA;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
@media screen and (max-width: 750px) {
    .p-contact .c-btn-back {
        width: 100%;
        height: 55px;
        font-size: 16px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .p-contact .c-btn-back:hover {
        background-color: #222222;
        color: #fff;
        border-color: #222222;
    }
}
@media screen and (max-width: 750px) {
    .p-contact .p-contact {
        padding: 40px 0 60px;
    }
    .p-contact .p-contact__inner {
        padding: 0 15px;
    }
    .p-contact .p-contact-form__table {
        border-top: none;
        margin-bottom: 40px;
    }
    .p-contact .p-contact-form__row {
        display: block;
        border-bottom: none;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        /* Card style for mobile */
        border-radius: 4px;
        overflow: hidden;
    }
    .p-contact .p-contact-form__label {
        display: block;
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    .p-contact .p-contact-form__input {
        width: 100%;
        padding: 15px;
    }
    .p-contact .p-contact-form__input-group {
        flex-wrap: wrap;
    }
    .p-contact .c-btn-submit {
        width: 100%;
        max-width: 300px;
    }
}

/* ---------------------------------------------
*   p-complete
--------------------------------------------- */
.p-complete {
    padding: 100px 0 130px;
}
@media screen and (max-width: 750px) {
    .p-complete {
        padding: 60px 0 80px;
    }
}
.p-complete__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.p-complete__ttl {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}
@media screen and (max-width: 750px) {
    .p-complete__ttl {
        font-size: 20px;
        margin-bottom: 30px;
    }
}
.p-complete__txt {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    font-weight: 400;
}
@media screen and (max-width: 750px) {
    .p-complete__txt {
        font-size: 14px;
        text-align: left;
        margin-bottom: 40px;
    }
}
.p-complete__btn {
    width: 380px;
    height: 70px;
    margin: 0 auto;
    background-color: #EE001E;
    /* Primary Red */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid #EE001E;
}
.p-complete__btn:hover {
    background-color: #fff;
    color: #EE001E;
}
@media screen and (max-width: 750px) {
    .p-complete__btn {
        width: 100%;
        max-width: 280px;
        height: 55px;
        font-size: 14px;
    }
}

/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: var(--color-white-1) !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

@media print and (min-width: 751px), screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 750px), screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--10 {
        margin-top: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--15 {
        margin-top: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--20 {
        margin-top: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--25 {
        margin-top: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--30 {
        margin-top: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--35 {
        margin-top: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--40 {
        margin-top: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--45 {
        margin-top: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--50 {
        margin-top: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--55 {
        margin-top: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--60 {
        margin-top: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--65 {
        margin-top: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--70 {
        margin-top: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--75 {
        margin-top: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--80 {
        margin-top: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--85 {
        margin-top: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--90 {
        margin-top: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--95 {
        margin-top: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--100 {
        margin-top: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--105 {
        margin-top: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--110 {
        margin-top: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--115 {
        margin-top: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--120 {
        margin-top: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--125 {
        margin-top: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--130 {
        margin-top: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--135 {
        margin-top: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--140 {
        margin-top: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--145 {
        margin-top: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--150 {
        margin-top: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--155 {
        margin-top: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--160 {
        margin-top: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--165 {
        margin-top: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--170 {
        margin-top: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--175 {
        margin-top: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--180 {
        margin-top: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--185 {
        margin-top: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--190 {
        margin-top: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--195 {
        margin-top: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--200 {
        margin-top: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--205 {
        margin-top: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--210 {
        margin-top: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--215 {
        margin-top: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--220 {
        margin-top: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--225 {
        margin-top: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--230 {
        margin-top: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--235 {
        margin-top: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--240 {
        margin-top: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--245 {
        margin-top: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--250 {
        margin-top: calc(250 / var(--design-width) * 100vw) !important;
    }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--10 {
        margin-bottom: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--15 {
        margin-bottom: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--20 {
        margin-bottom: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--25 {
        margin-bottom: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--30 {
        margin-bottom: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--35 {
        margin-bottom: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--40 {
        margin-bottom: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--45 {
        margin-bottom: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--50 {
        margin-bottom: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--55 {
        margin-bottom: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--60 {
        margin-bottom: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--65 {
        margin-bottom: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--70 {
        margin-bottom: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--75 {
        margin-bottom: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--80 {
        margin-bottom: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--85 {
        margin-bottom: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--90 {
        margin-bottom: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--95 {
        margin-bottom: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--100 {
        margin-bottom: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--105 {
        margin-bottom: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--110 {
        margin-bottom: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--115 {
        margin-bottom: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--120 {
        margin-bottom: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--125 {
        margin-bottom: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--130 {
        margin-bottom: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--135 {
        margin-bottom: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--140 {
        margin-bottom: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--145 {
        margin-bottom: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--150 {
        margin-bottom: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--155 {
        margin-bottom: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--160 {
        margin-bottom: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--165 {
        margin-bottom: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--170 {
        margin-bottom: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--175 {
        margin-bottom: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--180 {
        margin-bottom: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--185 {
        margin-bottom: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--190 {
        margin-bottom: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--195 {
        margin-bottom: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--200 {
        margin-bottom: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--205 {
        margin-bottom: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--210 {
        margin-bottom: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--215 {
        margin-bottom: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--220 {
        margin-bottom: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--225 {
        margin-bottom: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--230 {
        margin-bottom: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--235 {
        margin-bottom: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--240 {
        margin-bottom: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--245 {
        margin-bottom: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--250 {
        margin-bottom: calc(250 / var(--design-width) * 100vw) !important;
    }
}