@charset "utf-8";
/*
Theme Name: takasyo_hp
  */
body {
  font-family: 'Zen Old Mincho', serif;
  margin: 0;
  background: #f8fafd;
  color: #333333;
  font-size: 12px;
}

body > *:not(.background-waves-bg) {
  position: relative;
  z-index: 1;
}

.shadow {
  box-shadow: 0 4px 16px rgba(35, 159, 221, 0.15);
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  min-height: 80px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  flex-wrap: wrap;
}
.site-title {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  margin-left: 20px;
}
.main-nav {
  margin-left: auto;
  margin-right: 20px;
}
.main-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  font-size: 18px;
  border: 4px solid #239FDD;
  border-radius: 5px;
  color: #333333;
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.main-nav a:hover {
  color: #fff;
}

.main-visual {
  /* 仮のグレー背景色 */
  background-color: #cccccc;
  /* 既存の背景指定はそのまま */
  /* background: url('image/hero.jpg') center center / cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 800px;
}
.main-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.main-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.main-visual-content.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 36px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 3;
}
.main-visual-content.hero-text h1 {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 36px;
  margin: 0;
}

.season-section {
  max-width: 1100px;
  margin: -30px auto 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}
.season-section h2 {
  font-size: 30px;
  color: #fff;
  padding: 12px 0;
  border-radius: 8px 8px 0 0;
  text-align: center;
  margin: 0;
}
.season-table-wrapper {
  border-radius: 0 0 8px 8px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.season-table {
  width: 90%;
  max-width: 1083px;
  border-collapse: collapse;
  font-size: 1rem;
}
.season-table th, .season-table td {
  border: 1px solid #b3e0fc;
  padding: 8px 4px;
  text-align: center;
}
.season-table-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.price-section {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  padding: 0 16px;
}
.price-section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 24px;
}
.price-cards-outer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.price-card {
  background: #fff;
  border: 5px solid #239FDD;
  border-radius: 5px;
  padding: 10px 10px;
  width: 300px;
  height: 380px;
  min-width: unset;
  max-width: 100%;
  text-align: center;
  margin: 10px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.price-card::after,
.price-card::before {
  content: "";
  position: absolute;
  background: #239FDD;
}
.price-card::after {
  /* 右側の内側ボーダー */
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
}
.price-card::before {
  /* 下側の内側ボーダー */
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
}
.price-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.price-main {
  font-size: 32px;
  font-weight: bold;
}
.price-yen {
  font-size: 16px;
  margin-left: 4px;
}
.price-people {
  font-size: 16px;
  margin-top: 12px;
}
.price-place {
  font-size: 16px;
  margin-top: 8px;
}

.about-section {
  width: 100%;
  margin: 40px auto 0 auto;
}
.about-section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 24px;
}
.about-table {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 5px;
  border: 3px solid #2A7FAA;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.about-table th, .about-table td {
  border: 3px solid #2A7FAA;
  padding: 12px 8px;
  text-align: left;
  font-size: 16px;
}
.about-table th {
  background: #2A7FAA;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 8px;
  text-align: center;
  border-radius: 0;
}
.about-table td {
  background: #fff;
  border: 2px solid #2A7FAA;
  color: #333333;
  padding: 12px 8px;
  text-align: left;
  border-radius: 0;
}

.map-section {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 16px;
}
.map-section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 16px;
}
.map-wrapper {
  border-radius: 25px;
  border: 5px solid #2A7FAA;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.contact-section {
  width: 90%;
  max-width: 900px;
  margin: 40px auto 0 auto;
}
.contact-section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 24px;
}
.contact-form {
  background: #fff;
  border-radius: 8px;
  padding: 60px 60px 40px 60px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.form-group {
  width: 100%;
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1.5px solid;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  background: #f8fafd;
  resize: none;
}
.contact-form button {
  background: #239FDD;
  color: #fff;
  height: 40px;
  width: 140px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-family: inherit;
  cursor: not-allowed;
  opacity: 0.7;
  display: block;
  margin: 0 auto;
  padding: 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.contact-note {
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 40px;
}
.contact-form textarea {
  height: 200px;
}
.contact-form label {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.site-footer, .footer-inner {
  position: relative;
  background-color: #fff;
  min-height: 100px;
}
.footer-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-info {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 20px;
  margin-left: 40px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  -webkit-text-stroke: none;
  text-stroke: none;
  text-shadow:
    1px 0 0 #fff,
   -1px 0 0 #fff,
    0 1px 0 #fff,
    0 -1px 0 #fff,
    1px 1px 0 #fff,
   -1px -1px 0 #fff,
    1px -1px 0 #fff,
   -1px 1px 0 #fff;
}
.footer-logo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url('image/footer.png') no-repeat right top;
  background-size: auto 120%;
  z-index: 0;
}
.footer-copyright {
  text-align: center;
  padding: 8px 0;
  font-size: 0.95rem;
  background: #2A7FAA;
  color: #fff;
}
.footer-company {
  font-size: 26px;
  font-weight: bold;
}
footer {
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.season-section, .price-section, .about-section, .map-section, .contact-section {
  margin-bottom: 60px;
}

@media (max-width: 961px) {
  .header-inner, .footer-inner, .season-section, .price-section, .about-section, .map-section, .contact-section {
    max-width: 100%;
    /* padding: 0 8px; */
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .header-inner {
    height: auto;
    min-height: 80px;
    padding: 12px 0;
    gap: 8px;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .site-title {
    margin-left: 20px;
    margin-bottom: 0;
    text-align: left;
    order: 0;
    flex: 0 0 auto;
  }
  .main-nav {
    margin: 0 20px 0 auto;
    order: 1;
    justify-content: flex-start;
  }
  .main-nav ul {
    justify-content: flex-start;
  }
  .site-header {
    height: auto;
    min-height: 80px;
  }
}
@media (max-width: 700px) {
  .main-visual-content {
    font-size: 1.1rem;
    bottom: 12px;
  }
  .price-cards {
    flex-direction: column;
    align-items: center;
  }
  .main-nav a {
    width: 120px;
    height: 30px;
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  /* .site-title {
    font-size: 1rem;
  } */
  .main-nav {
    justify-content: space-around;
  }
  /* .main-nav a {
    padding: 6px 10px;
    font-size: 0.95rem;
  }
  .about-table th, .about-table td {
    font-size: 0.95rem;
    padding: 8px 4px;
  }
  .footer-info {
    font-size: 0.95rem;
  } */
}
@media (max-width: 600px) {
  .main-nav {
    display: none;
  }
  .header-inner{
    padding: 0;
    height: 60px;
  }
  .site-header {
    height: 60px;
    min-height: 60px;
  }
}

/* --- 色管理ユーティリティ --- */
.bg-main-blue { background: #239FDD !important; }
.bg-light-blue { background: #e3f2fd !important; }
.border-main-blue { border-color: #239FDD !important; }
.border-light-blue { border-color: #b3e0fc !important; }
.shadow-main-blue { box-shadow: 0 4px 16px rgba(35, 159, 221, 0.15) !important; }
.bg-deep-blue { background: #2A7FAA !important; }
.border-deep-blue { border-color: #2A7FAA !important; }
.shadow-deep-blue { box-shadow: 0 4px 16px rgba(42, 127, 170, 0.15) !important; }

.contact-form input,
.contact-form textarea {
  font-size: 16px;
  border: 1.5px solid #2A7FAA;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

/* Contact Form 7 スタイル調整 */
.wpcf7-form {
  background: #fff;
  border-radius: 8px;
  padding: 60px 60px 40px 60px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.wpcf7-form .form-group {
  width: 100%;
  margin-bottom: 25px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1.5px solid #2A7FAA;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  background: #f8fafd;
  resize: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.wpcf7-form textarea {
  height: 200px;
}

.wpcf7-form input[type="submit"] {
  background: #239FDD;
  color: #fff;
  height: 40px;
  width: 140px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  margin-top: 10px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.wpcf7-form input[type="submit"]:hover {
  background: #1e8bc7;
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
}

.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.wpcf7-spam-blocked {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

/* Contact Form 7 ラベル調整 */
label[for="contact-name"] {
  font-size: 18px;
  font-weight: bold;
  display: block;
}

.wpcf7-form label {
  font-size: 18px;
  font-weight: bold;
  display: block;
}

.season-section h2,
.price-section h2,
.about-section h2,
.map-section h2,
.contact-section h2 {
  font-size: 30px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

/* --- 背景波アニメーション --- */
.background-waves-bg {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
}
.background-waves-inner {
  height: 65vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.background-waves-logo {
  width: 50px;
  fill: #4A90E2;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.background-waves-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 40vh;
  min-height: 100px;
  max-height: 500px;
}
.background-waves-parallax > use {
  animation: background-waves-move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.background-waves-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
  fill: #87CEEB; /* 浅い青（スカイブルー） */
  opacity: 0.3; /* 最も透明 */
}
.background-waves-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
  fill: #4A90E2; /* 中程度の青 */
  opacity: 0.5; /* やや透明 */
}
.background-waves-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
  fill: #87CEEB; /* 1番目と同じ浅い青（スカイブルー） */
  opacity: 0.3; /* 1番目と同じ透明度 */
}
.background-waves-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
  fill: #4A90E2; /* 2番目と同じ中程度の青 */
  opacity: 0.5; /* 2番目と同じ透明度 */
}
@keyframes background-waves-move-forever {
  0% {
    transform: translate3d(-90px,0,0);
  }
  100% {
    transform: translate3d(85px,0,0);
  }
}
@media (max-width: 768px) {
  .background-waves-svg {
    width: 200vh;
    height: 60vh;
    max-height: 700px;
  }
  .background-waves-inner {

  }
}
