* {
  box-sizing: border-box;
}

body {
  color: #242424;
  font-size: 16px;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", Arial, sans-serif;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

h1, h2, h3, h4, h5, h6, div, span, p, a, li, th, td {
  color: #242424;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", Arial, sans-serif;
}

a {
  color: #0088cc;
  text-decoration: none;
}

strong, b {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

form:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

:placeholder-shown,
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #bbb;
}

.primary-text-color { color: var(--site-main-color); }
.secondary-text-color { color: var(--site-sub-color); }
.primary-bg-color { background-color: var(--site-main-color); }
.secondary-bg-color { background-color: var(--site-sub-color); }
.base-bg-color { background-color: var(--site-background-color); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  min-height: 45px;
  height: 7.5vh;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.site-header__logo {
  display: inline-block;
  color: #242424;
}

.site-header__logo:hover { text-decoration: none; }

.site-header__logo-image {
  display: inline-block;
  vertical-align: middle;
  height: calc(7.5vh * 0.98);
}

.site-header__team-name {
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
  font-weight: bold;
  vertical-align: middle;
}

.site-header__team-name.is-long-name { display: none; }

.site-nav-toggle { display: none; }

.site-header__menu-icon {
  cursor: pointer;
  font-size: 32px;
  color: #333;
}

.site-header__contact { display: none; }

.site-header__space {
  height: 7.5vh;
  min-height: 45px;
  flex-shrink: 0;
}

.site-nav {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  display: flex;
  overflow-x: hidden;
  justify-content: flex-end;
  height: calc(100vh - 7.5vh);
  max-height: calc(100vh - 45px);
  background: rgba(0, 0, 0, 0);
  transition: opacity 0.2s, visibility 0s linear 0.3s, background-color 0.2s;
  pointer-events: none;
}

.site-nav-toggle:checked ~ .site-nav {
  visibility: visible;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s, visibility 0s, background-color 0.2s;
  pointer-events: auto;
}

.site-nav__menu {
  cursor: default;
  position: relative;
  left: 0;
  width: 90%;
  transform: translateX(100%);
  border-top: 1px solid #ccc;
  transition: transform 0.3s;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  padding-bottom: 30px;
}

.site-nav-toggle:checked ~ .site-nav .site-nav__menu {
  transform: translateX(0);
}

.site-nav__item,
.site-nav__nested-title {
  display: block;
  font-size: 18px;
  padding: 21px 0 21px 16vw;
  color: #242424;
}

.site-nav__item:hover,
.site-nav__nested-title:hover,
.site-nav__nested-item:hover {
  text-decoration: none;
}

.site-nav__nested-content {
  position: relative;
  opacity: 0;
  left: 100vw;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, left 0s ease 0.3s;
}

.site-nav__nested.is-open .site-nav__nested-content {
  opacity: 1;
  left: 0;
  max-height: 1000vh;
  overflow: visible;
  transition: opacity 0.3s;
}

.site-nav__nested-item {
  display: block;
  color: #242424;
  font-size: 16px;
  padding: 12px 0 12px 21vw;
}

.site-root {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.site-container {
  background: #fff;
  margin: 0 3px;
  padding: 0 12px 40px;
  flex: 1 0 auto;
}

.site-page-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 15px;
}

.site-section-title {
  font-size: 21px;
  line-height: 1.5;
  padding: 4px 0 4px 15px;
  margin-bottom: 15px;
  border-left: 5px solid var(--site-main-color);
}

.site-empty { margin: 20px 0; }

.site-home-notices { margin-top: 30px; margin-bottom: 30px; }

.site-slider {
  position: relative;
}

.site-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.site-slider__track {
  display: flex;
  transition: transform 0.35s ease;
}

.site-slider__item { flex: 0 0 100%; }

.site-slider__prev,
.site-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  border: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 38px;
  cursor: pointer;
  padding: 8px;
}

.site-slider__prev { left: 8px; }
.site-slider__next { right: 8px; }

.site-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.site-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #ccc;
  cursor: pointer;
  padding: 0;
}

.site-slider__dot.is-current { background: #888; }

.site-slider.is-single .site-slider__prev,
.site-slider.is-single .site-slider__next,
.site-slider.is-single .site-slider__dots {
  display: none;
}

.site-top-board {
  width: 100vw;
  position: relative;
  right: 15px;
}

.site-top-board__image {
  height: 0;
  padding-top: 60%;
  background-size: cover;
  background-position: center;
}

.site-top-board .site-slider__dots { margin-top: 0; position: relative; }

.site-notice-list__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
  padding: 0 5px 5px;
  margin-bottom: 20px;
}

