@charset "utf-8";

body{
    font-family: "Noto Sans SC", sans-serif;
    color: #a5a5a5;
    font-size: 16px;
    background-color: #ffffff;
}

img{
    max-width: 100%;  /* 画像が親要素の幅を超えないようにする */
    height: auto;  /* 画像の縦横比を保つ */
    vertical-align: bottom; /* 下側の余白を消す */
}
video{
    max-width: 100%; 
    height: 100%;
}

/*
★　font-family: "Crimson Pro", serif; 
font-family: "EB Garamond", serif;
*/


/*side-bar*/
.sp-side{
    display: none;
}
.side-bar{
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    width: min(10.7vw,50px);
    z-index: 10;
    background-color: #ffffff;
}
.side-contents{
    position: relative;
    height: 100%;
}
.side-contents p{
    font-family: "Crimson Pro", serif;
    position: absolute;
    top: 10%;
    left: 50%; /* サイドバーの中央に配置 */
    transform: translateX(-50%) rotate(-90deg); /* 中央に揃えつつ90度回転 */
    width: 500px;
    font-size: 14px;
}
.side-icons{
    position: absolute;
    bottom: 30%;
}
.side-icons{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.side-icon{
    padding: 5px;
    width: 70%;
}

/*ハンバーガーメニュー*/
.sp-menu{
    display: none;
}
.hamburger__btn{
    margin-left: auto;
    font-size: larger;
    margin-bottom: 5px;
    color: #a5a5a5;
}
/* ハンバーガーメニュー */
.menu{
    display: none;
}
.add-menu{
    position: fixed;
    top: 0;
    right: 0;
    background-color: #ffffff;
    display: block;
    width: 100%;
    height: 100vh;
    z-index: 100;
}
.add-menu li{
    margin: 5px;
    padding: 10px;
    text-align: left;
    font-size: 14px;
}
.sp-links{
    width: 70%;
    margin: auto;
    transform: translateY(15%);
}
.sp-nav-icon img{
    width: 20px;
}
.add-menu li a{
    width: 100%;
    display: inline-block;
}
.add-menu li a:hover{
    color: #707070;
}
.add-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    background-color: rgb(255, 255, 255,0.5);/*仮置き*/
    z-index: 1;
}
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}


/*
header
*/
.header{
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5.2vw;
    height: 90px;
    padding: 30px 0;
    position: fixed;
    top: 0; 
    left: 0; 
    z-index: 2;
    width: 100%;
    }
.site-title a{
    display: inline-block;
    padding-left: 50px;
    width: 200px;
}
.header-nav{
    display: flex;
    align-items: center;
    gap: 3.0vw;
    font-size: clamp(16px,1.7vw,24px);
    font-weight: lighter;
    letter-spacing: 0.3rem;
}
.header-nav li{
    height: 100%;
}
.header-nav li a{
    display: inline-block;
    color: #ffffff;
    height: 100%;
}
.header-nav li a:hover{
    color: #707070;
}
.nav-icons{
    display: flex;
    align-items: center;
    gap: 1.5vw;
}
.nav-icon{
    width: 2.0vw;
    height: auto;
}
.nav-icon img {
    padding-top: 10px;
    display: block;
}

/* スクロール後 */
.header.scrolled {
    color: #333333; /* 文字色: 黒 */
    background-color: #ffffff; /* 背景色: 白 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 適度なシャドウ (任意) */
    height: 100px;
}
.header.scrolled .site-title a{
    color: #333333;
}
.header.scrolled .header-nav li a {
    color: #333333;
}
.header.scrolled .header-nav li a:hover{
    color: #707070;
}

/*fv*/
.fv{
    height: calc(100vh + 200px);
    overflow: hidden; /* 必要に応じて余分な部分を隠す */
}
.fv img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像の比率を保ちつつ領域を埋める */
    object-position: center; /* 画像の中心を基準に表示 */
    /* object-position: top;  */
}

