@charset "utf-8";

:root {
    --layout-max: 500px;
    --color-accent: #B6AEA6;
    --color-text: #454545;
    --color-text-bold: #545454;
}

html {
    max-width: var(--layout-max);
    margin: 0 auto;
}

body {
    width: 100%;
    margin: 0;
    background-color: #252526;
    font-family:"Yu Gothic","YuGothic","Hiragino Sans","Meiryo",sans-serif;
}

section{
    margin-bottom: 64px;
}
p{
    color: var(--color-text);
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    font-feature-settings: "palt";
}
h3,h4{
    color: var(--color-text-bold);
}

.wrapper{
    background-color: #FFFDFB;
    padding-top: 72px;
}

.header_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: min(100%, var(--layout-max));
    max-width: var(--layout-max);
    margin-inline: auto;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px 12px;
    box-sizing: border-box;
    background-color: #FFFDFB;
}

.header_wrapper .logo {
    flex: 1;
    min-width: 0;
}

/*================ header ================*/
#header{
    box-sizing: border-box;
}
.header_container{
    position: fixed;
    top:0;
    display: flex;
    width: 94%;
    justify-content: space-between;
    padding: 10px 60px 30px 60px;
    z-index: 9998;
    background: #fff;
    align-items: end;
}
.logo a{
    align-items: center;
}
.logo img{
    max-width: 100px;
}

#header{
    height: auto;
}
.sp_nav{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: min(100%, var(--layout-max));
    max-width: var(--layout-max);
    margin-inline: auto;
    height: 100vh;
    box-sizing: border-box;
    background-color:#FFFDFB;
    z-index: 9995;
    padding: 80px 40px;
}
.sp_nav_contact{
    display: flex;
    margin-top: 50px;
    justify-content: right;
    padding-right: 20px;
}
.sp_nav_contact li{
    font-size: 17px;
    padding: 10px;
}
.sp_nav_contact .gnv-border{
    width: 30px;
    margin-top:16px;
    border: 0.7px solid #252526;
}
.header_nav ,.header_contact{
    display: none;
}
.header_container{
    width: 100%;
    padding:30px 39px;
}
.hamburger{
    display: block;
    cursor: pointer;
    height: 13px;
    width: 33px;
    position: relative;
    flex-shrink: 0;
    z-index: 9999;
}
.hamburger span{
    width: 33px;
    height: 2px;
    background-color: #252526;
    position: absolute;
    content: "";
    z-index: 9999;
    transition: 0.3s;
}
.hamburger span::before,
.hamburger span::after{
    position: absolute;
    content: "";
    width: 33px;
    height: 2px;
    background-color: #252526;
    transition: 0.3s;
}
.hamburger span::before{
    top:-10px;
}
.hamburger span::after{
    top: 10px;
}
.open span{
    background: transparent;
}
.open span::before{
    transform: rotate(45deg);
    top:0;
}
.open span::after{
    transform:rotate(-45deg);
    top: 0;
}
.logo img{
    vertical-align: middle;
}

/*================ hamburger ================*/
.sp_nav_title{
    max-width: 300px;
}
.sp_nav_list{
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sp_nav_item{
    padding: 10px 0;
    font-size: 17px;
    font-weight: 200;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: left;
}
.sp_nav_item::before{
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--color-accent);
    border-right: 1px solid var(--color-accent);
    transform: rotate(45deg) translateY(-3px);
    flex-shrink: 0;
    margin-right: 8px;
    transition: transform 0.3s;
}
.sp_nav_item a{
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-text);
}
.sp_nav_item img{
    display: block;
    width: auto;
    height: 16px;
    margin-top: 8px;
}
.btn{
    margin-top: 32px;
    text-align: center;
    color: var(--color-text);
    font-size: 17px;
    font-weight: 200;
    letter-spacing: 1px;
    line-height: 1.5;
}
.btn a{
    display: inline-block;
    padding: 12px 32px;
    background-color: #fff;
    border: 1px solid #252526;
    border-radius: 40px;
    font-weight: 600;
    text-align: center;
}



