:root {
    /* Color styles */
    --color-theme: #273d9e;
    --color-rgb-theme: 39, 61, 158;
    --color-sub-theme: #4e69de;
    --color-base: #eff1f8;
    --color-font: #171717;
    --color-black: #171717;
    --color-white: #FFFFFF;

    /* Text-size styles */
    font-size: 62.5%;

    /* Font Families */
    --font-family-yu-gothic: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    --font-family-antonio: "Antonio", sans-serif;
    --font-family-prompt: "Prompt", sans-serif;

    /* z-index */
    --z-header: 4;
    --z-header-background: -10;
    --z-bamburger: 6;
    --z-nav: 5;
    --z-hero-copy: 0;
    --z-tracking-button: 3;
    --z-bgextend: 3;
    --z-bgextend-before: 1;
    --z-readmore: 2;
    --z-number: 4;
}

body {
    font-family: var(--font-family-yu-gothic);
    color: var(--color-font);
    line-height: 1.7;
    font-size: 1.8rem;
    letter-spacing: 0.075em;
    margin: 0;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

figure {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-weight: normal;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--color-black);
    cursor: pointer;
}


ul,
ol,
dl,
dt,
dd {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* コンテナー */
.large-inner {
    max-width: 1720px;
    width: 92%;
    margin-inline: auto;
}

.medium-inner {
    max-width: 1280px;
    width: 92%;
    margin-inline: auto;
}

/* section-title */
.section-title__wrap {
    color: var(--color-theme);

}

.section-title--jp {
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.section-title--en {
    font-size: 7rem;
    font-family: var(--font-family-prompt);
    letter-spacing: 0.025em;
    font-weight: 500;
}


@media screen and (max-width:768px) {
    .section-title--en {
        font-size: clamp(4.2rem, 1.5282rem + 7.1247vw, 7rem);
        line-height: 1.134;
    }

    .section-title--jp {
        font-size: clamp(1.6rem, 1.0275rem + 1.5267vw, 2.2rem);
    }

    .section-title__linebreak {
        display: block;
    }
}



/* ------------------------------------
ヘッダー
------------------------------------ */
.header {
    margin-top: 83px;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 94%;
    max-width: 1720px;
    margin-inline: auto;
}

.header__logo {
    width: 26%;
    /* min-width: 410px; */
}

/* グローバルナビゲーション */
.header-nav {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}

.global-nav {
    display: none;
}


.global-nav[aria-hidden=false] {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.global-nav__list {
    display: flex;
}

.global-nav-logo {
    display: none;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.global-nav__link {
    padding: 24px 1vw;
    display: block;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.global-nav__link:hover {
    opacity: 0.6;
}

.global-nav__link:hover>.global-nav__text--en {
    color: var(--color-sub-theme);
}

.global-nav__link.current>.global-nav__text--en {
    color: var(--color-sub-theme);
}

.global-nav__text--ja {
    margin-bottom: 5px;
    font-size: clamp(1.4rem, 1.4rem + 1vw, 1.6rem);
}

.global-nav__text--en {
    font-family: var(--font-family-poppins);
    font-family: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--color-sub-theme);
}


.hamburger-button {
    display: none;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
}

/* スクリーンリーダー テキスト */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}


@media screen and (max-width: 1040px) {
    .header {
        width: 100%;
        margin-top: 45px;
    }

    .header__logo {
        min-width: 220px;
    }

    .header-nav {
        position: fixed;
        z-index: var(--z-header);
    }

    /* グローバルナビゲーション */
    .global-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 80%;
        height: 100%;
        background-color: var(--color-base);
        text-align: center;
        transform: translateX(110%);
        visibility: hidden;
        opacity: 0;
        z-index: var(--z-nav);
        transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
    }

    .global-nav__list {
        display: block;
    }

    .global-nav__link {
        padding: 16px;
    }


    /* ハンバーガーボタン */
    .hamburger-button {
        position: relative;
        display: inline-grid;
        place-items: center;
        width: 44px;
        height: 44px;
        background-color: transparent;
        border: 0;
        z-index: var(--z-bamburger);
        cursor: pointer;
        padding: 50px;
        background: var(--color-theme);
        border: none;
    }

    .hamburger-button::before,
    .hamburger-button::after {
        content: "";
        position: absolute;
        display: inline-block;
        width: 32px;
        height: 2px;
        background-color: var(--color-white);
        transition: transform 0.3s ease-out, background-color 0.3s ease-out;
    }

    .hamburger-button::before {
        transform: translateY(-13px);
    }

    .hamburger-button::after {
        transform: translateY(13px);
    }

    .hamburger-button[aria-expanded=true]::before {
        transform: rotate(-45deg);
    }

    .hamburger-button[aria-expanded=true]::after {
        transform: rotate(45deg);
    }

    .hamburger-button[aria-expanded=true]>.hamburger-button-bar {
        opacity: 0;
    }

    .hamburger-button-bar {
        position: absolute;
        display: inline-block;
        width: 32px;
        height: 2px;
        background-color: var(--color-white);
        transition: opacity 0.3s ease-out;
    }

    .hamburger-button[aria-expanded=true]+.overlay {
        display: block;
    }

}

@media screen and (max-width: 480px) {
    .header {
        margin-top: 30px;
    }

    .hamburger-button {
        padding: 35px;
    }

    .hamburger-button::before {
        transform: translateY(-10px);
    }

    .hamburger-button::after {
        transform: translateY(10px);
    }
}


/* ------------------------------------
mainvisual
------------------------------------ */
.mainvisual {
    height: 120.3vh;
    position: relative;
}

.mainvisual:before {
    content: "";
    display: block;
    width: 40px;
    height: 95%;
    background: var(--color-theme);
    margin: 0 0 0 auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.mainvisual:after {
    content: "";
    display: block;
    width: 16%;
    height: 72%;
    margin: 0 0 0 auto;
    position: absolute;
    right: 0;
    top: 20%;
    z-index: -1;
    background: linear-gradient(180deg, var(--color-theme) 0%, var(--color-theme) 90%, var(--color-white) 90%, var(--color-white) 100%);
}


.mainvisual-right__wrap {
    width: 48%;
    max-width: 960px;
    margin-right: 0;
    margin-left: auto;
    margin-top: 25px;
}

.maivisual-copy__image {
    position: absolute;
    right: 21%;
    width: 42%;
    bottom: 20%;
}

.maivisual-copy__image--sp {
    display: none;
}


.mainvisual-left__wrap {
    max-width: 900px;
    position: absolute;
    top: 15%;
}

.mainvisual-left__wrap:after {
    content: "";
    position: absolute;
    top: -14%;
    left: 38%;
    display: block;
    background-color: var(--color-base);
    width: 700px;
    height: 500px;
    z-index: -2;
}

.mainvisual-left__image--sp {
    display: none;
}



@media screen and (max-width:1040px) {

    .mainvisual:after {
        height: 45%;
        width: 22%;
    }

    .mainvisual-left__wrap {
        bottom: 10%;
        width: 64%;
    }

    .mainvisual-left__image {
        width: 100%;
    }

}

@media screen and (max-width:1040px) {
    .mainvisual:before {
        height: 86%;
    }

    .mainvisual-right__wrap {
        width: 77%;
        margin-top: 37px;
        overflow: hidden;
    }

    .mainvisual-right__image {
        transform: scale(1.3);
        -webkit-transform-origin: 34% 25%;
    }

    .mainvisual-left__wrap {
        top: 26%;
    }

    .mainvisual-left__wrap:after {
        content: "";
        position: absolute;
        top: -30%;
        left: 0%;
        display: block;
        background-color: var(--color-base);
        width: 100%;
        height: 270px;
        z-index: -2;
    }


    .mainvisual-left__image--pc {
        display: none;
    }

    .mainvisual-left__image--sp {
        display: block;
    }

    .maivisual-copy__image--pc {
        display: none;
    }

    .maivisual-copy__image--sp {
        display: block;
    }

    .maivisual-copy__image {
        display: block;
        position: absolute;
        right: 6%;
    }
}

@media screen and (max-width:768px) {
    .mainvisual:before {
        width: 5%;
    }
}

@media screen and (max-width:480px) {
    .header {
        margin-top: 22px;
    }

    .mainvisual {
        height: 100vh;
    }

    .mainvisual-left__wrap {
        top: 35%;
    }

    .mainvisual-left__wrap:after {
        height: 50%;
    }

    .mainvisual-right__wrap {
        margin-top: 20px;
    }

    .hamburger-button {
        padding: 30px;
    }
}

/* ------------------------------------
About
------------------------------------ */
.about {
    position: relative;
    padding: 160px 0 140px;
    background: var(--color-base);
}

.about .section-title__wrap {
    margin-left: 13%;
    line-height: 1.2;
}

.about__contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about__description {
    width: 28%;
    margin-top: 90px;
    margin-left: 13%;
}

.about__linebreak+.about__linebreak {
    margin-top: 45px;
}

.about__image {
    width: 52%;
    margin-top: -11%;
}

@media screen and (max-width:1720px) {
    .about .section-title__wrap {
        margin-left: 0;
    }

    .about__description {
        margin-left: 0;
        width: 42%;
    }
}

@media screen and (max-width:1280px) {
    .about .section-title {
        margin-left: 0;
    }

    .about__description {
        margin-left: 0;
        width: 42%;
    }

    .about {
        padding: 140px 0 140px;
    }

    .about__image {
        margin-top: 0;
    }
}

@media screen and (max-width:768px) {
    .about {
        padding: 90px 0 80px;
    }

    .about__image {
        width: 100%;
        margin-top: 56px;
        position: relative;
        right: -5%;
    }

    .about__description {
        width: 100%;
        margin-top: 60px;
    }
}



/* ------------------------------------
effect
------------------------------------ */
.effect {
    background-color: var(--color-theme);
    background-image: url(../images/bg_effect.png);
    background-size: contain;
    color: var(--color-white);
    padding: 170px 0 205px;
}

.effect .section-title__wrap {
    color: var(--color-white);
}

.effect__description--heading {
    margin-top: 74px;
}

.effect__linebreak+.effect__linebreak {
    margin-top: 34px;
}

.effect__linebreak:last-child {
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.effect__list {
    margin-top: 164px;
}

.effect__item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.effect__item+.effect__item {
    margin-top: 192px;
}

.effect__textwrap {
    width: 48%;
}

.effect__title {
    font-size: clamp(4rem, 3.3333rem + 0.8681vw, 5rem);
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
}

.effect__title:before {
    font-family: var(--font-family-antonio);
    font-size: 10rem;
    font-style: italic;
    margin-right: 20px;
    font-weight: 400;
}

.effect__item:nth-child(1) .effect__title:before {
    content: "01";
}

.effect__item:nth-child(2) .effect__title:before {
    content: "02";
}

.effect__item:nth-child(3) .effect__title:before {
    content: "03";
}

.effect__description {
    margin-top: 52px;
    font-size: 2rem;
}

.effect__image {
    width: 48%;
}

.effect-detail__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 100px;
}

.effect-detail__item {
    width: 32%;
    display: flex;
    flex-direction: column;
    background-color: var(--color-sub-theme);
}

.effect-detail__title {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 7% 3%;
    font-weight: bold;
}

.effect-detail__linebreak {
    display: inline-block;
}

.effect-detail__description {
    padding: 6%;
    background-color: var(--color-white);
    color: var(--color-font);
    flex: 1;
}

@media screen and (max-width:768px) {
    .effect {
        padding: 90px 0 45px;
    }

    .effect__list {
        margin-top: 55px;
    }

    .effect__item+.effect__item {
        margin-top: 96px;
    }


    .effect__textwrap {
        width: 100%;
        order: 2;
        margin-top: -125px;
    }

    .effect__title {
        width: fit-content;
        background: var(--color-rgb-theme);
        position: relative;
        padding: 10px 30px 10px 10px;
        background: linear-gradient(180deg, #00000000 0%, #00000000 40%, var(--color-theme) 40%, var(--color-theme) 100%);
        margin-left: -1px;
        font-size: clamp(2.4rem, 0.9366rem + 3.9024vw, 4rem);
        margin-top: 10px;
        z-index: 100;
    }

    .effect__description {
        margin-top: 42px;
        font-size: clamp(1.6rem, 0.8683rem + 1.9512vw, 2.4rem);
    }

    .effect__description--heading {
        margin-top: 55px;
    }



    .effect__image {
        width: 100%;
        order: 1;
        position: relative;
    }

    .effect-detail__list {
        width: 100%;
        order: 3;
        margin-top: 52px;
    }


    .effect-detail__item {
        width: 100%;
        flex-direction: row;
    }

    .effect-detail__item+.effect-detail__item {
        margin-top: 20px;
    }

    .effect-detail__title {
        width: 30%;
        padding: 4% 2%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: clamp(1.6rem, 0.8683rem + 1.9512vw, 2.4rem);
    }

    .effect-detail__linebreak {
        display: block;
    }

    .effect-detail__description {
        width: 70%;
        padding: 4%;
        font-size: clamp(1.8rem, 1.0683rem + 1.9512vw, 2.6rem);
    }
}

/* ------------------------------------
evidence
------------------------------------ */
.evidence {
    background: var(--color-base);
    padding: 145px 0 140px;
}

.underlined-title {
    font-size: 7rem;
    text-align: center;
    font-family: var(--font-family-prompt);
    font-weight: bold;
    line-height: 1;
}

.underlined-title__capital {
    color: var(--color-theme);
}

.underlined-title:after {
    content: "";
    display: block;
    background-color: var(--color-black);
    width: 60px;
    height: 3px;
    margin-inline: auto;
    margin-top: 20px;
}

.evidence__description {
    text-align: center;
    margin-top: 54px;
}

.evidence__linebreak {
    display: block;
}

/* evidence slide */
.evidence-slide__wrap {
    margin-top: 95px;
    background-color: var(--color-white);
    width: 86%;
    margin-inline: auto;
}

.evidence-slide__item {
    padding: 0 2%;
}

.evidence-slide__inner {
    padding: 8% 5% 6%;
}

.evidence-slide__title {
    font-size: 4rem;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-theme);
    font-weight: bold;
}

.evidence-slide__title:after {
    content: "";
    display: block;
    background-color: var(--color-theme);
    width: 60px;
    height: 2px;
    margin-inline: auto;
}

.evidence-slide__image {
    margin-top: 60px;
}

.evidence-slide__description {
    margin-top: 80px;
}


.evidence-slide__linebreak+.evidence-slide__linebreak {
    margin-top: 32px;
}


/* slick button */
.slick-prev:before,
.slick-next:before {
    content: "";
    display: block;
    width: 33px;
    height: 33px;
    border-right: 9px solid var(--color-theme);
    border-top: 9px solid var(--color-theme);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}

.slick-prev {
    transform: rotate(180deg);
    margin-right: 20px;
    left: -5%;
    z-index: 1;
    top: 50%;
}

.slick-next {
    right: -5%;
    z-index: 1;
    top: 50%;
}

.slick-dots {
    top: -50px;
    list-style: none;
}

.slick-dots li button:before {
    font-size: 50px;
}

.slick-dots li button:focus:before {
    opacity: 0.25;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
}


@media screen and (max-width:768px) {
    .evidence {
        padding: 100px 0;
    }

    .underlined-title {
        font-size: clamp(4.2rem, 1.5282rem + 7.1247vw, 7rem);
    }

    .evidence__description {
        font-size: clamp(1.8rem, 1.0683rem + 1.9512vw, 2.6rem);
        text-align: left;
    }

    .evidence__linebreak {
        display: inline;
    }

    .evidence-slide__title {
        font-size: clamp(2.6rem, 1.3195rem + 3.4146vw, 4rem);
    }

    .evidence-slide__title:after {
        margin: 10px auto 0;
    }

    .evidence-slide__image {
        margin-top: 43px;
    }

    .evidence-slide__description {
        margin-top: 60px;
        font-size: clamp(1.6rem, 0.8683rem + 1.9512vw, 2.4rem);
    }

    .slick-prev:before,
    .slick-next:before {
        width: 24px;
        height: 24px;
        border-right: 5px solid var(--color-theme);
        border-top: 5px solid var(--color-theme);
    }

    .slick-next {
        right: -23px;
    }

    .slick-prev {
        left: -23px;
    }
}

@media screen and (max-width:480px) {}


/* ------------------------------------
feature
------------------------------------ */
.feature {
    background-image: url(../images/bg_feature.jpg);
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 175px 0;
}

.feature__title {
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
}


.feature__description {
    margin-top: 110px;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .feature {
        padding: 115px 0 95px;
    }

    .feature__title {
        font-size: clamp(1.8rem, -0.6695rem + 6.5854vw, 4.5rem);
    }

    .feature__description {
        margin-top: 72px;
        font-size: clamp(1.8rem, 1.0683rem + 1.9512vw, 2.6rem);
    }

    .feature__linebreak span {
        display: block;
    }


}

/* ------------------------------------
column
------------------------------------ */
.column {
    padding: 150px 0 100px;
}

.column .section-title__wrap {
    line-height: 1;
}

.column__description {
    margin-top: 52px;
    font-size: 1.8rem;
}

.column-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 94px;
}

.column-list__item {
    width: 48%;
    padding: 85px 4%;
    background-color: var(--color-base);
    position: relative;
}

.column-list__tag {
    font-size: 2.4rem;
    line-height: 1;
    background-color: var(--color-theme);
    color: var(--color-white);
    font-family: var(--font-family-prompt);
    display: inline-block;
    padding: 15px 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.column-list__title {
    font-size: 2.6rem;
    font-weight: bold;
    border-bottom: 1px dashed;
    text-align: center;
    padding-bottom: 35px;
}

.column-list__description {
    font-size: 1.8rem;
    margin-top: 30px;
}

@media screen and (max-width:768px) {
    .column {
        padding: 100px 0 100px;
    }

    .column-list {
        margin-top: 60px;
    }

    .column__description {
        font-size: clamp(1.8rem, 1.0683rem + 1.9512vw, 2.6rem);
        margin-top: 48px;
    }

    .column-list__title {
        font-size: clamp(1.8rem, 1.0683rem + 1.9512vw, 2.6rem);
    }

    .column-list__description {
        font-size: clamp(1.6rem, 0.8683rem + 1.9512vw, 2.4rem);
    }

    .column-list__linebreak {
        display: block;
    }
}

@media screen and (max-width:480px) {
    .column-list__item {
        width: 100%;
    }

    .column-list__item+.column-list__item {
        margin-top: 20px;
    }
}

/* ------------------------------------
Q&A
------------------------------------ */
.faq {
    padding: 147px 0 152px;
    background-image: url(../images/bg_faq.jpg);
    background-size: 200%;
    background-position: top;
}

.faq .section-title__wrap {
    color: var(--color-white);
    line-height: 1;
}

.faq-list {
    margin-top: 98px;
}

.faq-list__item {
    background: var(--color-white);
    cursor: pointer;
}

.faq-list__item+.faq-list__item {
    margin-top: 40px;
}

.faq-list__titlewrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-sub-theme);
}

.faq-list__title {
    width: calc(100% - 90px);
    padding: 25px 40px;
    background-color: var(--color-white);
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 1.38;
}

.faq-list__titlewrap:after {
    content: "+";
    display: block;
    width: 82px;
    font-size: 4.8rem;
    color: var(--color-white);
    text-align: center;
    align-self: center;
}

.faq-list__titlewrap.active:after {
    content: "-";
    transition: all 0.3s ease-in-out;
}

.faq-list__description {
    margin: 0;
    padding: 40px;
    background-color: var(--color-base);
    display: none;
}

@media screen and (max-width:1040px) {
    .faq {
        background-size: 700%;
    }
}

@media screen and (max-width:768px) {
    .faq {
        padding: 100px 0 60px;
    }

    .faq-list {
        margin-top: 80px;
    }

    .faq-list__title {
        font-size: clamp(1.8rem, 1.0683rem + 1.9512vw, 2.6rem);
    }

    .faq-list__description {
        font-size: clamp(1.6rem, 0.8683rem + 1.9512vw, 2.4rem);
    }
}


/* ------------------------------------
footer
------------------------------------ */
.footer {
    background-color: var(--color-black);
    padding: 112px 0 48px;
}

.footer__logo {
    width: 450px;
    margin-inline: auto;
}

.footer__copyright {
    margin-top: 80px;
    color: var(--color-white);
    font-size: 1.2rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .footer {
        padding: 90px 0 60px;
    }

    .footer__logo {
        width: 64%;
        min-width: 120px;
    }

    .footer__copyright {
        margin-top: 60px;
    }
}


/* ------------------------------------
subvisual
------------------------------------ */
.subvisual {
    height: 300px;
    position: relative;
}

.subvisual:before {
    content: "";
    display: block;
    width: 40px;
    height: 85%;
    background: var(--color-theme);
    margin: 0 0 0 auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.subvisual:after {
    content: "";
    display: block;
    width: 50%;
    height: 72%;
    margin: 0 0 0 auto;
    position: absolute;
    right: 0;
    top: 20%;
    z-index: -1;
    background-image: url(../images/mainvisual_bg_01.jpg);
    background-size: cover;
    background-position: 30% 20%;
}


.subvisual__titlewrap {
    margin-left: 6%;
    position: absolute;
    top: 30%;
}

.subvisual__title--en {
    font-family: var(--font-family-prompt);
    font-size: 7rem;
    font-weight: bold;
}

.subvisual__title--ja {
    font-size: 2.6rem;
    font-weight: bold;
}



/* bread_crumb*/
.breadcrumb {
    text-align: left;
    margin: 0px auto;
    padding: 10px 0px;
    display: flex;
    justify-content: flex-start;
}

.breadcrumb__item {
    display: inline;
    font-size: 1.3rem;
    font-weight: 500;
}

.breadcrumb__item:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 68%;
}

.breadcrumb__item:after {
    content: ">";
    padding-left: 10px;
    margin-right: 10px;
}

.breadcrumb__item:last-child:after {
    content: "";
    padding-left: 0px;
    margin-right: 0px;
}

.breadcrumb__item a:hover {
    text-decoration: none;
}

@media screen and (max-width:768px) {
    .subvisual {
        height: 250px;
    }

    .subvisual:before {
        width: 2%;
    }

    .subvisual:after {
        background-position: left;
    }

    .subvisual__titlewrap {
        top: 35%;
    }

    .subvisual__title--en {
        font-size: clamp(3.6rem, 0.4902rem + 8.2927vw, 7rem);
    }

    .subvisual__title--ja {
        font-size: clamp(2rem, 1.4512rem + 1.4634vw, 2.6rem);
    }
}

/* ------------------------------------
policy
------------------------------------ */

.policy {
    padding: 80px 0;
}

.policy__title {
    font-weight: bold;
    font-weight: 2.6rem;
    border-bottom: 1px dashed var(--color-black);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.policy__title:before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    background-color: var(--color-theme);
    margin-right: 10px;
}

.policy-list__description+.policy-list__title {
    margin-top: 30px;
}

.privacy-policy {
    margin-top: 60px;
}

.policy-list__title {
    font-weight: bold;
}

.policy-list__description {
    margin-top: 5px;
}

.policy ol {
    margin-left: 25px;
}

.policy ol>li {
    list-style: decimal;
    padding-left: 0.8em;
    text-indent: 0em;
}

/* ------------------------------------
popup
------------------------------------ */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: .4s ease;
}


.popup.ok {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.popup__inner {
    max-width: 650px;
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup__title {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-base);
    padding: 25px 20px 20px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.popup__contents {
    padding: 25px 30px;
    font-size: 1.6rem;
    background-color: var(--color-white);
}

.popup__link {
    text-align: center;
    display: block;
    margin-top: 30px;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: bold;
}

.popup__link:hover {
    color: var(--color-theme);
    transition: all 0.2s ease-in-out;
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.popup-buttons__item {
    width: 47%;

}

.popup-buttons__item a {
    width: 100%;
    display: block;
    text-align: center;
    padding: 20px;
    border: 2px solid var(--color-theme);
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--color-theme);
}

.popup-buttons__item button {
    border: none;
    background: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    font-weight: bold;
    background-color: var(--color-theme);
    color: var(--color-white);
    border-radius: 5px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}

.popup-buttons__item a:hover {
    background-color: var(--color-base);
    transition: all 0.3s ease-in-out
}

.popup-buttons__item button:hover {
    background-color: var(--color-sub-theme);
    transition: all 0.3s ease-in-out
}