@charset "UTF-8";
@keyframes mvCatchIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mvFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mvSlideFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mv__catch,
  .mv__catch-title,
  .mv__catch-text,
  .mv__catch-button,
  .mv__slide {
    animation: none;
  }
}
#mainvisual {
  padding: 0;
  height: auto;
}

.mv {
  display: flex;
  flex-direction: column;
}
.mv .mv__photo {
  height: calc(100vh - var(--header-height, 80px));
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.mv .mv__photo .mv__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: mvSlideFade 30s linear infinite;
}
.mv .mv__photo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 150px;
  background: #1b277a;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.mv .mv__photo .mv__catch {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 680px;
  background: linear-gradient(to bottom, rgba(240, 240, 240, 0.95) 0%, rgba(240, 240, 240, 0.85) 50%, rgba(240, 240, 240, 0.55) 100%);
  clip-path: url(#mv-catch-clip);
  padding: 60px 260px 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: mvCatchIn 1s ease-out both;
}
.mv .mv__photo .mv__catch-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-brand);
  animation: mvFadeUp 0.8s ease-out 0.4s both;
}
.mv .mv__photo .mv__catch-text {
  margin: 28px 0 0;
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
  animation: mvFadeUp 0.8s ease-out 0.6s both;
}
.mv .mv__photo .mv__catch-button {
  align-self: flex-start;
  margin-top: 36px;
  animation: mvFadeUp 0.8s ease-out 0.8s both;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  font-size: 0.9rem;
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 999px;
  transition: opacity 0.3s;
}
.mv .mv__photo .mv__catch-button::after {
  content: "›";
  font-size: 1.2rem;
  line-height: 1;
}
.mv .mv__photo .mv__catch-button:hover {
  opacity: 0.7;
}
.mv .mv__sidebar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.mv .mv__seisyo {
  flex: 0 0 360px;
  padding: 30px;
}
.mv .mv__seisyo img {
  width: 100%;
  height: auto;
}
.mv .mv__seisyo .mv__seisyo-title {
  margin: 0 0 10px;
  text-align: center;
}
.mv .mv__seisyo .mv__seisyo-title img {
  height: 40px;
  width: auto;
}
.mv .mv__seisyo-more {
  text-align: center;
  padding: 12px 0;
}
.mv .mv__seisyo-link {
  display: inline-block;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  background: #1b277a;
  border: 1px solid #1b277a;
  padding: 8px 24px;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.mv .mv__seisyo-link:hover {
  opacity: 0.7;
}
.mv .mv__news {
  flex: 1;
  background: #1b277a;
  color: #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.mv .mv__news-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 25px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffffff;
}
.mv .mv__news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.mv .mv__news-item {
  flex: 1 1 200px;
  min-width: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mv .mv__news-item:hover, .mv .mv__news-item:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}
.mv .mv__news-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  height: 100%;
  min-height: 96px;
  padding: 16px 18px;
  text-decoration: none;
  color: #333;
  line-height: 1.5;
  border-left: 4px solid var(--color-primary);
}
.mv .mv__news-item .mv__news-logo {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f8;
  border-radius: 50%;
}
.mv .mv__news-item .mv__news-logo img {
  width: 26px;
  height: auto;
}
.mv .mv__news-item .mv__news-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.mv .mv__news-item .mv__news-date {
  display: block;
  font-size: 0.85rem;
  color: #666;
}
.mv .mv__news-item .mv__news-name {
  display: block;
  font-size: 0.95rem;
  margin-top: 6px;
  color: #333;
}
.mv .mv__news-more {
  margin-top: auto;
  padding-top: 16px;
  text-align: right;
}
.mv .mv__news-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 300px;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff;
  padding: 14px 28px;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.mv .mv__news-more-link::after {
  content: "→";
  font-size: 1.2rem;
  line-height: 1;
}
.mv .mv__news-more-link:hover {
  opacity: 0.7;
}

#gourmet {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  background-image: radial-gradient(circle, color-mix(in srgb, var(--color-primary) 90%, #ffffff) 2.5px, transparent 3px);
  background-size: 24px 24px;
}
#gourmet::before {
  content: "TOPICS";
  font-style: italic;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: "Arial Black", "Helvetica", sans-serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #2ccfca;
  pointer-events: none;
  z-index: 0;
}
#gourmet .container {
  position: relative;
  z-index: 1;
}
#gourmet .gourmet__block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
#gourmet .gourmet__image {
  flex: 0 1 32%;
  display: block;
  transition: opacity 0.2s ease;
}
#gourmet .gourmet__image:hover {
  opacity: 0.85;
}
#gourmet .gourmet__image img {
  width: 100%;
  height: auto;
  display: block;
}
#gourmet .gourmet__content {
  flex: 1 1 0;
}
#gourmet .gourmet__content p {
  line-height: 2;
  margin-top: 0;
}

#enrollment {
  position: relative;
  overflow: hidden;
  padding-right: 35vw;
}
#enrollment .container {
  margin-left: auto;
  margin-right: 40px;
}
#enrollment .enrollment__block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
#enrollment .enrollment__content {
  flex: 1;
}
#enrollment .enrollment__content p {
  line-height: 2;
}
#enrollment .enrollment__features-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}
#enrollment .enrollment__features-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d5d5d5;
}
#enrollment .enrollment__features {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#enrollment .enrollment__features .features__item {
  flex: 0 0 auto;
  padding: 0 70px;
}
#enrollment .enrollment__features .features__item:not(:first-child) {
  border-left: 1px solid #d5d5d5;
}
#enrollment .enrollment__features .features__item:first-child {
  padding-left: 0;
}
#enrollment .enrollment__features .features__item .item__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
}
#enrollment .enrollment__features .features__item .item__value {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-top: 4px;
  line-height: 1.2;
}
#enrollment .enrollment__features .features__item .item__value_text {
  font-size: 1.4rem;
}
#enrollment .enrollment__features .features__item .item__unit {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-left: 4px;
}
#enrollment .enrollment__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35vw;
  margin: 0;
  flex: none;
}
#enrollment .enrollment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#enrollment .enrollment__more {
  text-align: center;
  margin-top: 50px;
}

