@charset "utf-8";

/* すべてに適用される設定 */
* {
  box-sizing: border-box;
}

html{
  font-size: calc((18/16)*100%); /* ベースフォント18px */
}

body {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  line-height: 1.4;
  background-color: #070b11;
  color: #FFFFFF;
}

body::after{ /* 背景グラデーション */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -2;
  background: linear-gradient(#070b11 0%, #00233f 100%);  
}

img {
  max-width: 100%;
  height: auto;
}

main {
  overflow: hidden; /* 疑似要素が右にはみ出すため、横スクロール禁止 */
}

.wrapper {
  max-width: 1366px; /* ノートPCの横幅 */
  margin: 0 auto;
}

/* ヘッダー */
.logo {
  margin-left: calc((83 / 1366)*100%); /* (1366-コンテンツ幅1200)÷2=83 */
}

.header-inner {
  position: fixed;
  display: flex;
  width: 100%;
  height: 3.5rem;
  align-items: center; /* 上下中央揃え */
  z-index: 1;
  background: linear-gradient(#002746 0%, #001a30 80.28%, #0e1622 100%);
}

.menu-button{ /* ハンバーガーメニュー */
  display: none;
}

.global_navi {
  margin-left: auto; /* 余ったマージンを左に全て割り当て */
}

.global_navi ul {
  display: flex;
}

.global_navi li {
  margin-right: 3rem;
  /* transition: 0.5s; */
}

.global_navi li:hover {
  opacity: 0.6;
}

.reserve a {
  display: flex;
  flex-direction: column; /* 垂直方向に並べる */
  width: 8rem;
  height: 3.5rem;
  line-height: 1.1;
  align-items: center; /* 水平中央に配置 */
  background: linear-gradient(#b09954 0%, #b09954 50%, #9c8658 100%);
  transition: 1s;
}

.reserve a:hover {
  background: linear-gradient(#998543 0%,#998543 100%);
}

.reserve span:first-child { /* ご予約はこちらの文字 */
  font-size: .5rem;
  padding-top: .625rem;
}

/* コンテンツの見出し */
section,
footer {
  margin-top: 12rem;
}

.wrapper h1 {
  font-size: 2.5rem;
  color: #B09954;
  text-align: center;
  margin-bottom: 6rem;
  padding-bottom: 0.5rem; /* 飾り罫との余白 */
  background-image: url(../images/decoration.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
}

#concept h1 { /* Conceptのみ、h1の下9rem */
  margin-bottom: 9rem;
}

/* Concept */
h3 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

h3 span { /* ドロップキャップ文字 */
  font-size: 2rem;
}

#concept img {
  max-width: 50%; /* 画像は画面幅の50% */
}

.text-info {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  opacity: 0.8;
}

.feature {
  position: relative; /* 疑似要素の基準位置 */
  display: flex;
  align-items: center; /* 上下中央 */
  margin-bottom: 13rem;
}

.feature-text {
  margin-left: 4.5rem;
}

.feature:not(.reverse)::before { /* reverseクラス以外のfeatureの前 */
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: calc((563 / 455)*100%); /* 画像の高さに対する枠の高さ */
  left: 25%; /* 画像は画面の50%、その半分の位置から */
  z-index: -1;
  background-color: #1A242F;
}

.reverse {
  flex-direction: row-reverse; /* 水平逆方向 */
  background-image: url(../images/concept.svg);
  background-repeat: no-repeat;
  background-position: calc((207.5 / 1366)*100%) bottom; /* 83*2.5の位置 */
}

.reverse .feature-text {
  margin-left: 0; /* 通常のfeatureテキストに指定したmarginをなくす */
  margin-right: 4.5rem;
  text-align: right;
}

/* Stylist */
.profile-head {
  display: flex;
  align-items: baseline; /* テキストの下線に揃える */
}

.profile-head p {
  margin-left: 1rem;
}

.profile {
  position: relative; /* 疑似要素の基準位置 */
  padding-left: 25%; /* 画面の25%幅 */
  padding-top: 10%;
  padding-bottom: 10%;
}

.profile-head::before {
  position: absolute;
  content: "";
  display: block;
  width: 112.5%; /*leftで右にずらした分追加して右端いっぱいに*/
  height: 100%;
  top: 0;
  left: 12.5%;  /*25%の半分*/
  z-index: -1;
  background-color: #1A242F;
}

.profile-head::after{
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/stylist.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
}

/* Menu */
h2 {
  font-size: 2rem;
  margin: 0 0 2rem;
  text-align: center;
}

h4 {
  font-size: 1.25rem;
  padding-left: 2.25rem;
  height: 4.5rem;
  line-height: 4.5rem;
  border-bottom: 1px dotted #575E66;
}

.cut-menu p,
.color-perm p {
  /* 注意書き */
  font-size: 0.75rem;
  padding-left: 2.25rem;
  line-height: 1.6;
  margin: 2rem 0;
  font-weight: 400;
}

.menu {
  display: flex;
  justify-content: center;
}

.cut-side,
.color-perm {
  width: calc((559.5 / 18) * 1rem);
}

.cut-side {
  margin-right: 4.5rem;
}

.color-perm{
  background-image: url(../images/menu.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
}

.menu dl {
  /* メニューと金額 */
  display: flex;
  justify-content: space-between;
  padding: 0 2.25rem;
  height: 4.5rem;
  line-height: 4.5rem;
}

.menu dd {
  /* 金額 */
  font-size: 1.125rem;
}

.menu dd::before {
  /* 金額の前の￥マーク */
  content: "￥ ";
  font-size: 0.75rem;
}

.perm-menu dd::after {
  /* パーマの金額の後のチルダー */
  content: "˜";
  font-size: 1.25rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
}

.cut-menu dl,
.perm-menu dl {
  border-bottom: 1px dotted #575E66;
}

.color-menu,
.perm-menu {
  margin-bottom: 3rem;
}

.color-menu dl,
.side-menu dl{
  padding: 0 2.25rem 0 3.75rem;
  height: 3.5rem;
  line-height: 3.5rem;
}

/* Access */
.map {
  position: relative;
  padding-bottom: calc(50% / 1.5); /* 画像と同じ3:2の比率の高さ */
  width: 50%; /* 画面の半分の幅 */
  overflow: hidden;
  height: 0;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-field {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-info {
  margin-left: 2.25rem;
}

.shop-info tr {
  border-bottom: 1px dotted #575E66;
}

.shop-info th {
  width: 10rem;
  padding: 1.5rem 0 1.5rem 2.25rem;
}

.shop-info td {
  padding: 1.5rem 2.25rem 1.5rem 1rem;
}

.tel-space {
  letter-spacing: 0.09em;
}

#access {
  padding-bottom: 3rem;
  background-image: url(../images/access.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
}

.payment{
  letter-spacing: 0.1em;
}

/* Reserve */
#reserve {
  text-align: center;
  background-image: url(../images/reserve.svg);
  padding-bottom: 3rem;
  background-repeat: no-repeat;
  background-position: right bottom;
}

#reserve h3 {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

/* 電話で予約 */
.tel-reserve {
  max-width: calc((1200 / 1366)*100%);
  margin: 0 auto;
  padding: 2rem 0;
  border: 1px solid #B09954;
}

.tel-number {
  font-size: 1.5rem;
}

.tel-number span {
  /* 電話番号の前のTel. */
  font-size: 1rem;
}

.tel-button a {
  display: block;
  width: 10rem;
  height: 3rem;
  margin: 1.5rem auto;
  background-color: #B09954;
  line-height: 3rem;
  transition: 1s;
}

.tel-button a:hover {
  background-color: #786731;
}

.tel-button a::before {
  /* 電話するボタンのアイコン */
  font-family: "Font Awesome 6 Free";
  content: '\f095';
  font-size: 1.25rem;
  font-weight: 900;
  margin-right: 1rem;
}

.open-close {
  display: flex;
  justify-content: center;
}

.open-close p:first-child {
  /* 受付時間のみ右マージン */
  margin-right: 2rem;
}

.reserve-info{
  font-weight: 400;
}

@media (min-width: 835px) {
a[href^="tel:"] { /* href属性がtel:で始まる値を持つa要素 */
	pointer-events: none; /* ポインターイベントを無効 */
}
}

/* LINEで予約 */
.line-reserve {
  max-width: calc((1200 / 1366)*100%);
  margin: 0 auto;
  padding: 3rem 0;
  border: 1px solid #B09954;
}

.manual {
  display: flex;
  justify-content: center;
}

.friend-button a {
  display: block;
  width: 10rem;
  height: 3rem;
  margin: 2rem auto;
  text-align: right;
  padding-right: 1.5rem;
  /* 友だち追加の文字の右 */
  line-height: 3rem;
  background-color: #06C755;
  background-image: url(../images/line-friend.svg);
  background-repeat: no-repeat;
  background-position: 1.5rem center;
  transition: 1s;
}

.friend-button a:hover {
  background-color: #24e073;
}

.friend-add,
.friend-talk {
  width: 14rem;
  margin-top: 2rem;
}

.friend-talk img {
  margin-bottom: 2rem;
}

.caret {
  width: 2.5rem;
  height: 15rem;
  margin-top: 2rem;
  padding: calc((15rem - 3.5rem) / 2) 0;
  text-align: center;
}

.caret i {
  font-size: 3.5rem;
  color: #06C755;
}

/* フッター */
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 7rem;
  padding: 1.25rem 0;
  text-align: center;
  /* コピーライトを水平中央に配置 */
  background-color: #00192E;
}

.site-map ul {
  display: flex;
  justify-content: center;
}

.site-map ul li {
  transition: 0.5s;
}

.site-map ul li:hover {
  opacity: 0.6;
}

.site-map ul li:not(:last-child) {
  /* 最後のReserve以外の右マージン */
  margin-right: 3rem;
}

.copyright {
  font-size: 0.75rem;
}

@media (max-width: 834px) { /* タブレットの縦向きで切替 834*1194 */

  html {
    font-size: 100%; /* ベースフォント16px */
  }

  .new-line::after{ /* spanの後に改行を挿入 */
    white-space: pre;
    content: "\A";
  }

/* ヘッダー */
.logo {
  margin-left: 0;
  padding: 2rem;
}

.header-inner{
  display: block;
  height: 100vh;
  z-index: 1;
  top: -120%;
  transition: all 0.6s;
}

.header-inner.open{
  top: 0;
}

/* ハンバーガーメニュー */
.menu-button{
  display: block; /* PCで非表示から表示へ */
  position: fixed;
  right: 0;
  top: 0;
  z-index: 3;
}

.menu-button-inner{
  position: relative;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
}

.menu-button span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  right: 37.5%;
  height: 2px;
  background: #fff;
  width: 50%;
}

.menu-button span:nth-of-type(1) {
  top:2rem; 
}
.menu-button span:nth-of-type(2) {
  top:2.5rem;
}
.menu-button span:nth-of-type(3) {
  top:3rem;
}

.menu-button.active span:nth-of-type(1) {
  top: 2rem;
  right: 37.5%;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.menu-button.active span:nth-of-type(2) {
opacity: 0;
}
.menu-button.active span:nth-of-type(3){
  top: 2.75rem;
  right: 37.5%;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

.global_navi {
  text-align: center;
  font-size: 1.25rem;
}

.global_navi ul {
  display: block;  
}

.global_navi li {
  margin-right: 0;
  padding: 1rem 0;
}

.reserve a {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 3.75rem;
  z-index: 3;
}

.reserve span:first-child{
  padding-top: 1rem;
}

/* コンテンツの見出し */
  section,
  footer {
    margin-top: 7rem;
  }

  .wrapper h1 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }

  #concept h1 { /* Conceptのみ、h1の下 */
    margin-bottom: 4rem;
  }

/* Concept */
  h3 {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }

  h3 span { /* ドロップキャップ文字 */
    font-size: 1.875rem;
  }

  .text-info {
    font-size: calc((14 / 16)*1rem);
    line-height: 2;
    font-weight: 400;
  }

  .feature {
    display: block;
    margin-bottom: 6rem;
  }

  .feature-text {
    margin-left: calc((48 / 375)*100%);
    padding-bottom: calc((48 / 375)*100%);
  }

  .feature:not(.reverse)::before {
    width: calc((271.25 / 375)*100%); /* 271.25=20+67.5+183.75 */
    height: 100%;
    left: 0;
  }
  
  #concept img {
    max-width: calc((327 / 375)*100%);
    margin-left: calc((48 / 375)*100%);
    margin-bottom: calc((48 / 375)*100%);
    padding-top: calc((48 / 375)*100%);
  }

  #concept .reverse img {
    margin-left: 0;
    margin-right: calc((48 / 375)*100%);
    padding-top: 0; /* 2番目のみpadding-topなし */
  }

  .reverse .feature-text {
    margin-right: calc((48 / 375)*100%);
  }

  .reverse {
    background-size: 90%;
    background-position: right bottom;
  }

/* Stylist */
.profile {
  padding-left: 3rem;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.profile-head::before {
  width: calc((271.25 / 375)*100%);
  left: 0;
}

.profile-head::after{
  background-size: 80%;
  background-position: 20% 10%;
  z-index: -1;
}

/* Menu */
.menu {
  display: block;
  padding: 1.5rem 0;
}

h2 {
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
}

h4 {
  padding-left: 1.25rem;
  height: 3rem;
  line-height: 3rem;
}

.cut-menu p,
.color-perm p { /* 注意書き */
  padding: 4.5rem 0 4.5rem 1.25rem;
  line-height: 2;
  margin: 0 0;
  font-weight: 600;
}

.cut-side,
.color-perm {
  width: calc(100% - 2.5rem);
  margin: 0 auto;
}

.cut-side{
  margin-bottom: 3rem;
}

.color-perm{
  background-size: 80%;
  background-position: right bottom;
}

.menu dl { /* メニューと金額 */
  padding: 0 1.25rem;
  height: 3rem;
  line-height: 3rem;
}

.menu dd { /* 金額 */
  font-size: 1rem;
}

.perm-menu dd::after { /* パーマの金額の後のチルダー */
  font-size: 1rem;
}

.color-menu{
  margin-bottom: 3rem;
}

.perm-menu{
  margin-bottom: 0;
}

.menu dd::before {
  /* 金額の前の￥マーク */
  font-size: 0.5rem;
}

.color-menu dl,
.side-menu dl{
  padding: 0 1.25rem 0 2.5rem;
}




/* Access */
.map {
  width: 100%; /* 画面幅いっぱい */
  padding-bottom: calc(100% / 1.5); /* 画像と同じ3:2の比率 */
  margin-bottom: 1.5rem;
}

.map-field {
  display: block;
}

.shop-info {
  width: 100%;
  margin: 0 auto;
}

.shop-info th {
  width: 8rem;
  padding: 1rem 0 1rem 1.25rem;
}

.shop-info td {
  padding: 1rem 1.25rem;
}

.tel-space {
  letter-spacing: 0.09em;
}

#access {
  padding-bottom: 2.5rem;
  background-size: 80%;
}

/* Reserve */
#reserve {
  padding-bottom: 2.5rem;
  background-size: 80%;
}

/* 電話で予約 */
.open-close {
  display: block;
}

.open-close p:first-child { /* 受付時間の右マージン */
  margin-right: 0;
}

/* LINEで予約 */

.manual {
  display: block;
  margin-top: 3rem;
}

.friend-add,
.friend-talk {
  width: 14rem;
  margin: 0 auto;
}

.friend-talk img {
  margin-bottom: 2rem;
}

.caret {
  height: auto;
  transform: rotate(90deg);
  margin: 1rem auto;
  padding: 0;
}

.caret i {
  font-size: 4rem;
}

/* フッター */
footer {
  display: block;
  height: 22rem;
  padding: 2rem 0 5.75rem;
}

.site-map ul {
  display: block;
}

.site-map ul li{
  margin-bottom: 1rem;
}

.site-map ul li:not(:last-child) { /* 最後のReserve以外の右マージン */
  margin-right: 0;
}

.copyright {
  margin-top: 2rem;
}

}  /* メディアクエリの終了位置 */