/*common*/
section{
    padding: 40px 40px 0;
}
.title{
    color: #707070;
    font-family: "Crimson Pro", serif; 
    font-size: clamp(50px,5.0vw,80px);
    position: relative;
}
.sub-title{
    font-family: "Noto Sans SC", sans-serif;
    font-size: clamp(12px,1.2vw,16px);
    transform: translateY(-5px);
    padding-bottom: 40px;
}
.space{
    margin: 0 5px;
}
a{
    color: #a5a5a5;
}
.sp-img-wrapper{
    display: none;
}

/*Concept*/
.concept-wrapper{
    display: flex;
}
.concept-imgs{
    width: 55%;
}
.concept-img:first-child{
    width: 93%;
    transform: translate(10px,40px);
}
.concept-img:last-child{
    width: 75%;
    clip-path: inset(40px 0 40px 0); /* 上下50pxをカット */
    transform: translate(50%,-20%);
}
.concept-text{
    width: 45%;
    padding-top: 5.0vw;
    font-size: clamp(13px,1.2vw,18px);
    letter-spacing: 0.15rem;
    line-height: 1.8;
}


/*salon work*/
.swiper {
    width: 100%;
}
.swiper-slide {
    height: 100%;
    cursor: pointer; /* カーソルをポインタに設定 */
}
.swiper-slide:hover{
    transform: scale(1.03);
}
.img-cut{
    clip-path: inset(0 0 min(1.8vw,18px) 0); /* 下12pxをカット */
}
.work-link{
    padding-bottom: 50px;
}
.work-link a{
    display: inline-block;
    padding: 10px 10px 10px 0px;
}
.work-link a:hover{
    color: #707070;
}

/*staff*/
.staff-interview{
    padding-bottom: 50px;
}
.staff-wrapper{
    display: flex;
    flex-wrap: wrap; /* コンテンツが折り返せるように設定 */
    gap: 20px 5px;
    margin: auto;
}
.staff{
    max-width: calc((100% - 15px) / 4);
    opacity: 1;
    transition: opacity 0.5s, transform 0.5s;
}
.staff-img{
    width: 100%;
    aspect-ratio: 1 / 1; /* 縦:横 = 1:1 */
    overflow: hidden;
}
.staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナ内に収める */
    object-position: top; /* 画像の中心を基準に表示 */
}
.staff-name{
    font-size: clamp(16px, 2.6vw, 30px);
}
.staff-attention{
    font-size: clamp(6.5px, 1.9vw, 10px);
    text-align: right;
}
.staff-detail{
    font-size: clamp(12px, 1.8vw, 20px);
}
.staff-link{
    width: 40px;
    margin: 10px 0;
}
.staff:hover{
    opacity: 0.7; /* 白をかける透明度 */
}
.staff-link a{
    display: block;
}

/* 閉じるボタンのスタイル */
/* Remodal 本体 */
.remodal {
    position: relative; /* 必要: 閉じるボタンを位置指定するため */
}

/* 閉じるボタン */
.remodal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    display: block;
    width: 40px; /* ボタンの幅 */
    height: 40px; /* ボタンの高さ */
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none; /* ボタン枠線をなくす */
    background: transparent; /* 背景を透明に */
    outline: none; /* フォーカス枠を削除 */
}

/* 閉じるボタンアイコン */
.remodal-close::before {
    content: "✖"; /* 「×」を表示 */
    display: block;
    font-size: 24px; /* アイコンのサイズ */
    font-weight: bold; /* 太字にする */
    color: #333; /* 色 */
    text-align: center; /* 中央揃え */
    line-height: 40px; /* ボタンと同じ高さに揃える */
}

/* ホバー時のスタイル */
.remodal-close:hover::before {
    color: #000; /* ホバー時に色を変更 */
}

.staff-video {
    padding-top: 20px;
    position: relative;
    height: 80vh;
    margin: auto;
}
.no-video{
    font-size: 20px;
    padding: 20px 30px;
    border: 1px solid #a5a5a5;
}

/*フェードインして表示*/
.staff.hidden {
    opacity: 0;
    transform: translateY(200px); /* 少し下に隠す */
    pointer-events: none;
}

.staff.hidden.show {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻す */
    pointer-events: auto;
}
.staff.hidden.show:hover{
    opacity: 0.7; /* 白をかける透明度 */
}

