@charset "UTF-8";
li {
  list-style: none;
}

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

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

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

html,
body {
  overflow-x: hidden;
}

.section-padding-lg {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .section-padding-lg {
    padding-block: 40px;
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.fadein.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 24px;
}

#header {
  position: fixed;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #e6e6e6;
  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;
  z-index: 10;
  padding: 0 25px;
}

.logo img {
  width: 180px;
  height: auto;
}

a.telephone {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  background-size: cover;
  background-position: center;
  color: #fafafa;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
a.telephone:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  background-color: #c89b3c;
  color: #fafafa;
}

.toggle_btn {
  display: none;
}

nav .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
}
nav .nav-menu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  white-space: nowrap;
}
nav .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c89b3c;
  opacity: 0;
  -webkit-transform: scaleX(0.6);
          transform: scaleX(0.6);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
nav .nav-menu li a:hover {
  color: #c89b3c;
}
nav .nav-menu li a:hover::after {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.mask {
  display: none;
}

/* ================================
   tablet（～1024px）
================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  a.telephone {
    font-size: 1rem;
    padding: 8px 14px;
    margin-left: 10px;
  }
  nav .nav-menu li a {
    gap: 10px;
    font-size: 0.9rem;
  }
}
/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  .toggle_btn {
    display: block;
    cursor: pointer;
    z-index: 30;
    position: relative;
  }
  .toggle_btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .toggle_btn span:nth-child(1),
  .toggle_btn span:nth-child(3) {
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  /* open の時（3本線 → ✖︎） */
  #header.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  #header.open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  #header.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  nav {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    padding: 30px 20px;
    color: #333;
    background-color: rgba(250, 250, 250, 0.95);
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    z-index: 20;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin: 0;
  }
  nav ul li {
    margin-bottom: 15px;
  }
  nav ul li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  nav ul li a:hover {
    color: #c9a063;
  }
  #header.open nav {
    left: 0;
  }
  .mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
  }
  #header.open .sale-tag img {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  #header.open .mask {
    display: block;
  }
  a.telephone {
    font-size: 14px;
    padding: 2px 10px;
    margin-right: 30px;
  }
}
#mainvisual img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  padding-top: 40px;
}
#mainvisual .text {
  position: absolute;
  top: 36%;
  left: 10%;
  z-index: 10;
}
#mainvisual .text h1 {
  font-size: 50px;
  font-weight: 700;
  margin-left: 100px;
  margin-bottom: 20px;
  color: #000;
  -webkit-text-stroke: 2px #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 5px;
  text-align: center;
}
#mainvisual .text h1::after {
  content: "";
  display: block;
  width: 500px;
  height: 2px;
  background: #E5C174;
  margin-top: 15px;
}

.crown-tag img {
  position: absolute;
  top: 0;
  left: 8%;
}

.sale-tag img {
  width: 500px;
  position: absolute;
  top: 60%;
  left: 20%;
}

.reserve .bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  background-size: cover;
  background-position: center;
}

.frame {
  text-align: center;
  color: #c89b3c;
  max-width: 800px;
}
.frame h2 {
  font-size: 3rem;
  color: #fafafa;
}
.frame p {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 20px 0;
  color: #fafafa;
}
.frame h3 {
  font-size: 2.3rem;
  margin-bottom: 40px;
}
.frame .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.frame .btns a {
  display: inline-block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.frame .btns a:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  cursor: pointer;
}

