/* =====================
   base
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.7;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

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

/* =====================
   header
===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
}

.logo {
  font-size: 16px;
  letter-spacing: 0.1em;
}

nav a {
  margin-left: 24px;
  font-size: 14px;
}

/* =====================
   hero slider（PC）
===================== */
.hero-slider {
  margin-top: 70px;                 /* 固定ヘッダー分 */
  height: 100vh;
  overflow: hidden;
}

.hero-slider .swiper-wrapper {
  height: 100%;
}

.hero-slider .swiper-slide {
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide h1 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.2em;
  font-weight: 300;
  text-align: center;
  text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* =====================
   mobile hero
===================== */
@media (max-width: 768px) {

  .hero-slider {
    height: 60vh;              /* ← ここだけ変更 */
  }

  .hero-slider .swiper-slide {
    background-position: center top;
  }

  .hero-slide h1 {
    font-size: 20px;
    letter-spacing: 0.15em;
    padding: 0 20px;
    margin-top: 35vh;
  }
}


/* =====================
   section
===================== */
section {
  padding: 60px 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.15em;
  text-align: center;
}



/* =====================
   about section
===================== */
.about-section {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

#about p{
  text-align: center;
}

.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}

/* 画像 */
.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
}

/* テキスト */
.about-text .section-title {
  margin-bottom: 24px;
}

.about-lead {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.9;
}

.about-name {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #777;
}

/* =====================
   responsive
===================== */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    width: 200px;
    height: 200px;
    margin-bottom: 24px;
  }
}


/* =====================
   menu
===================== */
.menu-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}

.menu-item {
  text-align: left;
}

.menu-link {
  display: block;
}

.menu-image {
  overflow: hidden;
  margin-bottom: 16px;
}

.menu-image img {
  transition: transform 0.6s ease;
}

.menu-link:hover img {
  transform: scale(1.05);
}

.menu-title {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.menu-caption {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* スマホ */
@media (max-width: 768px) {
  .menu-section {
    padding: 80px 20px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================
   works
===================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.works-grid img {
  transition: transform 0.4s ease;
}

.works-grid img:hover {
  transform: scale(1.03);
}

/* =====================
   lightbox popup
===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 50%;
  max-height: 90vh;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.is-active .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
}

/* スマホ */
@media (max-width: 768px) {
  .lightbox-image {
  max-width: 90%;
}
}

/* =====================
   price
===================== */
.price-section {
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.price-box {
  border: 1px solid #eaeaea;
  padding: 48px 32px;
  background: #fff;
}

.price-title {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 24px;
}

.price-amount span {
  font-size: 14px;
  color: #777;
}

.price-list {
  list-style: none;
  margin-bottom: 24px;
}

.price-list li {
  font-size: 14px;
  margin-bottom: 8px;
}

.price-note {
  font-size: 12px;
  color: #777;
}

/* 2カラム */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 25px 0;
}

/* スマホ */
@media (max-width: 768px) {
  .price-section {
    padding: 40px 20px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   flow
===================== */
.flow-section {
  padding: 70px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.flow-item {
  text-align: left;
}

.flow-step {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 8px;
}

.flow-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.flow-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* タブレット */
@media (max-width: 1024px) {
  .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマホ */
@media (max-width: 768px) {
  .flow-section {
    padding: 80px 20px;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================
   footer
===================== */
footer {
  text-align: center;
  padding: 60px 20px;
  font-size: 12px;
  color: #666;
}

/* =====================
   responsive
===================== */
@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }

  nav a {
    margin-left: 16px;
    font-size: 12px;
  }

  section {
    padding: 80px 20px;
  }
}

/* =====================
   instagram
===================== */
#instagram {
  background: #fafafa;
}

.instagram-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.instagram-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

/* iframe周り */
.instagram-feed {
  max-width: 1000px;
  margin: 0 auto;
}

.snapwidget-widget {
  width: 100%;
  border: none;
  min-height: 680px;
}

@media (max-width: 1024px) {
  .snapwidget-widget {
    min-height: 610px;
  }
}

@media (max-width: 768px) {
  .snapwidget-widget {
    min-height: 270px;
  }
}

/* link */
.instagram-link-wrap {
  margin-top: 40px;
}

.instagram-link {
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative;
}

.instagram-link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #111;
  margin: 6px auto 0;
  transition: width 0.3s ease;
}

.instagram-link:hover::after {
  width: 100%;
}

/* =====================
   responsive
===================== */
@media (max-width: 768px) {
  .instagram-section {
    padding: 30px 20px;
  }
}
/* =====================
   contact
===================== */
#contact {
  padding: 100px 20px 50px;
  text-align: center;
  background: #fff;
}

.contact h2 {
  font-size: 28px;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-text {
  color: #777;
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-contact {
  display: inline-block;
  padding: 18px 48px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 30px;
}

/* hover */
.btn-contact:hover {
  background: #111;
  color: #fff;
}

.contact-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* hover */
.btn-contact:hover {
  background: #111;
  color: #fff;
}

/* メール用：少し控えめ */
.btn-mail {
  border-style: dashed;
}

/* スマホ */
@media (max-width: 768px) {
  .btn-contact {
    width: 100%;
    text-align: center;
  }
}





/* =====================
   page hero
===================== */
.page-hero {
  height: calc(100vh - 70px);
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero.beach {
  background: url(images/img_star_03.jpg) center / cover no-repeat;
  background-position: center bottom;
}

.page-hero-inner h1 {
  font-size: 32px;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.page-hero-inner p {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* =====================
   page section
===================== */
.page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.page-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: #555;
  text-align: center;
}

/* =====================
   gallery
===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 20px 0;
}

.gallery-grid img {
  transition: transform .4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* =====================
   price
===================== */
.price-section {
  text-align: center;
}

.price-main {
  font-size: 28px;
  margin-bottom: 12px;
}

.price-note {
  font-size: 13px;
  color: #777;
}

/* =====================
   responsive
===================== */
@media (max-width: 768px) {
  .page-hero-inner h1 {
    font-size: 22px;
  }

  .page-section {
    padding: 40px 20px;
  }
}