.site-notice-list__date { font-size: 15px; margin-bottom: 8px; }
.site-notice-list__title { line-height: 23px; }
.site-notice-list__new { font-weight: bold; margin-left: 8px; letter-spacing: 1px; }
.site-notice-list__more { text-align: right; margin-top: 15px; font-size: 14px; }

.site-sponsor-list__item { margin-bottom: 20px; }
.site-sponsor-list__link { display: block; }
.site-sponsor-list__image-frame {
  position: relative;
  height: 0;
  padding-top: 70%;
  overflow: hidden;
}
.site-sponsor-list__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
.site-sponsor-list__description { font-size: 14px; line-height: 21px; }

.site-with-sidebar { display: block; }

.site-sidebar { margin-top: 30px; }
.site-sidebar__banner {
  display: block;
  margin-bottom: 30px;
  border: 1px solid #ccc;
}
.site-sidebar__banner:hover { text-decoration: none; }
.site-sidebar__youtube { margin-bottom: 30px; }
.site-sidebar__youtube-title { font-size: 21px; font-weight: bold; margin-bottom: 8px; }
.site-sidebar__youtube-frame { position: relative; padding-top: 56.25%; }
.site-sidebar__youtube iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.site-sidebar__sns { margin-bottom: 16px; }
.site-sidebar__sns iframe { width: 100%; border: 0; overflow: hidden; }
.site-sidebar__contact {
  margin-top: 30px;
  border: 1px solid #ccc;
  padding: 26px 19px 29px;
  border-radius: 5px;
}
.site-sidebar__contact-title { text-align: center; margin-bottom: 15px; font-weight: bold; }
.site-sidebar__contact-description { margin-bottom: 15px; font-size: 14px; line-height: 21px; }
.site-sidebar__contact-button { text-align: center; }

.site-recruitment {
  margin-top: 30px;
  border: 1px solid #ccc;
  padding: 26px 19px 29px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 30px;
}

.site-recruitment__title { font-size: 16px; margin-bottom: 15px; font-weight: bold; }
.site-recruitment__description { font-size: 14px; line-height: 21px; text-align: left; margin-bottom: 15px; }
.site-recruitment__target { font-size: 15px; margin-bottom: 26px; font-weight: bold; }

.site-round-btn {
  cursor: pointer;
  display: inline-block;
  padding: 12px 34px;
  color: #fff;
  font-size: 15px;
  border: 0;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.site-round-btn:active {
  box-shadow: none;
}

.site-round-btn:hover { text-decoration: none; }

.site-article-list__block {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
  color: #242424;
}

.site-article-list__block:hover {
  text-decoration: none;
}

.site-article-list__image {
  height: 0;
  padding-top: 62%;
  background-size: cover;
  background-position: center;
}

.site-article-list__title { font-size: 21px; line-height: 28px; font-weight: bold; margin-bottom: 7px; }
.site-article-list__date { font-size: 14px; margin-bottom: 7px; }
.site-article-list__content { font-size: 13px; line-height: 19px; }

.site-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 8px;
}

.site-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid var(--site-main-color);
  border-radius: 4px;
  color: var(--site-main-color);
  background: #fff;
  font-size: 14px;
  line-height: 1;
}

a.site-pagination__item:hover {
  background: var(--site-main-color);
  color: #fff;
}

.site-pagination__item.is-current {
  background: var(--site-main-color);
  color: #fff;
  font-weight: bold;
}

.site-pagination__item.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.site-pagination__gap {
  color: var(--site-main-color);
  padding: 0 4px;
}

.site-breadcrumb { font-size: 14px; margin: 20px 0 10px; display: flex; flex-wrap: wrap; }
.site-breadcrumb li:not(:last-child)::after { content: ">"; margin: 0 8px; opacity: 0.7; }

