/* styles.css */
body {
  margin: 0;
  font-family: serif;
  font-size: 18px;
  line-height: 40px;
  background: #FFE4E9;
}
html {
  scroll-behavior: smooth;
}
.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 70%;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 5%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1420px) {
  header {
    height: 60px;
  }
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

@media (max-width: 1420px) {
  .logo img {
    height: 50px;
  }
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 1100;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

@media (max-width: 1420px) {
  .hamburger {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin: 0;

    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: none;
  }

  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s, opacity 0.3s;
  }
}
.nav-list a {
  color: #000;
  text-decoration: none;
}
.nav-list a:visited {
  color: #000;
}
.nav-list a:hover {
  color: #000;
  text-decoration: none;
}
@media (min-width: 1421px) {
  .nav-list {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    z-index: auto;
    background: transparent;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;

    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
}

.nav-tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  max-width: 240px;

  padding: 5px 16px;
  border: 1px solid #5A4A4A;
  border-radius: 30px;

  color: #5A4A4A;
  text-decoration: none;
  background: #fff;
}

.nav-tel img {
  width: 25px;
  height: auto;
}

.nav-sns {
  display: none;
}

@media (max-width: 1420px) {

  .nav-tel {
  width: 100%;
  display: flex;
  justify-content: center;
}

  .nav-sns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 70%;
    max-width:320px;
    padding: 10px 20px 0;
    box-sizing: border-box;
  }

}

.nav-sns a {
  display: block;
  width: 100%;
}

.nav-sns img {
  width: 100%;
  height: auto;
  display: block;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  margin: 0;
  padding: 0;
}

.hero img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    overflow: hidden;
  }

  .hero img {
    height: 60vh;
    width: 100%;
    object-fit: cover;
  }
}

section {
  padding: 30px 0;
  scroll-margin-top: 90px;
}
@media (max-width: 1420px) {
  section {
    scroll-margin-top: 60px;
  }
}
h2 {
  font-size: 2.4em;
  margin-top: 100px;
  margin-bottom: auto;
  color: #5A4A4A;
}

h2 .sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: normal;
  color: #000;
  margin-top: 10px;
}

h2 .sub::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #8b6b61;
}

.slide {
  background: #fff;
  overflow: hidden;
  padding: 80px 0;
}

.slide-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slide-left 30s linear infinite;
}

.slide-track img {
  height: 160px;
  width: 270px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sns {
  background: #5A4A4A;
  padding: 80px 0;
}

.sns-inner {
  width: 70%;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: center;
}

.sns-inner img {
  width: 360px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .sns-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sns-inner img {
    width: 100%;
  }
}

.flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 100px;
}

.flex.reverse {
  flex-direction: row-reverse;
  margin-bottom: 100px;
}

.text {
  flex: 1;
}

.text h2 {
  margin: 0 0 20px;
}

.indent {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
}

.indent::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #333;
  display: inline-block;
  margin-right: 10px;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  position: relative;
  padding-left: 16px;
  line-height: 1.8;
}

.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-50%);
  margin-left: 5px;
}

.image {
  flex: 1;
  height: auto;
}

.flex > .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.fade-slider {
  position: relative;
}

.fade-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 2s ease;
}

.fade-slider img.active {
  opacity: 1;
  position: relative;
}

.info-table {
  margin-top: 10px;
  width: 100%;
}

.info-table .row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #333;
}

.info-table .row:last-child {
  border-bottom: 1px solid #333;
}

.info-table dt {
  width: 30%;
}

.info-table dd {
  width: 70%;
  margin: 0;
}

.map {
  width: 100%;
  height: 100%;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.image.map {
  aspect-ratio: 1 / 1;
}

.footer {
  display: flex;
  flex-direction: column;
  background: #FFF;
  padding: 80px 0 80px;
  margin-top: 80px;
}

.footer-inner {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  width: 240px;
  height: auto;
  margin-bottom: 10px;
}

.footer-info p {
  margin: 5px 0;
  line-height: 1.8;
}

.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-sns img {
  width: 42px;
  height: auto;
  display: block;
}

.copyright {
  width: 100%;
  padding: 12px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  background: #5A4A4A;
  margin: auto;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .flex {
    flex-direction: column;
  }

  .flex.reverse {
    flex-direction: column;
  }
}

.section-block {
  padding: 80px 0;
}

.section-block h2 {
  margin: 0 0 40px;
  color: #5A4A4A;
  font-size: 2.8em;
  line-height: 1.2;
}

.section-block h2 .sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: normal;
  color: #000;
  margin-top: 14px;
}

.section-block h2 .sub::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #8b6b61;
}

.content-row {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.reverse .content-row {
  flex-direction: row-reverse;
}

.content-row .text,
.content-row .image {
  flex: 1;
}

.content-row .text p {
  margin: 0 0 18px;
}

.content-row .image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .content-row,
  .reverse .content-row {
    flex-direction: column;
  }

  .section-block h2 {
    margin-bottom: 24px;
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  #information {
    flex-direction: column;
  }

  #information .text {
    order: 1;
  }

  #information .map {
    order: 2;
  }
}