/* ================================
   tablet（～1024px）
================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  #mainvisual img {
    height: 60vh;
  }
  #mainvisual .text {
    top: 24%;
  }
  #mainvisual .text h1 {
    font-size: 40px;
    margin-left: 0;
  }
  #mainvisual .text h1::after {
    width: 400px;
  }
  .crown-tag img {
    width: 400px;
    top: 35px;
    left: 8%;
  }
  .sale-tag img {
    width: 450px;
    position: absolute;
    top: 37%;
    left: 8%;
  }
}
/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  #mainvisual {
    position: relative;
  }
  #mainvisual img {
    padding-top: 80px;
    height: 60vh;
  }
  #mainvisual .text {
    height: 145px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    text-align: center;
    -webkit-transform: translateY(111px);
            transform: translateY(111px);
  }
  #mainvisual .text h1 {
    position: absolute;
    top: 40px;
    font-size: 26px;
    margin-left: 30px;
  }
  #mainvisual .text h1::after {
    width: 150px;
    margin: 15px auto 0;
  }
  .crown-tag img {
    width: 190px;
    top: 70px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .sale-tag img {
    width: 200px;
    top: 28%;
    left: 8%;
  }
}
@media (max-width: 768px) {
  .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .btns a img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  p {
    margin-top: 15px;
    font-size: 14px;
  }
}
.trouble-section {
  background-color: #e6e6e6;
}
.trouble-section .trouble-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}
.trouble-section .trouble-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.trouble-section .trouble-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.trouble-section .trouble-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.trouble-section .section-title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
  padding-bottom: 8px;
}
.trouble-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #333;
}
.trouble-section .dot-deco {
  position: absolute;
  top: -15px;
  left: 93px;
  display: block;
  font-size: 1.2rem;
  color: #c89b3c;
  letter-spacing: 0.4em;
  margin-bottom: 4px;
}
.trouble-section .trouble-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trouble-section .trouble-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.trouble-section .trouble-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid #000;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.solution-section {
  position: relative;
  width: 100%;
}
.solution-section .solution-inner {
  text-align: center;
  position: relative;
  z-index: 3;
}
.solution-section .solution-inner h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.solution-section .solution-inner p {
  font-size: 1.4rem;
}
.solution-section {
  /* 写真とフレームの位置調整 */
}
.solution-section .photo-inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.solution-section .photo-frame {
  position: absolute;
  top: 30px;
  left: 0;
  width: 70%;
  height: 300px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  /* ← 元の背景画像 */
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.solution-section .photo {
  position: relative;
  top: 70px;
  left: 235px;
  width: 70%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  display: block;
}
.solution-section .solution-bottom {
  text-align: center;
  margin-top: 120px;
}
.solution-section .solution-bottom p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.solution-section .square-title {
  position: relative;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25))), url(../img/bg-1.png);
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url(../img/bg-1.png);
  /* 元画像 */
  background-size: cover;
  background-position: center;
  padding: 12px 32px;
}
.solution-section .square-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.solution-section .square-title p {
  font-size: 1.4rem;
  line-height: 35px;
  margin-bottom: 15px;
  color: #fff;
}

