@charset "utf-8";

:root {
    /* 色 */
    --white: #fff;
    --text: #000;
    --text-gray: #E6E6E6;
    --gray-dark: #F0F0F0;
    --gold: #BC942F;
    --blue: #3B5575;
    --blue-light: #F0F4F8;

    /* フォント */
    --qwitcher: "Qwitcher Grypen", cursive;
    --serif: "Noto Serif JP", serif;
    --playfair: "Playfair", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;

    -webkit-font-smoothing: antialiased;
    /* Chrome, Safari など WebKit 系ブラウザ向け */
    -moz-osx-font-smoothing: grayscale;
    /* Firefox など Gecko 系ブラウザ向け（macOSのみ） */
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    color: #333333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


/* font
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Noto Serif JP", serif;
    font-family: "Cormorant Infant", serif;
    font-family: "Cormorant", serif;

    上記以外のフォントはSVG書き出し
*/



/* -----------font-----------*/
.ff_en {
    font-family: "Cormorant Infant", serif;
}

img {
    width: 100%;
    height: auto;
}

.sp {
    display: block;

}

.pc {
    display: none;
}

.lt_card {
    display: none;
}

@media (max-width: 630px) {
    .lt_card {
        display: block;
    }
}

@media (min-width: 960px) {
    .lt_card {
        display: block;
    }
}

p {
    font-size: 14px;
    line-height: 1.5;
}

video {
    width: 100%;
}

@media (min-width: 768px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    p {
        font-size: 16px;
    }
}

/* -----------共通-----------*/
.inner {
    width: 90%;
    max-width: 1180px;
    margin-inline: auto;
}

.btn_contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    color: var(--white);
    width: 100%;
    max-height: 103px;
    max-width: 310px;
    padding: 28px 0;
    border: 1px solid;
    transition: all 0.3s ease;
}

.btn_contact>.text {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1;
}

.btn_contact>.text span {
    display: block;
    font-size: 13px;
    margin-top: 8px;
}

.btn_contact .arrow {
    display: flex;
}

.btn_contact .arrow::after {
    content: '';
    width: 40px;
    height: 5px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
}

.btn_contact:hover {
    background-color: var(--white);
    color: var(--blue);
}


/* more */

.btn_more {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 40px;
    gap: 10px;
    max-width: 175px;
    height: 35px;
    transition: all 0.3s ease;
}

.btn_more .arrow {
    display: flex;
}

.btn_more .arrow::after {
    content: '';
    width: 20px;
    height: 5px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
}

.btn_more:hover {
    background-color: var(--text);
    color: var(--white);
}

@media (min-width: 768px) {
    .btn_more {
        font-size: 18px;
        width: 100%;
        max-width: 288px;
        height: 58px;
    }

    .btn_more .arrow::after {
        width: 30px;
        height: 7px;
    }
}


.title_border {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.title_border::before, .title_border::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
}

.title_border::before {
    width: 200px;
    background-color: var(--text-gray);
}

.title_border::after {
    width: 50px;
    background-color: var(--gold);
}

@media (min-width: 768px) {
    .title_border {
        font-size: 40px;
        margin-bottom: 96px;
        padding-bottom: 30px;
    }

    .title_border::before {
        width: 600px;
    }

    .title_border::after {
        width: 100px;
    }
}

/* -----------SP header-----------*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 20px;
}

.header_logo {
    max-width: 60px;
    position: relative;
    /* z-index: 10; */
}

.navwrapper.sp {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    transform: translateX(120%);
    transition: transform 0.3s linear;
    background-color: var(--blue);
    z-index: 8;
}

.navwrapper.sp .header_logo {
    width: 60px;
    margin: 20px;
}

.nav.sp {
    /* width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: scroll;
    transform: translateX(120%);
    transition: transform 0.3s linear;
    background-color: var(--blue);
    z-index: 8; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav_list {
    width: fit-content;
    margin-inline: auto;
    color: var(--white);
    margin-bottom: 25px;
}

.nav_list>li>a {
    text-transform: uppercase;
    line-height: 1;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.nav_list>li:not(.has_sub) {
    margin-bottom: 26px;
}

.sub_nav {
    margin-top: 5px;
    margin-bottom: 26px;
}

.sub_nav>li:not(:last-child) {
    margin-bottom: 4px;
}

.sub_nav>li a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--serif);
}

.sub_nav>li a::before {
    content: '-';
    font-size: 14px;

}

.hamburger {
    display: inline-block;
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;

}

.hamburger .hamburger_inner {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.hamburger .hamburger_inner span {
    display: inline-block;
    position: relative;
    width: 25px;
    height: .7px;
    background-color: var(--text);
    transition: all 0.4s;
}

.hamburger .hamburger_inner span:nth-child(2) {
    width: 20px;
}

.hamburger .hamburger_inner span:nth-child(3) {
    width: 15px;
}

.active .hamburger span:nth-child(1) {
    opacity: 0;
}

.active .hamburger span:nth-child(2) {
    width: 25px;
}

.active .hamburger span:nth-child(3) {
    opacity: 0;
}

.active .navwrapper.sp {
    transform: translateX(0%);
}

.copyright {
    position: absolute;
    writing-mode: vertical-lr;
    color: var(--white);
    font-family: var(--serif);
    font-size: 10px;
    white-space: nowrap;
    right: 10px;
    top: 20vh;
}


/* パンクズ */
.breadcrumbs {
    position: absolute;
    top: 130px;
    right: -30px;
    color: var(--white);
    font-family: var(--serif);
    display: flex;
    gap: 8px;
    height: 10px;
    flex-wrap: nowrap;
    align-items: center;
    transform: rotate(90deg);
}

.breadcrumbs>span {
    white-space: nowrap;
    font-size: 8px;
    line-height: 1;
}

.breadcrumbs>span:first-child::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 1px;
    background-color: var(--white);
    margin-left: 8px;
    margin-bottom: 2px;
}

.breadcrumbs_list {
    position: absolute;
    top: 120px;
    right: -20px;
    color: var(--white);
    font-family: var(--serif);
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
    transform: rotate(90deg);
}

