@charset "UTF-8";
@import "root.css";

/* ===============================
    共通スタイル
=============================== */
html {
    font-size: 100%;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: var(--regular);
    font-size: clamp(var(--rem13),var(--vw14),var(--rem16));
    line-height: 1.8;
    letter-spacing: 0.1rem;
    color: var(--color-black);
    position: relative;
}

section {
    padding: 100px 0;
}

a {
    display: block;
    text-decoration: none;
    width: fit-content;
    color: inherit;
}

ul{
    padding-left: 0;
    margin: 0;
}

li{
    list-style: none;
}

.inner-1720 {
    width: min(1720px, 90%);
    margin: 0 auto;
}

.inner-1500 {
    width: min(1500px, 90%);
    margin: 0 auto;
}

.inner-1200 {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.sp_ver {
    display: none;
}

.font-mincho {
    font-family: "Shippori Mincho", serif;
}

.font-english {
    font-family: "Montserrat", sans-serif;
}

.font-number {
    font-family: "Allura", cursive;
}

/* セクションタイトル */
.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.section-title::before {
    content: "";
    display: block;
    width: 5px;
    height: 70px;
    background-color: var(--color-base_beige);
    margin-right: 20px;
}

.section-title .section-title__wrapper h2.section-title__en {
    font-size: clamp(var(--rem31),var(--vw32),var(--rem48));
    color: var(--color-base_beige);
    font-weight: var(--semi-bold);
    line-height: 1;
    margin-bottom: 3px;

    /* TOPページ内部リンク用 */
    padding-top: 90px;
    margin-top: -90px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 30px;
    }
}


/* ===============================
    ボタン
=============================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-accent_red);
    font-size: clamp(var(--rem13),var(--vw14),var(--rem16));
    border-radius: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-accent_red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: 1;
}

.btn .btn__text {
    position: relative;
    z-index: 10;
    padding-right: 1.2rem;
}

.btn .btn__text::before,
.btn .btn__text::after {
    content: "";
    position: absolute;
    right: 0.25em;
    top: 50%;
    width: 0.5em;
    height: 0.12em;
    background: currentColor;
    transform-origin: left center;
    border-radius: 0.06em;
}

.btn .btn__text::before {
    top: calc(50% - 0.3em);
    transform: rotate(45deg);
}

.btn .btn__text::after {
    top: calc(50% + 0.3em);
    transform: rotate(-45deg);
}

.btn:hover {
    color: var(--color-white);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 767px) {
    body {
        letter-spacing: 0.05rem;
    }

    section {
        padding: 70px 0;
    }

    .pc_ver {
        display: none;
    }

    .sp_ver {
        display: block;
    }
}


/* ===============================
    ctaボタン
=============================== */
.cta .cta__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta .cta__item .cta__item__means {
    position: relative;
    display: inline-block;
    color: var(--color-white);
    font-size: clamp(var(--rem15),var(--vw16),var(--rem18));
    padding: 0 5px 5px;
}

.cta__item__means::before,
.cta__item__means::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1em;
    height: 2px;
    background-color: currentColor;
}

.cta__item__means::before {
    left: 0;
    transform: translate(-100%, -50%) rotate(45deg);
}

.cta__item__means::after {
    right: 0;
    transform: translate(100%, -50%) rotate(-45deg);
}

.cta .cta__item .btn.cta__item__link {
    border: 1px solid var(--color-white);
    width: 375px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta .cta__item .btn.cta__item__link::before {
    background: var(--color-accent_navy);
}

.cta .cta__item .btn.cta__item__link .btn__text::before,
.cta .cta__item .btn.cta__item__link .btn__text::after {
    content: none;
}

.cta .cta__item .btn.cta__item__linkn:hover {
    color: var(--color-accent_navy);
}

.cta .cta__item .cta__item__link .cta__item__link__flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta .cta__item.tell .cta__item__link .cta__item__link__flexbox {
    margin-bottom: 5px;
}

.cta .cta__item .btn.cta__item__link .cta__item__link__icon {
    transition: color 0.3s ease;
    margin-right: 10px;
    max-height: 30px;
    max-width: 30px;
}

.cta .cta__item .btn.cta__item__link:hover .cta__item__link__icon {
    position: relative;
    z-index: 11;
}

.cta .cta__item.tell .btn.cta__item__link:hover .cta__item__link__icon {
    content: url("/wp-content/themes/seimu/assets/image/common/icon_tell_hover.svg");
}

.cta .cta__item.mail .btn.cta__item__link:hover .cta__item__link__icon {
    content: url("/wp-content/themes/seimu/assets/image/common/icon_mail_hover.svg");
}

.cta .cta__item .cta__item__link .btn__text {
    padding-right: 0;
    line-height: 1.4;
}

.cta .cta__item .cta__item__link .cta__item__link__flexbox .cta__item__link__text {
    font-size: var(--rem24);
    font-weight: var(--medium);
}

.cta .cta__item .cta__item__link .cta__item__link__supplement {
    font-size: clamp(var(--rem9),var(--vw10),var(--rem12));
}

@media (max-width: 767px) {
    .cta .cta__item {
        margin-bottom: 25px;
    }

    .cta .cta__item:last-child {
        margin-bottom: 0;
    }
}


/* ===============================
    header
=============================== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 0;
}

header .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-headerbg_white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

header .header__container .header__logobox {
    margin-left: clamp(25px, 5%, 100px);
    width: clamp(120px, 18vw , 180px);
}

header .header__container .header__nav__wrapper {
    display: flex;
    gap: min(30px, 1.6vw);
    height: 90px;
}

header .header__container .header__nav__wrapper .header__nav {
    padding: 30px 0;
}

header .header__container .header__nav__wrapper .header__nav .header__nav__list {
    display: flex;
    align-items: center;
    gap: min(30px, 1.6vw);
    justify-content: center;
}

header .header__container .header__nav__wrapper .header__nav__item .header__nav__service {
    display: flex;
    align-items: center;
    font-weight: var(--semi-bold);
    gap: 2px;
}

header .header__container .header__nav__wrapper .header__nav__contact {
    background-color: var(--color-base_beige);
    color: var(--color-white);
    font-size: clamp(var(--rem9),var(--vw10),var(--rem12));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100%;
}

header .header__container .header__nav__wrapper .header__nav__contact .header__nav__icon {
    width: 29px;
}

@media (max-width: 1200px) {
    /* ハンバーガーメニューボタン */
    header .header__container .header__nav__wrapper .pc_ver {
        display: none;
    }

    header .header__container .header__nav__wrapper .sp_ver {
        display: block;
    }

    header .header__container .header__nav__wrapper .header__nav__contact {
        margin-right: 50px;
        width: 80px;
    }

    header .header__slide-menu {
        position: fixed;
        top: 90px;
        right: min(-100%, -375px);
        width: min(100%, 375px);
        height: calc(100vh - 90px);
        background-color: var(--color-base_beige);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        color: var(--color-white);
        padding: 60px 30px 70px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    header .header__slide-menu.active {
        right: 0;
    }

    header .hamburger-menu {
        position: fixed;
        top: 35px;
        right: 42px;
        width: 50px;
        height: 23px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        z-index: 1001;
    }

    header .hamburger-menu .hamburger-line {
        width: 100%;
        height: 2px;
        background-color: var(--color-black);
        transition: all 0.3s ease-in-out;
    }
    
    header .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    header .hamburger-menu.active .hamburger-line:nth-child(2) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    header .hamburger-menu .hamburger-line {
        height: 1px;
    }

    header .header__nav__item .header__nav__item__link {
        font-size: var(--rem18);
        margin-bottom: 35px;
    }

    header .header__container .header__nav__wrapper .header__nav__item .header__nav__service {
        font-weight: var(--regular);
    }

    header .header__nav__item .header__nav__item__link .header__nav__icon {
        display: none;
    }

    header .header__hamburger-menu .cta {
        border-top: 1px solid var(--color-white);
        padding-top: 30px;
    }

    header .header__hamburger-menu .cta .cta__item {
        margin-bottom: 20px;
    }

    header .header__hamburger-menu .cta .cta__item:last-child {
        margin-bottom: 0;
    }

    header .header__hamburger-menu .cta .cta__item .btn.cta__item__link {
        width: 100%;
    }

    header .header__hamburger-menu .cta .cta__item .cta__item__link .cta__item__link__flexbox .cta__item__link__text,
    header .header__hamburger-menu .cta .cta__item .cta__item__link .cta__item__link__supplement {
        color: var(--color-black);
    }

    header .header__hamburger-menu .cta .cta__item .cta__item__link:hover .cta__item__link__flexbox .cta__item__link__text,
    header .header__hamburger-menu .cta .cta__item .cta__item__link:hover .cta__item__link__supplement {
        color: var(--color-white);
    }

    .header--hidden {
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .header--visible {
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
}

@media (max-width: 767px) {
    header .header__container .header__nav__wrapper {
        height: 65px;
    }

    header .hamburger-menu {
        width: 30px;
        top: 18px;
        right: 20px;
        gap: 10px;
    }

    header .header__slide-menu { 
        top: 65px;
        height: calc(100vh - 65px);
    }

    header .header__slide-menu .header__menu-list {
        margin-bottom: 50px;
    }

    header .header__slide-menu .header__info {
        margin-bottom: 50px;
    }

    header .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    header .hamburger-menu.active .hamburger-line:nth-child(2) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

@media (max-width: 480px) {
    header .header__slide-menu {
        width: 100%;
    }
}


/* ===============================
    footer
=============================== */
/* cta */
footer .cta {
    background-color: var(--color-accent_navy);
    padding: 50px 0;
}

footer .cta .cta__wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
}

/* container */
footer .footer__container .footer__wrapper {
    padding: 50px 0 30px;
}

footer .footer__container .footer__wrapper .footer__infomation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

footer .footer__container .footer__wrapper .footer__infomation .footer__logobox {
    width: clamp(200px, 25vw ,300px);
}

footer .footer__container .footer__wrapper .footer__infomation .footer__information__text {
    line-height: 1.4;
}

footer .footer__container .footer__wrapper .footer__infomation .footer__information__text .footer__information__text-b {
    font-size: clamp(var(--rem15),var(--vw16),var(--rem18));
    font-weight: var(--semi-bold);
}

footer .footer__container .footer__nav .footer__nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

footer .footer__container .footer__nav .footer__nav__list .footer__nav__item .footer__nav__service {
    display: flex;
    align-items: center;
    font-weight: var(--semi-bold);
    gap: 2px;
}

footer .footer__container .footer__copyright {
    text-align: center;
    padding: 5px;
    font-size: clamp(var(--rem9),var(--vw10),var(--rem12));
}

@media (max-width: 1200px) {
    footer .cta .cta__wrapper .cta__item .btn.cta__item__link {
        width: 280px;
        height: 80px;
    }

    footer .cta .cta__wrapper .cta__item .cta__item__link .cta__item__link__flexbox .cta__item__link__text {
        font-size: clamp(var(--rem17),var(--vw18),var(--rem20));
    }

    footer .cta .cta__wrapper .cta__item .cta__item__link .cta__item__link__supplement .sp_ver {
        display: block;
    }
}

@media (max-width: 767px) {
    /* cta */
    footer .cta .cta__wrapper {
        display: block;
    }
}

@media (max-width: 480px) {
    /* container */
    footer .footer__container .footer__nav .footer__nav__list {
        display: block;
        width: 70%;
        margin: 0 auto;
    }

    footer .footer__container .footer__nav .footer__nav__list .footer__nav__item {
        margin-bottom: 20px;
    }

    footer .footer__container .footer__nav .footer__nav__list .footer__nav__item:last-child {
        margin-bottom: 0;
    }
}


/* ===============================
    下層ページ
=============================== */
/* 下層ヘッダー */
section#sub-hero {
    background-color: var(--color-bg_ivory);
    padding: 180px 0 40px;
    margin-bottom: 20px;
}

#sub-hero .sub-hero-title .sub-hero-title__wrapper .sub-hero-title__ja {
    margin-bottom: 3px;
}

#sub-hero .sub-hero-title .sub-hero-title__wrapper .sub-hero-title__en {
    font-size: clamp(var(--rem31),var(--vw32),var(--rem48));
    line-height: 1;
}

@media (max-width: 767px) {
    section#sub-hero {
        padding: 120px 0 40px;
    }
}


/* パンくず */
.breadcrumb .breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb .breadcrumb__list .breadcrumb__list-item.location {
    color: var(--color-base_beige);
}

.breadcrumb .breadcrumb__list .dli-chevron-round-right {
    display: inline-block;
    vertical-align: middle;
    color: var(--color-black);
    line-height: 1;
    position: relative;
    width: 10px;
    height: 10px;
    transform: translateX(-25%) rotate(45deg);
}

.breadcrumb .breadcrumb__list .dli-chevron-round-right::before,
.breadcrumb .breadcrumb__list .dli-chevron-round-right::after {
    content: '';
    position: absolute;
    background: var(--color-black);
}

.breadcrumb .breadcrumb__list .dli-chevron-round-right::before {
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}

.breadcrumb .breadcrumb__list .dli-chevron-round-right::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
}