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

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

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

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Shippori Mincho B1", serif;
  color: #3a3a3a;
  background-color: #fcf9f6;
  line-height: 1.6;
  padding-top: 80px;
}

h3 {
  margin-bottom: 0.3rem;
}

.jp-font {
  font-family: "Noto Serif JP", serif;
}

/* Header & Navigation */
/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

.header-container {
  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;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-left: 10px;
}

.logo span {
  color: #e8b4b8;
}

.hamburger {
  display: none;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 2rem;
}

nav li {
  margin-left: 2rem;
}

nav a {
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}

nav a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #e8b4b8;
  left: 0;
  bottom: -5px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

nav a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("../img/top.png") no-repeat center center/cover;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/top.png") no-repeat center center/cover;
  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;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.hero-content.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: #e8b4b8;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  background: #d6a2a6;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.section-title.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background: #e8b4b8;
  bottom: -10px;
  left: 25%;
}

/* About Section */
.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.about-content.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-text p {
  letter-spacing: 0.1rem;
}

.about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.about-image img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

/* Staff */
.staff {
  background: linear-gradient(135deg, #f2f1ef, #f5f4f2, #f8f7f5);
}

.staff-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* ← 複数人の場合に自然に折り返す */
}

.staff-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.staff-member img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 4rem;
}

.staff-member h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e08ea1;
  margin: 0 0 0.5rem;
}

.staff-member p {
  margin: 0.3rem 0;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.text {
  margin-left: 50px;
}

/* Services */
.services {
  background: linear-gradient(135deg, #f7eaea, #f5f4f2, #f7eaea);
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
  position: relative;
}
.content:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.content img {
  display: block;
  width: 30%;
  height: 200px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: transform 0.5s, filter 0.5s;
  transition: transform 0.5s, filter 0.5s, -webkit-transform 0.5s, -webkit-filter 0.5s;
}
.content img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}
.content .cut-text,
.content .color-text {
  width: 50%;
  padding: 0 7%;
  position: relative;
  z-index: 1;
}
.content .section-title {
  margin-bottom: 1.5rem;
}

/* Price */
.price-tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 20px 0;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: transparent;
}

.price-table th {
  text-align: left;
  padding: 12px 10px;
  font-size: 1.1rem;
  color: #d46b9a;
  border-bottom: 2px solid #d46b9a;
}

.price-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #d46b9a;
}

.price-table tbody tr:hover {
  background: #fafafa;
}

.btn-wrapper {
  text-align: center;
  margin-top: 2rem;
}

/* Gallery */
.gallery {
  background: linear-gradient(135deg, #f8f7f5, #f5f4f2, #f2f1ef);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.gallery-item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.gallery-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Testimonials */
.testimonial {
  background: #fff;
  padding: 20px 15px 40px;
  border-radius: 6px;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 280px;
  margin: 20px;
  text-align: center;
  -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;
}

/* ちょっと浮かせる動き */
.testimonial:hover {
  -webkit-transform: scale(1.03) rotate(1deg);
          transform: scale(1.03) rotate(1deg);
}

/* 名前を下の余白に配置する感じ */
.testimonial-author {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  color: #555;
}

/* マスキングテープ風 */
.testimonial::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-5deg);
          transform: translateX(-50%) rotate(-5deg);
  width: 70px;
  height: 20px;
  background: #f8cdd3;
  opacity: 0.8;
  border-radius: 3px;
}

.testimonial-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 10px;
}

/* 地図と住所を横並び */
.location-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}

.location-map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 600px;
          flex: 1 1 600px;
  min-width: 300px;
}
.location-map iframe {
  width: 100%;
  height: 400px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  border: 0;
}

.contact-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  min-width: 280px;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #a29e9e;
  border-radius: 5px;
  font-family: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Footer */
footer {
  background: #161515;
  color: white;
  padding: 3rem 5%;
  text-align: center;
}
footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
}
footer .footer-social {
  margin: 2rem 0;
}
footer .footer-social a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
footer .footer-social a:hover {
  color: #e8b4b8;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 2.5rem 5%;
  }
  .hamburger {
    display: block;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 2001;
  }
  .hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  /* ナビゲーション初期状態（隠す） */
  #navi {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    background: #fff;
    padding: 60px 20px;
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
    -webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
            box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 2000;
  }
  /* header に open クラスが付いたときに表示 */
  header.open #navi {
    left: 0;
  }
  /* メニューのリスト */
  #navi ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #navi li {
    margin-bottom: 20px;
  }
  #navi a {
    color: #333;
    font-size: 1.1rem;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  #navi a:hover {
    color: #e8b4b8;
  }
  /* 背景の黒いマスク */
  #mask {
    display: none;
  }
  header.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1500;
  }
  /* ハンバーガー → × に変形 */
  header.open .hamburger span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(6px, 6px);
            transform: rotate(45deg) translate(6px, 6px);
  }
  header.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  header.open .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
            transform: rotate(-45deg) translate(7px, -7px);
  }
  /* PC時のメニューを非表示にする */
  nav ul {
    display: block;
  }
  .header-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero h2 {
    font-size: 34px;
  }
  .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .staff-info {
    -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;
  }
  .staff-member {
    -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;
  }
  .text {
    margin-left: 0;
  }
  .staff-member img {
    margin-bottom: 1rem;
    width: 200px;
    height: 200px;
  }
  .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content img {
    width: 100%;
    height: auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    /* 写真を先頭に */
    margin-bottom: 1.5rem;
  }
  .content .cut-text,
  .content .color-text {
    width: 100%;
    padding: 0;
  }
  .content:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu {
    max-width: 90%;
  }
  .menu .menu-title {
    font-size: 1.6rem;
  }
  .menu dl {
    padding: 15px;
  }
  .menu .menu-item dt {
    font-size: 1rem;
  }
  .menu .menu-item dd {
    font-size: 0.95rem;
  }
  .price-tables {
    grid-template-columns: 1fr;
  }
  .contact-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* Animation delay classes */
.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay-2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay-3 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.delay-4 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}/*# sourceMappingURL=style.css.map */