@charset "UTF-8";
/* ====================
 Common
======================= */
html {
  font-family: "Zen Kaku Gothic New", sans-serif, "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}

.pc-none {
  display: none;
}
@media (max-width: 768px) {
  .pc-none {
    display: inline-block;
  }
}

.sp-none {
  display: inline-block;
}
@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.sm-only {
  display: none;
}
@media (max-width: 538px) {
  .sm-only {
    display: inline-block;
  }
}

section {
  width: 100%;
  padding: 0 20px;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 10.4vw, 80px) 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.section-title {
  font-size: clamp(24px, 5.2vw, 32px);
  text-align: center;
  color: rgb(33, 160, 159);
  line-height: 1.4;
}

p {
  line-height: 1.8;
}

.symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.symbol img {
  max-width: 160px;
}
@media (max-width: 768px) {
  .symbol img {
    max-width: 120px;
  }
}
.symbol.mb-80 {
  margin-bottom: clamp(40px, 10.4vw, 80px);
}

/* ====================
 ページ読み込み
======================= */
.mv {
  height: 98vh;
  min-height: 840px;
  max-height: 960px;
  padding: 80px 20px 0;
  text-align: center;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .mv {
    padding: clamp(60px, 10.4vw, 80px) 20px;
  }
}
@media (max-width: 538px) {
  .mv {
    height: 80vh;
    min-height: 667px;
  }
}
.mv::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100vw;
  height: 100%;
  background-image: url("https://www.pref.kanagawa.jp/osirase/0602/mura_30th_anniversary/images/mv_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 768px) {
  .mv::before {
    height: 100%;
  }
}
.mv .inner {
  padding: 0;
  justify-content: center;
  align-items: center;
  margin-top: -100px;
}
@media (max-width: 768px) {
  .mv .inner {
    gap: 30px;
  }
}
.mv .title {
  font-size: clamp(32px, 8.5vw, 64px);
}
.mv .copy {
  font-size: clamp(18px, 4.8vw, 28px);
}
.mv .logo {
  width: clamp(160px, 31.25vw, 280px);
  position: absolute;
  right: clamp(20px, 3.9vw, 60px);
  bottom: clamp(20px, 3.9vw, 40px);
}

/* ====================
 About
======================= */
.about p {
  text-align: center;
  color: rgb(62, 99, 163);
  font-size: clamp(16px, 4.34vw, 18px);
  font-weight: bold;
  line-height: 2.2;
}

/* ====================
 Event / Culture
======================= */
.event-list,
.culture-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-item,
.culture-item {
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 4px solid #c9caca;
  border-radius: 16px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .event-item,
  .culture-item {
    flex-direction: column-reverse;
  }
  .event-item:where(.culture-item),
  .culture-item:where(.culture-item) {
    flex-direction: column;
  }
}
@media (max-width: 538px) {
  .event-item,
  .culture-item {
    padding: 16px;
  }
}
.event-item__text-box,
.culture-item__text-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.event-item__date,
.culture-item__date {
  font-size: 18px;
  color: rgb(62, 99, 163);
}
.event-item__title,
.culture-item__title {
  font-size: clamp(20px, 5.2vw, 24px);
  line-height: 1.4;
}
.event-item__detail-wrapper,
.culture-item__detail-wrapper {
  width: 100%;
}
.event-item__detail,
.culture-item__detail {
  font-size: 15px;
  line-height: 1.6;
}
.event-item__button-box,
.culture-item__button-box {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
@media (max-width: 538px) {
  .event-item__button-box,
  .culture-item__button-box {
    gap: 8px;
  }
}
.event-item__button-box.youtube,
.culture-item__button-box.youtube {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 1em;
}
.event-item__button-box.youtube iframe,
.culture-item__button-box.youtube iframe {
  width: 100%;
  height: 100%;
}
.event-item .button,
.culture-item .button {
  width: 50%;
  padding: 12px 16px;
  border-radius: 4px;
  text-align: center;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .event-item .button:hover,
  .culture-item .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .event-item .button:hover,
  .culture-item .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 538px) {
  .event-item .button,
  .culture-item .button {
    padding: 8px 8px;
    font-size: 15px;
  }
}
.event-item .button__apply,
.culture-item .button__apply {
  background-color: rgb(15, 130, 198);
}
.event-item .button__detail,
.culture-item .button__detail {
  background-color: rgb(103, 199, 242);
}
.event-item__image-box,
.culture-item__image-box {
  width: 40%;
}
@media (max-width: 768px) {
  .event-item__image-box,
  .culture-item__image-box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .event-item__image,
  .culture-item__image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.culture-item {
  /* ====================
   Lyrics Modal
  ======================= */
}
.culture-item__image-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.culture-item .modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 20px;
}
@media (max-width: 538px) {
  .culture-item .modal-container {
    padding: 10px;
  }
}
.culture-item .modal-content {
  position: relative;
  background-color: white;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
  width: 90%;
  max-width: 500px;
  min-height: 200px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
@media (max-width: 538px) {
  .culture-item .modal-content {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    max-height: calc(100vh - 40px);
  }
}
.culture-item .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
  z-index: 1;
}
.culture-item .modal-header {
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.culture-item .modal-header h2,
.culture-item .modal-header h3 {
  text-align: center;
}
.culture-item .modal-header h2 {
  padding-right: 40px;
  word-break: break-word;
}
.culture-item .modal-header h3 {
  margin-top: 0.6em;
  font-size: 16px;
  line-height: 1.4;
}
.culture-item .modal-body {
  margin-bottom: 20px;
  padding-left: 1.6em;
  font-weight: normal;
}
.culture-item p + p {
  margin-top: 1em;
}
.culture-item .repeat {
  display: block;
  position: relative;
}
.culture-item .repeat::before {
  content: "※{";
  position: absolute;
  left: -1.6em;
  top: 50%;
  transform: translateY(-50%);
}
.culture-item .modal-footer {
  text-align: center;
}
.culture-item button {
  padding: 8px 16px;
  margin: 0 4px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.culture-item .open-button {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background-color: rgb(103, 199, 242);
  margin-top: auto;
}
.culture-item .open-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

/* ====================
 Logo
======================= */
.logo {
  font-weight: bold;
}
.logo .image-box {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.logo .image-caption {
  font-size: 15px;
}
.logo .logo-episode {
  text-align: center;
  color: rgb(33, 160, 159);
  line-height: 2.2;
}

/* ====================
 Memory
======================= */
.memory {
  background-color: #84bae5;
  color: rgb(255, 255, 255);
}
.memory .section-title {
  color: rgb(255, 255, 255);
}
.memory .content {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 768px) {
  .memory .content {
    flex-direction: column;
    align-items: center;
  }
}
.memory .image-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.memory .image-caption {
  font-size: 15px;
}
.memory .article {
  width: calc(71.3% - 20px);
}
.memory .article img {
  width: 100%;
  height: auto;
  aspect-ratio: 33/19;
}
@media (max-width: 768px) {
  .memory .article {
    width: 100%;
    max-width: 480px;
  }
}
.memory .poster {
  width: 28.7%;
}
.memory .poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 69/107;
}
@media (max-width: 768px) {
  .memory .poster {
    width: 100%;
    max-width: 240px;
  }
}

/* ====================
 Contact
======================= */
.contact {
  background-color: #A4A4A5;
}
.contact .section-title {
  color: rgb(255, 255, 255);
}
.contact .content {
  text-align: center;
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.contact .form-link {
  color: inherit;
}

/* ====================
 Footer
======================= */
.footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
}

.kanagawa_logo {
  border: 1px solid #A4A4A5;
}/*# sourceMappingURL=style.css.map */