.fv {
    position: relative;
}
.fv_slider {
    display: grid;
    width: 100%;
}
.fv_slide {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.fv_slide.is-active {
    opacity: 1;
    z-index: 1;
}
.fv_slide img {
    width: 100%;
    height: auto;
    display: block;
}
.fv_dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.fv_dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.fv_dot.is-active {
    background: var(--color-accent);
    transform: scale(1.15);
}
.fv_cta{
    margin: 72px 0;
}
.fv_cta img{
    height: 18px;
}
.fv_cta .btn{
    margin-top: 6px;
}
.intro{
    text-align: center;
    letter-spacing: 1px;
}

.staff-voice{
    padding: 0 24px;
}
h2{
    margin-bottom: 8px;
}
h2 span{
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 200;
}
h2 img{
    display: block;
    width: auto;
    height: 30px;
}
.section_title{
    margin-bottom: 32px;
}

.staff-voice_list{
    margin-bottom: 80px;
}
.staff-voice_list_title{
    display: flex;
    text-align: left;
    align-items: flex-end;
    gap: 8px;
}
.staff-voice_list_title img{
    width: auto;
    height: 22px;
}
.staff-voice_list_title span{
    font-size: 13px;
    font-weight: 200;
    letter-spacing: 1px;
    line-height: 1.5;
    color: var(--color-accent);
}
.staff-voice_list_content{
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0 32px 0;
}
.staff-voice_list_content img{
    width: 45%;
    flex: 0 0 45%;
    height: auto;
}
.staff-voice_list_info{
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
}
.staff-voice_list_info_item h4{
    grid-column: 2;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: 0;
}
.staff-voice_list_info_item p{
    grid-column: 2;
    font-size: 16px;
    font-weight: 100;
    margin: 0;
}
.staff-voice_list_info_item {
    border-left: 2px solid var(--color-accent);
    padding-left: 16px; /* ラインと中身の間隔 */
}
@media (max-width: 390px){
    .staff-voice_list_content{
        flex-direction: column;
        gap: 12px;
    }
    .staff-voice_list_content img{
        width: min(62%, 200px);
        flex-basis: auto;
    }
    .staff-voice_list_info{
        width: 100%;
    }
}
/*.staff-voice_list_info_item::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    min-height: 35px;
    background-color: var(--color-accent);
    grid-row: 1 / 3;
}*/
.staff-voice_list_reason{
    margin-bottom: 32px;
}
.staff-voice_list_reason h4{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.staff-voice_list_reason h4::after{
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--color-accent);
}
.staff-voice_list_reason span{
    color: var(--color-text-bold);
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 0;
}
.staff-voice_list_reason span::after{
    content: "";
    position: absolute;
    width: 99%;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 5px;
    background-color: #EEE7E0;
    z-index: -1;
}
.niche_image{
    margin-bottom: 80px;
}
.loadmap{
    padding: 0 24px;
    margin-bottom: 80px;
}
.loadmap_tabs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
    text-align: center;
}
.loadmap_tab{
    width: 142px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--color-text);
    background-color: #fff;
    color: var(--color-text);
    padding: 12px 10px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 200;
    font-style: italic;
    font-family: "Inter", system-ui, sans-serif;
    letter-spacing: 3px;
    line-height: 1;
    cursor: pointer;
    position: relative;
}
.loadmap_tab[data-loadmap-tab="hair"]{
    justify-self: end;
}
.loadmap_tab[data-loadmap-tab="eye"]{
    justify-self: start;
}
.loadmap_tab.is-active{
    background-color: var(--color-text);
    color: #fff;
}
.loadmap_tab.is-active::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 9px solid var(--color-text);
}
.tab_item{
    display: none;
}
.tab_item.is-active{
    display: block;
}