.breadcrumbs_list>li {
    white-space: nowrap;
    font-size: 8px;
    line-height: 1;
}

.breadcrumbs_list>li:first-child::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 1px;
    background-color: var(--white);
    margin-left: 8px;
    margin-bottom: 2px;
}

@media screen and (min-width: 768px) {
    .header {
        padding: 50px 50px 0 50px;
    }

    .home .header {
        height: 100vh;
    }

    .home .nav.pc {
        transform: translateX(0%);
        overflow-y: auto;
        padding: 6rem 0;
        background-color: var(--white);
        position: absolute;
        left: 0;
        bottom: 0;
        width: 70px;
    }

    .home .header .nav li {
        writing-mode: vertical-rl;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .home .nav.pc .nav_list>li:not(.has_sub) {
        margin-bottom: 30px;
    }

    .home .nav.pc .nav_list li:nth-child(3) {
        margin-bottom: 20px;
    }

    .home .nav.pc .nav_list li:last-child {
        padding-top: 20px;
        border-top: .5px solid #000;
        margin-bottom: 0;
    }

    .hamburger {
        display: none;
    }



    .nav_list {
        color: var(--text);
        font-family: var(--serif);
    }

    .copyright {
        top: 60vh;
    }

    /* パンクズ */
    .breadcrumbs {
        top: 250px;
        right: -60px;
        gap: 20px;
        height: 10px;
    }

    .service .breadcrumbs {
        right: -75px;
    }

    .breadcrumbs>span {
        font-size: 14px;
    }

    .breadcrumbs>span:first-child::after {
        margin-left: 20px;
        margin-bottom: 2px;
    }

    /* パンクズ */
    .breadcrumbs_list {
        top: 250px;
        right: -40px;
        gap: 20px;
        height: 10px;
    }

    .breadcrumbs_list>li {
        font-size: 14px;
    }

    .breadcrumbs_list>li:first-child::after {
        margin-left: 20px;
        margin-bottom: 2px;
    }
}



/* -----------footer-----------*/

.footer {
    background-color: var(--blue);
    position: relative;
}

.footer_inner {
    width: 90%;
    max-width: 942px;
    margin-inline: auto;
    padding-top: 50px;
    padding-bottom: 140px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;

}

.footer .btn_contact {
    margin-bottom: 70px;
}

.footer_logoabout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer_logo {
    max-width: 180px;
}

.footer_bottom {
    width: 100%;
}

.footer_add {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    font-family: var(--serif);
    margin-bottom: 50px;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.footer_add p:last-of-type {
    font-size: 13px;
    text-decoration: none;
    color: inherit;
}

.footer_nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 4px;
    /* column-gap: 100px; */
    width: 100%;
    /* max-width: 370px; */
}

.footer_nav .nav_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* width: 100%; */
    flex-wrap: wrap;
    height: 200px;
    gap: 20px 40px;
    margin-bottom: 0;
    color: var(--white);
}

.footer_nav .nav_list>li>a {
    font-size: 14px;
}

.footer .sub_nav {
    font-size: 11px;
    margin-bottom: 0;
}

.footer .nav_list>li:not(.has_sub) {
    margin-bottom: 0px;
}


@media screen and (min-width: 768px) {
    .footer .btn_contact {
        max-width: 700px;
        height: 214px;
        max-height: 100%;
        padding-right: 100px;
        padding-left: 100px;
        justify-content: space-between;
    }

    .footer .btn_contact>.text {
        font-size: 48px;
        line-height: 1;
    }

    .footer .btn_contact>.text span {
        font-size: 16px;
    }

    .footer .btn_contact .arrow::after {
        width: 60px;
        height: 8px;
    }

    .footer_logoabout {
        align-items: flex-start;
        gap: 70px;
    }

    .footer_bottom {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .footer_logo {
        max-width: 310px;
    }

    .footer_add p:last-of-type {
        font-size: 14px;
    }


    .footer_nav {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        column-gap: 50px;
        width: 40%;
        max-width: 370px;
    }

    .footer_nav .nav_list {
        flex-wrap: nowrap;
        position: static !important;
    }

    .footer_nav .nav_list>li {
        white-space: nowrap;
    }

    .footer_nav .nav_list>li>a {
        font-size: 16px;
    }

    .footer .sub_nav {
        font-size: 12px;
    }

    .footer_nav .nav_list {
        height: 210px;
        row-gap: 30px;
    }

    .footer_inner {
        padding-top: 100px;
        padding-bottom: 250px;
    }
}


.pageTop {
    position: absolute;
    bottom: 70px;
    right: 30px;
    transition: 0.5s;
    z-index: 8;
}

.pageTop_link {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--text-gray);
    transition: all .3s;
}

.pageTop_link:hover {
    opacity: .8;
}

.pageTop_link:before {
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--blue);
    border-left: 1px solid var(--blue);
}

@media screen and (min-width: 768px) {
    .pageTop {
        bottom: 80px;
        right: 80px;
    }

    .pageTop_link {
        width: 60px;
        height: 60px;
    }

    .pageTop_link:before {
        width: 13px;
        height: 13px;
    }
}

/* -----------top-----------*/
.kv-opening {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: #3B5575;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    pointer-events: none;
}

.fan {
    max-width: 22rem;
    max-height: 22rem;
    height: 100%;
}

.fan-text {
    margin-top: 1rem;
}

:root {
    /* 回転起点・拡縮・移動はCSS変数で。JSが読み取ります */
    --fan-ox: 62;
    /* viewBox座標のX（左50% 61.5） */
    --fan-oy: 116;
    /* viewBox座標のY（上100% 120） */
    --fan-scale: 1;
    --fan-tx: 0;
    /* viewBox座標での移動X */
    --fan-ty: 0;
    /* viewBox座標での移動Y */

    /* 見た目 */
    --fan-fill: #CDBC66;
    --fan-stroke: #000000;
    --fan-stroke-width: 21;
}

/* レイアウト側（必要に応じて hidden/visible を切替） */
.fan-area {
    overflow: visible;
}

/* SVGサイズ（レスポンシブ） */
.fan {
    display: block;
    width: 100%;
}

