@charset "UTF-8";
/* CSS Document */
/*body全体*/
body {
  background-color: #B8DAE6;
  font-size: 16px;
  color: #333333;
  overflow-x: hidden; /* スライドインメニューの隠し位置で横スクロールが出ないように */
}
.contentWidth { /*コンテンツの幅を指定*/
  max-width: 1120px;
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .contentWidth { /*コンテンツの幅を指定*/
    width: 100%;
    min-width: 320px;
    padding: 0 25px;
  }
}
/*header*/
.headerContent {
  background-image: url("../images/top_square.png");
  background-position: top;
  background-repeat: repeat-x;
  background-color: #fff;
}
.headerContentInner {
  display: flex;
  align-items: center; /* 垂直方向の中央揃え */
  justify-content: space-between; /* 水平方向の均等揃え */
  padding-top: 20px;
}
.logo {
  width: 30%;
}
.logo img {
  width: 100%;
  display: block;
  padding: 20px 10%;
}
.GlobalNavigation {
  font-size: 21px;
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  font-weight: bold;
}
nav .headerMenu {
  display: flex;
  gap: 50px; /* 隣り合う要素の間隔をあける */
}
nav ul li a {
  text-decoration: none; /* 装飾なし */
  color: inherit; /* 親要素のフォント色を継承 */
}
nav ul li a:hover {
  text-decoration: underline; /* 下線を引く */
}
.mainImage {
  width: 100vw; /*要素の幅を viewport の幅に設定 */
  height: 100%;
  overflow: visible;
}
.imageScroll img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像をコンテナ全体に収める */
  display: block; /* 余分な隙間をなくす */
}
.menu-btn { /* ハンバーガーボタン用のチェックボックス非表示 */
  display: none;
}
@media screen and (max-width: 1114px) {
  .headerContent {
    position: relative;
  }
  .headerContentInner {
    height: 103px; /*20+83px*/
    padding: 35px 15px 15px;
    width: 100%;
  }
  .logo img {
    width: 122px;
    height: 91px;
    padding: 15px 0;
  }
  /* ハンバーガーメニューはじまり*/
  .GlobalNavigation {
    font-size: 16px;
  }
  nav .headerMenu {
    display: block;
    list-style: none;
    position: fixed; /* viewport基準で固定し、画面右からスライドイン */
    top: 0;
    right: 0;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    margin: 0;
    padding: 110px 35px 40px; /* 上余白でハンバーガーボタンと干渉しない */
    transform: translateX(100%); /* 初期は画面右外に隠す */
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    background-color: #f6f6f1;
    box-shadow: -10px 0 30px rgba(50, 23, 7, 0.12); /* 左端に柔らかい影 */
    z-index: 50;
    overflow-y: auto;
  }
  nav ul li {
    padding: 14px 0;
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border-bottom: 1px solid rgba(106, 96, 18, 0.18);
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  /* 順番に出てくる遅延 */
  nav ul li:nth-child(1) { transition-delay: 0.18s; }
  nav ul li:nth-child(2) { transition-delay: 0.24s; }
  nav ul li:nth-child(3) { transition-delay: 0.30s; }
  nav ul li:nth-child(4) { transition-delay: 0.36s; }
  nav ul li a {
    color: #333333;
    display: block;
    padding: 6px 0;
    letter-spacing: 3px;
    transition: color 0.2s;
  }
  nav ul li a:hover {
    text-decoration: inherit; /*スマホのときはホバーしない*/
  }
  /* Hamburger menu button */
  .menu-btn:checked ~ .headerMenu {
    transform: translateX(0); /* 画面内へスライドイン */
  }
  .menu-btn:checked ~ .headerMenu li {
    opacity: 1;
    transform: translateX(0);
  }
  .GlobalNavigation .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    z-index: 100; /* スライドインメニューより上に置いてクリック維持 */
  }
  .navicon { /* ハンバーガーの線真ん中 */
    background: #6a6012;
    display: block;
    height: 2px;
    width: 39px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before, .navicon:after { /* ハンバーガーの線上下 */
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #6a6012;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before {
    top: 10px;
  }
  .navicon:after {
    bottom: 10px;
  }
  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  /* Hamburger Menu Animation End */
  /* Navbar Container */
  .navtext-container {
    width: 100%;
    height: 52px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* ハンバーガーメニュー終わり*/
}
/*main*/
/*main共通*/
main {
  font-family: "Noto Sans JP";
}
h2 {
  font-family: "adobe-handwriting-ernie", "charm", "Inglesa Script Variable", "selif";
  font-size: 72px;
  color: #321707;
  padding: 0; /*標準余白を削除*/
}
p.title {
  font-size: 21px;
  color: #321707;
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  margin-bottom: 50px;
  margin-top: -40px;
  position: relative;
  left: 1em; /*1文字分左へタイトルよりずらす*/
}
a.button {
  width: 290px;
  height: 50px;
  border: 1px solid #333333;
  padding: 10px;
  text-align: center;
  text-decoration: none; /* 装飾なし */
  color: inherit; /* 親要素のフォント色を継承 */
  display: block;
  margin: 0 auto;
}
a.button:hover {
  background-color: #c6c6c6;
}
@media screen and (max-width: 640px) {
  h2 {
    font-size: 43px;
  }
  p.title {
    font-size: 17px;
    margin-top: -25px;
    margin-bottom: 30px;
  }
  a.button {
    width: 274px;
  }
  a.button:hover {
    background-color: inherit; /*スマホのときはホバーしない*/
  }
}
/*concept*/
section.concept {
  position: relative;
  margin: 100px 0 100px 80px; /*左マージンを80pxにして余白を作った。一旦これでOK*/
  padding: 75px 0;
}
.conceptInner {
  position: relative;
}
.conceptInner:before {
  content: "";
  width: 100%; /* 親要素の幅に合わせる */
  min-height: 510px; /* ビューポートの60%の高さに設定 */
  background-color: #6A6012;
  opacity: 0.6;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 32.5% 100%); /* 中心を基準に調整 */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  padding: 20px 0;
}
.conceptInner:after { /*四角形*/
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 521px;
  background-color: #fff;
  z-index: -1;
}
.concept img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  width: 60%;
  height: 100%;
}
p.concept {
  max-width: 670px;
  font-size: 18px;
  line-height: 38px;
  position: relative;
  left: 0;
  z-index: 2;
}
/*スマホ用の画像を入れる*/
@media screen and (max-width: 640px) {
  section.concept {
    margin: 40px 0;
    padding: 30px 0;
  }
  .conceptInner {
    position: relative;
    padding: 30px 25px;
  }
  .conceptInner:before { /*台形*/
    min-height: 340px;
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 20% 100%); /* スマホ用に調整 */
    top: 55%;
    padding: 5px 0;
    margin: 25px 0 50px;
  }
  .conceptInner:after { /*四角形*/
    max-height: 100%;
    padding: 50px 0 0;
    margin: 10px 0 0;
    z-index: -3;
  }
  p.concept {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    padding: 20px 0;
  }
  p.concept::before { /*ハサミの上の半透明四角形*/
    content: "";
    position: absolute;
    padding: 0;
    margin-left: -25px;
    margin-right: -25px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: -1;
  }
  .pc-br {
    display: none; /* PC用の改行を無効化 */
  }
  .concept img {
    display: none;
  }
  .SP_photo { /* スマホ用のハサミの画像を配置 */
    background-image: url("../images/concept_sp.png");
    background-repeat: no-repeat;
    position: absolute;
    top: 30%;
    right: 0;
    z-index: 1;
    width: 36vh;
    height: 60%;
  }
}
/*インスタ*/
section.instagram {
  background-image: url("../images/insta_background.png");
  background-repeat: no-repeat;
  background-size: cover; /*要素全体を収めるように拡大縮小*/
  background-position: left top;
  margin: 100px auto;
  padding: 75px 0;
}
.instaphotoList {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /*各列を同じ幅で5列に*/
  gap: 2%; /* 画像間のスペースを確保 */
  padding-bottom: 150px;
}
.instaphotoList img {
  width: 100%;
  height: auto; /* 縦横比を保ったまま縮小 */
}
.instaphotoList img:nth-child(odd) { /*奇数画像のみtopから100pxとる*/
  position: relative;
  top: 100px;
}
@media screen and (max-width: 640px) {
  section.instagram {
    background-image: url("../images/insta_background_sp.png");
    background-position: center top;
    margin: 40px auto;
    padding: 30px 0 40px;
  }
  .instagramInner .title {
    position: relative;
    left: -0.5em; /*英文字にかぶるため左に調整*/
  }
  .instaphotoList {
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto;
    padding-bottom: 140px;
    gap: 5%;
  }
  .instaphotoList img {
    max-width: calc(100% / 2 - 15px);
  }
  .instaphotoList img:nth-child(1) {
    top: 0;
  }
  .instaphotoList img:nth-child(2) {
    position: relative;
    top: 120px;
  }
  .instaphotoList img:nth-child(3) {
    top: 70px;
  }
  .instaphotoList img:nth-child(4) {
    position: relative;
    top: 180px;
  }
  .instaphotoList img:nth-child(5) {
    top: 140px;
  }
}
/*news*/
.news {
  background-color: #fff; /*背景：白四角形*/
  margin: 0 30px 100px 30px;
  padding: 75px 0px;
  position: relative;
}
.news:after { /*背景:カーキ三角形*/
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #6a6012 transparent;
  border-width: 0px 0px 156px 156px;
}
.news-list {
  font-size: 18px;
  margin: 50px auto;
}
.news-list time {
  font-weight: bold;
  margin-left: 10px;
  width: 7em;
}
.news-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 10%;
}
.label {
  background-color: #92CFE0; /* ラベルの背景色 */
  color: #2E3192; /* ラベルの文字色 */
  padding: 4px 0px; /* ラベルの余白 */
  border-radius: 5px; /* ラベルの角を丸める */
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  min-width: 5em; /* 5文字分 */
}
.new {
  background-color: #0071BC; /* 「新着」のラベルの背景色 */
  color: #fff; /* 「新着」ラベルの文字色 */
}
.campaign {
  background-color: #E8A87C; /* 「キャンペーン」暖色オレンジ */
  color: #5C2E12;
}
.rest {
  background-color: #B5B5A8; /* 「お休み」グレージュ */
  color: #fff;
}
.content {
  /*margin-left: 40px; /* Newsの内容の左側に余白 */
  flex: 1;
}
@media screen and (max-width: 640px) {
  .news {
    margin: 40px 0;
    padding: 40px 0px;
  }
  .news:after { /*背景:カーキ三角形*/
    bottom: -10px;
    right: 0;
    border-width: 0px 0px 70px 70px;
  }
  .news-list {
    font-size: 16px;
    margin: 30px auto;
  }
  .news-list li {
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
    padding: 0px;
  }
  .label {
    margin-right: 15px;
  }
  .content {
    /*margin-left: 10px; /* Newsの内容の左側に余白 */
    width: 100%;
    flex: inherit;
  }
}
/*menu*/
.menu {
  position: relative;
  margin: 175px auto; /* はさみのはみ出る余分を上下100pxずつ+内部余白75pxで合計175px */
}
/* タイトルの調整 */
.title-container {
  position: absolute;
  width: 50%; /*　2分割の右寄せで50％ */
  top: 75px;
  right: 0;
  padding-left: 40px; /*　タイトルの左に少し余白 */
}
/* メニューの調整 */
.menu-container {
  display: flex; /* menuLeftとmenuRightを横並びにする*/
}
.menu1, .menu2 {
  max-width: calc(1120px / 2);
  font-size: 24px;
}
.menuLeft, .menuRight {
  width: 50%; /* menuLeftとmenuRightを等分にする*/
}
.menuLeft {
  padding: 250px 0 185px; /*menu1を内包する*/
  background-color: #fff;
  position: relative;
}
.menuLeft img {
  position: absolute;
  top: -100px; /*はさみを上に100pxはみ出す*/
  left: -20px; /*はさみを左に20pxはみ出す*/
}
.menu1 {
  position: relative;
  right: 0;
}
.menu1 h3 {
  font-weight: bold;
  width: 30%;
  position: relative;
  left: 15%;
}
.menu1 dl {
  display: flex;
  flex-wrap: wrap; /* dt ddを順番に並べて折り返す */
  position: relative;
  top: -34px; /* カットの高さに目視で調整 */
  right: -15%;
  margin-bottom: -34px; /* topを‐34pxにしたため、マージンの調整 */
  width: 70%;
}
.menu1 dl dt {
  /*flex-grow: 7; /* dt と ddを7:3に配置 */
  flex-basis: 70%; /* widthでも同じ */
  text-align: right;
}
.menu1 dl dd {
  /* flex-grow: 3;dt と ddを7:3に配置 */
  flex-basis: 30%;
  text-align: right;
  margin-bottom: 35px; /*行間を35pxあける */
}
.menu1 p {
  text-align: right;
  font-size: 16px;
  /*margin-right: -0.8em;/*「。」の分少し右にずらす　　マイナスマージンは基本的に使わない*/
}
.menuRight {
  background-color: rgba(255, 255, 255, 0.5); /* 白の50%透明 */
  border-top: solid 25px #6a6012;
  margin-top: 175px;
  padding: 50px 0 150px; /*menu2を内包する*/
}
.menu2 dl {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 70%;
  left: 15%;
}
.menu2 dl dt {
  width: 50%;
  text-align: left;
  font-weight: bold;
  margin-bottom: 35px;
  position: relative; /*擬似要素 下線のために設定 */
}
.menu2 dl dd {
  width: 50%;
  text-align: right;
  margin-bottom: 35px;
  position: relative; /*擬似要素 下線のために設定 */
}
/* dt と dd に下線を追加する擬似要素 */
.menu2 dl dt::after, .menu2 dl dd::after {
  content: "";
  position: absolute;
  left: 1px; /* つなぎ目の調整 */
  right: 1px; /* つなぎ目の調整 */
  border-bottom: 1px dashed #333333; /* 破線のスタイル */
  bottom: -15px; /* 下線の位置を調整（15px 下に移動） */
}
.menu2 dl dt:last-of-type::after, .menu2 dl dd:last-of-type::after {
  border-bottom: none; /* 一番最後の行には引かない */
}
dd.fontPadding {
  padding-right: 1em; /*文字揃えはOK*/
}
.menu .button {
  display: inline-block;
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .menu {
    padding: 90px 0 0; /* はさみのはみ出る余分を上90px */
    margin: 0;
  }
  /* タイトルの調整 */
  .title-container {
    top: 20px;
    left: 0;
    right: inherit;
    padding-left: 25px;
  }
  .title-container .title {
    margin-bottom: -25px;
  }
  /* メニューの調整 */
  .menu-container {
    flex-direction: column;
  }
  .menu1, .menu2 {
    width: 100%;
    font-size: 16px;
  }
  .menuLeft, .menuRight {
    width: 100%;
  }
  .menuLeft {
    padding: 30px 25px 25px;
  }
  .menuLeft img {
    top: -90px; /*はさみを上に90pxはみ出す*/
    left: 25px; /*はさみを右に25px*/
    width: 100%;
  }
  .menu1 dl {
    top: -22px; /* カットの高さに目視で調整 */
    margin-bottom: -22px; /* topを‐22pxにしたため、マージンの調整 */
    right: -11%;
  }
  .menu1 dl dd {
    margin-bottom: 15px; /*行間を15pxあける */
  }
  .menu1 p {
    font-size: 12px;
    width: 84%;
  }
  .menuRight {
    border: none; /* borderを擬似要素で作成するためなしにする */
    margin-top: 0px;
    padding: 40px 25px 110px;
    position: relative;
  }
  .menuRight::before { /* borderを擬似要素で幅50％で作成 */
    content: "";
    border-top: solid 20px #6a6012;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .menu2 dl dt {
    margin-bottom: 10px;
  }
  .menu2 dl dd {
    margin-bottom: 10px;
  }
  /* dt と dd に下線を追加する擬似要素 */
  .menu2 dl dt::after, .menu2 dl dd::after {
    /* display: none; 下線はなし */
    content: none;
  }
  .menu .button {
    bottom: 40px;
  }
}
/*reservetion*/
.reservation {
  background-image: url("../images/reservation_background.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  padding: 75px 0px 75px 44px; /* 左余白はカーキの装飾の幅 */
  margin: 100px 0px 100px 50px;
}
.wholeWrapper {
  display: flex;
}
.cal_wrapper1, .cal_wrapper2 {
  width: 50%; /* 親要素の幅の半分に設定 */
  align-items: center; /* 垂直方向に真ん中寄せ */
}
.cal_wrapper1 dl {
  border-top: 2px solid #6A6012; /* 上罫線の色とスタイル */
  border-bottom: 2px solid #6A6012; /* 下罫線の色とスタイル */
  padding: 0 0 25px; /* 罫線と文字の間に余白 */
  margin: 0 0 30px;
  width: 95%;
  position: relative;
  left: 0;
}
.calendar dt, .calendar dd {
  display: block;
  width: 100%;
  margin: 0; /* デフォルトの余白を削除 */
}
.calendar dt {
  font-size: 24px;
  font-weight: bold;
  color: #6A6012;
  margin: 25px 0 25px;
  position: relative;
  left: 5%;
}
.calendar dd {
  font-size: 21px;
  text-align: right;
  position: relative;
  right: 5%;
}
.p_margin {
  margin-bottom: 15px; /* 「平日」の下の余白 */
}
.cal_wrapper2 {
  position: relative;
  height: 0;
  padding-top: 33.3%; /**/
}
.cal_wrapper2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  min-height: 362px;
  box-shadow: 15px 15px 0px rgba(106, 96, 18, 0.75); /* 右15px、下15px、のカーキ色のシャドウ /106, 96, 18: は #6A6012 のRGB値 0.75: 透明度を75%*/
}
.wholeWrapper .button {
  position: relative;
  left: -2.5%;
  max-width: 70%;
}
@media screen and (max-width: 640px) {
  .reservation {
    background-size: 16px 100vh;
    padding: 0px 0px 50px 16px; /* 左余白はカーキの装飾の幅 */
    margin: 40px 0px;
  }
  .calendar-container .title {
    margin-bottom: 20px;
  }
  .wholeWrapper {
    flex-direction: column;
    position: relative;
  }
  .cal_wrapper1, .cal_wrapper2 {
    width: 100%; /* 親要素の幅いっぱいに設定 */
  }
  .cal_wrapper1 dl {
    padding: 0 30px 20px 0px; /* 罫線と文字の間に余白 */
    margin: 0 0 20px;
  }
  .calendar dt {
    font-size: 18px;
    margin: 15px 0 15px;
  }
  .calendar dd {
    font-size: 16px;
  }
  .cal_wrapper2 {
    padding-top: 66.6%;
    height: 100%
  }
  .cal_wrapper2 iframe {
    box-shadow: 5px 5px 0px rgba(106, 96, 18, 0.75); /* 右15px、下15px、のカーキ色のシャドウ /106, 96, 18: は #6A6012 のRGB値 0.75: 透明度を75%*/
    min-height: 85%;
  }
  .wholeWrapper .button { /*ボタン位置が一番下に来るためabsoluteで設定 */
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*access*/
.access {
  margin: 100px auto;
  padding: 75px 0 0;
}
.map {
  margin: 50px auto; /* 地図の上下に余白 */
  height: 530px; /* 高さは指定する*/
  position: relative;
}
  .map:before {
    content: "*この地図は架空のものです";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
  }
.map iframe {
  width: 100%;
  height: 100%;
}
.accessDetails {
  display: flex;
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center;
  gap: 7%;
}
.shopName {
  display: flex;
  align-items: center;
}
.hairsalon {
  font-size: 22px;
}
.kobayas {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  padding-left: 12px;
  transform: translateY(5px); /*Kobayasの垂直位置の微調整 */
}
.address p {
  display: flex; /* p 要素をフレックスコンテナとして設定 */
  align-items: baseline; /* アイコンを文字に揃える */
  font-size: 21px;
}
/*fontawesomeに置き換え*/
/* .address p::before {
  content: url("../images/address.png"); 画像の URL を指定 
  margin-right: 5px;  画像とテキストの間にスペース 
}
 .address p:nth-child(2)::before {
  content: url("../images/ tel.png");  電話番号のアイコン 
   margin-right: 5px;  画像とテキストの間にスペース 
}*/
.icon { /*iconと文章の間に余白*/
  margin-right: 5px;
}
@media screen and (max-width: 800px) {
  .access {
    margin: 40px auto;
    padding: 30px 0 0;
  }
  .map {
    margin: 25px auto; /* 地図の上下に余白 */
    height: 200px; /* 高さは指定する*/
    margin-right: -25px; /* 親要素のpadding分はみ出す*/
    margin-left: -25px; /* 親要素のpadding分はみ出す*/
  }

  .accessDetails {
    flex-direction: column;
    gap: 15px;
  }
  .hairsalon {
    font-size: 15px;
  }
  .kobayas {
    font-size: 30px;
    padding-left: 15px;
  }
  .address p {
    justify-content: flex-start; /* 左寄せ */
    font-size: 15px;
  }
  .address p::before {
    display: inline-block; /* インラインブロックにする */
    width: 26px; /* 目視で調整 */
    height: 26px; /* 目視で調整 */
    margin-right: 0px; /* widthで調整したため、画像とテキストの間にスペースなし */
    transform: scale(0.7); /* 画像70％に小さく */
  }
  .address p:nth-child(2)::before {
    margin-right: 0px; /* widthで調整したため、画像とテキストの間にスペースなし */
  }
}
/*footer*/
.siteLinks {
  background-image: url("../images/footer_square.png");
  background-repeat: repeat-x;
  color: #fff;
  padding: 30px 0 0; /* カーキの上スペースを余白とる */
}
.inner {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px 16px 30px;
  position: relative;
}
.inner img {
  width: 30%;
  height: auto;
}
.linkList {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列に設定 */
  width: 60%;
  height: auto;
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  font-size: 21px;
  margin-left: 20px;
  padding-top: 10px;
  gap: 20px;
}
.linkList li {
  display: flex;
  flex: 1 0 50%;
  gap: 5px; /* アイコンと文字の間を調整 */
}
.linkList a {
  text-decoration: none; /* 装飾なし */
  color: inherit; /* 親要素のフォント色を継承 */
}
.linkList a:hover {
  text-decoration: underline; /* 下線を引く */
}
.linkList li:nth-child(1)::before {
  content: url("../images/hairmanu_icon.png"); /* ドライヤーのアイコン */
}
.linkList li:nth-child(2)::before {
  content: url("../images/staff_icon.png"); /* スタッフのアイコン */
}
.linkList li:nth-child(3)::before {
  content: url("../images/goyoyaku_icon.png"); /* ご予約のアイコン */
}
.linkList li:nth-child(4)::before {
  content: url("../images/oshirase_icon.png"); /* お知らせのアイコン */
}
small {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 640px) {
  .siteLinks {
    background-image: url("../images/footer_square_sp.png");
    background-repeat: repeat-x;
    padding: 20px 0 0; /*innerを内包する */
    background-position: left top;
  }
  .inner {
    display: flex;
    flex-direction: column; /* 子要素を縦並びにする */
    flex-wrap: nowrap;
    padding: 30px 25px 30px;
  }
  .inner img {
    width: 161px;
    height: 75px;
    align-self: flex-start; /* 特定の画像を左寄せ */
    margin-right: auto; /* 右側のマージンを自動で調整して左に配置 */
  }
  .linkList {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: auto;
    height: auto;
    font-size: 16px;
    gap: 5px 0;
    padding: 20px 0 10px;
    margin-left: 0px;
  }
  .linkList li {
    width: 100%;
    align-items: center;
  }
  .linkList a:hover {
    text-decoration: inherit; /*スマホのときはホバーしない*/
  }
  .linkList li:nth-child(1)::before {
    transform: scale(0.7); /*アイコンの大きさを70％に調整*/
  }
  .linkList li:nth-child(2)::before {
    transform: scale(0.7); /*アイコンの大きさを70％に調整*/
  }
  .linkList li:nth-child(3)::before {
    transform: scale(0.7); /*アイコンの大きさを70％に調整*/
  }
  .linkList li:nth-child(4)::before {
    transform: scale(0.7); /*アイコンの大きさを70％に調整*/
  }
  small {
    text-align: center;
  }
}

/* ===== ポートフォリオ告知バナー ===== */
.portfolioNotice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  background: #2b2b2b;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-family: 'Hiragino Kaku Gothic ProN', 'sans-serif';
}
.portfolioNotice__link {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}
.portfolioNotice__link:hover {
  opacity: 0.8;
}
body {
  padding-top: 36px;
}

/* ===== ポートフォリオクレジット（フッター内） ===== */
.portfolioCredit {
  display: block;
  margin-top: 4px;
  opacity: 0.7;
  font-size: 11px;
  text-align: right;
  width: 100%;
}
.portfolioCredit a {
  color: inherit;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .portfolioNotice {
    font-size: 11px;
    padding: 6px 10px;
    gap: 8px;
    flex-wrap: wrap;
  }
  body {
    padding-top: 48px;
  }
  .portfolioCredit {
    text-align: center;
  }
}
