body {
  font-family: 'Sawarabi Mincho', sans-serif;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  margin: 0;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
}

/* =========================================
   ヘッダー
========================================= */

.l__header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: rgba( 255, 255, 255, 0.7 );
}

/* ハンバーガーボタンの基本設定 */
.c__hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}

/* ハンバーガー3本線の見た目設定 */
.c__hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: black;
  transition: all 0.4s;
}

/* 各線の配置（上・中・下） */
.c__hamburger span:nth-of-type(1) {
  top: -4px;
}
.c__hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c__hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}

/* ハンバーガーが開いた時のアニメーション */
.c__hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c__hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}

/* メニュー（ナビゲーション）の初期状態（非表示） */
.p__header-nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  opacity: 0;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
}

/* ヘッダー内のロゴとハンバーガーを横並びに配置 */
.p__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 0 60px;
}

/* ロゴ画像サイズ */
.p__header-title img {
  width: 200px;
}

/* ハンバーガーアイコン（右上に配置） */
.p__header-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 100%;
}

/* メニューが開いた時の状態 */
.p__header-nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: #fff;
}

/* ナビゲーション内リストのスタイル */
.p__nav-list {
  display: block;
  padding-right: 20px;
  padding-left: 20px;
}

.p__nav-item {
  position: relative;
  width: 100%;
}

.p__nav-link {
  color: black;
  display: block;
  padding: 20px;
  width: 100%;
}

/* 768px以上（PCサイズ）でのレイアウト */
@media screen and (min-width: 768px) {
  .p__header-hamburger {
    display: none; /* PCではハンバーガーを非表示 */
  }
  .p__nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .p__header-nav {
    position: static;
    opacity: 1;
    height: inherit;
    width: initial;
  }
  .p__nav-list {
    padding-right: 0;
    padding-left: 0;
    display: flex; /* PCではメニューを横並び */
  }
}

/* =========================================
   コンテンツの内側余白設定
========================================= */
.section_inner {
  padding-top: 50px;
  padding-bottom: 100px;
}

.content_inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.content_inner-secondary {
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .content_inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =========================================
   見出しスタイル
========================================= */
.section_title {
  color: #E2BEBA;
  font-size: 40px;
  margin-bottom: 80px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  position: relative;
  text-align: center;
}
.section_title:before {
  background-color: #E2BEBA; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  bottom: -10px; /* 線の位置 */
  content: "";
  height: 3px; /* 線の高さ */
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 60px; /* 線の長さ */
}

/* スマホサイズでの見出し調整 */
@media (max-width: 599px) {
  .section_title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

/* =========================================
   共通スタイル
========================================= */
.main {
  overflow:hidden;
}
.commonTxt {
  margin-bottom: 30px;
}

/* =========================================
   FV
========================================= */
#slider {
    width: 100%;
    height: 100vh;
}

/* =========================================
   CONCEPT セクション
========================================= */

.sec01__box-item .title {
  font-size: 22px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 100;
  text-shadow: 1px 2px 3px #808080;
}


/* =========================================
   DESIGN セクション
========================================= */
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height: 200px; /* 画像の高さを固定 */
    object-fit: cover;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}
/* =========================================
   MENU セクション
========================================= */
.sec03__box {
    display: flex;
    gap: 30px;
}
.sec03__box-item {
    width: calc((100% - 30px) / 2);
}

.menu-heading {
    font-size: 24px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
    .sec03__box {
    flex-flow: column;
    }
    .sec03__box-item {
    width: 100%;
    }
}
/* メニュー表 */
.menu .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

/* 点線 */
.menu .item::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 100%;
  border-bottom: dotted 2px #aaa;
}

.menu .item .name,
.menu .item .price {
  display: inline-block;
  /* 周りの背景色と同色にします */
  background-color: #fff; 
}

.menu .item .name {
  padding-right: 5px;
}

.menu .item .price {
  padding-left: 5px;
}

/* =========================================
   SALON セクション
========================================= */
.sec04__box{
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  position: relative;/*親要素にrelative*/
}
.sec04__box .item {
  position: absolute;/*重ねたい子要素にabsolute*/
  top:50%;
  left: 50%;
 -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  transform: translate(-50%,-50%);/*センター寄せの修正*/
  padding: 150px;
  background-color: rgba(255, 255, 255, .4);
  text-align: center;
}

.sec04__box .text{
    margin-bottom: 20px;
}

.sec04__box .tel{
    font-size: 3em;
    margin-bottom: 20px;
}

.sec04__box .btn {
    display: inline-block;
    width: 600px;
    margin: 0 auto;
    background: #e5bab5;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    padding: 30px 0;
}

.sec04__box .btn:hover {
    background: #D5848C;
    opacity: 1;
}
@media only screen and (max-width: 768px) {
    .sec04__box .item {
    padding: 50px; 
    }
    .sec04__box .tel{
    font-size: 2em;
    }
    .sec04__box .btn {
    width: 400px;
    font-size: 1.5em;
    }
}

@media (max-width: 499px) {
    .sec04__box .text{
    font-size: 10px;
    margin-bottom: 10px;
    }
    .sec04__box .tel{
    font-size: 1em;
    margin-bottom: 10px;
    }
    .sec04__box .btn {
    width: 200px;
    font-size: 1em;
    padding: 16px 0;
    }
}
/* =========================================
   フッター
========================================= */
footer {
  background-color: rgb(226, 190, 186);
  padding: 50px;
}

/* ロゴ部分 */
.footer__logo {
  text-align: center;
  margin-bottom: 50px;
}

/* メニュー部分 */
.footer__menu {
  max-width: 980px;
  margin: 0 auto;
}

/* メニューリストの横並び設定 */
.footer__menuList {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

/* コピーライト */
.copyright {
  text-align: center;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* スマホ時は縦並びに変更 */
@media (max-width: 699px) {
  .footer__menuList {
    flex-flow: column;
    align-items: center;
    gap: 10px;
  }
}