/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  .trouble-section .trouble-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .trouble-section .trouble-content {
    text-align: left;
  }
  .trouble-section .section-title {
    font-size: 1.1rem;
    padding-bottom: 6px;
  }
  .trouble-section .section-title::after {
    width: 50%;
    top: 60px;
  }
  .trouble-section .dot-deco {
    top: 15px;
    left: 60px;
    letter-spacing: 0.2em;
    position: relative;
  }
  .solution-section .solution-inner h2 {
    font-size: 1.7rem;
  }
  .solution-section .photo-inner {
    max-width: 100%;
  }
  .solution-section .photo-frame {
    width: 80%;
    height: 200px;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .solution-section .photo {
    width: 85%;
    height: 220px;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .solution-section .solution-bottom {
    margin-top: 80px;
  }
  .solution-section .solution-bottom p {
    font-size: 1rem;
  }
  .solution-section .square-title {
    width: 100%;
    height: auto;
  }
  .solution-section .square-title h2 {
    font-size: 1.3rem;
  }
  .solution-section .square-title p {
    font-size: 0.9rem;
    line-height: 10px;
  }
}
.salon-section {
  text-align: center;
}
.salon-section .salon-name {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.salon-section .salon-lead {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 48px;
}
.salon-section .points {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  padding: 30px 20px 100px;
}
.salon-section .points .point {
  width: 30%;
  text-align: center;
  position: relative;
}
.salon-section .points .point .point-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  position: relative;
  margin-bottom: -26px;
}
.salon-section .points .point .point-head .point-text,
.salon-section .points .point .point-head .point-number {
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  display: inline-block;
}
.salon-section .points .point .point-head .point-text {
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 2px #fff;
}
.salon-section .points .point .point-head .point-number {
  background-color: #fff;
  color: #333;
  -webkit-box-shadow: 0 6px 16px rgb(0, 0, 0);
          box-shadow: 0 6px 16px rgb(0, 0, 0);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
.salon-section .points .point .point-body {
  border: 2px solid #e0ddd4;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  padding: 60px 40px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #fafafa;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  /* 元画像 */
  background-size: cover;
  background-position: center;
}

/* ================================
   tablet（～1024px）
================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .salon-section .points {
    gap: 30px;
  }
}
/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  .salon-section .salon-name {
    font-size: 2rem;
  }
  .salon-section .salon-lead {
    margin: 0;
  }
  .salon-section .points {
    gap: 24px;
    padding: 32px 16px;
  }
  .salon-section .points .point {
    width: 100%;
  }
  .salon-section .points .point .point-text {
    font-size: 1.6rem;
    -webkit-text-stroke: 1px #fff;
  }
  .salon-section .points .point .point-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .salon-section .points .point-body {
    height: 150px;
  }
}
.voice-section {
  text-align: center;
  background-color: #e6e6e6;
}
.voice-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.voice-section p {
  font-weight: 500;
  margin-bottom: 48px;
}
.voice-section .voice-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  text-align: left;
  margin-bottom: 30px;
}
.voice-section .comment-box {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  /* 元画像 */
  background-size: cover;
  background-position: center;
  padding: 30px 50px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 1;
}
.voice-section .comment-box span {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 20px;
}
.voice-section .comment-box p {
  color: #fafafa;
}
.voice-section .man {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  margin-top: 40px;
  margin-left: -40px;
  position: relative;
  z-index: 2;
}
.voice-section .man img {
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  .voice-section h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .voice-section .voice-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  .voice-section .man {
    margin: 20px 0 0 0;
    width: 60%;
    max-width: 250px;
  }
  .voice-section .man img {
    width: 100%;
  }
}
.menu-section {
  background-color: #fafafa;
  text-align: center;
}
.menu-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.menu-section .menu-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.menu-section .menu-box h3 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 12px;
  border-bottom: 3px double #aaa;
  padding-bottom: 8px;
}
.menu-section .menu-desc {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: left;
}
.menu-section .menu-list {
  padding: 0;
  margin: 0 0 24px;
}
.menu-section .menu-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px dotted #aaa;
  padding: 20px 0;
}
.menu-section .menu-list li .menu-item {
  font-size: 1rem;
  color: #333;
}
.menu-section .menu-list li .price {
  font-weight: 600;
  color: #333;
  margin-left: 20px;
}
.menu-section .menu-note p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 10px;
}

/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  .menu-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .menu-section .menu-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }
  .menu-section .menu-desc {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .menu-section .menu-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 12px 0;
  }
  .menu-section .menu-list li .menu-item {
    font-size: 0.95rem;
    text-align: left;
  }
  .menu-section .menu-list li .price {
    margin-left: 0;
    margin-top: 4px;
  }
  .menu-section .menu-note p {
    line-height: 1.5;
  }
}
.flow-section {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  /* 元画像 */
  background-size: cover;
  background-position: center;
  position: relative;
}
.flow-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 40px;
}
.flow-section .flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.flow-section .flow-item {
  background-color: #111;
  padding: 10px 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* 薄い白枠 */
}
.flow-section .flow-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.flow-section .flow-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}
.flow-section .flow-item .step {
  color: #c89b3c;
  font-weight: 700;
  margin-bottom: 8px;
}
.flow-section .flow-item h3 {
  font-size: 1.2rem;
  color: #fafafa;
  font-weight: 600;
  margin-bottom: 8px;
}
.flow-section .flow-item p {
  color: #fafafa;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .flow-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .flow-section .flow-grid {
    gap: 20px;
  }
}

