@charset "utf-8";

/* すべての要素に適用 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    font-size: 16px;
}

body {
    /* font-family: 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
    font-family: 'Canela Web', '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.25;
    font-feature-settings: "palt";
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    margin: 0;
    padding: 0;

}

/* haeder */
.header {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    height: 4.6875rem;
    width: 100%;
    background-color: rgb(0, 0, 0);

}

/* headerにactive付与時の状態 */
.header.active {
    background: rgba(51, 51, 51, .8);
    ;
}


.header-inner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 100px;
}

.header-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}


/* header-logo-linkにactive付与時の状態 */
.header-logo-link.active {
    transform: scale(1.75);
    /* 拡大するサイズ（例：1.1倍） */
}


.header-logo-link img {
    height: 3rem;
    /* 高さを制限して収める */
    width: auto;
}

.header-salon-name {
    font-size: 0.75rem;
    margin-left: 5px;
    color: #ffffff;
}



/* hamburger */
.hamburger {
    height: 100%;
    width: 4.6875rem;
    background: rgba(51, 51, 51, .8);
    padding: 25px;
    display: flex;
    align-items: center;

}

/* hamburgerにactive付与時の状態 */
.hamburger.active {
    background-color: rgb(0, 0, 0);

}

.hamburger-line {
    height: 1px;
    width: 100%;
    background-color: #ffffff;
    position: relative;
}

.hamburger-line::before,
.hamburger-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transition: 0.3s;
}


.hamburger-line::before {
    top: -7px;
}

.hamburger-line::after {
    top: 7px;
}





/* hamburgerにactive付与時の状態 */
.hamburger-line.active {
    background-color: transparent;
}

.hamburger-line.active::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger-line.active::after {
    transform: rotate(-45deg);
    top: 0;
}









/* nav-area (active付与されていない)*/
.nav-area {
    padding-top: 4rem;
    height: 600px;
    background: rgba(51, 51, 51, .8);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;

    /* display: none; */
}

.nav-inner {
    height: 100%;
    margin: 0 1rem;
}

.nav-items {
    height: 100%;
}

.nav-items li:first-child {
    padding-top: 1rem;
    margin: 0;
}

.nav-item {
    list-style: none;
    margin-top: 1rem;
}

.nav-item-link {
    font-family: 'Canela Web', '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.5;
    text-decoration: none;
}


/* nav-areaにactive付与時の状態 */
.nav-area.active {
    opacity: 1;
}



.hero-area {
    margin-top: 8.5rem;
    width: 100%;
    height: 26.25rem;
}



.hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.hero-img01,
.hero-img02,
.hero-img03 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-img01 {
    background-image: url('../images/vinicius-amnx-amano-VFZF_pzTVBA-unsplash.jpg');
    animation: slide-animation-01 24s infinite;
}

.hero-img02 {
    background-image: url('../images/jessie-dee-dabrowski-www-jessiedee-net-W6cwaL7PMSw-unsplash.jpg');
    animation: slide-animation-02 24s infinite;
}

.hero-img03 {
    background-image: url('../images/elisei-abiculesei-dyr4-I8r6z0-unsplash.jpg');
    animation: slide-animation-03 24s infinite;
}

@keyframes slide-animation-01 {
    0% {
        opacity: 1;
        transform: scale(1.0);
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
        transform: scale(1.15);
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1;
        transform: scale(1.0);
    }
}

@keyframes slide-animation-02 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0;
        transform: scale(1.0);
    }

    100% {
        opacity: 0;
    }
}

@keyframes slide-animation-03 {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
        transform: scale(1.0);
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}



/* info-area */
.info-area {
    margin-top: 8rem;
    width: 100%;
    height: auto;
}

.info-inner {
    height: 100%;
    margin: 0 1rem;
}

.area-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area-title {
    font-size: 2.5rem;
    font-weight: 100;
}

.area-subtitle {
    font-size: 0.6875rem;
}



.slider-wrapper {
    margin-top: 3rem;
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.3s ease;
}

