@charset "UTF-8";

/* カラーパレット変数 */
:root {
  --coral:      #0096c7;
  --sea:        #48cae4;
  --teal:       #00b4a6;
  --sand:       #f0faff;
  --sand-dark:  #c6e8f5;
  --text:       #333;
  --text-mid:   #666;
  --text-light: #999;
  --border:     #c6e8f5;
}

img {
  vertical-align: bottom;
}

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

body {
  padding-top: 111px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.header .logo {
  padding: 22px 0;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.header .nav-box {
  display: flex;
  flex-direction: column;
}
.header .lang {
  order: -1;
  text-align: right;
}
.header .lang a {
  display: inline-block;
  background: #333;
  padding: 7px 40px 10px;
  border-radius: 0 0 6px 6px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.header .nav {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.header .nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: bold;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  width: 24px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1002;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* Hamburger Active State */
.hamburger.active span {
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.gallery-swiper {
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #999;
  opacity: 0.5;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.plans {
  padding: 80px 0;
  background: #f0faff;
}
.plans .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.plans h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}
.plans h2 span {
  margin-left: 0.5em;
  font-size: 20px;
}
.plans .subtitle {
  line-height: 1.8;
}
.plans .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.plans .plan-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
.plans .plan-image {
  height: 250px;
  position: relative;
}
.plans .plan-image.plan1 {
  background: url(/img/top_plan1.jpg) 50% no-repeat;
  background-size: cover;
}
.plans .plan-image.plan2 {
  background: url(/img/top_plan2.jpg) 50% no-repeat;
  background-size: cover;
}
.plans .plan-image.plan3 {
  background: url(/img/top_plan3.jpg) 50% no-repeat;
  background-size: cover;
}
.plans .plan-tags {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}
.plans .tag {
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.plans .plan-content {
  padding: 40px;
}
.plans .plan-content2 {
  padding: 25px;
}
.plans .plan-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.plans .plan-title span {
  margin-left: 6px;
  font-size: 14px;
  font-weight: normal;
}
.plans .plan-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}
.plans .plan-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plans .plan-price {
  font-size: 18px;
  font-weight: bold;
  color: #0096c7;
}
.plans .plan-button {
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
}

.news {
  padding: 60px 0;
  background: #fff;
}
.news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.news h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}
.news .news-item {
  padding: 15px 0;
  border-bottom: 1px solid #c6e8f5;
  display: flex;
  align-items: center;
  gap: 20px;
}
.news .news-date {
  color: #999;
  font-size: 14px;
  width: 100px;
}
.news .news-title {
  color: #333;
  text-decoration: none;
  flex: 1;
}

.first-time {
  padding: 80px 0;
  background: #f0faff;
}
.first-time .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.first-time h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}
.first-time p {
  color: #666;
  margin-bottom: 50px;
}
.first-time .features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.first-time .feature {
  text-align: center;
}
.first-time .feature-icon {
  max-width: 160px;
  margin: 0 auto 15px;
}
.first-time .feature-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.gallery {
  padding: 60px 0;
}
.gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery .images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery .image {
  height: 150px;
  background: linear-gradient(45deg, #48cae4, #4fc3f7);
  border-radius: 10px;
}

.testimonials {
  padding: 80px 0;
  background: #f0faff;
}
.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonials h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.testimonials .testimonial {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.testimonials .testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.testimonials .testimonial-name {
  font-weight: bold;
  color: #333;
}
.testimonials .testimonial-stars {
  color: #ffc107;
}
.testimonials .testimonial-text {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

.faq {
  padding: 80px 0;
  background: #fff;
}
.faq .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}
.faq .faq-item {
  margin-bottom: 30px;
  border: 1px solid #c6e8f5;
  border-radius: 10px;
  overflow: hidden;
}
.faq .faq-question {
  background: #f0faff;
  padding: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}
.faq .faq-icon {
  width: 20px;
  height: 20px;
  background: #48cae4;
  border-radius: 50%;
  flex-shrink: 0;
}
.faq .faq-answer {
  padding: 20px;
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}
.faq .cta-button {
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  display: block;
  width: 200px;
  margin: 50px auto 0;
  background: #333;
  color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 30px;
  font-size: 16px;
}

.access {
  padding: 60px 0;
  background: #f0faff;
}
.access .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.access h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}
.access .locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.access .locations--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
.access .location {
  background: #fff;
  padding: 0 0 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.access .location .location-img {
  margin-bottom: 15px;
}
.access .location .location-img img {
  border-radius: 15px 15px 0 0;
}
.access .location .location-img--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.access .location .location-img--grid img {
  border-radius: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.access .location .location-img--grid img:first-child {
  border-radius: 15px 0 0 0;
}
.access .location .location-img--grid img:nth-child(2) {
  border-radius: 0 15px 0 0;
}
.access .location h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}
.access .location p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}
.access .location-button {
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
}

.footer {
  padding: 40px 0 120px; /* 固定CTAバー分（約60px）を加算 */
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.footer .social-links img {
  border-radius: 7px;
}
.footer .ft-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .company-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer .company-details {
  font-size: 16px;
  line-height: 1.6;
}
.footer .bottom {
  padding-top: 15px;
  font-size: 12px;
}
.footer .more-info {
  text-align: right;
}
.footer .more-info .lang a {
  display: inline-block;
  background: #333;
  padding: 7px 40px 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.footer .more-info .nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.6em 1em;
  margin-top: 20px;
}
.footer .more-info .nav a {
  color: #333;
}

/* Mobile Styles内に追加 */
@media screen and (max-width:767px) {
  body {
    padding-top: 78px;
    font-size: 3.6vw;
  }
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .menu-overlay.active {
    display: block;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 28px;
  }
  .header .logo {
    padding: 20px 0;
  }
  .header .logo img {
    width: 60vw;
    height: auto;
  }
  .header .nav-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: var(--coral);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 78px 22px 40px;
    overflow-y: auto;
  }
  .header .nav-box.active {
    right: 0;
  }
  .header .nav-inner {
    background: #fff;
    border-radius: 12px;
    padding: 20px 20px 32px;
    display: flex;
    flex-direction: column;
  }
  .header .lang {
    order: 2;
    margin-top: 40px;
    font-weight: bold;
    text-align: left;
  }
  .header .lang a {
    display: block;
    padding: 10px 0;
    border-radius: 6px;
    text-align: center;
  }
  .header .nav {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
  }
  .header .nav a {
    padding: 10px 0;
    border-bottom: 1px solid #c6e8f5;
    color: #333;
    font-size: 4vw;
    font-weight: bold;
    text-decoration: none;
  }
  .plans {
    padding: 10vw 0;
  }
  .plans h2 {
    font-size: 5.5vw;
    margin-bottom: 0.5em;
  }
  .plans h2 span {
    font-size: 4vw;
  }
  .plans .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .plans .plan-tags {
    left: 0;
    right: 0;
    justify-content: center;
    gap: 8px;
  }
  .plans .tag {
    font-size: 3.4vw;
  }
  .plans .plan-content {
    padding: 20px;
  }
  .plans .plan-content2 {
    padding: 20px;
  }
  .plans .plan-title {
    font-size: 5vw;
  }
  .plans .plan-title span {
    display: block;
    margin-left: 6px;
    font-size: 3.4vw;
  }
  .plans .plan-details {
    display: block;
    margin-top: 5px;
  }
  .plans .plan-price {
    display: block;
    font-size: 4vw;
  }
  .plans .plan-button {
    margin-top: 10px;
  }
  .news {
    padding: 40px 0;
  }
  .news h2 {
    font-size: 5.5vw;
    margin-bottom: 10px;
  }
  .news .news-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .news .news-date {
    font-size: 3.2vw;
    width: 6em;
  }
  .news .news-title {
    text-decoration: none;
    flex: 1;
  }
  .first-time {
    padding: 40px 0;
  }
  .first-time h2 {
    font-size: 6vw;
    margin-bottom: 0.8em;
  }
  .first-time p {
    margin-bottom: 50px;
    text-align: left;
  }
  .first-time .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10vw;
    margin: 0 8vw;
  }
  .first-time .feature-title {
    font-size: 4vw;
  }
  .testimonials {
    padding: 40px 0;
  }
  .testimonials h2 {
    font-size: 6vw;
    margin-bottom: 0.8em;
  }
  .testimonials .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonials .testimonial {
    padding: 25px;
  }
  .testimonials .testimonial-header {
    margin-bottom: 15px;
  }
  .testimonials .testimonial-text {
    line-height: 1.6;
    font-size: 3.6vw;
  }
  .faq {
    padding: 40px 0;
  }
  .faq h2 {
    font-size: 6vw;
    margin-bottom: 0.8em;
  }
  .faq .faq-item {
    margin-bottom: 20px;
  }
  .faq .faq-question {
    padding: 20px 20px 10px 20px;
    gap: 10px;
  }
  .faq .faq-answer {
    padding: 10px 20px 20px 20px;
    line-height: 1.6;
    font-size: 3.6vw;
  }
  .faq .cta-button {
    margin: 30px auto 0;
    font-size: 3.6vw;
  }
  .access {
    padding: 40px 0;
  }
  .access h2 {
    font-size: 6vw;
    margin-bottom: 0.8em;
  }
  .access .locations {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .access .locations--single {
    max-width: 100%;
  }
  .footer {
    padding: 40px 0 100px; /* 固定CTAバー折り返し分を加算 */
  }
  .footer .social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
  }
  .footer .ft-info {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .footer .company-info {
    margin-top: 40px;
  }
  .footer .company-name {
    margin-bottom: 20px;
  }
  .footer .more-info {
    text-align: left;
  }
  .footer .more-info .lang {
    text-align: center;
  }
  .footer .more-info .lang a {
    padding: 12px 15vw;
    border-radius: 24px;
    font-size: 3.6vw;
  }
  .footer .more-info .nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0.6em 1em;
    margin-top: 30px;
  }
}
@media screen and (max-width:375px) {
  .plans .plan-tags {
    gap: 5px;
  }
  .plans .tag {
    padding: 5px 10px;
  }
}
@media screen and (min-width:768px) and (max-width:1180px) {
  .spn {
    display: block;
  }
  .tbn {
    display: none;
  }
  body {
    padding-top: 107px;
  }
  .header {
    padding-bottom: 10px;
  }
  .header .container {
    display: block;
  }
  .header .logo {
    padding-bottom: 0;
  }
  .header .logo img {
    width: 300px;
    height: auto;
  }
  .header .nav-box {
    margin-top: -60px;
  }
  .header .nav {
    justify-content: right;
    margin-top: 30px;
  }
  .plans {
    padding: 40px 0;
  }
  .plans .grid {
    gap: 20px;
  }
  .plans .plan-tags {
    left: 0;
    right: 0;
    justify-content: center;
    gap: 5px;
  }
  .plans .plan-content {
    padding: 20px;
  }
  .plans .plan-content2 {
    padding: 20px;
  }
  .plans .plan-title span {
    display: block;
    margin-left: 6px;
    font-size: 14px;
  }
  .plans .plan-details {
    display: block;
    margin-top: 5px;
  }
  .plans .plan-price {
    display: block;
    font-size: inherit;
  }
  .plans .plan-button {
    margin-top: 10px;
  }
  .news {
    padding: 40px 0 50px;
  }
  .first-time {
    padding: 60px 0;
  }
  .testimonials {
    padding: 60px 0;
  }
  .testimonials .testimonial-grid {
    gap: 20px;
  }
  .faq {
    padding: 60px 0;
  }
}
@media screen and (min-width:1181px) {
  .pcn {
    display: none;
  }
}
/* ヒーローセクション */
.plan-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/plan_Schnorchel.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.plan-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.plan-hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-block;
  background: #0096c7;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.gray-button {
  background: #6c757d;
}

.gray-button:hover {
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.5);
}

/* セクションタイトル */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #0077be;
}

/* 3つの魅力セクション */
.features-section {
  padding: 5rem 0;
  background: #f0faff;
}

.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0077be;
}

/* プラン詳細セクション */
.plan-detail {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f4ff 100%);
}

.plan-detail .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-highlight {
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-header {
  text-align: center;
  margin-bottom: 3rem;
}

.plan-title {
  font-size: 2.5rem;
  color: #0077be;
  margin-bottom: 1rem;
}

.plan-badge {
  display: inline-block;
  background: #0096c7;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.plan-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.plan-feature {
  text-align: center;
  padding: 1.5rem;
  background: #f0faff;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.plan-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 119, 190, 0.2);
}

.plan-feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.plan-feature h4 {
  color: #0077be;
  margin-bottom: 0.5rem;
}

/* なぜ日帰りプランが選ばれるか */
.why-daytrip {
  background: #f0faff;
  padding: 3rem;
  border-radius: 20px;
  margin-top: 3rem;
}

.why-daytrip h3 {
  text-align: center;
  color: #0077be;
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.reason-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.reason-number {
  flex: 0 0 40px;
  height: 40px;
  background: #0077be;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.reason-content h4 {
  color: #0077be;
  margin-bottom: 0.5rem;
}

/* プラン比較セクション */
.plan-comparison {
  padding: 5rem 0;
  background: white;
}

.plan-comparison .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.plan-comparison .plan-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card.recommended {
  border-color: #0096c7;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.plan-card.recommended::before {
  content: "人気No.1";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #0096c7;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
}

.plan-comparison .plan-card h3 {
  text-align: center;
  color: #0077be;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.plan-price {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-price .from {
  font-size: 0.9rem;
  color: #666;
}

.plan-price .price-main {
  font-size: 2rem;
  font-weight: bold;
  color: #0096c7;
}

.plan-includes {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-includes li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #c6e8f5;
  position: relative;
  padding-left: 2rem;
}

.plan-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c851;
  font-weight: bold;
  font-size: 1.2rem;
}

.plan-option {
  background: #fff3cd;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  font-size: 0.9rem;
  text-align: center;
}

/* 写真ギャラリー */
.photo-gallery {
  padding: 5rem 0;
  background: white;
}

.photo-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.photo-placeholder {
  position: relative;
  background: #f0f8ff;
  border: 2px dashed #0077be;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
}

.photo-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 119, 190, 0.2);
}

.photo-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.photo-label {
  font-size: 1.1rem;
  color: #0077be;
  font-weight: 600;
}

/* タイムライン */
.timeline {
  padding: 5rem 0;
  background: #f0faff;
}

.timeline .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  opacity: 0;
  animation: slideIn 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.timeline-time {
  flex: 0 0 100px;
  text-align: right;
  padding-right: 2rem;
  font-weight: bold;
  color: #0077be;
}

.timeline-content {
  flex: 1;
  padding: 1rem 2rem;
  background: white;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #0077be;
  border-radius: 50%;
}

.timeline-content h4 {
  color: #0077be;
  margin-bottom: 0.5rem;
}

/* 料金セクション */
.pricing {
  padding: 5rem 0;
  background: white;
}

.pricing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background: #f0faff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 3px solid #0096c7;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0077be;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0096c7;
  margin-bottom: 1rem;
}

.price-unit {
  font-size: 1rem;
  color: #666;
}

.price-details {
  list-style: none;
  margin-bottom: 2rem;
}

.price-details li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

/* お客様の声（新） */
.testimonials-new {
  padding: 5rem 0;
  background: #f0faff;
}

.testimonials-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-photo {
  flex: 0 0 150px;
  height: 150px;
  background: #e0e0e0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #999;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: bold;
  color: #0077be;
}