/*message*/
.message{
    padding-bottom: 100px;
}
.message-wrapper{
    display: flex;
}
.message-content{
    width: 30%;
}
.message-content_under{
    transform: translate(-10px,60px);
}
.message-content p{
    padding-top: 5px;
}
.message-text{
    margin-left: 40px;
    padding: 10px;
    font-size: clamp(12px,1.0vw,16px);
}

/*recruit*/
.recruit{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f7f7f7;
}
.recruit-content{
    max-width: 600px;
    padding-bottom: 20px;
    margin: auto;
}
.recruit-space{
    margin: 0.5rem;
}
.recruit-row {
    display: flex;
    margin-bottom: 6px;
    align-items: flex-start;
    gap: 24px;
}
.label {
    width: 90px;
    white-space: nowrap;
}
.value {
    flex: 1;
}
.rate-table {
    border-collapse: collapse;
    margin-bottom: 20px;
    width: auto;
}
.rate-table th{
    text-align: left;
}
.rate-table td,
.rate-table th {
    padding: 4px 8px;
}

.rate-table td:nth-child(1) {
    white-space: nowrap; /* 金額の改行を防止 */
}

.rate-table td:nth-child(2) {
    width: 1em;  
    text-align: center; /* コロンを中央に */
}

.rate-table td:nth-child(3) {
    white-space: nowrap;
}


