@charset "utf-8";
/* CSS Document */

/*全体ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

/*** The new CSS reset - version 1.11.1 (last updated 24.10.2023) ***/

*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg*,symbol*)){all:unset;display:revert}
html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}
a,button{cursor:revert}
ol,ul,menu,summary{list-style:none}
img{max-inline-size:100%;max-block-size:100%;width: 100%;height: auto;}
table{border-collapse:collapse}
input,textarea{-webkit-user-select:auto}
textarea{white-space:revert}
meter{-webkit-appearance:revert;appearance:revert}:where(pre){all:revert;box-sizing:border-box}::placeholder{color:unset}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable="false"])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable="true"]){-webkit-user-drag:element}:where(dialog:modal){all:revert;box-sizing:border-box}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

a {text-decoration: none;color: inherit;transition: opacity 0.3s;}.text-block{display: inline-block;}

.visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    margin: -1px;
}
/***********************
共通スタイル
***********************/
:root{
    --mincho:'ヒラギノ明朝 ProN W3','ヒラギノ明朝 ProN','Hiragino Mincho ProN','Noto Serif JP', serif;
    --kaku:'ヒラギノ角ゴ stdN W3', 'Hiragino Kaku stdN W3','Noto Sans JP', sans-serif;
    --en-font:"Cormorant", serif;
    --en-sans-font:"Jost", sans-serif;
    --base-color: #000;
    --red:#760e0e;
    --navy: #080e37;
    --yellow: #fdee06;
    --blue: #0a7497;
    --gray: #2d313a;
    --light-gray: #ced4da;
    --green: #102a19;
}

body {
    color: var(--base-color);
    font-family: var(--kaku);
    font-style: normal;
    position: relative;
    letter-spacing: 0.04em;
}

.txt-red{color: var(--red);}

.txt-mincho{font-family: var(--mincho) !important;}
.txt-kaku{font-family: var(--kaku) !important;}
.txt-serif{font-family: var(--en-font) !important;}
.txt-sans-serif{font-family: var(--en-sans-font) !important;}

a{
    transition: 0.3s;
}
a:hover,a:focus{
    opacity: 0.6;
    transition: 0.3s;
}
a[href^="tel:"] {
    pointer-events: none;
}
a.tel {
    pointer-events: none !important;
}
.inbl,.kaigyo{
    display: inline-block;
}

.block{
    display: block;
}
@media screen and (max-width: 767px){
    a[href^="tel:"] {
        pointer-events:all;
    }
    a.tel {
        pointer-events: all !important;
    }
}

/*------------------------------------
ヘッダー
------------------------------------*/
/* PC用ヘッダーのスタイル */
.pc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background-color: #080e37;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1000;
    transition: width 0.3s ease; /* 幅のアニメーション */
}

.pc-header:hover {
    width: 300px; /* ホバー時の幅 メニュー部分の幅を100pxからプラスする */
    cursor: pointer;
}

.pc-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px; /* メニュー部分の幅 中身が入ってから調整 */
    background-color: #080e37;
    transform: translateX(-100%); /* 初期状態では隠す */
    transition: transform 0.3s ease; /* スライドアニメーション */
    /*display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;*/
    display: block;
    padding: 30px 25px;
    overflow-y: auto;
}

.pc-nav::-webkit-scrollbar{
    width: 8px;
    background-color: #080e37; 
}
.pc-nav::-webkit-scrollbar-thumb {
    background: #fff;
    width: 6px;
    border-radius: 5px;
}


.pc-header:hover .pc-nav {
    transform: translateX(0); /* ホバー時に表示 */
}

.pc-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pc-nav li {
    /*margin-bottom: 10px;*/
    position: relative; /* サブメニューの位置調整 */
}

.pc-nav a {
    color: white;
    text-decoration: none;
}

/* サブメニュー（PC用） */
.pc-nav .has-submenu {
    position: relative; /* サブメニューの位置調整 */
}

.pc-nav .has-submenu:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.submenu {
    /* display: none; */
    position: absolute;
    top: 0;
    left: 100%; /* 親メニューの右側に表示 */
    width: 200px;
    background-color: #0a1b47;
    padding: 10px;
    list-style-type: none;
    margin: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(-20px); /* 初期位置で少し左にずらしておく */
}

.submenu li {
    margin: 0;
}

.submenu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}

/* ハンバーガーボタン（PC用） */

.pc-hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 27px;
    cursor: pointer;
    z-index: 1001;
}

.pc-hamburger button{
    border: none;
    background: transparent;
    display: block;
    width: 100%;
    height: 27px;
    position: relative;
    transition: 0.3s;
}

