@charset "UTF-8";

/* =====================
   MV
===================== */
#mv {
  line-height: 0;
}
#mv img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================
   Message Section
===================== */
#message {
  color: #fff;
}

/* Left-aligned section title for message */
#message .sectionTitle {
  text-align: left;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #fff;
  margin-bottom: 2em;
  padding-bottom: 1.2em;
}
#message .sectionTitle::before {
  content: 'MESSAGE';
  color: var(--clr-yellow);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.6em;
  margin-bottom: 0.5em;
}
#message .sectionTitle::after {
  left: 0;
  transform: none;
  width: 48px;
}

#message .container1200 {
  padding-top: 60px;
  padding-bottom: 60px;
  align-items: center;
}

#message section > div:first-child {
  width: 50%;
}
#message section > div:first-child p {
  font-size: 1.4rem;
  line-height: 2.0;
  margin-bottom: 28px;
  opacity: 0.88;
}
#message section > div:first-child p:last-child {
  margin-bottom: 0;
}
#message section > div:last-child {
  width: 46%;
  margin-left: auto;
}
#message section > div:last-child iframe {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

@media screen and (max-width: 767px) {
  #message section > div:first-child {
    width: 100%;
    margin-bottom: 28px;
  }
  #message section > div:last-child {
    width: 100%;
  }
  #message .sectionTitle {
    font-size: 2.2rem;
  }
}

/* =====================
   News Section (top page)
===================== */
#news .sectionTitle::before {
  content: 'INFORMATION';
}

#news dl {
  width: 720px;
  max-width: 100%;
  display: flex;
  align-items: baseline;
  margin: 0 auto;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  transition: background 0.2s ease;
}
#news dl:first-of-type {
  border-top: 1px solid rgba(0,0,0,0.09);
}
#news dl:last-of-type {
  margin-bottom: 48px;
}
#news dl:hover {
  background: rgba(246, 209, 30, 0.1);
}

#news dl dt {
  width: 17%;
  flex-shrink: 0;
  font-family: 'Spartan', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: 0.04em;
}
#news dl dd {
  width: 83%;
  font-size: 1.4rem;
  line-height: 1.65;
}
#news dl dd a {
  display: block;
  transition: color 0.2s ease;
}
#news dl dd a:hover {
  color: #555;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  #news dl {
    flex-flow: column;
    padding: 14px 4px;
  }
  #news dl dt,
  #news dl dd {
    width: 100%;
  }
  #news dl dt {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }
  #news dl dd {
    font-size: 1.35rem;
  }
}

/* =====================
   Blog Section (top page)
===================== */
#blog .sectionTitle::before {
  content: 'BLOG';
}

#blog .flex-nowrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

#blog .flex-nowrap div {
  width: auto;
}

#blog a {
  display: block;
}
#blog a:hover {
  opacity: 1;
}

#blog figure p {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eee;
}
#blog figure p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
#blog a:hover figure p img {
  transform: scale(1.08);
}

#blog figcaption {
  padding: 12px 4px 0;
}
#blog figcaption h3 {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}
#blog a:hover figcaption h3 {
  color: #555;
}
#blog figcaption time {
  font-family: 'Spartan', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--clr-faint);
  letter-spacing: 0.04em;
}

@media screen and (max-width: 960px) {
  #blog .flex-nowrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  #blog .flex-nowrap {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  #blog figcaption h3 {
    font-size: 1.2rem;
  }
}

/* =====================
   Gallery Section
===================== */
#garrery .sectionTitle::before {
  content: 'GALLERY';
}

#garrery .container100 {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
}