/* マスクの線（手書きライン） */
.fan__mask-path {
    stroke: var(--fan-stroke);
    stroke-width: var(--fan-stroke-width);
    stroke-linecap: round;
    fill: none;
}

/* マスクは alpha を使う（黒=不透明にするため必須） */
.fan mask {
    mask-type: alpha;
}

/* 中の塗り */
.fan__fill {
    fill: var(--fan-fill);
}

.top_kv {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
    /* background: #000; */
}

.top_kv img {
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
}

/* Swiper本体を全体に */
.top_kv .swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* 左固定カラム（スマホでは全幅・上部に表示） */
.kv-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* ←スマホでは全幅 */
    height: 50%;
    /* ←スマホでは上半分 */
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.kv-left img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 1;
    transition: opacity 0.4s ease;


}

.kv-left.is-hidden img {
    opacity: 0;
}

.top_kv .swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 右だけのスライド（右50%に配置） */
.top_kv .swiper-slide.right-only {
    position: relative;
}

/* 右だけのスライド（スマホでは下半分に表示） */
.top_kv .swiper-slide.right-only img {
    position: absolute;
    top: 50%;
    /* ←下半分 */
    left: 0;
    width: 100%;
    height: 50%;
    object-fit: cover;
}

/* 全画面スライドはスマホでも共通 */
.top_kv .swiper-slide.full img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* コピー */
.top_kv_copy {
    position: absolute;
    z-index: 6;
    /* padding: 2rem; */
    top: 25%;
    left: 30px;
    translate: 0 -50%;
    pointer-events: none;
}

.top_kv_copy p {
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 0px 4px rgba(0, 0, 0, 0.3);
}

.top_kv_main_copy {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.top_kv_sub_copy {
    margin-top: 1rem;
    font-family: "Cormorant", serif;
    font-size: clamp(1.4rem, 4vw, 3rem);
    letter-spacing: 0.05em;
}

/* JS不発時のフォールバック：最初の右だけスライド */
.top_kv .swiper-slide:first-child {
    opacity: 1;
}

/* 動きを減らす配慮 */
@media (prefers-reduced-motion: reduce) {

    .top_kv .swiper,
    .top_kv .swiper * {
        transition: none !important;
        animation: none !important;
    }
}

@media (min-width: 640px) {
    .top_kv_copy {
        top: 50%;
        left: 18%;
    }
}

.lead {
    overflow-x: hidden;
}

.lead_inner {
    padding-top: 70px;
    padding-bottom: 70px;
}

.lead_title {
    /* font-size: 18px; */
    font-size: clamp(18px, calc(30 / 1440 *100vw), 30px);
    font-family: var(--serif);
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 500;
    text-align: left;
}

.lead_text {
    margin-bottom: 30px;
    font-weight: 400;
    text-align: left;
}

.lead_textArea {
    margin: 0 auto 55px;
    width: 70%;
}

.lead_img {
    width: calc(330 / 370 *100vw);
    margin-left: calc(50% - 50vw);
}

.header .sub_nav>li a {
    font-size: 14px;
}

/* タブレットサイズ（768px-1023px）専用のスタイル */
@media (min-width: 768px) and (max-width: 1023px) {
    .home .header_logo {
        max-width: 125px;
    }

    .lead {
        position: relative;
    }

    .lead::after {
        content: '';
        display: inline-block;
        aspect-ratio: 456 / 507;
        width: calc(456 / 1024 *100vw);
        background-image: url(../img/bg_logo.webp);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        bottom: 11%;
        right: -5%;
        z-index: -1;
    }

    .lead_inner {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 150px;
        text-align: center;
    }

    .lead_textArea {
        max-width: 100%;
        order: 1;
    }

    .lead_img {
        order: 2;
        width: 60%;
        /* margin-left: 0; */
        margin-right: auto;
    }
}

/* デスクトップサイズ（1024px以上）のスタイル */
@media (min-width: 1024px) {
    .home .header_logo {
        max-width: 125px;
    }

    .lead {
        position: relative;
        /* background-image: url(../img/bg_logo.webp);
        background-repeat: no-repeat;
        background-size: 40%;
        background-position: 120% 115%; */

    }

    .lead::after {
        content: '';
        display: inline-block;
        aspect-ratio: 456 / 507;
        width: calc(456 / 1440 *100vw);
        background-image: url(../img/bg_logo.webp);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        bottom: 11%;
        right: -7%;
        z-index: -1;
    }

    .lead_inner {
        display: flex;
        flex-direction: row-reverse;
        gap: min(calc(70 /1440*100vw), 70px);
        align-items: center;
        padding-top: 150px;
        padding-bottom: 200px;
    }

    .lead_textArea {
        max-width: 590px;
    }

    /* .lead_title {
        font-size: 30px;
    } */
}




.strength_item:not(:last-child) {
    margin-bottom: 70px;
}

.strength {
    padding-bottom: 100px;
}

.strength_text {
    font-weight: 400;
}

.strength_textArea {
    background-color: var(--blue);
    padding: 60px 30px 80px;
    color: var(--white);
    margin: 0 calc(50% - 50vw);
    position: relative;
}

.strength_title {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.strength_text:first-of-type {
    margin-bottom: 16px;
    line-height: 1.5;
}


.strength_subTitle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength_subTitle_text {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength_subTitle_text::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: .5px;
    background-color: var(--white);
}

.strength_subTitle_num {
    font-family: var(--qwitcher);
    font-size: 100px;
    line-height: 1;
    position: relative;
    top: -18px;
}

.strength_img {
    margin-top: -80px;
    margin-right: calc(50% - 50vw);
    aspect-ratio: 72 /54;
    width: 84vw;
    margin-left: auto;

}

.strength_item:nth-child(2) .strength_img {
    margin-right: auto;
    margin-left: calc(50% - 50vw);
}

.strength_item:nth-child(2) .strength_subTitle {
    justify-content: flex-end;
}

.strength_list.strength_list_pc {
    display: none;
}

@media (min-width: 960px) {
    .strength_list.strength_list_pc {
        display: block;
    }

    .strength_inner {
        width: 95%;
        max-width: 1310px;
    }

    .strength_item:not(:last-child) {
        margin-bottom: 200px;
    }

    .strength_list {
        padding-top: 100px;

    }

    .strength_list.strength_list_sp {
        display: none;
    }

    .strength_item {
        position: relative;
    }


    .strength_subTitle {
        justify-content: flex-end;
        width: 80%;
        margin-top: 70px;
        position: absolute;
    }

    .strength_subTitle_text {
        font-size: 16px;
    }

    .strength_subTitle_text::after {
        width: 80px;
    }

    .strength_subTitle_num {
        font-size: 300px;
        line-height: 0;
        top: -60px;
        z-index: 2;
    }

    .strength_textArea {
        margin: auto;
        background-color: transparent;
        /* z-index: 1; */
        padding: 0;

    }

    .strength_textArea_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 540px;
        position: relative;
    }


    .strength_text {
        width: calc(590 / 1440 * 100vw);
        max-width: 590px;
    }

    .strength_title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .strength_img {
        position: absolute;
        top: -100px;
        margin-top: 0;
        right: calc(50% - 50vw);
        width: calc(720 / 1440 *100vw);
        max-height: 530px;
        margin-right: auto;
        z-index: -1;
        /* max-width: 720px; */
    }

    .strength_item::after {
        content: '';
        display: inline-block;
        position: absolute;
        height: 540px;
        width: 81vw;
        height: auto;
        top: 0;
        bottom: 0;
        left: calc(50% - 50vw);
        background-color: var(--blue);
        z-index: -9;
    }

    .strength_img img {
        max-height: 530px;
        object-fit: cover;
    }

    .strength_item:nth-child(2) .strength_subTitle {
        margin-top: 150px;
        /* position: relative;
        left: -70%; */
    }

    .strength_item:nth-child(2) .strength_textArea {
        width: fit-content;
        margin-left: auto;
        margin-right: inherit;
    }

    .strength_item:nth-child(2) .strength_img {
        right: inherit;
    }

    .strength_item:nth-child(2)::after {
        left: inherit;
        right: calc(50% - 50vw);
    }

    .strength_item:nth-child(3) .strength_subTitle {
        margin-top: 150px;
    }


    .strength_subTitle_text {
        gap: 14px;
    }

    .strength_subTitle {
        gap: 46px;
        position: absolute;
        bottom: 10px;
        right: 20%;
        transform: translateY(34%);
    }

    .strength_item:nth-child(2) .strength_subTitle {
        right: inherit;
        left: -84%;
    }

    .strength_subTitle_num {
        line-height: 1;
    }

    .strength_item:nth-child(2) .strength_subTitle_num {
        letter-spacing: -0.05em;
    }

}

@media (min-width: 1200px) {
    .strength_item:nth-child(2) .strength_subTitle {
        right: inherit;
        left: -96%;
    }
}


.swiper.img_section {
    width: 100%;
}

.img_list {
    transition-timing-function: linear;

}

.img_list .swiper-slide {
    height: 100%;
}

.img_list .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    display: block;
    border: none;
    padding: 0;
    margin: 0;
}