.tab_item_title{
    display: none;
}
.tab_item_content img{
    width: 100%;
    height: auto;
    display: block;
}
.recruit{
    padding: 0 24px;
    margin-bottom: 80px;
}
.recruit_list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family:"Inter","Yu Gothic","YuGothic","Hiragino Sans","Meiryo",sans-serif;
    font-weight: 300;
}
.recruit_item_title{
    color: var(--color-text-bold);
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}
.recruit_item_content{
    margin: 0;
    font-weight: 300;
}
.recruit_salary{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.recruit_salary_line{
    display: flex;
    align-items: center;
    gap: 0;
}
.recruit_salary_role,
.recruit_salary_amount{
    white-space: nowrap;
}
.recruit_salary_role{
    margin-right: 8px;
}
.recruit_salary_dots{
    flex: 1;
    height: 8px;
    background-image: radial-gradient(circle, var(--color-text) 1px, transparent 1px);
    background-size: 16px 5px;
    background-repeat: repeat-x;
    background-position: left center;
}
.recruit_salary_amount {
    margin-left: 5px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.recruit_salary_suffix {
    display: inline-block;
    margin-right: -1em;
}
.recruit_item_content_note{
    font-size: 14px;
}
.recruit_item_title span{
    font-weight: 300;
}
.recruit_item_content_note{
    font-size: 14px;
}
.recruit_item_content h4{
    margin: 4px 0;
}
.recruit_item_content p {
    margin-left: 1em;
    font-weight: 300;
}
.recruit_item {
    border-left: 2px solid var(--color-accent);
    padding-left: 16px; /* ラインと中身の間隔 */
}
.faq .section_title{
    padding: 0 24px;
}
.faq_answer{
    margin: 16px 0;
}
.faq_answer img{
    width: 90%;
}
.faq_answer p{
    width: 90%;
    margin: 16px auto 32px;
}
.faq_question{
    width: 96%;
}
.contact{
    padding: 0 24px;
    margin-bottom: 80px;
    font-family:"Inter","Yu Gothic","YuGothic","Hiragino Sans","Meiryo",sans-serif;
}
.contact_form_section {
    background: #000;
    color: #fff;
    padding: 56px 0 72px;
}
.contact_form_inner {
    width: min(100%, 375px);
    margin: 0 auto;
}
.contact_form_lead_top {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}
.contact_form_title {
    margin: 4px 0 20px;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.08em;
}
.contact_form_lead {
    margin: 0 0 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
}
.contact_form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact_form_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact_form_label {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-text-bold);
}

.contact_form_label span {
    font-size: 14px;
    font-weight: 400;
}
.contact_form_label_optional{
    color: var(--color-accent);
}
.contact_form_input,
.contact_form_textarea {
    width: 100%;
    border: 1px solid var(--color-accent);
    background: #fff;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
}
.contact_form_input {
    height: 48px;
    padding: 0 20px;
    border-radius: 999px;
}
.contact_form_textarea {
    min-height: 220px;
    padding: 18px 20px;
    border-radius: 4px;
    resize: vertical;
}

.contact_form_input::placeholder,
.contact_form_textarea::placeholder {
    color: #9E9E9E;
    font-weight: 300;
}
.contact_form_input:focus,
.contact_form_textarea:focus {
    border-color: var(--color-accent);
}
.contact_form_checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact_check {
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    position: relative;
    width: fit-content;
}
.contact_check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.contact_check_box {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid var(--color-accent);
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
}
.contact_check_text {
    color: var(--color-text-bold);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.contact_check input:checked + .contact_check_box::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 6px;
    width: 5px;
    height: 10px;
    border-right: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(45deg);
}
.contact_form_privacy {
    margin: 0 auto;
    margin-top: 8px;
}
.contact_check_privacy {
    align-items: flex-start;
}
.contact_check_privacy .contact_check_text {
    font-size: 14px;
    line-height: 1.8;
}
.contact_form_submit_wrap {
    text-align: center;
    margin-top: 8px;
}
.contact_form_submit {
    min-width: 246px;
    height: 48px;
    padding: 0 24px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.contact_form_submit:hover {
    opacity: 0.85;
}
.salon-info{
    padding: 0 24px 24px;
    margin-bottom: 0;
}
.salon-info_content_inner img{
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}
.salon-info_content_inner p{
    font-family:"Inter","Yu Gothic","YuGothic","Hiragino Sans","Meiryo",sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.salon_info_list{
    font-family:"Inter","Yu Gothic","YuGothic","Hiragino Sans","Meiryo",sans-serif;
    color: var(--color-text);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.7;
    margin-bottom: 32px;
}
iframe{
    width: 100%;
    height: 250px;
}
.copyright{
    margin: 24px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
}
.salon_info_item {
    display: grid;
    grid-template-columns: 56px 1fr; /* ← ラベル幅 */
    column-gap: 16px;
    align-items: start;
}
.salon_info_value {
    margin: 0;
}
.to-top-button {
    position: fixed;
    right: max(16px, calc(50% - var(--layout-max) / 2 + 16px));
    bottom: 24px;
    z-index: 9994;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    background-color: #fffdfb;
    text-decoration: none;
    font-size: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.to-top-button::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--color-accent);
    border-right: 1px solid var(--color-accent);
    transform: rotate(-45deg) translateY(1px);
}
.to-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.privacy{
    padding: 20px;
    margin-bottom: 0;
}
.privacy_content h3{
    margin-bottom: 16px;
}
.privacy_content{
    margin-bottom: 24px;
}
.privacy_content_link{
    font-size: 12px;
}
.privacy h2{
    color: var(--color-accent);
}
.privacy_content ul{
    list-style: disc;
    margin-left: 17px;
    color: var(--color-text);
}
.thanks{
    margin: 0 auto;
    text-align: center;
    padding: 100px 24px;
}
.thanks h2{
    margin: 0 auto 60px;
    width: 250px;
}
.thanks_btn{
    margin: 0 auto;
}
.thanks_btn_insta{
    width: 40px
}
.thanks_btn_logo{
    width: 100px
}
.thanks .intro_text{
    margin-bottom: 60px;
}
.thanks_btn{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.thanks_wrapper{
    height: 100vh;
}