.slide-img {
    width: 100%;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.info-caption {
    margin: 1.5rem 0 0 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.info-item-name {}

.info-item-desc {
    text-decoration: none;
    color: #ffffff;
}



.sns-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    list-style: none;
}




.sns-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 30px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


.sns-icons:nth-of-type(1) a:hover {
    color: #1877F2;
    /* Twitterの青 */
}

.sns-icons:nth-of-type(2) a:hover {
    color: #1877F2;
    /* Facebookの青 */
}

.sns-icons:nth-of-type(3) a:hover {
    color: #E4405F;
    /* Instagramのピンク */
}

/* google map 埋め込み */
.map-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 0.5rem;
}

iframe {
    width: 100%;
    height: 250px;
    border: 0;
}


/* price-area */
.price-area {
    margin-top: 8rem;
    width: 100%;
    /* height: auto; */
    position: relative;
}

.price-inner {
    height: 100%;
    margin: 0 1rem;
}

/* .area-header, .area-title, .area-subtitle と共通*/


/* dropdown */
.dropdown {
    position: relative;
    margin: 3rem 1.5625rem 1.25rem;
    max-width: 100%;
    border-top: 1px solid #434343;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* arrow */
.arrow {
    position: relative;
    display: block;
    padding: 0 16px 0 0;
    z-index: 2;
    margin: .5rem 0 0 0;
    width: 180px;
    text-decoration: none;
    font-size: 1.5625rem;
    color: #ffffff;
}

/* ↓印を作っている */
.arrow::before {
    content: '';
    width: 4px;
    height: 4px;
    transform: rotate(135deg);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* open付与で↑印を作っている */
.arrow.open::before {
    transform: rotate(315deg);
}









.dropdown-menu.open {
    max-height: 1000px;
    /* 十分大きくしておく */
    opacity: 1;
    overflow: visible;
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    background: rgba(67, 62, 62, 0.6);
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    border-radius: 4px;
    z-index: 3;
}

.dropdown-menu li {
    background: rgba(0, 0, 0, .6);
    list-style: none;
    line-height: 1.75rem;
    text-align-last: left;
    padding-left: 1.75rem;
}

/* .dropdown-menu li:nth-child(1) {
    font-size: 1.25rem;
    text-align-last: left;
    padding-left: 1.25rem;
} */


.dropdown-menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}



.price-menu {
    padding: 3rem 0 0 0;

}

.price-menu dl {
    font-size: 1rem;
    font-weight: 400;
    
}

.menu-sub {
    font-size: 1.5rem;
    margin: 0 0 1.25rem 0;
}

.price-menu dl dd {
    position: relative;
    line-height: 1.25;
    margin: 0 0 1.25rem 0;
    padding-left: 1rem;
}

.price-menu a {
    color: #ffffff;
    text-decoration: none;
}



.price-menu span {
    /* content: ''; */
    display: block;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}


.modal-content {
    background-color: rgb(27, 27, 27);
    padding: 1rem;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    height: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* modal-contentにactive付与時の状態 */
.modal-content.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 5;

}
.modal-content-head {
    margin-bottom: 1.25rem;

}
.modal-content-head-title {
    margin-bottom: 1.5rem;

}
.modal-content-head-desc {
    padding-left: 2.5rem;
    text-align: right;
    letter-spacing: .02rem;
}

.modal-content-head-desc {
    font-size: 0.625rem;
}

.price-2 {
    color: #99a3b9;
}

.price-3 {
    color: #b1a66c;
}


.modal-price-list {
    list-style: none;
    margin-bottom: 1.25rem;
}

.modal-price-list dt {
    margin-bottom: .5rem;
}

.modal-price-list dd {
    font-size: 0.875rem;
    text-align: right;
    
}




footer {
    margin-top: 8.125rem;
    background-color: rgba(27, 27, 27, .9);
    padding: 4.375rem 0;
}

.footer-link {

}

.footer-link li {
    list-style: none;
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-link li a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding-left: 1rem;
}


.footer-link li a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