.site-article-detail__title {
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.site-article-detail__date { font-size: 14px; text-align: right; margin-top: 8px; }
.site-article-detail__image { display: block; margin: 16px auto; }

.site-rich-text { line-height: 26px; margin: 20px 0; word-break: break-all; }
.site-rich-text img { display: block; margin: 10px auto; width: 100%; }
.site-rich-text h3 { font-size: 20px; font-weight: bold; line-height: 32px; margin-bottom: 20px; padding: 10px 0; border-top: 1px solid #242424; border-bottom: 1px solid #242424; }
.site-rich-text h4 { font-size: 17px; line-height: 28px; font-weight: bold; margin-bottom: 15px; padding: 10px; border-radius: 5px; background: #f3f3f3; }
.site-rich-text p,
.site-rich-text span { line-height: 28px; margin-bottom: 20px; }

.site-introduction-text h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  border-bottom: 1px solid #999;
}
.site-introduction-text h3:not(:first-child) { margin-top: 30px; }
.site-introduction-text h4 {
  font-size: 18px;
  line-height: 23px;
  margin: 25px 0 8px;
  font-weight: bold;
  letter-spacing: 1px;
}
.site-introduction-text p { line-height: 24px; margin-bottom: 15px; }
.site-introduction-text img {
  display: block;
  width: 100%;
  max-height: 80vh;
  margin: 10px auto;
  border: 1px solid #ddd;
}

.site-staff-list__item { padding: 20px 0; border-bottom: 1px solid #ccc; }
.site-staff-list__item:last-child { border-style: none; }
.site-staff-list__left { text-align: center; margin-bottom: 10px; }
.site-staff-list__frame {
  padding: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin-bottom: 10px;
}
.site-staff-list__frame-inner {
  position: relative;
  height: 0;
  padding-top: 66.6666%;
  overflow: hidden;
}
.site-staff-list__image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.site-staff-list__name {
  padding: 0 2px 3px;
  margin-bottom: 10px;
}
.site-staff-list__name-text {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #242424;
  display: inline-block;
}
.site-staff-list__name-text small {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
}
.site-staff-list__role { font-size: 18px; font-weight: bold; }
.site-staff-list__description {
  background: #f6f6f6;
  padding: 12px 17px 21px 20px;
  border-radius: 5px;
  line-height: 24px;
}

.site-location-list__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
  padding: 40px 0;
}
.site-location-list__item:first-child { padding-top: 15px; }
.site-location-list__item:last-child { border-style: none; }
.site-location-list__description { flex: 1; margin-bottom: 10px; }
.site-location-list__head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.site-location-list__pin { width: 20px; flex-shrink: 0; }
.site-location-list__heading {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}
.site-location-list__text { font-size: 18px; line-height: 27px; }
.site-location-list__map {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0;
  padding-top: 100%;
}
.site-location-list__map-preview {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.site-schedule { overflow-x: auto; height: 470px; }
.site-schedule__frame { width: 670px; min-width: 100%; height: 100%; border: 0; }

.site-faq-list { margin-top: 20px; }
.site-faq-list__item { margin-bottom: 40px; }
.site-faq-list__title {
  display: flex;
  align-items: center;
  min-height: 52px;
  margin-bottom: 10px;
}
.site-faq-list__icon { position: relative; height: 42px; }
.site-faq-list__icon-image { width: 34px; height: 42px; }
.site-faq-list__icon-text {
  color: #fff;
  position: absolute;
  font-size: 13px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-faq-list__question {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  margin-left: 10px;
}
.site-faq-list__answer {
  background: #f6f6f6;
  padding: 15px 10px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
}

.site-photo-list { margin-bottom: 60px; }
.site-photo-list__item { padding: 3px; }
.site-photo-list__frame {
  position: relative;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  height: 0;
  padding-top: 55%;
  border-radius: 5px;
}
.site-photo-list__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.site-record-list { margin-bottom: 30px; }
.site-record-list__item { margin-bottom: 30px; }
.site-record-list__item:last-child { margin-bottom: 0; }
.site-record-list__image-frame {
  position: relative;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  height: 0;
  padding-top: 55%;
  border-radius: 5px;
  margin-bottom: 10px;
}
.site-record-list__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-record-list__title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.site-record-list__comment { font-size: 15px; line-height: 22px; }

.site-contact__description { margin-bottom: 35px; font-size: 15px; line-height: 23px; }

.site-contact__line {
  border: 1px solid #ccc;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 45px;
}

.site-contact__line-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}

.site-contact__line-description {
  color: #585858;
  font-size: 14px;
  line-height: 21px;
}

.site-contact__line-frame {
  display: flex;
  margin: 12px auto 0;
  max-width: 420px;
}

.site-contact__line-column { flex: 1; }
.site-contact__line-column.is-center { text-align: center; }

.site-contact__line-friend { display: block; }
.site-contact__line-friend-image { height: 38px; }

.site-contact__line-id {
  margin-top: 24px;
  font-size: 14px;
  font-weight: bold;
}

.site-contact__line-qr { height: 100px; }

.site-form { max-width: 600px; margin: 0 auto; }
.site-form__group { margin-bottom: 40px; }
.site-form__label { display: block; font-size: 14px; margin-bottom: 8px; }
.site-form__label.is-required::after,
.site-form__label.is-optional::after {
  font-size: 11px;
  border-radius: 5px;
  padding: 2px 4px;
  margin-left: 10px;
}
.site-form__label.is-required::after {
  content: "必須";
  color: #fff;
  background-color: #ee4444;
}
.site-form__label.is-optional::after {
  content: "任意";
  background-color: #eeeeee;
}
.site-form__input, .site-form__textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 11px 14px 12px;
  width: 100%;
  box-sizing: border-box;
}
.site-form__textarea {
  height: 350px;
  line-height: 23px;
}
.site-form__select-wrap {
  display: inline-block;
  position: relative;
}
.site-form__select-icon {
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;
}
.site-form__select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: inherit;
  padding: 9px 24px 9px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.site-form__error { color: #ee4444; margin-top: 8px; font-size: 13px; }
.site-form__submit { text-align: center; }

.site-secret-wrap {
  min-height: calc(100vh - 7.5vh);
}

.site-secret-form {
  position: relative;
  top: 40vh;
  transform: translateY(-50%);
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid #ccc;
}
.site-secret-form__title { font-size: 17px; font-weight: bold; text-align: center; margin-bottom: 15px; }

.site-secret-list li { border-bottom: 1px solid #ccc; }
.site-secret-list__link {
  display: block;
  padding: 15px 10px;
  color: #242424;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}

.site-flash {
  cursor: pointer;
  color: #fff;
  text-align: center;
  padding: 12px 0;
}
.site-flash.is-success { background: #18c082; }
.site-flash.is-error { background: #ee4444; }

.site-error { text-align: center; padding: 80px 0; }
.site-error h1 { font-size: 48px; margin-bottom: 16px; }
.site-error p { margin-bottom: 24px; }

.site-mobile-contact {
  position: fixed;
  right: 21px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  height: 80px;
  width: 80px;
  padding-bottom: 5px;
  z-index: 3500;
  transition: box-shadow 0.2s;
}
.site-mobile-contact:hover { text-decoration: none; }
.site-mobile-contact:active { box-shadow: none; }
.site-mobile-contact i {
  color: #fff;
  font-size: 32px;
  margin-bottom: 5px;
}
.site-mobile-contact p { color: #fff; font-size: 10px; }

.site-footer { padding-top: 40px; background: #f6f6f6; text-align: center; flex-shrink: 0; }
.site-footer__sns { display: flex; justify-content: center; margin-bottom: 30px; }
.site-footer__sns li { padding: 0 15px; }
.site-footer__sns-link { font-size: 40px; }
.site-footer__sns-link:hover { text-decoration: none; }
.site-footer__contact-info {
  text-align: left;
  display: inline-block;
  padding: 0 15px;
}
.site-footer__team-name { font-weight: bold; font-size: 21px; margin-bottom: 12px; text-align: center; }
.site-footer__address, .site-footer__phone { font-size: 14px; margin-bottom: 12px; }
.site-footer__nav { display: flex; flex-wrap: wrap; margin-top: 30px; padding: 0 15px; }
.site-footer__nav li { text-align: left; width: 50%; margin-top: 15px; padding-left: 15px; }
.site-footer__nav-link { color: #242424; font-size: 14px; }
.site-footer__nav-link i { margin-right: 7px; }
.site-footer__copy { background: #fff; margin-top: 40px; font-size: 12px; padding: 7px 0; }

@media (min-width: 1024px) {
  a:hover { text-decoration: underline; }

  .site-header {
    height: 68px;
    transition: opacity 0.5s;
  }
  .site-header.is-transparent {
    opacity: 0.8;
    transition: opacity 0.5s;
  }
  .site-header.is-transparent:hover {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .site-header__inner { width: 1120px; margin: 0 auto; padding: 0; }
  .site-header__logo-image { height: calc(68px * 0.98); }
  .site-header__team-name { font-size: 18px; margin-left: 10px; }
  .site-header__team-name.is-long-name { display: inline-block; }
  .site-header__menu-icon { display: none; }
  .site-header__contact { display: block; margin-left: auto; }
  .site-header__contact-link {
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    padding: 10px 28px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }
  .site-header__contact-link:hover {
    text-decoration: none;
    box-shadow: none;
  }
  .site-header__space { height: 103px; min-height: 103px; }

  .site-nav {
    visibility: visible;
    opacity: 1;
    right: 0;
    left: 0;
    height: auto;
    overflow-x: visible;
    justify-content: flex-start;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    background: #fff;
    pointer-events: auto;
    max-height: none;
    transition: none;
  }
  .site-nav-toggle:checked ~ .site-nav {
    background: #fff;
  }
  .site-nav__menu {
    border-style: none;
    left: 0;
    transform: none;
    display: flex;
    height: 35px;
    width: 1120px;
    overflow: visible;
    margin: 0 auto;
    padding-bottom: 0;
  }
  .site-nav-toggle:checked ~ .site-nav .site-nav__menu {
    transform: none;
    left: 0;
  }
  .site-nav__item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 100%;
    padding: 0;
    flex: 1;
    transition: background-color 0.3s;
  }
  .site-nav__item.is-active {
    cursor: default;
    background: rgba(0, 0, 0, 0.1);
  }
  .site-nav__item:hover { background-color: rgba(0, 0, 0, 0.1); }
  .site-nav__nested { position: relative; flex: 1; }
  .site-nav__nested-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 100%;
    padding: 0;
    cursor: pointer;
  }
  .site-nav__nested-content {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 3px 3px;
    max-height: none;
    overflow: visible;
    opacity: 0;
  }
  .site-nav__nested-title:hover + .site-nav__nested-content,
  .site-nav__nested-content:hover {
    left: 0;
    opacity: 1;
    transition: opacity 0.3s;
  }
  .site-nav__nested-item {
    font-size: 12px;
    text-align: center;
    padding: 12px 0;
  }
  .site-nav__nested-item:hover {
    background-color: #e6e6e6;
    transition: background-color 0.3s;
  }

  .site-container {
    margin: 0 auto;
    width: 1120px;
    padding: 0 15px 40px;
  }

  .site-page-title { font-size: 34px; }
  .site-section-title { font-size: 28px; margin-bottom: 20px; border-left-width: 7px; }
  .site-home-notices { margin-bottom: 50px; }

  .site-top-board {
    width: 100%;
    right: 0;
  }

  .site-notice-list__item { flex-direction: row; align-items: center; padding: 0 5px 10px 10px; margin-bottom: 30px; }
  .site-notice-list__date { margin-right: 10px; margin-bottom: 0; }
  .site-notice-list__more { font-size: 15px; }

  .site-sponsor-list { display: flex; flex-wrap: wrap; }
  .site-sponsor-list__item { width: calc(33.3333% - 10px); margin-right: 10px; }
  .site-sponsor-list__link:hover { opacity: 0.9; text-decoration: none; }

  .site-with-sidebar { display: flex; padding-top: 10px; }
  .site-main { width: 70%; padding-right: 15px; min-width: 0; }
  .site-sidebar { width: 30%; margin-top: 0; padding-left: 15px; }
  .site-sidebar__banner { margin-bottom: 20px; }
  .site-sidebar__banner:hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
  }
  .site-sidebar__contact { margin-top: 40px; }

  .site-recruitment__title { font-size: 20px; margin-bottom: 18px; }
  .site-recruitment__description { text-align: center; margin-bottom: 32px; }
  .site-recruitment__target { margin-bottom: 32px; }

  .site-article-list__block { flex-direction: row; }
  .site-article-list__block:hover { opacity: 0.8; }
  .site-article-list__left { flex: 3.5; }
  .site-article-list__right { flex: 6.5; margin-left: 20px; }
  .site-article-list__title { font-size: 23px; line-height: 32px; }

  .site-article-detail__title { font-size: 21px; line-height: 32px; }
  .site-rich-text h3 { padding: 15px 0; font-size: 23px; line-height: 36px; }
  .site-rich-text h4 { font-size: 20px; line-height: 35px; padding: 15px; margin-bottom: 20px; }
  .site-rich-text p,
  .site-rich-text span { font-size: 17px; line-height: 30px; margin-bottom: 25px; }
  .site-rich-text img { width: 90%; }

  .site-introduction-text h3 { font-size: 21px; line-height: 27px; margin-bottom: 12px; }
  .site-introduction-text h3:not(:first-child) { margin-top: 45px; }
  .site-introduction-text h4 { font-size: 19px; line-height: 24px; margin: 30px 0 10px; }
  .site-introduction-text p { line-height: 28px; }
  .site-introduction-text img { width: 500px; margin: 30px auto; }

  .site-staff-list__item { display: flex; padding: 50px 0; }
  .site-staff-list__left { flex: 1; margin-bottom: 0; }
  .site-staff-list__frame { display: inline-block; width: 387px; }
  .site-staff-list__right { flex: 1; padding: 0 13px; }

  .site-schedule { overflow: visible; height: 600px; }
  .site-schedule__frame { width: 100%; }

  .site-faq-list__item { margin-bottom: 50px; }
  .site-faq-list__title { margin-bottom: 20px; }
  .site-faq-list__icon { height: 52px; }
  .site-faq-list__icon-image { width: 40px; height: 50px; }
  .site-faq-list__icon-text { font-size: 15px; }
  .site-faq-list__question { font-size: 17px; line-height: 25px; margin-left: 20px; }
  .site-faq-list__answer { padding: 30px 25px; line-height: 25px; }

  .site-photo-list { margin-bottom: 80px; }
  .site-record-list { margin-bottom: 50px; }
  .site-record-list__item { display: flex; margin-bottom: 50px; }
  .site-record-list__image-frame {
    flex: 1;
    margin-right: 15px;
    padding-top: calc(55% / 2);
    margin-bottom: 0;
  }
  .site-record-list__content { flex: 1; }
  .site-record-list__title { font-size: 24px; margin-bottom: 15px; }
  .site-record-list__comment { font-size: 16px; line-height: 24px; }

  .site-location-list__item {
    flex-direction: row;
    padding: 90px 0;
  }
  .site-location-list__item:first-child { padding-top: 45px; }
  .site-location-list__item.is-reverse { flex-direction: row-reverse; }
  .site-location-list__description { padding: 0 13px; margin-bottom: 0; }
  .site-location-list__head { margin-bottom: 20px; }
  .site-location-list__pin { width: 22px; }
  .site-location-list__map {
    padding: 0 13px;
    height: auto;
    padding-top: 0;
  }
  .site-location-list__map-preview {
    position: relative;
    width: 350px;
    height: 350px;
  }

  .site-round-btn {
    font-size: 17px;
    padding: 12px 42px;
    transition: box-shadow 0.2s;
  }
  .site-round-btn:hover { box-shadow: none; }

  .site-contact__description { font-size: 16px; line-height: 24px; text-align: center; }
  .site-contact__line {
    padding: 32px;
    width: 600px;
    margin: 0 auto 45px;
    box-sizing: border-box;
  }
  .site-contact__line-title { margin-bottom: 24px; }
  .site-contact__line-frame { margin-top: 24px; }

  .site-form__group { margin-bottom: 50px; }
  .site-form__input, .site-form__textarea { padding: 14px; }

  .site-secret-form {
    width: 450px;
    margin: 0 auto;
  }
  .site-secret-wrap {
    min-height: calc(100vh - 68px - 35px);
  }

  .site-mobile-contact { right: 5vw; bottom: 80px; height: 100px; width: 100px; }
  .site-mobile-contact:hover { box-shadow: none; }
  .site-mobile-contact i { font-size: 38px; margin-bottom: 10px; }
  .site-mobile-contact p { font-size: 12px; }

  .site-footer__top {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 1120px;
    margin: 0 auto;
  }
  .site-footer__contact-info { text-align: left; padding: 0; }
  .site-footer__team-name { text-align: left; font-size: 24px; letter-spacing: 1px; margin-bottom: 15px; }
  .site-footer__address { font-size: 16px; margin-bottom: 15px; }
  .site-footer__phone { font-size: 16px; }
  .site-footer__nav { width: 1120px; margin: 37px auto 0; }
  .site-footer__nav li { width: auto; margin-right: 35px; }
  .site-footer__nav-link:hover { text-decoration: underline; }
  .site-footer__copy { margin-top: 50px; padding: 9px 0; }
}

@media (max-width: 399px) {
  .site-slider__prev,
  .site-slider__next { display: none; }
}

.site-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
