@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
/* ページ全体 */
body{
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    height: 100%;
    background-size: cover;
    text-align: center;
    color: #0f3961;
}
h3,h4,p {
    margin: auto;
}
/* ヘッダ
------------------------------- */
.page-header {
    display: flex;
    justify-content: space-between;
    width: 95vw;
}
/* お店ロゴ */
.logo {
    margin: 3px 45px 10px;
    width: 250px;
    height: auto;
}

/* ホームページメニュー */
.main-nav {
    display: flex;
    text-transform: uppercase;
    list-style: none;
    opacity: 0.7;
    font-weight: bold;
    text-decoration:underline;
}
.main-nav li {
    margin: 40px 10px 0;
}
.main-nav a {
    color: #0f3961;
}
.main-nav a:hover {
    color: #b3daf7;
}

/* ホーム
------------------------------- */
.home-contents {
    background: #f3f3f1;
}
.video-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
video {
  width: 22vw;
  height: auto;
  border-radius: 10px; /* 角を丸くする */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影を追加 */
}
/* お店説明 */
.shop {
    width: 65vw;
    margin: auto;
    text-align: left;
    color: #0f3961;
    border-bottom: 0.5px #0f3961 solid;
}
/* 店の営業日、営業時間 */
.sales {
    width: 55vw;
    margin: auto;
    text-align: left;
    color: #0f3961;
}

/* 施術メニュー
------------------------------- */
.service-contents h3,h4,p {
    width: 60vw;
    text-align: left;
}
/* 施術写真 */
.item_img {
    width: 65vw;
    height: auto;
}

/* BLAUW
------------------------------- */
#blauw {
    background: #f3f3f1;
}
#blauw h3,h4{
    text-align: center;
}
#blauw p{
    width: 80vw;
    text-align: left;
}
/* 代表者写真 */
.rep_img {
    width: 50vw;
    height: auto;
}

/* アクセス
------------------------------- */
/* 住所 */
#access p {
    text-align: center;
}
/* 地図 */
iframe {
    margin-bottom: 30px;
    width: 80vw;
    height: 450px;
}

/* フッター
------------------------------- */
/* リンク先 */
.link-nav {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 10px;
    margin-right: 40px;
}
.link_img {
    filter: grayscale(1);
    width: 50px;
}

/* 施術予約 */
.booking {
    font-size: 1.5rem;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 0;
    width: 100%;
    font-weight: bold;
    bottom: 0;
    z-index: 400;
    border: solid 0.5px #fff;
    background: #b3daf7;
    color: #0f3961;
}
.booking:hover {
    color: #fff;
}
/* ページトップ移動 */
#page_top{
    position: fixed;
    height: 40px;
    width: 40px;
    bottom: -50px;
    right: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    border: solid 0.5px #0f3961;
    background: #fff;
}
#page_top a{
    height: 10px;
    width: 10px;
    transform: translateY(20%) rotate(-45deg);
    border-top: 1px solid #0f3961;
    border-right: 1px solid #0f3961;
}
/* フッター */
footer {
    width: 100%;
    height: 95px;
    background: #8a8a8a;
}
footer p {
    text-align: center;
    color: #fff;
}

/* モバイル版
------------------------------- */
/* 画面サイズが600px以下の時はPC用メニューは非表示 */
@media screen and (max-width: 600px) {
    /* 共通部分
    --------------------------- */
    /* ページ全体 */
    body{
        font-size: 0.8rem;
    }
    /* ヘッダ
    --------------------------- */
    /* お店ロゴ */
    .logo {
        margin: 3px 0px 10px 70px;
        width: 170px;
        will-change: transform;
    }
    /* ホームページメニュー */
    .main-nav {
        display: none;
    }
    /* ホーム
    --------------------------- */
    video {
        width: 68vw;
    }
    /* お店説明 */
    .shop {
        width: 95vw;
    }
    /* 店の営業日、営業時間 */
    .sales {
        width: 75vw;
    }
    /* 施術メニュー
    --------------------------- */
    .service-contents h3,h4,p {
        width: 90vw;
    }
    /* 施術写真 */
    .item_img {
        width: 95vw;
    }
    /* BLAUW
    --------------------------- */
    #blauw p{
        width: 90vw;
    }
    /* アクセス
    --------------------------- */
    /* 地図 */
    iframe {
        width: 95vw;
        height: 300px;
    }
}

/* 画面サイズが601px以上の時はスマホ用メニューは非表示 */
@media screen and (min-width: 601px) {
    .sp-menu {
        display: none;
    }
}
.sp-menu.active {
    display: block;
}
hamburger.active {
    /* ボタンがアクティブな状態の見た目（例：×に変化） */
    display: none;
}
.sp-menu__box {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 300;
  background: #b3daf7;
}
.sp-menu__box span,
.sp-menu__box span:before,
.sp-menu__box span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #0f3961;
  position: absolute;
}
.sp-menu__box span:before {
  bottom: 8px;
}
.sp-menu__box span:after {
  top: 8px;
}
#sp-menu__check {
  display: none;
}
#sp-menu__check:checked ~ .sp-menu__box span {
  background: rgba(255, 255, 255, 0);
}
#sp-menu__check:checked ~ .sp-menu__box span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#sp-menu__check:checked ~ .sp-menu__box span::after {
  top: 0;
  transform: rotate(-45deg);
}
#sp-menu__check:checked ~ .sp-menu__content {
  left: 0;
}
.sp-menu__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 200;
  background-color: #b3daf7;
  transition: all 0.5s;
}
.sp-menu__list {
  padding: 30px 10px 0;
}
.sp-menu__item {
  border-bottom: solid 1px #0f3961;
  list-style: none;
}
.sp-menu__link {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #0f3961;
  text-decoration: none;
  padding: 9px 15px 10px 0;
}