.business_inner {
    padding-bottom: 50px;
}

.business_list {
    display: grid;
    justify-content: center;
    gap: 10px;
}

.business_item {
    width: 100%;
}

.business_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    width: 300px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--text-gray);
    font-size: 15px;
    line-height: 1;
    transition: all 0.3s ease;
}

.business_item a:hover {
    background-color: var(--blue);
    color: var(--white);
}

@media (min-width: 768px) {
    .business_inner {
        padding-bottom: 150px;
    }

    .business .title_border {
        margin-bottom: 70px;
    }

    .business_list {
        width: 100%;
        max-width: 830px;
        margin-inline: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .business_item a {
        width: 100%;
        max-width: 400px;
        height: 70px;
        font-size: 16px;
    }
}


.top_news {
    padding-top: 60px;
    padding-bottom: 70px;
}

.news_swiper {
    overflow: hidden;
}

.news_img {
    aspect-ratio: 200 /112;
    overflow: hidden;
    margin-bottom: 5px;
}

.news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.news_date {
    display: block;
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.news_title {
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Swiper ドット */
.news_swiper .swiper-pagination {
    position: static;
    margin-top: 12px;
}

.news_swiper .swiper-pagination-bullet {
    width: 30px;
    height: 1px;
    border-radius: 999px;
    background-color: #eee;
    opacity: 1;
}

.news_swiper .swiper-pagination-bullet-active {
    background-color: var(--blue);
}

.articles .news_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* タブレット以上でカードを少し大きく */
@media (min-width: 768px) {
    .top_news {
        padding-top: 150px;
        padding-bottom: 200px;
    }

    .top_news .news_list {
        max-width: 1180px;
        margin-inline: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .articles .news_list {
        max-width: 1180px;
        margin-inline: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .news_date {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .news_title {
        font-size: 16px;
    }

    .news_swiper .swiper-pagination {
        display: none;
    }
}

/* 下層ヘッダー */
.page .header_logo, .archive .header_logo, .header_black .header_logo {
    max-width: 150px;
}

.header_page {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title_page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1;
}

.title_page>span {
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1;
    font-family: var(--playfair);
    letter-spacing: 0;
}

.page .copyright, .archive .copyright {
    display: none;
}

.header_black .nav.pc .nav_list>li>a {
    font-size: 15px;
    font-size: calc(10px, calc(15/1440 *100vw), 15px);
    color: var(--text);
}

.active .header_black .header_logo {
    height: 45px;
    background-image: url(../img/logo_white.webp);
    background-repeat: no-repeat;
    background-size: contain;
}

.active .header_black .header_logo img {
    display: none;
}

@media (min-width: 768px) {
    .page .header_logo, .archive .header_logo {
        width: calc(270 / 1440 *100vw);
        max-width: 270px;
    }

    .header_page {
        height: 500px;
    }

    .home .header .nav_list {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .home .nav li:last-child {
        margin-bottom: 0;
    }

    .home .header .nav_list>li>a {
        font-size: 15px;
        /* font-size: clamp(10px, calc(15/1440 *100vw), 15px); */
    }

    .page .header_inner, .archive .header_inner, .header_inner.header_black {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .page .nav.pc .nav_list, .archive .nav.pc .nav_list, .header_black .nav.pc .nav_list {
        display: flex;
        align-items: center;
        margin-bottom: 0;
        gap: min(calc(30 / 1440 *100vw), 30px);
    }

    .page .nav.pc .nav_list .carrent, .archive .nav.pc .nav_list .carrent {
        position: relative;
    }

    .page .nav.pc .nav_list .carrent::after, .archive .nav.pc .nav_list .carrent::after {
        content: '';
        display: inline-block;
        width: 30px;
        height: .5px;
        background-color: var(--white);
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .page .nav.pc .nav_list>li>a, .archive .nav.pc .nav_list>li>a {
        font-size: 15px;
        font-size: calc(10px, calc(15/1440 *100vw), 15px);
        color: var(--white);
    }

    .header_black .nav.pc .nav_list>li>a {
        font-size: 15px;
        font-size: calc(10px, calc(15/1440 *100vw), 15px);
        color: var(--text);
    }

    .page .nav.pc .nav_list>li:not(.has_sub), .archive .nav.pc .nav_list>li:not(.has_sub) {
        margin-bottom: 0px;
    }


    .title_page {
        font-size: 40px;
        gap: 5px;
    }

    .title_page>span {
        font-size: 24px;
    }
}

/* 中美について */
.message_inner {
    padding-top: 70px;
    padding-bottom: 35px;
    width: 80%;
}

.message {
    font-family: var(--serif);

}

.message_lead {
    font-weight: 200;
    color: var(--text-gray);
    font-size: clamp(35px, calc(130 / 1440 * 100vw), 130px);
    margin-bottom: 40px;
}


.message_title {
    font-size: 26px;
    margin-bottom: 32px;
    font-weight: 500;
}

.message_textArea {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.message_text {
    line-height: 2;
    font-size: 15px;
    font-weight: 500;
}

.message_img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.offfice_table {
    max-width: 890px;
    margin-inline: auto;
    font-size: 15px;
}

.offfice_table_title, .offfice_table_text {
    font-weight: 500;
    padding: 8px 0;
    font-family: var(--serif);
}

.office_table_inner {
    padding: 12px 0;
}

.office_inner {
    width: 80%;
    padding-top: 35px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {

    .message_img {
        width: 100%;
        margin-left: calc(50% - 50vw);
    }

    .message_inner {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .message_lead {
        margin-bottom: 80px;
        white-space: nowrap;
    }

    .message_title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    /* .message_title, .message_textArea {
        padding-left: min(calc(120 / 1440 * 100vw), 120px);
        padding-right: min(calc(60 / 1440 * 100vw), 60px);
    } */

    .message_textArea {
        gap: 32px;
        margin-bottom: 100px;
    }

    .message_text {
        font-size: 16px;
    }

    .offfice_table {
        font-size: 16px;
    }



    .offfice_table_title, .offfice_table_text {
        padding: 20px 0;
    }

    .office_table_inner {
        padding: 20px 0;
        display: flex;
    }

    .offfice_table_title {
        width: calc(250 / 890 *100%);
        max-width: 250px;
    }

    .offfice_table_text {
        width: calc(640 / 890 *100%);
        max-width: 640px;
    }

    .office_inner {
        padding-top: 100px;
        padding-bottom: 200px;
    }
}


/* ブログ一覧 */

.archive .header_page {
    background-image: url(../img/blog.webp);
}

.articles_inner {
    padding-top: 70px;
    padding-bottom: 70px;

}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-numbers {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--blue);
    color: var(--blue);
    font-family: var(--serif);
    font-size: 12px;
    line-height: 1;
}

span.page-numbers.current {
    background-color: var(--blue);
    color: var(--white);

}

a.next.page-numbers, a.prev.page-numbers {
    display: none;
}

@media (min-width: 768px) {
    .articles_inner {
        padding-top: 150px;
        padding-bottom: 250px;
    }

    .nav-links {
        margin-top: 50px;
        gap: 20px;
    }

    .page-numbers {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}




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

    /* .sp {
        display: block;
    } */

    /* -----------共通-----------*/

    /* -----------SP header-----------*/


    /* -----------footer-----------*/


    /* -----------top-----------*/
    .kv-left {
        top: 0;
        left: 0;
        bottom: 0;
        width: 50%;
        /* 左半分固定 */
        height: 100%;
        /* 高さ全体 */
    }

    .top_kv .swiper-slide.right-only img {
        top: 0;
        left: 50%;
        /* 右半分開始位置 */
        width: 50%;
        height: 100%;
    }

}

/* -----------PC-----------*/

@media screen and (min-width:960px) {


    body {
        font-size: 15px;
    }

    .sp {
        display: none;
    }

    .top_kv_copy {
        left: 11.1%;
    }

    .top_kv_main_copy {
        font-size: clamp(4rem, 4vw, 6rem);
    }

    .top_kv_sub_copy {
        font-size: clamp(2rem, 2.2vw, 4.8rem);
        margin-top: 3rem;
    }

    .message_img {
        width: 75%;
        margin-left: calc(50% - 50vw);
    }

}


@media screen and (min-width:1025px) {



    .sp {
        display: none;
    }

    .pc {
        display: block;
    }
}

@media screen and (min-width:1200px) {
    .tl {
        display: none;
    }
}


/* サービス */

.task_inner {
    padding: 70px 0;
}

/* Accordion */
.accordion_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.accordion_item {
    border-bottom: none;
}

.accordion_title {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    font-weight: 500;
    padding: 16px 16px 16px 80px;
    cursor: pointer;
    position: relative;
    font-family: var(--serif);
    background-color: var(--blue);
    border-radius: 50px;
    color: var(--white);
    transition: background-color 0.3s;
}

.accordion_title:hover {
    background-color: #5a7aa6;
}

.accordion_title::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border-radius: 50%;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.3s ease;
}

.accordion_title.active::before {
    transform: translateY(-50%) rotate(0deg);
}

.accordion_content {
    overflow: hidden;
    max-height: 0;
    font-family: var(--serif);
    background-color: var(--text-gray);
    transition: max-height 0.4s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: -20px;
    position: relative;
    z-index: -1;
    border-radius: 0 0 10px 10px;

    p {
        padding: 40px 20px 20px;
    }
}


.accordion_content p {
    margin: 0;
}

/* 料金一覧 */
.plan_item_title {
    text-align: center;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.plan_item_title::after {
    content: '';
    display: inline-block;
    width: 150px;
    height: 1px;
    background-color: var(--gold);
}

.plan_item_subTitle {
    font-family: serif;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
    font-size: 15px;
}

.plan_item_smallText {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 20px;
}

.plan_item_text {
    color: #000;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.plan_item_price {
    background-color: var(--white);
    padding: 30px 0;
    text-align: center;
    margin-bottom: 20px;
}

.plan_item_price_title {
    font-family: var(--serif);
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
}

.plan_item_price_text {
    font-family: var(--serif);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
}

.plan_item_price_text .small {
    font-size: 12px;
}

.plan_description_item {
    padding-bottom: 20px;
    border-bottom: 1px solid #D6D6D6;
    margin-bottom: 20px;
    text-wrap: nowrap;

}

.plan_description_item>.small {
    font-size: 10px;
}

.plan_description_title,
.plan_description_text {
    display: inline-block;
}

.plan_description_title {
    font-family: var(--serif);
    color: var(--white);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    background-color: var(--blue);
    display: inline-block;
    padding: 8px 4px;
    border-radius: 3px;
    font-size: 13px;
    width: 80px;
    text-align: center;
    text-wrap: wrap;
}

.plan_description_text {
    font-family: var(--serif);
    color: var(--blue);
    font-weight: bold;
    line-height: 1;
    font-size: 14px;
    margin-left: 10px;
    width: 99px;
}

.plan_description_text>span {
    font-size: 13px;
    display: inline-block;
    margin-right: 4px;
}

.plan_description_text .small {
    font-size: 10px;
}

.plan_item_btn {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 266px;
    height: 40px;
    line-height: 1;
    border-radius: 30px;
    background-color: #7692B4;
    color: var(--white);
    font-family: var(--serif);
    box-shadow: 1px 3px 0 0 rgba(213, 213, 213, 1);
    font-size: 16px;
    justify-content: center;
    margin-inline: auto;
}

.plan_item {
    border-radius: 10px;
    background-color: #F0F4F8;
    border: 2px solid #CAD9EC;
    padding: 30px 20px;
    align-self: flex-start;
}

dt.plan_description_title.gold {
    background-color: var(--gold);
}

li.plan_item.border_gold {
    border-color: var(--gold);
}

.lt {
    display: none;
}

li.plan_item.has_text {
    position: relative;
}

li.plan_item:nth-child(2) .plan_item_btn {
    background-color: var(--blue);
}

/* li.plan_item.has_text .plan_item_title {
    font-size: 20px;
} */

.coming_soon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translate(-50%, -100%);
    font-family: var(--serif);
    color: var(--blue);
    font-size: 20px;
    display: flex;
    align-items: end;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.coming_soon::before, .coming_soon::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--blue);
}

.coming_soon::before {
    transform: rotate(-135deg);
}

.coming_soon::after {
    transform: rotate(135deg);
}

.plan_list_wrap {
    padding-top: 50px;
}

.plan_list_wrap .swiper_pagination {
    text-align: center;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--blue) !important;
}

.plan_description_box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    will-change: max-height;
}

.inner.paln_inner {
    width: 96%;
    max-width: 1300px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.accordion_list_wpapper {
    display: none;
}

@media (min-width: 768px) {
    .accordion_list_sp {
        display: none !important;
    }

    .accordion_list_wpapper {
        max-width: 1070px;
        margin-inline: auto;
        display: flex;
        column-gap: 6%;
    }

    .paln .title_border {
        margin-bottom: 70px;
    }

    .inner.paln_inner {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .task_inner {
        padding: 150px 0 100px;
    }

    .plan_item_title {
        margin-bottom: 20px;
    }

    .accordion_list {
        max-width: 1070px;
        margin-inline: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 70px;
    }

    .accordion_title {
        font-size: 20px;
        height: 80px;
        display: flex;
        align-items: center;
        padding: 0px 10px 0px 80px;
    }

    .accordion_title::before {
        width: 40px;
        height: 40px;
        background-size: 15px;
    }

    .accordion_content {
        margin-top: 0px;
        position: relative;
        top: -40px;

    }

    .accordion_content p {
        padding: 70px 40px 30px;
    }

    .accordion_list.accordion_list_pc {
        display: flex;
        flex-direction: column;
        max-width: 500px;
        flex: 1;
    }
}

@media (min-width: 960px) {
    .plan_list_wrap .swiper_pagination {
        display: none;
    }

    .plan_list_wrap {
        overflow-x: auto;
    }

    .plan_item {
        min-width: 400px;
        flex: 1;
    }

    .plan_list {
        display: flex;
        gap: 20px;
        align-items: start;

    }

    .plan_item_title {
        font-size: 30px;
    }

    .plan_item_subTitle {
        font-size: 18px;
    }

    .plan_item_smallText {
        font-size: 16px;
    }

    .plan_item_text {
        font-size: 16px;
    }

    .plan_item_price_title {
        font-size: 16px;
    }

    .plan_item_price_text {
        font-size: 28px;
    }

    span.reguler {
        font-weight: 400;
    }

    .plan_description_title {
        font-size: 14px;
        width: 120px;
    }

    .plan_description_text>span {
        font-size: 15px;
    }

    .plan_description_text {
        font-size: 16px;
    }

    .plan_description_text .small {
        font-size: 11px;
    }

    .lt {
        display: block;
    }
}


/* 価格 */
.price {
    background-color: #F0F0F0;
    padding-top: 48px;
    padding-bottom: 80px;
}

.price_lead {
    background-color: var(--gold);
    border-radius: 50px;
    width: 100%;
    max-width: 500px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    color: var(--white);
    font-family: var(--serif);
    padding: 5px;
    margin-bottom: 24px;
}

.price_lead>span {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    border: 1px solid var(--white);
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500px;
    line-height: 1;
}

.price_item_inner {
    background-color: var(--white);
    padding: 16px;
    border-radius: 10px;
}

.price_item_title {
    font-size: 17px;
    font-weight: bold;
    font-family: var(--serif);
    color: var(--blue);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--blue);
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 24px;
    text-align: center;
}

.price_item_title span {
    font-size: 18px;
    display: inline-block;
    margin-right: 3px;
    font-family: "Cormorant Infant", serif;
}


.price_item_text_gold {
    color: var(--gold);
    font-family: var(--serif);
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 24px;
}

.price_item_subTitle {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--white);
    font-size: 16px;
    background-color: var(--blue);
    padding: 4px 16px;
}

.price_item_textArea {
    background-color: #F0F4F8;
    padding: 16px;
    font-family: var(--serif);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price_item_textArea>p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.price_item_textArea>ul {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price_item_textArea>ul li {
    font-size: 14px;
    position: relative;
}

.price_item_textArea>ul li::before {
    content: '・';
    display: inline-block;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: -16px;
}

.price_item_note {
    font-family: var(--serif);
    color: var(--blue);
    font-size: 14px;
    letter-spacing: 1.2px;
    font-weight: bold;
    margin-top: 20px;
}

.price_item_box {
    margin-bottom: 32px;
}

.price_item_box:last-of-type {
    margin-bottom: 0;
}

.price_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin-inline: auto;

}

.price_item_box.price_item_box_price {
    background-color: #F0F4F8;
    padding: 0 16px;
    margin-top: 24px;
}

.price_item_box.price_item_box_price .price_item_subTitle {
    background-color: transparent;
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    text-align: center;

}

.price_item_box.price_item_box_price .price_item_text {
    font-size: 18px;
    padding: 8px 0 16px;
    font-family: var(--serif);
    font-weight: bold;
    text-align: center;
    color: var(--blue);
}

.price_item table thead {
    background-color: var(--blue);
}

.price_item table thead td {
    border: 1px solid var(--white);
    color: var(--white);
    min-width: 165px;
    padding: 8px;
    vertical-align: middle;
}

.price_item table thead td.serif {
    font-family: var(--serif);
}

.price_item table tbody td, .price_item table tbody th {
    border: 1px solid var(--blue);
    white-space: nowrap;
    padding: 8px;
    background-color: #F0F4F8;
    font-family: var(--serif);
    color: var(--blue);
    font-size: 14px;
    font-weight: bold;
}

.price_item table tbody td {
    text-align: right;
}

.price_item table tbody th {
    white-space: wrap;
    min-width: 160px;
    border-left: none;
}

.price_item table tbody tr:last-child th,
.price_item table tbody tr:last-child td {
    border-bottom: none;
}

.price_item table tbody td:last-child {
    border-right: none;
}

.price_item table thead tr:not(:first-child) td {
    text-align: left;
}

.price_item table thead td:not(:first-child) {
    width: 40%;
}

.price_table {
    overflow-x: auto;
}

.price_item_noteList {
    margin-top: 16px;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price_item_noteList li {
    position: relative;
    font-family: var(--serif);
    color: var(--blue);
    font-size: 14px;
}

.price_item_noteList li::before {
    content: '※';
    display: inline-block;
    font-size: 14px;
    position: absolute;
    left: -16px;
    top: 0;
}

.price_item_text_box {
    padding: 16px;
    background-color: #F0F4F8;
    font-family: var(--serif);
    font-weight: 500;
}

.price_item_text_box.center {
    text-align: center;
    color: var(--blue);
    font-weight: bold;
}

.price_table_mt {
    margin-top: 24px;
}

.price_item_del_inner {
    background-color: #F0F4F8;
}

.price_item_del_inner {
    display: flex;
    border-top: 1px solid var(--blue);
    font-family: var(--serif);
    color: var(--blue);
    font-size: 14px;
}

.price_item_del_title {
    border-right: 1px solid var(--blue);
    width: 160px;
}

.price_item_del_text {
    text-align: right;
    flex: 1;
    font-weight: bold;
}

.price_item_del_title, .price_item_del_text {
    padding: 8px 4px;
}

.price_item_dl:not(:last-of-type) {
    margin-bottom: 24px;
}

.price_item_hasmovie {
    margin-top: 24px;
    position: relative;
}

.play_btn {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/play_btn.png);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play_btn.playActive {
    display: none;
}

.price_item_movie_bottom {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--blue);
    font-weight: 500;
    margin-top: 8px;
}

.tittle_price {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 56px;
}

.tittle_price::before {
    display: none;
}

.tittle_price .ff-en {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--playfair);
    font-size: 14px;
    line-height: 1;
}

@media (min-width: 768px) {
    .tittle_price {
        padding-bottom: 15px;
        margin-bottom: 90px;
    }

    .tittle_price .ff-en {
        bottom: -38px;
        font-size: 24px;

    }

    .price {
        background-color: #F0F0F0;
        padding-top: 100px;
        padding-bottom: 150px;
    }

    .price_lead {
        margin-bottom: 50px;
    }

    .price_lead>span {
        font-size: 20px;

    }

    .price_item_inner {
        padding: 50px;
        padding-left: min(calc(50/ 1440 * 100vw), 50px);
        padding-right: min(calc(50/ 1440 * 100vw), 50px);
    }

    .price_item_title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .price_item_subTitle {
        padding: 20px;
        font-size: 20px;
    }

    .price_item_title span {
        font-size: 30px;
    }

    .price_item_text_gold {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .price_item_textArea {
        padding: 20px;
    }

    .price_item_textArea>p {
        font-size: 16px;
    }

    .price_item_note {
        font-size: 18px;
        margin-top: 20px;
    }

    .price_list {
        gap: 50px;
    }

    ul.price_item_textList.large li {
        font-size: 16px;
    }

    .price_item_movie_bottom {
        font-size: 15px;
    }

    .price_table table {
        width: 100%;
    }

    .price_item table thead td {
        font-size: 18px;
        text-align: center;
        padding: 20px 12px;
    }

    .price_item table tbody td {
        font-size: 18px;
        padding: 20px 30px 20px 20px;
    }

    .price_item table tbody td span {
        font-size: 13px;
    }

    .price_item table tbody th {
        font-size: 18px;
        padding: 20px 20px 20px 30px;
        min-width: 230px;
    }

    .price_item_text_box {
        padding: 20px;
    }

    .price_item_text_box.center {
        font-size: 18px;
    }

    .price_item_del_title, .price_item_del_text {
        font-size: 18px;
    }

    .price_item_del_title {
        width: 42%;
        padding: 20px 20px 20px 30px;
    }

    .price_item_del_text {
        padding: 20px 30px 20px 20px;
    }

    .play_btn {
        width: 70px;
        height: 70px;
    }
}

/* ブログ記事 */
.single_inner {
    margin-top: 100px;
    max-width: 1240px;
    padding-bottom: 100px;
}

.title_single {
    font-weight: bold;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.single .date {
    text-align: right;
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
    margin-bottom: 8px;
}

.single .post_thumbnail {
    width: 100%;
    aspect-ratio: 124/ 62;
    overflow: hidden;
    margin-bottom: 16px;
}

.post_thumbnail img {
    height: 100%;
    object-fit: cover;
}

.article {
    width: 95%;
    max-width: 1140px;
    margin-inline: auto;
}

.wp-block-heading {
    font-size: 20px;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 10px;
}

.article p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 20px;
}

.btn_more.btn_toBlog {
    font-family: var(--serif);
    background-color: var(--blue);
    color: var(--white);
    max-height: 56px;
    height: 56px;
    max-width: 300px;
    position: relative;
    margin-inline: auto;
    margin-top: 70px;
}

.btn_more.btn_toBlog .arrow {
    position: absolute;
    left: 40px;
    top: 50%;
    margin-inline: auto;

}

.btn_more.btn_toBlog .arrow::after {
    border-right: none;
    border-left: solid 1px;
    transform: skew(-45deg);

}

@media (min-width: 768px) {
    .single_inner {
        padding-bottom: 200px;
    }

    .title_single {
        font-weight: bold;
        font-size: 36px;
        margin-bottom: 30px;
    }

    .single .date {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .single .post_thumbnail {
        margin-bottom: 70px;
    }

    .wp-block-heading {
        font-size: 24px;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .btn_more.btn_toBlog {
        font-family: var(--serif);
        background-color: var(--blue);
        color: var(--white);
        max-height: 74px;
        height: 74px;
        max-width: 400px;
        position: relative;
    }
}




/* ポリシー */
.privacy_policy {
    padding-top: 100px;
    padding-bottom: 100px;
    font-weight: 500;
    font-family: var(--serif);
    background-image: url(../img/bg_logo.webp);
    background-repeat: no-repeat;
    background-size: 56%;
    background-position: 11px 60px;

}

.privacy_section {
    margin-bottom: 32px;
    line-height: 2;
}

.privacy_section p {
    line-height: 2;
}

.privacy_head_text {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 32px;
}

.section_title {
    margin-bottom: 10px;
    line-height: 2;
}

.list_num {
    list-style-type: decimal;
    margin-left: 1em;
    font-size: 14px;
}

/* a, b, c... */
.list_alpha {
    font-size: 14px;
    list-style-type: lower-alpha;
    margin-left: 1em;
    /* インデント調整 */
}

/* i, ii, iii... */
.list_roman {
    list-style-type: lower-roman;
    margin-left: 1em;
}

/* ネスト時の見やすさ調整（任意） */
.list_alpha li,
.list_roman li {
    margin: 0.25em 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .privacy_policy .inner {
        max-width: 1000px;
    }

    .privacy_policy {
        background-size: 30%;
        background-position: 2% 270px;
    }

    .privacy_policy {
        padding-top: 300px;
    }

    .privacy_head_text {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .section_title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .privacy_section {
        margin-bottom: 50px;
    }

    .privacy_section ol {
        font-size: 16px;
    }
}

/* お問い合わせ */

.inner.contat_inner {
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 615px;
}

.contact_head {
    font-family: var(--serif);
    text-align: center;
    font-size: 16px;
    margin-bottom: 32px;
}

.contact_note {
    text-align: right;

}

.contact_note .req {
    margin-right: 10px;
}

/* select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
} */

/* --- テキスト入力、メール、電話番号 --- */
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=date],
.form input[type=number],
.form select,
.form textarea {
    width: 100%;
    padding: 15px 18px;
    line-height: 1.5;
    height: 100%;
    max-height: 66px;
    min-height: 51px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    background-color: #F6F6F6;
}

.form select {
    height: 51px;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #A0A0A0;
}

.form .select {
    position: relative;
}

.form .select::after {
    display: block;
    content: '▼';
    font-size: 14px;
    color: #A0A0A0;
    position: absolute;
    right: 20px;
    top: 15px;
}

/* プレースホルダー（未選択時） */
.wpcf7 select:invalid {
    color: #A0A0A0;
}

/* --- テキストエリア --- */
.form textarea {
    min-height: 200px;
    resize: vertical;
}

.label {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.req {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold);
}

.field.field_row2 {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.field {
    margin-bottom: 30px;
}

input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
    margin-bottom: 3px;
}

.submit input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 470px;
    height: 66px;
    color: var(--white);
    background-color: var(--blue);
    border: 1px solid var(--blue);
    text-align: center;
    border-radius: 10px;
    transition: all .3s;
    margin-inline: auto;
}

.submit input:hover {
    background-color: var(--white);
    color: var(--blue);
}

@media (min-width: 768px) {
    .inner.contat_inner {
        padding-top: 150px;
        padding-bottom: 200px;
    }
}

.notfound {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

@media (min-width: 768px) {
    .notfound {
        padding-top: 200px;
        padding-bottom: 150px;
    }
}

a[href^="tel:"] {
    text-decoration: underline;
}

a.link {
    text-decoration: underline;
    cursor: pointer;
}