.staff-section {
  text-align: center;
  background-color: #e6e6e6;
}
.staff-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 48px;
}
.staff-section .slick-slide {
  margin-inline: 15px;
}
.staff-section .staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.staff-section .staff-item {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  /* 元画像 */
  background-size: cover;
  background-position: center;
  color: #fafafa;
  padding: 25px 20px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  max-width: 335px;
}
.staff-section .staff-item:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.staff-section .staff-item img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.staff-section .staff-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.staff-section .staff-item .position {
  color: #c89b3c;
  font-weight: 600;
  margin-bottom: 16px;
}
.staff-section .staff-item .comment {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

/* ================================
   タブレット（～1024px）
================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .staff-section .staff-grid {
    gap: 15px;
  }
}
/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  .staff-section h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
  .staff-section .staff-grid {
    grid-template-columns: 1fr;
  }
}
.faq-section {
  background-size: cover;
  background-position: center;
  background-color: #e6e6e6;
  text-align: center;
  position: relative;
}
.faq-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 48px;
}
.faq-section .faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.faq-section .faq-item {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  /* 元画像 */
  background-size: cover;
  background-position: center;
  padding: 24px 32px;
  text-align: left;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  /* 浮いている感 */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-section .faq-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.faq-section .faq-item .question {
  color: #fafafa;
  font-weight: 700;
  margin-bottom: 8px;
}
.faq-section .faq-item .question span {
  color: #c89b3c;
  font-size: 1.5rem;
  margin-right: 10px;
}
.faq-section .faq-item .answer {
  color: #fafafa;
  line-height: 1.6;
}
.faq-section .faq-item .answer span {
  color: #E05535;
  margin-right: 5px;
}
.faq-section {
  /* ================================
     SP（～768px）
  ================================ */
}
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .faq-section .faq-item {
    padding: 20px;
  }
}

.info-section {
  text-align: center;
}
.info-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 48px;
}
.info-section .salon-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: left;
}
.info-section .salon-info .info-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
}
.info-section .salon-info .info-text p {
  line-height: 1.8;
  margin-bottom: 8px;
}
.info-section .salon-info .salon-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
.info-section .salon-info .salon-image img {
  width: 100%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.info-section .salon-map {
  max-width: 1000px;
  margin: 0 auto;
}
.info-section .salon-map iframe {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  .info-section h2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .salon-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .salon-info .salon-image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .salon-info .info-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .salon-map iframe {
    width: 100%;
    height: 300px;
  }
}
footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url(../img/bg-2.png);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../img/bg-2.png);
  /* 元画像 */
  background-size: cover;
  background-position: center;
  padding: 60px 20px 20px;
  text-align: center;
}
footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 auto 40px;
  gap: 80px;
}
footer .footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
footer .footer-left img {
  width: 180px;
  height: 150px;
}
footer .sns-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
footer .sns-icons a {
  color: #fafafa;
  font-size: 1.4rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
footer .sns-icons a:hover {
  color: #c9a063;
}

.footer-nav .nav-menu {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-nav .nav-menu li a {
  font-size: 1rem;
  color: #fafafa;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-nav .nav-menu li a:hover {
  color: #c9a063;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.copy p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
}

/* ================================
   SP（～768px）
================================ */
@media (max-width: 768px) {
  footer {
    padding: 40px 20px;
  }
  footer .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-left img {
    width: 150px;
    height: auto;
  }
  .footer-nav .nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */