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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #F4F7F6;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #5a7d9a;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-desc {
  text-align: center;
  margin-bottom: 40px;
  color: #666666;
}

.bg-gray {
  background-color: #eef2f4;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
}
.btn--primary {
  background-color: #E8A87C;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(232, 168, 124, 0.3);
}
.btn--primary:hover {
  background-color: rgb(224.3831168831, 139.1883116883, 80.6168831169);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 18px 60px;
  font-size: 1.2rem;
  width: 100%;
  max-width: 400px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.header__logo {
  font-size: 1.5rem;
  color: #5a7d9a;
  font-weight: 700;
}
.header__logo img {
  height: 32px;
  width: auto;
  max-width: 140px;
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__link {
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .header__link {
    display: none;
  }
}
.header__cta {
  background-color: #5a7d9a;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
}
.header__cta:hover {
  opacity: 0.9;
}

.hero {
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  padding-top: 70px;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("../images/main.jpeg") center/cover no-repeat;
}
.hero__content {
  max-width: 600px;
  padding: 0 20px;
}
.hero__sub {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 20px;
  display: block;
}
.hero__title {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #5a7d9a;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}

.problem__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .problem__list {
    flex-direction: column;
    gap: 20px;
  }
}
.problem__item {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.problem__icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.problem__summary {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid #5a7d9a;
}
.card__title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #5a7d9a;
}
.card__text {
  font-size: 0.95rem;
  color: #666666;
}

.seat-types {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .seat-types {
    flex-direction: column;
  }
}

.seat-type {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.seat-type img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #ddd;
}
.seat-type__info {
  padding: 20px;
}
.seat-type__info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #5a7d9a;
}
.seat-type__info p {
  font-size: 0.9rem;
  color: #666666;
}

.price-box {
  background: #ffffff;
  border: 2px solid #5a7d9a;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.price-box__main {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #ccc;
}
.price-box__label {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.price-box__amount {
  font-size: 3rem;
  font-weight: bold;
  color: #5a7d9a;
  line-height: 1;
}
.price-box__amount .unit {
  font-size: 1rem;
  color: #333333;
  margin-left: 5px;
}
.price-box__note {
  font-size: 0.8rem;
  color: #666666;
  margin-top: 10px;
}

.price-example {
  max-width: 600px;
  margin: 0 auto;
}
.price-example h4 {
  text-align: center;
  margin-bottom: 20px;
}

.example-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.example-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 6px;
  border-left: 4px solid #E8A87C;
}
@media (max-width: 768px) {
  .example-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.example-item .time {
  font-weight: bold;
}
.example-item .calc {
  font-size: 0.9rem;
  color: #666666;
}
.example-item .total {
  font-weight: bold;
  color: #5a7d9a;
}

.flow-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .flow-list {
    flex-direction: column;
  }
}
.flow-list li {
  flex: 1;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}
.flow-list li strong {
  display: block;
  font-size: 1.1rem;
  margin: 10px 0;
}
.flow-list li .step {
  font-size: 0.8rem;
  color: #E8A87C;
  font-weight: bold;
}

.cta {
  background-color: #5a7d9a;
  color: #ffffff;
  text-align: center;
  padding: 100px 0;
}
.cta__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 1.8rem;
  }
}
.cta__text {
  margin-bottom: 40px;
  opacity: 0.9;
}
.cta__note {
  margin-top: 20px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.footer__logo {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer__copy {
  font-size: 0.8rem;
  color: #888;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 9999;
}

#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */