@charset "UTF-8";

:root {
    /* font family */
    --font-family-main: "Zen Kaku Gothic New", sans-serif;
    --font-family-accent: "Jost", sans-serif;
    --font-family-sub: "Noto Sans JP", sans-serif;
    /* color */
    --color-main-text: #202020;
    --color-sub-text: #ffffff;
    --color-accent-1: #E62F2B;
    --color-title-gradient: linear-gradient(45deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    /* font size */
    --h1-font-size: 3rem;
    --h1-font-size-sp: 2.3rem;
    --h1-font-size-en: 1.1rem;
    --h1-font-size-en-sp: 0.8rem;
    --h2-font-size: 2.5rem;
    --h2-font-size-sp: 1.8rem;
    --h2-font-size-en: 1.3rem;
    --h2-font-size-en-sp: 0.9rem;
    --h3-font-size: 1.8rem;
    --h3-font-size-sp: 1.4rem;
    --h3-font-size-en: 0.9rem;
    --main-text-font-size: 1rem;
    --small-text-font-size: 0.9rem;
    /* height */
    --main-text-line-height: 1.75;
    /* gradient */
    --vivid01: linear-gradient(45deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    --orange03: linear-gradient(to right, #F57504, #FBA55A);
}


/* ~~~~~~~~~~~~~~~~~~
リセットCSS
~~~~~~~~~~~~~~~~~~~~ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-main);
    font-size: 100%;
    color: var(--color-main-text);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
}
.grecaptcha-badge { visibility: hidden; }

/* ~~~~~~~~~~~~~~~~
共通クラス 
~~~~~~~~~~~~~~~~~*/
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 max(20px, 4%);
}

.font-vivid01 {
    background: linear-gradient(to right, #DA3E3B 0%, #FF7341 43%, #FBA681 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: fit-content;
}

.white {
    color: #fff !important;
}
.red {
    color: #E62F2B;
}
.orange {
    color: #FF8419;
}
.section__title {
    font-size: var(--h2-font-size);
    font-weight: bold;
    color: var(--color-main);
}

.section__title-en {
    font-size: var(--h2-font-size-en);
    background: linear-gradient(60deg, #FB3F3C 0%, #FF7745 35%, #FBA681 100%);
    background-clip: text; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent; 
    display: block;
    width: fit-content;
    font-family: var(--font-family-accent);
    font-weight: 500;
}

.section__title-en img {
    width: 67px;
    height: auto;
    object-fit: contain;
}

.section__sub-title {
    font-size: var(--h3-font-size);
    font-weight: bold;
    line-height: 1.64;
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 20px;
}

.section__sub-title--en {
    font-size: var(--h3-font-size-en);
    background: linear-gradient(88deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: fit-content;
    font-family: var(--font-family-accent);
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.section__sub-title--en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background-color: #E62F2B;
}

.common-button img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.round__arrow {
    display: block;
    width: 32px;
    height: 32px;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.sp-button {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: block;
    }

    .sp-button {
        display: block;
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
    }
}

/* ~~~~~~~~~~~~~~~~~~
ヘッダー
~~~~~~~~~~~~~~~~~~ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    height: 120px;
    background-color: #fff;
    z-index: 100;
    opacity: 0.9;
    box-shadow: 0px 1px 15px rgba(67, 67, 67, 0.05);
}

.header__inner {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    padding-inline: 0;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 12px;
    border-bottom: 1px solid rgba(241, 195, 195, 0.8);
}

.header__logo {
    width: clamp(150px, 21vw, 304px);
}

.header__contact--button {
    display: inline-block;
    background: var(--vivid01);
    color: #fff;
    padding: clamp(10px, 3vw, 12px) clamp(20px, 5vw, 30px);
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 200px;
}

.header__contact--button:hover {
    background: var(--orange03);
}

.header__list {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header__item {
    position: relative;
    padding-block: 16px;
    font-size: var(--main-text-font-size);
    width: 14.2%;
    text-align: center;
}

.header__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -7.5px;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: rgba(241, 195, 195, 0.8);
}

.header__link {
    font-weight: bold;
    font-size: var(--main-text-font-size);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__link:hover {
    color: var(--color-accent-1);
}

.header__menu {
    display: none;
}

.header__button {
    background: var(--vivid01);
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
}

.header__button span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 14px;
}

.header__button span:nth-child(1) {
    top: 18px;
}

.header__button span:nth-child(2) {
    top: 25px;
}

.header__button span:nth-child(3) {
    top: 32px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~
hero image
~~~~~~~~~~~~~~~~~~~~~ */
.hero__image {
    width: 65%;
    position: absolute;
    top: 120px;
    right: 0;
    z-index: -1;
}
.hero__image img {
    margin-left: auto;
    width: 958px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 958 / 579;
}
.hero__inner {
    padding-bottom: 120px;
}
.hero__content {
    padding-inline: 0;
    padding-block: 7vw 12vw;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 120px;
    color: #707070;
    font-family: var(--font-family-sub);
    font-size: 12px;
    font-weight: 400;
    padding-inline: 0;
}

.breadcrumb__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
}

.breadcrumb__item:not(:first-child)::before {
    content: "";
    background-image: url(../images/common_arrow_bread-crumb.svg);
    width: 5px;
    height: 7px;
    margin: 0 20px;
    background-size: contain;
    background-repeat: no-repeat;
    color: #6c757d;
}



.breadcrumb__link:hover {
    text-decoration: underline;
}



.hero__title {
    font-size: var(--h1-font-size);
    font-weight: bold;
    color: var(--color-main-text);
    line-height: 1.4;
    margin-bottom: 5vw;
    position: relative;
    z-index: 2;
}

.hero__title--en {
    font-family: var(--font-family-accent);
    font-size: var(--h1-font-size-en);
    display: block;
    margin-top: min(1.6vw, 32px);
    letter-spacing: 0;
    font-weight: 600;
}

.hero__title--vivid {
    background: linear-gradient(45deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero__desc {
    font-size: var(--main-text-font-size);
    line-height: 1.75;
    width: 48%;
    letter-spacing: 0;
}

.hero__desc-2 {
    width: 52%;
}

/* ~~~~~~~~~~~~~~~~~
ドロップダウンメニュー - PC 
~~~~~~~~~~~~~~~~~~~~~~~~*/
.header__item--has-child {
    position: relative;
}

.header__item--has-child>.header__link::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 12px;
    margin-top: -3px;
    border-right: 1px solid var(--color-main-text);
    border-bottom: 1px solid var(--color-main-text);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.header__item--has-child>.header__link::after:hover {
    border-right: 1px solid var(--color-accent-1);
    border-bottom: 1px solid var(--color-accent-1);
}

.header__item--has-child:hover>.header__link::after {
    transform: rotate(-135deg);
    border-right: 1px solid var(--color-accent-1);
    border-bottom: 1px solid var(--color-accent-1);
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.header__item--has-child:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-item {
    margin: 0;
    padding: 0;
}

.header__dropdown-link {
    position: relative;
    display: block;
    padding: 8px 15px 8px 30px;
    font-size: var(--small-text-font-size);
    font-weight: normal;
    transition: background-color 0.3s ease;
    text-align: left;
}

.header__dropdown-link::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--vivid01);
}

.header__dropdown-link::before:hover {
    background-color: var(--color-accent-2);
}

.header__dropdown-link:hover {
    background-color: #f5f5f5;
    opacity: 1;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~
SPメニュー 
~~~~~~~~~~~~~~~~~~~~~~~*/
.sp-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 200;
    transition: all 0.5s ease;
    overflow-y: auto;
}

.sp-menu.is-active {
    right: 0;
}

.sp-menu__inner {
    padding: 60px 5% 100px;
}

.sp-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.sp-menu__button {
    background: var(--vivid01);
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    top: 50%;
}

.sp-menu__button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
}

.sp-menu__button span:nth-child(1) {
    transform: translate(-50%) rotate(45deg);
}

.sp-menu__button span:nth-child(2) {
    transform: translate(-50%) rotate(-45deg);
}

.sp-menu__list {
    margin: 60px auto 0;
    width: 87%;
}

.sp-menu__list li {
    text-align: left;
}

.sp-menu__item {
    margin-bottom: 20px;
    text-align: center;
}

.sp-menu__link {
    font-size: 20px;
    color: var(--color-main-text);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 12px;
}

.sp-menu__toggle-icon {
    width: 16px;
    height: 16px;
    background-image: url('../images/common_burger_close.png');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* 開いた状態のアイコン */
.sp-menu__item--has-child.is-open .sp-menu__toggle-icon {
    background-image: url('../images/common_burger_open.png');
}

.sp-menu__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--vivid01);
}

.sp-menu__item--has-child {
    position: relative;
}

.sp-menu__item--has-child>.sp-menu__link {
    position: relative;
    padding-right: 30px;
    padding-left: 15px;
}


.sp-menu__dropdown {
    display: none;
    margin-top: 10px;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.sp-menu__dropdown-item {
    margin-bottom: 5px;
}

.sp-menu__dropdown-link {
    display: block;
    padding: 8px 15px;
    font-size: 16px;
    color: var(--color-main-text);
    font-weight: 500;
}

.sp-menu__dropdown-link:hover {
    opacity: 1;
}

.sp-menu__top-link {
    width: auto;
    max-width: 100%;
    min-height: 48px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin: 20px auto 24px;
}

.sp-menu__top-link li {
    aspect-ratio: 162 / 48;
}

.sp-menu__top-link li img {
    min-height: 48px;
    object-fit: contain;
}

.sp-menu__bottom-link li:nth-child(1),
.sp-menu__bottom-link li:nth-child(2) {
    margin-bottom: 12px;
}

.sp-menu__bottom-link li:nth-child(1),
.sp-menu__bottom-link li:nth-child(3) {
    width: 40%;
}

.sp-menu__bottom-link {
    width: 87%;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    padding-block: 24px;
    font-weight: 500;
    border-bottom: 1px solid #D6D6D6;
    font-size: var(--small-text-font-size);
}

.sp-menu__bottom-link li {
    width: 55%;
    font-weight: 500;
}

/*~~~~~~~~~~~~~~~~~
お問い合わせ 
~~~~~~~~~~~~~~~~~~~*/
.contact__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: min(3.3vw, 48px);
}

.contact {
    padding: clamp(60px, 10%, 80px) 0;
    background-color: #f7f7f7;
}

.contact__text {
    text-align: center;
    margin-bottom: clamp(30px, 5%, 40px);
    font-size: var(--main-text-font-size);
    font-weight: 500;
}

.contact__button img {
    min-height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 304px;
}

/* ~~~~~~~~~~~~~~~~~
フッター 
~~~~~~~~~~~~~~~~~*/
.footer {
    background-color: #403B3B;
    color: #fff;
    padding-block: min(6.9vw, 100px) min(6vw, 87px);
    font-size: 14px;
    margin-top: 168px;
}

.footer__container {
    display: flex;
    gap: 8%;
    padding: 0 1%;
}

/* 左側エリア */
.footer__left {
    width: 27%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo {
    height: 67px;
    width: auto;
    object-fit: contain;
}

.footer__youtube,
.footer__brand-site {
    display: inline-block;
}

.footer__youtube img {
    margin-bottom: 20px;
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer__brand-site img {
    height: 61px;
    width: auto;
    object-fit: contain;
}

.footer__right {
    width: 63.5%;
    font-size: var(--main-text-font-size);
}

.footer__menu {
    display: flex;
    margin-bottom: 30px;
    max-width: 700px;
    width: 100%;
    font-size: var(--main-text-font-size);
    letter-spacing: 0;
}

.footer__menu-column {
    margin-right: 4%;
}

.footer__menu-column01 {
    width: 13%;
}

.footer__menu-column02 {
    width: 34%;
}

.footer__menu-column03 {
    width: 22%;
}

.footer__menu-column04 {
    width: 20%;
    margin-right: 0;
}

.footer__menu-title {
    margin-bottom:20px;
    position: relative;
    padding-left: 12px;
    padding-bottom: 12px;
    font-weight: 500;
    border-bottom: 1px solid #6A6363;
    display: inline-block;
    width: 100%;
}
.footer__menu-title:hover {
    color: #E62F2B;
    opacity: 1;
}
.footer__menu-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--vivid01);
}

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

.footer__menu-item {
    margin-bottom: 8px;
}

.footer__menu-link {
    color: #fff;
    text-decoration: none;
}

.footer__menu-link:hover {
    color: #E62F2B;
    opacity: 1;
}

.footer__bottom-menu {
    margin-bottom: 20px;
    border-top: 1px solid #6A6363;
}

.footer__bottom-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.footer__bottom-list01 {
    padding-block: min(1.6vw, 24px);
    border-bottom: 1px solid #6A6363;
}

.footer__bottom02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: min(1.6vw, 24px);
}

.footer__bottom-link {
    color: #fff;
    text-decoration: none;
}

.footer__bottom-link:hover {
    color: #E62F2B;
}

.footer__copyright {
    text-align: right;
    font-size: var(--small-text-font-size);
    color: #7B7B7B;
    font-weight: 500;
}

/* ~~~~~~~~~~~~~~~
レスポンシブ
~~~~~~~~~~~~~~~~~ */
@media screen and (max-width: 1100px) {
    .hero__content, 
    .header__inner, 
    .breadcrumb {
        padding-inline: 20px;
    }
}

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

    /* ~~~~~~~~~~~~~~~~~
    共通
    ~~~~~~~~~~~~~~~~~~~ */
    .container {
        max-width: 100%;
        padding: 0 max(20px, 5%);
    }

    .section__title {
        font-size: var(--h2-font-size-sp);
    }

    .section__title-en {
        font-size: var(--h2-font-size-en-sp);
    }

    .section__sub-title {
        font-size: var(--h3-font-size-sp);
        gap: 12px;
    }

    .section__sub-title--en {
        font-size: var(--h3-font-size-en);
    }

    .common-button img {
        width: 100%;
        height: auto;
    }
    .button__moreinfo {
        width: 100%;
        padding-inline: 20px;
        margin: 40px auto 0;
        max-width: 360px;
    }

    .sp-button {
        width: 100%;
        max-width: 360px;
        display: block;
        margin-inline: auto;
    }

    /*  ~~~~~~~~~~~~~~~~~~
    ヘッダー
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    .header {
        height: 80px;
    }

    .header__logo {
        max-width: 250px;
        width: 67%;
        padding-block: 22px 20px;
    }

    .header__menu {
        display: block;
    }

    .header__top {
        border-bottom: none;
        padding-block: 0;
    }

    .header__menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero__inner {
        padding-bottom: 0;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~~
hero
~~~~~~~~~~~~~~~~~~~~ */

    .breadcrumb__item:not(:first-child)::before {
        margin: 0px 12px;
    }
    .breadcrumb {
        position: absolute;
        top: 90px;
        margin-top: 0;
    }
    .hero__title {
        font-size: var(--h1-font-size-sp);
    }

    .hero__title--en {
        font-weight: 500;
        font-size: var(--h1-font-size-en-sp);
    }

    .hero__image {
        width: 100%;
        position: static;
        margin-top: 80px;
    }
    .hero__image img {
        margin-left: auto;
        width: 335px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 335 / 240;
    }

    .hero__content {
        padding-top: 0;
    }

    .hero__desc {
        width: 100%;
        margin-bottom: 21%;
    }

    /* ~~~~~~~~~~~~~~~~~
    コンタクト
    ~~~~~~~~~~~~~~~~~~*/
    .contact {
        padding-block: 100px;
    }

    .contact__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact__button {
        margin-inline: auto;
        width: 100%;
        max-width: 100%;
    }

    .contact__button img {
        max-width: 100%;
    }

    .contact__text {
        text-align: left;
    }



    /* ~~~~~~~~~~~~~~~
    footer
    ~~~~~~~~~~~~~~~~~~~~ */

    .footer__container {
        flex-direction: column;
        padding: 0 20px;
        font-size: 0.9rem;
    }


    .footer__left {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer__right {
        width: 100%;
    }

    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10%;
        font-size: var(--small-text-font-size);
        margin-bottom: 20px;
    }

    .footer__menu-column {
        width: 50%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer__menu-column01,
    .footer__menu-column03 {
        width: 40%;
    }

    .footer__menu-column02,
    .footer__menu-column04 {
        width: 50%;
    }

    .footer__menu-title {
        margin-bottom: 10px;
    }

    .footer__menu-item {
        margin-bottom: 5px;
    }

    .footer__bottom-menu {
        font-size: var(--small-text-font-size);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding-block: 28px;
        border-bottom: 1px solid #6A6363;
    }

    .footer__bottom-item {
        margin-bottom: 5px;
    }

    .footer__bottom02 {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__bottom-list01 {
        border-bottom: none;
        flex-direction: column;
    }

    .footer__bottom-list02 {
        margin-bottom: 15px;
        flex-direction: column;
    }

    .footer__copyright {
        text-align: center;
        line-height: 1;
    }

    .footer__youtube,
    .footer__brand-site {
        display: flex;
        justify-content: center;
    }

    .footer__logo {
        margin: 0 auto 20px;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .footer__logo img {
        height: 60px;
        width: auto;
        margin-inline: auto;
    }

    .footer__youtube img {
        height: 60px;
        width: auto;
        object-fit: contain;
    }

    .footer__brand-site {
        margin-bottom: 40px;
    }

    .footer__brand-site img {
        height: 67px;
        width: auto;
        object-fit: cover;
    }
}