/*contact*/
.contact-form{
    width: 60%;
    margin: auto;
}
.form-name{
    display: flex;
    gap: 20px;
}
.name{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.form{
    display: flex;
    flex-direction: column;
}
label{
    font-size: 11px;
}
input,select{
    height: 50px;
    margin-bottom: 20px;
    border: #C9C9C9 solid 1px;
}
textarea{
    height: 200px;
    border: #C9C9C9 solid 1px;
    margin-bottom: 20px;
}
::placeholder{
    color: #BFBEBE;
    font-size: 9px;
    padding: 10px;
}
.form-btn{
    width: 100%;
    height: 50px;
    margin-bottom: 40px;
}
.form-btn input{
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #707070;
    border: #EBEBEB solid 1px;
    background-color: #EBEBEB;
}


/*infomation*/
.infomation-detail{
    line-height: 1.8;
    padding: 0 0 50px;
}
.map{
    width: 100%;
    height: 400px;
}


/*
レスポンシブ
*/
@media screen and (max-width: 1199px) {
    /* 1199px以下のスタイル（デスクトップ） */
    .space{
        margin: 3px;
    }
    header{
        gap: 4.0vw;
        height: 80px;
    }
    .site-title a {
        padding-left: 20px;
        width: 140px;
    }
    .header.scrolled {
        height: 80px;
    }
    .header-nav {
        gap: 2.5vw;
        font-size: clamp(16px, 1.7vw, 24px);
        letter-spacing: 0.3rem;
    }
    .concept-img:last-child {
        width: 75%;
        clip-path: inset(40px 0 40px 0);
        transform: translate(40%, -10%);
    }
    .staff-link{
        width: 30px;
        margin: 10px 0;
    }
    .message-content {
        width: 40%;
    }
    .message-text {
        margin-left: 20px;
        font-size: clamp(10px, 1.0vw, 16px);
    }
    .contact-form {
        width: 70%;
        margin: auto;
    }
}

@media screen and (max-width: 959px) {
    /* 959px以下のスタイル（タブレット横向き） */
    header{
        gap: 2.7vw;
        height: 70px;
    }
    .site-title a {
        width: 120px;
    }
    .header-nav {
        gap: 2.0vw;
        font-size: clamp(16px, 1.7vw, 24px);
        letter-spacing: 0.2rem;
    }
    .header.scrolled {
        height: 70px;
    }
    .concept-text {
        font-size: clamp(10px, 1.2vw, 18px);
    }

    .message-content {
        width: 50%;
    }
    .message-text {
        margin-left: 20px;
        font-size: clamp(10px, 1.0vw, 16px);
    }
    .message-content p {
        font-size: 14px;
    }
    .message-content_under {
        transform: translate(-5px, 60px);
    }
    .contact-form {
        width: 80%;
        margin: auto;
    }
}

@media screen and (max-width: 767px) {
    /* 767px以下のスタイル（タブレット縦向き） */

    .sp-side{
        display: block;
    }
    .header{
        background-color: #ffffff;
        height: 50px;
        position: fixed;
        z-index: 50;
    }
    .header.scrolled {
        height: 50px;
    }
    .site-title a{
        width: 100px;
    }
    .pc-menu{
        display: none;
    }
    .sp-menu{
        display: block;
    }

    /*fv*/
    .fv{
        height: 80vh;
        padding-left: 30px;/*追加*/
    }

    /*common*/
    section{
        padding: 50px 20px 0 60px;
    }

    /*Concept*/
    .concept-wrapper{
        flex-direction: column;
    }
    .concept-imgs{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }
    .concept-img:first-child{
        width: 90%;
        clip-path: inset(0 80px 0 80px); 
        transform: translateX(-60px);
    }
    .concept-img:last-child{
        width: 80%;
        clip-path: inset(0 70px 0 70px); 
        transform: translate(15%,-20%);
    }
    .concept-text{
        width: 95%;
        margin: auto;
        padding-top: 0;
        letter-spacing: 0.1rem;
    }

    /*staff*/
    .staff{
        max-width: calc((100% - 15px) / 2);
    }
    .staff-img{
        aspect-ratio: 3 / 4; /* 縦:横 = 4:3 */
    }

    /*message*/
    .message-wrapper{
        flex-direction: column;
    }
    .message-content{
        display: none;
    }
    .message-text{
        width: 90%;
        margin: auto;
    }

    .sp-img-wrapper{
        display: block;
        position: relative;
        height: 30vh;
        overflow: hidden;
        margin-bottom: 80px;
    }
    .sp-message-img img{
        position: absolute; 
        left: 0;
        top: 0;
        width: 100%;
        height: 100%; 
        object-fit: cover; 
        object-position: 20% 40%; 
    }

    /*recruit*/
    .recruit-content{
        width: 90%;
        margin: auto;
        font-size: 12px;
    }
    .recruit-row {
        gap: 16px;
    }
    .label {
    width: 80px;
    }

    .contact-form {
        width: 90%;
        margin: auto;
    }
    
    /*infomation*/
    .infomation-detail{
        font-size: 12px;
        line-height: 2.5;
        padding: 0 0 30px;
    }
    .map{
        width: 90%;
        padding-left: 40px;
        margin: auto;
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    /* 480px以下のスタイル（スマホ用） */
    .add-menu li{
        font-size: 11px;
    }
    .sp-links{
        width: 90%;
    }

    .title {
        font-size: clamp(35px, 8.0vw, 80px);
    }
    .title p {
        padding-bottom: 30px;
    }

    .concept-imgs {
        align-items: flex-start;
    }
    .concept-img:first-child {
        width: 120%;
        clip-path: inset(0 50px 0 40px);
    }
    .concept-img:last-child {
        width: 90%;
        clip-path: inset(0 40px 0 40px);
        transform: translate(30%, -20%);
    }
    .work-link {
        font-size: 12px;
    }
    .sp-img-wrapper {
        margin-bottom: 30px;
    }
    .sp-message-img img {
        height: 80%;
    }
    .message {
        padding-bottom: 50px;
    }
    .sp-img-wrapper{
        height: 25vh;
    }
    .recruit-content {
        width: 100%;
        font-size: 10px;
    }
    .label {
        width: 60px;
    }
    .contact-form {
        width: 100%;
    }
    .form-name {
        gap: 10px;
    }
    .infomation-detail {
        font-size: 10px;
        line-height: 3.0;
        padding: 0 0 30px;
    }

}


/*
thanksページ
*/
.thanks-wrapper{
    max-width: 850px;
    margin: 30px auto;
    text-align: center;
    line-height: 2;
    padding: 0 30px;
}
.thanks-link{
    margin-top: 30px;
    color: #a5a5a5;
}
.thanks-link a:hover{
    color: #707070;
}