/*
 * トップページ - PC用（769px以上）
 */

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 130px);
  overflow: hidden;
  display: flex;
}
.hero .hero_img {
  width: 60%;
}
.hero .hero_img .hero__content {
  width: 40%;
}
.hero::before {
  /* content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle,
      hsla(0, 0%, 100%, 0.2) 1.5px,
      transparent 0
    ),
    radial-gradient(circle, hsla(0, 0%, 100%, 0.2) 1.5px, transparent 0);
  background-position: 0 0, 2px 4px;
  background-size: 4px 8px;
  display: block;
  z-index: -1;
  opacity: 1; */
}
.hero img {
  opacity: 0.85;
}

.hero__bg {
  position: relative;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  display: flex;
  width: 40%;
  flex-direction: column;
  justify-content: center;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: calc(100% - 40px); */
}

.hero__main-catch {
  width: 100%;
  max-width: 700px;
  margin-left: 0%;
  margin-bottom: 40px;
  color: #000;
  /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); */
}

.hero__location {
  text-align: center;
  font-size: clamp(
    18px,
    calc(18px + (100vw - 768px) * (30 - 18) / (1400 - 768)),
    30px
  );
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  /* margin-left: clamp(10px, calc(10px + (100vw - 768px) * (18 - 10) / (1400 - 768)), 18px); */
  opacity: 0.95;
}

.hero__title {
  text-align: center;
  font-size: clamp(
    24px,
    calc(24px + (100vw - 768px) * (42 - 24) / (1400 - 768)),
    42px
  );
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  /* margin-left: clamp(-20px, calc(-20px + (100vw - 768px) * (-34 + 20) / (1400 - 768)), -34px); */
  margin-bottom: 15px;
  /* text-shadow: 0 2px 12px rgba(255, 255, 255, 0.6); */
}

.hero__opening {
  text-align: center;
  font-size: clamp(
    18px,
    calc(18px + (100vw - 768px) * (30 - 18) / (1400 - 768)),
    30px
  );
  letter-spacing: 0.15em;
  /* margin-left: clamp(10px, calc(10px + (100vw - 768px) * (18 - 10) / (1400 - 768)), 18px); */
  /* padding: 12px 30px; */
  display: block;
}

.hero__notice {
  width: calc(100% - 40px);
  /* transform: translateX(-5%); */
  margin-top: 20px;
  padding: 16px 6%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-left: auto;
  margin-right: auto;
}

.hero__notice-text {
  font-size: clamp(
    10px,
    calc(10px + (100vw - 768px) * (18 - 10) / (1400 - 768)),
    18px
  );
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 4px;
}

.hero__notice-note {
  font-size: clamp(
    8px,
    calc(8px + (100vw - 768px) * (13 - 8) / (1400 - 768)),
    13px
  );
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #666;
}

.hero__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.hero__nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 0px 22px 0px;
  width: 160px;
  background: #eae1d5;
  backdrop-filter: blur(10px);
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 880px) {
  .hero__nav-btn {
    padding: 12px 0px 18px 0px;
  }
  .hero__nav {
    gap: 10px;
  }
}
.hero__nav-btn:hover {
  opacity: 0.8;
  box-shadow: 0 4px 15px rgba(195, 168, 105, 0.4);
}

.arrow {
  position: relative;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 10.6px;
  border-radius: 9999px;
  background-color: #444;
  transform-origin: 50% calc(100% - 0.5px);
}

.arrow::before {
  transform: rotate(51.35deg);
}

.arrow::after {
  transform: rotate(-51.35deg);
}
.hero__nav-icon {
  font-size: 32px;
  margin-bottom: 10px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero__nav-btn:hover .hero__nav-icon {
  filter: grayscale(0%);
  opacity: 1;
}

.hero__nav-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  transition: color 0.3s ease;
}

.hero__schedule-btn {
  width: 260px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 15px 20px;
  background: #8d7d64;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.hero__schedule-btn:hover {
  background: #a8987d;
  box-shadow: 0 6px 20px rgba(195, 168, 105, 0.5);
}

/* ========================================
     Main Slider
     ======================================== */
.main-slider {
  margin-top: 80px;
  overflow: hidden;
}

.main-slider-inner {
  display: flex;
  width: calc(100% - 20px);
  max-width: 1500px;
  margin: 0 auto;
}

.main-slider .main-box {
  width: 30%;
  aspect-ratio: 5 / 7;
}
.main-box .img,
.sub-box .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  overflow: hidden;
}
.main-slider .sub-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 70%;
  padding-left: 3%;
}
.main-slider .sub-box .sub-box-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider .sub-box .title {
  display: flex;
  justify-content: center;
}
.main-slider .sub-box .title h2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.main-slider .sub-box .title h2 .main-title {
  font-size: clamp(
    30px,
    calc(30px + (100vw - 800px) * (50 - 30) / (1500 - 800)),
    50px
  );
}
.main-slider .sub-box .title h2 .sub-title {
  margin-top: 30px;
  font-size: clamp(
    23.4px,
    calc(23.4px + (100vw - 800px) * (39 - 23.4) / (1500 - 800)),
    39px
  );
}

.main-slider .sub-slider {
  display: flex;
  width: 103%;
}
.main-slider .sub-slider li {
  width: 16%;
  margin-right: 2.5%;
  aspect-ratio: 5 / 7;
}

/* ========================================
     Director Section
     ======================================== */
.director {
  position: relative;
  max-width: 1500px;
  margin: 80px auto 0 auto;
  overflow: hidden;
}
.director .cont-inner {
  position: relative;
  max-width: 1000px;
  margin: 80px auto 0 auto;
  display: flex;
}
.director_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 40%;
  /* overflow: hidden; */
  /* background: #f1f1f1; */
}
.director_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(30px);
  opacity: 0.6;
}
.director .img-box {
  width: 40%;
  aspect-ratio: 1/1.3;
}

.director__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.director__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.director__catch {
  font-size: clamp(
    27px,
    calc(27px + (100vw - 800px) * (36 - 27) / (1500 - 800)),
    36px
  );

  /* font-size: 28px; */
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 70px;
}

.director__btn {
  display: inline-block;
  padding: 22px 40px;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--color-accent-tan);
  text-decoration: none;
  transition: opacity 0.3s;
}

.director__btn:hover {
  opacity: 0.8;
}

/* ========================================
     Schedule Section
     ======================================== */
.schedule {
  margin-top: 80px;
  padding: 108px 0 144px;
  background: var(--color-bg-beige);
}
.schedule__inner {
  width: calc(100% - 80px);
  max-width: 1500px;
  margin: 0 auto;
}

.schedule__title {
  position: relative;
  z-index: 1;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  font-weight: 400;
}

.schedule .schedule__cont {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: -93px auto 0 auto;
}
.schedule .schedule__cont img {
  width: 100%;
}

.schedule .link__block {
  display: flex;
  justify-content: flex-end;
}

.schedule__link {
  display: block;
  text-align: right;
  margin-top: 22px;
  padding-right: 34px;
  font-size: 20px;
  line-height: 1.6;
  transition: opacity 0.3s;
}

.schedule__link:hover {
  opacity: 0.7;
}

/* ========================================
     Information Section
 ======================================== */
.information {
  width: calc(100% - 40px);
  max-width: 840px;
  margin: 110px auto 150px auto;
}

.information__title {
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  font-weight: 400;
  margin-bottom: 42px;
}

.information__list {
  margin-bottom: 58px;
}

.information__item:not(:first-child)::before {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: 4px;
  margin: 0 auto 8px;
  background-image: radial-gradient(circle, #ccc 2px, transparent 2px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  background-position: left center;
}

.information__item a {
  display: flex;
  gap: 69px;
  padding: 0 0 8px;
  /* border-bottom: 1px solid var(--color-gray-border); */
  margin-bottom: 8px;
}

.information__date {
  font-size: 18px;
  line-height: 2;
  min-width: 88px;
  letter-spacing: 0.1em;
}

.information__text {
  font-size: 18px;
  line-height: 2;
  flex: 1;
  letter-spacing: 0.1em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.information__more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  width: 322px;
  height: 58px;
  margin: 0 auto;
  background: var(--color-accent-tan);
  color: var(--color-bg);
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.2em;
  transition: background 0.3s;
}

.information__more-btn:hover {
  background: #9f8a79;
}