#report {
  position: relative;
  overflow: hidden;
  padding-left: 35vw;
}
#report .container {
  margin-right: auto;
  margin-left: 40px;
}
#report .report__image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 35vw;
}
#report .report__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.post-card a {
  display: block;
  text-decoration: none;
}
.post-card .post-card__thumbnail {
  overflow: hidden;
}
.post-card .post-card__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.post-card .post-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.6;
  color: #000;
}
.post-card .post-card__date {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: 8px;
}

.section__more {
  text-align: center;
  margin-top: 32px;
}

.banners__layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.banners__layout .banners__main {
  flex: 1 1 0;
  min-width: 0;
}
.banners__layout .banners__social {
  flex: 0 0 360px;
}
.banners__layout .banners__social .fb-page {
  width: 100%;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.link-grid .link-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #ffffff;
  font-weight: 700;
  text-align: center;
  border: 1px solid #ddd;
  transition: opacity 0.3s;
  text-decoration: none;
  font-size: 22px;
  height: 80px;
}
.link-grid .link-grid__item:hover {
  opacity: 0.7;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}
.banner-grid .banner-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #ffffff;
  font-weight: 700;
  text-align: center;
  border: 1px solid #ddd;
  transition: opacity 0.3s;
  text-decoration: none;
  height: 80px;
}
.banner-grid .banner-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  #mainvisual {
    height: auto;
  }
  .mv {
    flex-direction: column;
    height: auto;
  }
  .mv .mv__photo {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .mv .mv__photo::after {
    width: 110px;
    height: 80px;
  }
  .mv .mv__photo .mv__catch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    clip-path: url(#mv-catch-clip-sp);
    background: rgba(240, 240, 240, 0.8);
    padding: 16px 20px 48px;
    display: block;
    animation: none;
  }
  .mv .mv__photo .mv__catch-title {
    font-size: 1.3rem;
    line-height: 1.4;
    animation: none;
  }
  .mv .mv__photo .mv__catch-text {
    display: none;
  }
  .mv .mv__photo .mv__catch-button {
    display: none;
  }
  .mv .mv__sidebar {
    flex: none;
    flex-direction: column;
  }
  .mv .mv__seisyo {
    flex: none;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mv .mv__news {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mv .mv__news-list {
    flex-direction: column;
    gap: 10px;
  }
  .mv .mv__news-item {
    flex: none;
  }
  .mv .mv__news-item a {
    padding: 14px 16px;
    min-height: auto;
  }
  .mv .mv__seisyo-more,
  .mv .mv__news-more {
    margin-top: 12px;
    padding: 0;
    text-align: center;
  }
  .mv .mv__seisyo-link,
  .mv .mv__news-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 1rem;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
  }
  .mv .mv__news-more-link {
    color: #ffffff;
    border-color: #ffffff;
  }
  .mv .mv__seisyo-link {
    color: #ffffff;
    background: #1b277a;
    border-color: #1b277a;
  }
  .mv .mv__news-more-link::after {
    content: none;
  }
  #gourmet::before {
    font-size: 4.5rem;
    top: 12px;
    left: 12px;
  }
  #gourmet .gourmet__block {
    flex-wrap: wrap;
    gap: 16px;
  }
  #gourmet .gourmet__image {
    flex: 1 1 0;
    min-width: 0;
  }
  #gourmet .gourmet__content {
    flex: 1 1 100%;
  }
  #enrollment {
    padding-right: 0;
  }
  #enrollment .container {
    margin-right: auto;
  }
  #enrollment .enrollment__block {
    flex-direction: column;
    gap: 30px;
  }
  #enrollment .enrollment__block .enrollment__content p:first-child {
    margin-top: 0;
  }
  #enrollment .enrollment__image {
    position: static;
    flex: none;
    width: 100%;
    height: auto;
  }
  #enrollment .enrollment__image img {
    height: auto;
  }
  #enrollment .enrollment__features {
    justify-content: space-between;
  }
  #enrollment .enrollment__features .features__item {
    flex: 1 1 0;
    padding: 0 10px;
    text-align: center;
  }
  #enrollment .enrollment__features .features__item:first-child {
    padding-left: 10px;
  }
  #enrollment .enrollment__features .features__item .item__label {
    font-size: 0.8rem;
  }
  #enrollment .enrollment__features .features__item .item__value {
    font-size: 1.6rem;
  }
  #enrollment .enrollment__features .features__item .item__value_text {
    font-size: 0.95rem;
  }
  #enrollment .enrollment__features .features__item .item__unit {
    font-size: 0.7rem;
  }
  #report {
    padding-left: 0;
  }
  #report .container {
    margin-left: auto;
  }
  #report .report__image {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  #report .report__image img {
    height: auto;
  }
  .post-grid {
    grid-template-columns: 1fr;
  }
  .banners__layout {
    flex-direction: column;
    gap: 24px;
  }
  .banners__layout .banners__social {
    flex: none;
    width: 100%;
  }
  .link-grid {
    gap: 10px;
  }
  .link-grid .link-grid__item {
    padding: 12px;
    font-size: 14px;
    height: 60px;
  }
  .banner-grid {
    gap: 12px;
  }
  .banner-grid .banner-grid__item {
    padding: 12px;
    height: 60px;
  }
}