/* インスタグラムセクション */
.instagram-section {
  padding: 3rem 0;
  background: white;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.insta-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(45deg, #f0f8ff 25%, #e6f4ff 25%, #e6f4ff 50%, #f0f8ff 50%, #f0f8ff 75%, #e6f4ff 75%, #e6f4ff);
  background-size: 20px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.insta-placeholder:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* FAQ（新） */
.faq-new {
  padding: 5rem 0;
  background: #f0faff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-new {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.faq-question-new {
  padding: 1.5rem;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.faq-question-new:hover {
  background: #f0faff;
}

.faq-answer-new {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-new.active .faq-answer-new {
  padding: 1.5rem;
  max-height: 300px;
}

.faq-icon-new {
  transition: transform 0.3s ease;
}

.faq-item-new.active .faq-icon-new {
  transform: rotate(180deg);
}

/* 固定CTA */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 1000;
}

.fixed-cta .cta-button {
  font-size: 1rem;
  padding: 0.8rem 2rem;
}

.line-button {
  background: #00B900;
}

.line-button:hover {
  box-shadow: 0 6px 20px rgba(0, 185, 0, 0.5);
}

/* 固定CTAバー（全ページ共通） */
.fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--coral);
  padding: 10px 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.fixed-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.fixed-bar a:hover {
  transform: translateY(-1px);
}

.fixed-bar__form {
  background: #fff;
  color: var(--coral);
}

.fixed-bar__line {
  background: #06c755;
  color: #fff;
}

.fixed-bar__tel {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .plan-hero h1 {
    font-size: 2rem;
  }
  .plan-hero .subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .timeline-time {
    flex: 0 0 80px;
    font-size: 0.9rem;
  }
  .timeline-content {
    padding: 1rem;
  }
  .testimonial-card {
    flex-direction: column;
  }
  .testimonial-photo {
    flex: 0 0 100px;
    height: 100px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fixed-cta {
    flex-direction: column;
  }
  .fixed-cta .cta-button {
    width: 100%;
    text-align: center;
  }
  .plan-cards {
    grid-template-columns: 1fr;
  }
  .plan-card.recommended {
    transform: scale(1);
  }
  .fixed-bar {
    flex-wrap: wrap;
    gap: 4px;
  }
  .fixed-bar a {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
}/*# sourceMappingURL=styles.css.map */