.pc-hamburger button .bar{
    display: inline-block;
    background-color: #fff;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.pc-hamburger button .bar::before,
.pc-hamburger button .bar::after {
    content: "";
    display: block;
    background-color: #fff;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    transform-origin: center;
    /* transition: all 0.3s ease; */
}

.pc-hamburger button .bar::before{
    top: -14px;
}

.pc-hamburger button .bar::after{
    bottom: -14px;
}

.pc-header:hover .pc-hamburger button .bar{
    opacity: 0;
    /* transition: all 0.3s ease; */
}

.pc-nav .url-btn{
    width: 100%;
    height: auto;
    font-size: 18px;
    padding: 18px 0;
    border-radius: 100px;
    background-color: #760e0e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 500;
}
.pc-nav  .url-btn::after{
    content: "";
    background-image: url(../img/common/arw-wh.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 20px;
}

.pc-nav .pc-nav-logo{
    display: block;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #4b4b50;
}
.pc-nav ul{
    width: 100%;
}
.pc-nav ul.pc-nav-list{
    margin-bottom: 35px;
}
.pc-nav ul.pc-nav-list li{
    font-family: var(--mincho);
    font-size: 20px;
}
.pc-nav ul.pc-nav-list li a{
    display: block;
    position: relative;
    padding-left: 10px;
    line-height: 1;
    border-left:3px solid #fff;
    padding-bottom: 2px;
    padding-right: 10px;
}
.pc-nav ul.pc-nav-list li + li{
    margin-top: 20px;
}
.pc-nav ul.pc-nav-list li a::after,
.pc-nav .pc-nav-field li a::after{
    content: "";
    background-image: url(../img/common/arw-wh.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 7px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.pc-nav .pc-nav-field-title{
    background-color: #fff;
    color: #080e37;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    padding: 8px 10px 10px;
    width: 100%;
    margin-bottom: 10px;
}
.pc-nav .pc-nav-field{
    margin-bottom: 20px;
}
.pc-nav .pc-nav-field li{
    font-size: 16px;
}
.pc-nav .pc-nav-field li a{
    position: relative;
    display: block;
    border-bottom: 1px solid #4b4b50;
    line-height: 1;
    padding: 15px 18px 17px 8px;
}



/*表示させたまま×にしたい場合は下記コード使用（位置は調整しないといけない）*/

/* .pc-header:hover .pc-hamburger button .bar{
    background-color: transparent;
}

.pc-header:hover .pc-hamburger button .bar::before{
    transform: rotate(45deg);
    opacity: 1;
    top: 0;
}

.pc-header:hover .pc-hamburger button .bar::after{
    transform: rotate(-45deg);
    opacity: 1;
    top: 0;
} */


/* SP用ヘッダーのスタイル */
.sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    height: 0;
    background-color: #080e37;
    color: white;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding-top: 100px;
    opacity: 0;
    z-index: -100;
}

.sp-header.active {
    display: flex;
    height: 100%;
    opacity: 1;
    z-index: 100;
}

.sp-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sp-nav li {
    margin-bottom: 10px;
    position: relative; /* サブメニューの位置調整 */
}

.sp-nav a {
    color: white;
    text-decoration: none;
}

/* サブメニュー（SP用） */
.sp-nav .has-submenu .submenu {
    display: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    background-color: #0a1b47;
    opacity: 1;
    position: static;
    transform: none;
}

.submenu li {
    margin: 0;
}

.submenu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}

/* ハンバーガーメニューのスタイル（SP用） */
.sp-hamburger {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 35px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
}

.sp-hamburger button{
    border: none;
    background: transparent;
    display: block;
    width: 100%;
    height: 32px;
    position: relative;
    transition: 0.3s;
}

.sp-hamburger button .bar{
    display: inline-block;
    background-color: #fff;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.sp-hamburger button .bar::before,
.sp-hamburger button .bar::after {
    content: "";
    display: block;
    background-color: #fff;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    transform-origin: center;
    transition: all 0.3s ease;
}

.sp-hamburger button .bar::before{
    top: -15px;
}

.sp-hamburger button .bar::after{
    bottom: -15px;
}

.pc-hamburger.active button .bar,
.sp-hamburger.active button .bar{
    background-color: transparent;
}

.sp-hamburger.active button .bar::before{
    transform: rotate(45deg);
    background-color: #fff;
    opacity: 1;
    top: 0;
}

.sp-hamburger.active button .bar::after{
    transform: rotate(-45deg);
    background-color: #fff;
    opacity: 1;
    top: 0;
}

.sp-nav{
    width: 100%;
    padding: 0 3% 0 2%;
}
.sp-nav .sp-nav-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-bottom: 30px;
}
.sp-nav .sp-nav-list li{
    width: calc(100% / 3);
    font-size: 20px;
    font-family: var(--mincho);
    font-weight: bold;
}
.sp-nav .sp-nav-list li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-left: 3px solid #fff;
    line-height: 1;
    padding: 0 20px 2px 10px;
    position: relative;
}
.sp-nav .sp-nav-list li a::after,
.sp-nav .sp-nav-field li a::after{
    content: "";
    background-image: url(../img/common/arw-wh.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 7px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.sp-nav .sp-nav-field li a::after{
    right: 5px;
}
.sp-nav .sp-nav-field-title{
    background-color: #fff;
    color: #080e37;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    padding: 8px 10px 10px;
    width: 100%;
    margin-bottom: 10px;
}
.sp-nav .sp-nav-field{
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    margin-bottom: 20px;
}
.sp-nav .sp-nav-field li{
    width: calc(100% / 4 - 10px);
    font-size: 16px;
}
.sp-nav .sp-nav-field li a{
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #4b4b50;
    line-height: 1;
    padding: 13px 8px 15px;
    height: 100%;
}
.sp-nav .url-btn{
    width: 280px;
    height: 50px;
    border-radius: 100px;
    background-color: #760e0e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
}
.sp-nav .url-btn::after{
    content: "";
    background-image: url(../img/common/arw-wh.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    position: absolute;
    top:50%;
    right: 10px;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .sp-nav .sp-nav-list li{
        font-size: 18px;
    }
    .sp-nav .sp-nav-field li{
        width: calc(100% / 3 - 10px);
    }
}
@media (max-width: 649px) {
    .sp-nav .sp-nav-list li{
        width: calc(100% / 2);
    }
    .sp-nav .sp-nav-field li{
        width: calc(100% / 2 - 10px);
    }
}
@media (max-width: 499px) {
    .sp-nav .sp-nav-list li{
        width: calc(100% / 1);
    }
    .sp-nav .url-btn{
        font-size: 16px;
    }
}
@media (max-width: 399px) {
    .sp-nav .sp-nav-list li{
        font-size: 16px;
    }
    .sp-nav .sp-nav-field li{
        width: 100%;
        font-size: 14px;
    }
    .sp-nav .sp-nav-field li a{
        padding: 10px 8px 12px;
    }

}


/* メディアクエリで表示を切り替え */
@media (min-width: 1024px) {
    .sp-header, .sp-hamburger {
        display: none;
    }
}

@media (max-width: 1023px) {
    .pc-header {
        display: none;
    }

    .header{
        height: 80px;
        background-color: var(--navy);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }
}

@media (max-width: 499px) {
    .header {
        height: 70px;
    }

    .sp-hamburger {
        top: 18px;
        right: 15px;
    }
}

@media (max-width: 399px) {
    .header {
        height: 60px;
    }

    .sp-hamburger {
        width: 32px;
        height: 28px;
        top: 14px;
        right: 10px;
    }

    .sp-hamburger button .bar::before{
        top: -13px;
    }

    .sp-hamburger button .bar::after{
        bottom: -13px;
    }
}

/*------------------------------------------
メインコンテンツ上のロゴ/言語切り替えボタン
------------------------------------------*/
.header__area {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    top: 27px;
    left: 30px;
}

.header__logo{
    width: 300px;
    aspect-ratio: 300/25;
}

.header__logo a{
    display: flex;
    align-items: center;
}

.lang{
    line-height: 1;
    margin-top: -3px;
}

.lang__items{
    display: flex;
    gap: 20px;
}

.lang__item{
    position: relative;
}

.lang__item:first-of-type:after{
    content: "/";
    display: inline-block;
    font-weight: 700;
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
}

.lang__item a{
    font-family: var(--en-sans-font);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 1023px) {
    /* .header__logo {
        width: max(200px, 29vw);
    } */

    .header__logo{
        /* width: 57.5vw; */
        width: min(57.5vw, 345px);
    }

    .header__logo a {
        display: inline;
    }

    .header__area {
        gap: 22px;
        position: fixed;
        top: 25px;
        left: 25px;
        z-index: 999;
    }
    .lang__item{
        color: #fff;
    }
    .lang__item a {
        font-size: 20px;
        color: #fff;
    }

    .lang__item:first-of-type:after {
        color: #fff;
    }
}

@media (max-width: 499px) {
    .header__area {
        top: 22px;
        left: 15px;
    }

}
@media (max-width: 399px) {
    .header__area {
        gap: 5.5vw;
    }

    .header__logo {
        width: 50vw;
    }

    .header__logo a {
        position: relative;
        /*top: -6px;*/
    }

    .lang__item a {
        font-size: 18px;
    }
}

/*------------------------------------
フッター
------------------------------------*/

footer{
    background-color: #0c0c0d;
    color: #fff;
    padding: 190px 0;
    margin-left: 100px;
}

.footer__contents{
    border-bottom: 1px solid #8d8d8d;
    padding-bottom: 160px;
    position: relative;
}

.footer__contents::before{
    content: "";
    display: block;
    background-image: url(../img/common/footer-map_pc.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 599px;
    aspect-ratio: 599/517;
    position: absolute;
    bottom: 55px;
    right: 0;
}

.webp .footer__contents::before{
    background-image: url(../img/common/footer-map_pc.png.webp);
}

.footer_text{
    font-family: var(--mincho);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.11em;
}

.footer_text .--large{
    font-size: 1.764em;
}

.footer_text .block:nth-of-type(2){
    letter-spacing: 0.04em;
}

.footer_text .block:nth-of-type(3){
    margin-top: 0.3em;
    letter-spacing: 0.04em;
}

.footer_text .ten{
    margin-right: -8px;
}

.footer__link{
    margin-top: 60px;
}

.footer__link .link-btn{
    max-width: 500px;
}

.footer__nav{
    padding-top: 55px;
}

.footer__nav-items{
    display: flex;
    gap: 20px 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer__nav-item a{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    padding-right: 0.5em;
    position: relative;
}

.footer__nav-item a:hover{
    opacity: 1;
    text-decoration: underline;
}

.footer__nav-item a::before{
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    right: 0;
    top: 49%;
    transform: rotate(45deg) translateY(-50%);
}

.copy{
    color: #a6a6a6;
    font-family: var(--mincho);
    font-weight: 400;
    letter-spacing: 0.11em;
    text-align: center;
    margin-top: 26px;
}

@media (max-width: 1399px) {
    footer {
        padding: max(80px, 14vw) 0;
    }

    .footer_text {
        font-size: 2.3vw;
    }

    .footer__contents::before {
        width: 42vw;
    }
}

@media (max-width: 1299px) {
    .footer__link .link-btn {
        max-width: 38.5vw;
    }
}

@media (max-width: 1194px) {
    .footer__contents {
        padding-bottom: 90px;
    }

    .footer__link {
        margin-top: 120px;
    }

    .footer__link .link-btn {
        max-width: 42vw;
        font-size: 18px;
    }

    .footer__contents::before {
        bottom: 80px;
    }
}

@media (max-width: 1023px) {
    footer {
        margin-left: 0;
    }

    .footer__contents {
        padding-bottom: 60px;
    }

    .footer__contents::before {
        bottom: auto;
        top: -10px;
    }

    .footer_text {
        font-size: max(24px, 3vw);
        padding-right: 30%;
    }

    .footer_text .tab-block{
        display: block;
        line-height: 1;
    }

    .footer_text .block:nth-of-type(2) {
        margin-top: 0.5em;
    }

    .footer_text .block:nth-of-type(3) {
        margin-top: 0.6em;
    }

    .footer__link {
        margin-top: 15vw;
        text-align: center;
    }

    .footer__link .link-btn {
        max-width: 450px;
        font-size: 18px;
    }

    .footer__nav-item a {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 80px 0;
    }

    .footer__contents {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__contents::before {
        order: 2;
        background-image: url(../img/common/footer-map_sp.png);
        margin-top: 40px;
        width: 80%;
        position: static;
    }

    .webp .footer__contents::before {
        background-image: url(../img/common/footer-map_sp.png.webp);
    }

    .footer_text{
        order: 1;
        font-size: max(20px, 4vw);
        text-align: center;
        padding-right: 0;
    }

    .footer__link{
        order: 3;
        margin-top: 50px;
        width: 100%;
    }

    .footer__nav-items {
        flex-direction: column;
        align-items: center;
    }

    .copy {
        font-size: 14px;
    }
}

@media (max-width: 499px) {
    .footer__contents::before {
        width: 100%;
    }

    .footer__link .link-btn{
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.4;
        height: 70px;
    }

    .footer__link .link-btn .inbl{
        display: block;
    }
}

@media (max-width: 399px) {
    .footer__link .link-btn {
        font-size: 16px;
    }

    .footer_text {
        font-size: 5vw;
    }
}

@media (max-width: 359px) {
    .footer__link .link-btn {
        font-size: 15px;
    }
}
