@charset "UTF-8";
/* ========================================
   日本バイオテク協議会サイト
   Main Stylesheet
   ======================================== */
/* ========================================
   Reset CSS
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ========================================
   Variables
   ======================================== */
/* ========================================
   Mixins
   ======================================== */
/* ========================================
   Container
   ======================================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 4rem;
  }
}

/* ========================================
   Header
   ======================================== */
.header {
  background-color: #ffffff;
  padding: 1.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1200px) {
  .header {
    padding: 2.4rem 0;
  }
}
.header--scrolled {
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header--top {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: background-color 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1200px) {
  .header--top {
    background-color: transparent;
    border-bottom: none;
  }
}
@media (min-width: 1200px) {
  .header--top .header__inner {
    position: relative;
  }
}
.header--top .nav__link {
  transition: color 0.3s ease;
}
@media (min-width: 1200px) {
  .header--top .nav__link {
    font-weight: bold;
    text-shadow: 0 0 4px rgb(255, 255, 255), 0 0 8px rgba(255, 255, 255, 0.8);
  }
}
.header--top .nav__link:hover {
  color: #003174;
  opacity: 1;
}
.header--top .nav__link::after {
  background-color: #003174;
}
.header--top.header--scrolled {
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header--top.header--scrolled .nav__link {
  color: #000000;
}
.header--top.header--scrolled .nav__link:hover {
  color: #003174;
  opacity: 1;
}
.header--top.header--scrolled .nav__link::after {
  background-color: #003174;
}
.header--top.header--scrolled .header__menu-toggle-line {
  background-color: #003174;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  margin: 0;
  z-index: 101;
}
.header__logo img {
  height: 50px;
  width: auto;
}
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 101;
}
@media (min-width: 1200px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__menu-toggle-line {
  width: 39px;
  height: 2px;
  background-color: #003174;
  transition: 0.3s ease;
  transform-origin: center;
}
.header__menu-toggle[aria-expanded=true] .header__menu-toggle-line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.header__menu-toggle[aria-expanded=true] .header__menu-toggle-line:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle[aria-expanded=true] .header__menu-toggle-line:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #ffffff;
  padding: 80px 2.4rem 2.4rem;
  transition: right 0.3s ease;
  z-index: 100;
  overflow-y: auto;
}
.header--top .header__nav {
  background-color: rgba(255, 255, 255, 0.98);
}
.header__nav[aria-hidden=false] {
  right: 0;
}
@media (min-width: 1200px) {
  .header__nav {
    position: static;
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    background-color: transparent;
    overflow: visible;
  }
  .header--top .header__nav {
    background-color: transparent;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1200px) {
  .nav {
    flex-direction: row;
    gap: 3.2rem;
  }
}
.nav__item {
  list-style: none;
  border-bottom: 1px solid #707070;
}
@media (min-width: 1200px) {
  .nav__item {
    border-bottom: none;
  }
}
.nav__link {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2.4rem;
  position: relative;
  display: block;
}
@media (min-width: 1200px) {
  .nav__link {
    font-size: 1.6rem;
    padding: 0.8rem 0;
  }
}
.nav__link:hover {
  color: #003174;
  background-color: #f5f5f5;
}
@media (min-width: 1200px) {
  .nav__link:hover {
    background-color: transparent;
  }
}
.nav__link::after {
  display: none;
}
@media (min-width: 1200px) {
  .nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #003174;
    transition: width 0.3s ease;
    display: block;
  }
}
.nav__link:hover::after {
  width: 100%;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay[aria-hidden=false] {
  display: block;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1200px) {
  .menu-overlay {
    display: none;
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: #F5FAFD;
  padding: 4.8rem 0 2.4rem;
  margin-top: 6.4rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (min-width: 1200px) {
  .footer__inner {
    gap: 6.4rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer__logo img {
  width: auto;
  height: 60px;
}
.footer__nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .footer__nav-wrapper {
    flex: 1;
  }
}
.footer__nav {
  font-weight: bold;
}
.footer__border {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 6px;
  background-color: #003174;
  margin-top: 3.2rem;
  margin-bottom: 2.4rem;
}
.footer__bottom {
  display: flex;
  justify-content: flex-end;
  padding-top: 0;
}
.footer__copyright {
  color: #000000;
  font-size: 1.4rem;
  margin: 0;
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #707070;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .footer-nav {
    gap: 3.2rem;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .footer-nav {
    justify-content: space-between;
  }
}
.footer-nav__item {
  list-style: none;
}
.footer-nav__link {
  color: #000000;
  font-size: 1.6rem;
}
.footer-nav__link:hover {
  color: #003174;
}

.footer-sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-sub-nav__item {
  list-style: none;
}
.footer-sub-nav__link {
  color: #000000;
  font-size: 1.6rem;
}
.footer-sub-nav__link:hover {
  color: #003174;
}

/* ========================================
   Button Component
   ======================================== */
.button {
  display: inline-block;
  padding: 1.6rem 2.4rem;
  background-color: #003174;
  color: #ffffff;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.button:hover, .button:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}
.button--secondary {
  background-color: #01909B;
  color: #fff;
  font-size: 1.8rem;
  padding: 2.4rem 4.8rem;
}
@media (min-width: 768px) {
  .button--secondary {
    font-size: 2rem;
    padding: 3.2rem 6.4rem;
  }
}
.button--outline {
  background-color: transparent;
  border: 1px solid #003174;
  color: #003174;
}

/* ========================================
   Card Component
   ======================================== */
.card {
  background-color: #ffffff;
  border: 1px solid #707070;
  border-radius: 4px;
  padding: 2.4rem;
}
.card__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.card__body {
  color: #666666;
}

/* ========================================
   Topic Card Component
   ======================================== */
.topic-card {
  background-color: #ffffff;
  border: 2px solid #003174;
  border-radius: 4px;
  padding: 2.4rem;
  transition: 0.3s ease;
}
.topic-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.topic-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.topic-card__date {
  color: #666666;
  font-size: 1.4rem;
}
.topic-card__label {
  display: inline-block;
  padding: 2px 0.8rem;
  background-color: #003174;
  color: #ffffff;
  font-size: 1.2rem;
  border-radius: 2px;
}
.topic-card__title {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.topic-card__title a {
  color: #000000;
}
.topic-card__title a:hover {
  color: #003174;
}
.topic-card__excerpt {
  color: #666666;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   News Item Component
   ======================================== */
.news-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid #DBDBDB;
}
@media (min-width: 1200px) {
  .news-item {
    gap: 2.4rem;
    flex-direction: row;
  }
}
.news-item:last-child {
  border-bottom: none;
}
.news-item__date {
  flex-shrink: 0;
  font-size: 1.6rem;
  min-width: 100px;
}
.news-item__title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: normal;
}
.news-item__title a {
  color: #000000;
}
.news-item__title a:hover {
  color: #003174;
}

/* ========================================
   Tab Component
   ======================================== */
.tab__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2px;
  border-bottom: none;
}
@media (min-width: 768px) {
  .tab__list {
    flex-wrap: nowrap;
    flex-direction: row;
  }
}
.tab__item {
  padding: 0.8rem 2.4rem;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #003174;
  transition: background-color 0.3s ease;
  position: relative;
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .tab__item {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
  }
}
.tab__item:hover {
  opacity: 0.9;
}
.tab__item--active {
  background-color: #819BAC;
  color: #ffffff;
  font-weight: bold;
}
.tab__content {
  display: none;
  padding: 3.2rem 0;
}
@media (min-width: 768px) {
  .tab__content {
    padding: 4.8rem 0;
  }
}
.tab__content--active {
  display: block;
}

/* ========================================
   Breadcrumb Component
   ======================================== */
.breadcrumb {
  padding: 1.6rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .breadcrumb {
    padding: 2.4rem 0;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .breadcrumb__list {
    font-size: 1.6rem;
  }
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item--tab {
  display: none;
}
@media (min-width: 768px) {
  .breadcrumb__item--tab {
    display: flex;
  }
}
.breadcrumb__link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb__link:hover {
  color: #003174;
  text-decoration: underline;
}
.breadcrumb__separator {
  margin: 0 0.8rem;
  color: #666666;
}
@media (min-width: 768px) {
  .breadcrumb__separator {
    margin: 0 1.6rem;
  }
}
.breadcrumb__current {
  color: #000000;
  font-weight: 500;
}
.breadcrumb__current--tab {
  color: #003174;
}

/* ========================================
   Title with Left Bar Component
   ======================================== */
.title-bar, .members__category-title, .about__org-title, .about .achievement-card__title {
  position: relative;
  padding-left: 2.4rem;
}
.title-bar::before, .members__category-title::before, .about__org-title::before, .about .achievement-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #003174;
}
@media (min-width: 768px) {
  .title-bar, .members__category-title, .about__org-title, .about .achievement-card__title {
    padding-left: 3.2rem;
  }
  .title-bar::before, .members__category-title::before, .about__org-title::before, .about .achievement-card__title::before {
    width: 5px;
  }
}

/* ========================================
   Form Component
   ======================================== */
.form__group {
  margin-bottom: 2.4rem;
}
.form__label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: bold;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #707070;
  border-radius: 4px;
  font-size: 1.6rem;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #003174;
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========================================
   Contact Form Component
   ======================================== */
.contact-form,
.wpcf7-form {
  max-width: 940px;
  margin: 0 auto;
  padding: 4.8rem 2.4rem;
  background-color: #F7F5F5;
}
@media (min-width: 768px) {
  .contact-form,
  .wpcf7-form {
    max-width: 1000px;
    padding: 4.8rem;
  }
}
.contact-form__group,
.wpcf7-form__group {
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .contact-form__group,
  .wpcf7-form__group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.8rem;
  }
}
.contact-form__group--agreement,
.wpcf7-form__group--agreement {
  margin-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .contact-form__group--agreement,
  .wpcf7-form__group--agreement {
    margin-bottom: 6.4rem;
  }
}
.contact-form__label,
.wpcf7-form__label {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .contact-form__label,
  .wpcf7-form__label {
    width: 170px;
    justify-content: space-between;
    align-items: center;
    margin-right: 70px;
    font-size: 1.6rem;
    margin-bottom: 0;
    padding-top: 1rem;
  }
}
.contact-form__label-row,
.wpcf7-form__label-row {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .contact-form__label-row,
  .wpcf7-form__label-row {
    margin-bottom: 0;
    padding-top: 1.6rem;
  }
}
@media (min-width: 768px) {
  .contact-form__label-row .contact-form__label,
  .wpcf7-form__label-row .contact-form__label {
    width: auto;
    flex: 1;
    margin-right: 0;
  }
}
.contact-form__required,
.wpcf7-form__required {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  height: 17px;
  color: #ffffff;
  background-color: #FF0000;
  padding: 2px 11px;
  margin-left: 0.8rem;
  font-weight: bold;
}
.contact-form__name-row,
.wpcf7-form__name-row {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form__name-row,
  .wpcf7-form__name-row {
    flex-direction: row;
    gap: 6.4rem;
    flex: 1;
  }
}
.contact-form__name-item,
.wpcf7-form__name-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .contact-form__name-item,
  .wpcf7-form__name-item {
    position: relative;
    flex: 1;
  }
}
.contact-form__name-item--spacer,
.wpcf7-form__name-item--spacer {
  display: none;
}
@media (min-width: 768px) {
  .contact-form__name-item--spacer,
  .wpcf7-form__name-item--spacer {
    display: block;
    visibility: hidden;
  }
}
.contact-form__name-label,
.wpcf7-form__name-label {
  font-size: 1.6rem;
  color: #000000;
  white-space: nowrap;
  flex-shrink: 0;
  width: auto;
}
@media (min-width: 768px) {
  .contact-form__name-label,
  .wpcf7-form__name-label {
    font-size: 1.4rem;
    font-weight: 700;
    width: 2.4rem;
    position: absolute;
    left: -40px;
    top: 20%;
    text-align: right;
  }
}
.contact-form__input-wrapper,
.wpcf7-form__input-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form__input-wrapper,
  .wpcf7-form__input-wrapper {
    flex: 1;
  }
}
.contact-form__input, .contact-form__textarea,
.wpcf7-form__input,
.wpcf7-form__textarea {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #707070;
  border-radius: 4px;
  font-size: 1.6rem;
  font-family: inherit;
  background-color: #ffffff;
  color: #000000;
  transition: border-color 0.3s ease;
}
.contact-form__input:focus, .contact-form__textarea:focus,
.wpcf7-form__input:focus,
.wpcf7-form__textarea:focus {
  outline: none;
  border-color: #01419A;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder, .wpcf7-form__input::-moz-placeholder, .wpcf7-form__textarea::-moz-placeholder {
  color: #666666;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder,
.wpcf7-form__input::placeholder,
.wpcf7-form__textarea::placeholder {
  color: #666666;
}
@media (min-width: 768px) {
  .contact-form__input, .contact-form__textarea,
  .wpcf7-form__input,
  .wpcf7-form__textarea {
    padding: 0.9rem 1.3rem;
    font-size: 1.8rem;
  }
}
.contact-form__textarea,
.wpcf7-form__textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}
.contact-form__agreement,
.wpcf7-form__agreement {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form__agreement,
  .wpcf7-form__agreement {
    flex: 1;
  }
}
.contact-form__agreement-row,
.wpcf7-form__agreement-row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.contact-form__agreement-row p,
.wpcf7-form__agreement-row p {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.contact-form__agreement-text,
.wpcf7-form__agreement-text {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .contact-form__agreement-text,
  .wpcf7-form__agreement-text {
    font-size: 1.8rem;
  }
}
.contact-form .wpcf7-list-item,
.wpcf7-form .wpcf7-list-item {
  margin-left: 0;
}
.contact-form__checkbox-label, .contact-form__agreement-row label, .contact-form__agreement-row p,
.contact-form .wpcf7-list-item label,
.contact-form .wpcf7-form-control-wrap-agreement label,
.contact-form .wpcf7-form-control-wrap-agreement > .wpcf7-form-control,
.wpcf7-form__checkbox-label,
.wpcf7-form__agreement-row label,
.wpcf7-form__agreement-row p,
.wpcf7-form .wpcf7-list-item label,
.wpcf7-form .wpcf7-form-control-wrap-agreement label,
.wpcf7-form .wpcf7-form-control-wrap-agreement > .wpcf7-form-control {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  background: #ffffff;
  padding: 1rem;
  border: 1px solid #707070;
  padding: 1rem 2rem;
}
@media (min-width: 768px) {
  .contact-form__checkbox-label, .contact-form__agreement-row label, .contact-form__agreement-row p,
  .contact-form .wpcf7-list-item label,
  .contact-form .wpcf7-form-control-wrap-agreement label,
  .contact-form .wpcf7-form-control-wrap-agreement > .wpcf7-form-control,
  .wpcf7-form__checkbox-label,
  .wpcf7-form__agreement-row label,
  .wpcf7-form__agreement-row p,
  .wpcf7-form .wpcf7-list-item label,
  .wpcf7-form .wpcf7-form-control-wrap-agreement label,
  .wpcf7-form .wpcf7-form-control-wrap-agreement > .wpcf7-form-control {
    padding: 1rem 6rem;
    font-size: 1.8rem;
  }
}
.contact-form__checkbox, .contact-form__agreement-row input[type=checkbox], .contact-form__agreement-row p input[type=checkbox],
.contact-form .wpcf7-form-control-wrap-agreement input[type=checkbox],
.contact-form .wpcf7-list-item input[type=checkbox],
.wpcf7-form__checkbox,
.wpcf7-form__agreement-row input[type=checkbox],
.wpcf7-form__agreement-row p input[type=checkbox],
.wpcf7-form .wpcf7-form-control-wrap-agreement input[type=checkbox],
.wpcf7-form .wpcf7-list-item input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 0.8rem;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0;
  background-color: #EAEAEA;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #707070;
}
.contact-form__checkbox:checked, .contact-form__agreement-row input[type=checkbox]:checked, .contact-form__agreement-row p input[type=checkbox]:checked,
.contact-form .wpcf7-form-control-wrap-agreement input[type=checkbox]:checked,
.contact-form .wpcf7-list-item input[type=checkbox]:checked,
.wpcf7-form__checkbox:checked,
.wpcf7-form__agreement-row input[type=checkbox]:checked,
.wpcf7-form__agreement-row p input[type=checkbox]:checked,
.wpcf7-form .wpcf7-form-control-wrap-agreement input[type=checkbox]:checked,
.wpcf7-form .wpcf7-list-item input[type=checkbox]:checked {
  background-color: #EAEAEA;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M10 2L4 8l-4-4 1.41-1.41L4 5.17l4.59-4.58L10 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0% -10%;
  background-size: 16px 16px;
}
.contact-form__checkbox-text,
.contact-form .wpcf7-list-item-label,
.contact-form .wpcf7-form-control-wrap-agreement .wpcf7-list-item-label,
.wpcf7-form__checkbox-text,
.wpcf7-form .wpcf7-list-item-label,
.wpcf7-form .wpcf7-form-control-wrap-agreement .wpcf7-list-item-label {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 700;
  font-size: 1.4rem;
}
.contact-form__terms-link,
.wpcf7-form__terms-link {
  color: #000000;
  text-decoration: underline;
  font-size: 1.6rem;
  transition: opacity 0.3s ease;
  margin-left: unset;
}
.contact-form__terms-link:hover,
.wpcf7-form__terms-link:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .contact-form__terms-link,
  .wpcf7-form__terms-link {
    font-size: 1.8rem;
  }
}
.contact-form__submit,
.wpcf7-form__submit {
  text-align: center;
  margin-top: 4.8rem;
}
@media (min-width: 768px) {
  .contact-form__submit,
  .wpcf7-form__submit {
    margin-top: 6.4rem;
  }
}
.contact-form__button,
.wpcf7-form__button {
  display: inline-block;
  width: 100%;
  max-width: 340px;
  padding: 2.4rem 4.8rem;
  background-color: #01419A;
  color: #ffffff;
  border: none;
  border-radius: 29px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
@media (min-width: 768px) {
  .contact-form__button,
  .wpcf7-form__button {
    font-size: 1.8rem;
    padding: 2rem 6.4rem;
    border-radius: 29px;
  }
}
.contact-form__button:hover:not(:disabled),
.wpcf7-form__button:hover:not(:disabled) {
  opacity: 0.9;
}
.contact-form__button:disabled,
.wpcf7-form__button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ========================================
   Page Top Button Component
   ======================================== */
.pagetop {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #003174;
  border: 1px solid #CECECE;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}
.pagetop--visible {
  opacity: 1;
  visibility: visible;
}
.pagetop:hover {
  opacity: 0.8;
}
.pagetop__icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
.pagetop__icon-line {
  position: absolute;
  background-color: #003174;
  width: 1px;
}
.pagetop__icon-line--center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 25px;
}
.pagetop__icon-line--left {
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transform-origin: top center;
  height: 14px;
}
.pagetop__icon-line--right {
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: top center;
  height: 14px;
}

/* ========================================
   Top Indexed Container Component
   トップページのインデックスデザイン付きコンテナ
   ======================================== */
.top-indexed-container {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 20px 2rem;
  border-radius: 0 0 10px 10px;
}
@media (min-width: 768px) {
  .top-indexed-container {
    padding: 20px 4rem;
  }
}
.top-indexed-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  border-radius: 10px 10px 0 0;
  z-index: 1;
}
.top-indexed-container--primary::before {
  background-color: #003174;
}
.top-indexed-container--secondary::before {
  background-color: #3D4A50;
}

/* ========================================
   Single Page KV Section Component
   ======================================== */
.single-kv {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 4.8rem 0;
  padding-top: calc(4.8rem + 82px);
  overflow: hidden;
  background-image: url("../images/single_title_bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.webp .single-kv {
  background-image: url("../images/single_title_bg.webp");
}
@media (min-width: 768px) {
  .single-kv {
    min-height: 280px;
    padding: 6.4rem 0;
    padding-top: calc(6.4rem + 100px);
  }
}
.single-kv-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .single-kv-inner {
    padding: 0 4rem;
  }
}
.single-kv-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #003174;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .single-kv-title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .single-kv-title {
    font-size: 3.6rem;
  }
}
.single-kv-subtitle {
  font-size: 1.4rem;
  color: #003174;
  letter-spacing: 0.15em;
  font-weight: 300;
}
@media (min-width: 768px) {
  .single-kv-subtitle {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .single-kv-subtitle {
    font-size: 1.8rem;
  }
}
.single-kv-title-group {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .single-kv-title-group {
    text-align: left;
    margin: 0;
  }
}

/* ========================================
   Achievement Panel Component
   ======================================== */
.achievement-panel {
  margin-top: 3.2rem;
}
.achievement-panel__title {
  border: 1px solid #707070;
  background-color: #01419A;
  color: #fff;
  padding: 2.4rem 3.2rem;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .achievement-panel__title {
    padding: 2.4rem 4.8rem;
    font-size: 1.8rem;
  }
}
.achievement-panel__body {
  border: 1px solid #707070;
  background-color: #fff;
  padding: 2.4rem 3.2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
@media (min-width: 768px) {
  .achievement-panel__body {
    padding: 3.2rem 4.8rem;
    font-size: 1.8rem;
  }
}
.achievement-panel__body p:not(:last-child) {
  margin-bottom: 1.6rem;
}

/* ========================================
   Top Page
   ======================================== */
.top__kv {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: #ffffff;
  min-height: initial;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .top__kv {
    align-items: center;
    justify-content: center;
    min-height: min(100vh, 1000px);
    background-image: url("../images/kv/Top_FV.jpg");
    background-size: cover;
    background-position: 30% 50%;
    background-repeat: no-repeat;
    background-color: #003174;
    color: #ffffff;
    padding: 6.4rem 0;
    text-align: center;
  }
  .webp .top__kv {
    background-image: url("../images/kv/Top_FV.webp");
  }
}
.top__kv::before {
  display: none;
}
@media (min-width: 1200px) {
  .top__kv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block;
  }
}
.top__kv-inner--pc {
  display: none;
}
@media (min-width: 1200px) {
  .top__kv-inner--pc {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 4rem;
    text-align: left;
  }
}
@media (min-width: 1750px) {
  .top__kv-inner--pc {
    position: relative;
    left: -75px;
  }
}
.top__kv-inner--pc .top__kv-title {
  position: relative;
  padding: 0;
  background-color: transparent;
  width: auto;
  font-size: 4.4rem;
  font-weight: 800;
  margin: 0 0 0.4rem 0;
  color: #003D58;
  line-height: 1.4;
}
.top__kv-inner--pc .top__kv-text {
  background-color: transparent;
  padding: 0;
  max-width: 800px;
  width: auto;
  margin: 0 0 3rem;
  text-align: left;
}
.top__kv-inner--pc .top__kv-lead {
  font-size: 2rem;
  line-height: 1.4;
  color: #003D58;
  display: block;
  margin: 0 0 0.6rem;
}
.top__kv-inner--pc .top__kv-lead:last-child {
  margin-bottom: 0;
}
.top__kv-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  aspect-ratio: 960/800;
  margin-top: 80px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  background-image: url("../images/kv/Top_FV_sp.jpg");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}
.webp .top__kv-visual {
  background-image: url("../images/kv/Top_FV_sp.webp");
}
@media (min-width: 1200px) {
  .top__kv-visual {
    display: none;
  }
}
.top__kv-title--sp {
  position: relative;
  padding: 0.4rem 0.4rem 0.4rem 4.2rem;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: left;
  font-size: 1.7rem;
  font-weight: bold;
  margin-left: 0;
  width: -moz-fit-content;
  width: fit-content;
  color: #003D58;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .top__kv-title--sp {
    font-size: 2.4rem;
    padding: 0.6rem 1.6rem 0.6rem 4.8rem;
  }
}
@media (min-width: 1200px) {
  .top__kv-title--sp {
    display: none;
  }
}
.top__kv-text--sp {
  display: block;
  width: 100%;
  background-color: #003D58;
  padding: 2.4rem 3.2rem;
  margin: 0;
  z-index: 3;
  text-align: left;
}
@media (min-width: 768px) {
  .top__kv-text--sp {
    padding: 3.2rem 4rem;
  }
}
@media (min-width: 1200px) {
  .top__kv-text--sp {
    display: none;
  }
}
.top__kv-text--sp .top__kv-lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .top__kv-text--sp .top__kv-lead {
    font-size: 1.6rem;
  }
}
.top__section-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #003174;
  margin-bottom: 3.2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .top__section-title {
    font-size: 3.2rem;
    text-align: left;
  }
}
.top__topics {
  padding: 6.4rem 0 0;
  background-color: #ffffff;
}
.top__topics-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .top__topics-inner {
    flex-direction: row;
    gap: 4.8rem;
  }
}
.top__topics-title-box {
  padding: 4.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}
@media (min-width: 768px) {
  .top__topics-title-box {
    min-width: 200px;
    flex-shrink: 0;
  }
}
.top__topics-title-en {
  font-size: 3.2rem;
  font-weight: bold;
  color: #003174;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .top__topics-title-en {
    text-align: left;
  }
}
.top__topics-title-ja {
  font-size: 1.8rem;
  color: #003174;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .top__topics-title-ja {
    text-align: left;
  }
}
.top__topics-content {
  flex: 1;
}
.top__topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .top__topics-list {
    padding: 2.4rem 0 0;
  }
}
.top__topics-item {
  list-style: none;
  border-bottom: 1px solid #DBDBDB;
}
.top__topics-item:last-child {
  border-bottom: none;
}
.top__topics-link {
  color: #000000;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 2.4rem 0;
  transition: color 0.3s ease;
}
.top__topics-link:hover {
  color: #003174;
}
.top__news {
  padding: 6.4rem 0;
}
@media (min-width: 768px) {
  .top__news {
    padding: 6.4rem 0;
  }
}
.top__news-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .top__news-inner {
    flex-direction: row;
    gap: 4.8rem;
  }
}
.top__news-title-box {
  padding: 4.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}
@media (min-width: 768px) {
  .top__news-title-box {
    min-width: 200px;
    flex-shrink: 0;
  }
}
.top__news-title-en {
  font-size: 3.2rem;
  font-weight: bold;
  color: #3D4A50;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .top__news-title-en {
    text-align: left;
  }
}
.top__news-title-ja {
  font-size: 1.8rem;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .top__news-title-ja {
    text-align: left;
  }
}
.top__news-button {
  background-color: #3D4A50;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px;
}
.top__news-button:hover {
  background-color: #003174;
  color: #ffffff;
}
.top__news-button--pc {
  display: none;
}
@media (min-width: 768px) {
  .top__news-button--pc {
    display: inline-block;
    width: 120px;
    padding: 1rem 0.8rem;
    font-size: 1.4rem;
    margin-top: 2.4rem;
  }
}
.top__news-button--sp {
  display: block;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.2rem;
  padding: 0.8rem 0.6rem;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .top__news-button--sp {
    display: none;
  }
}
.top__news-content {
  flex: 1;
}
.top__news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .top__news-list {
    padding: 2.4rem 0 0;
  }
}

/* ========================================
   About Page
   ======================================== */
.about__content {
  padding: 4.8rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .about__content {
    padding: 6.4rem 0;
  }
}
.about__section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  text-align: center;
  padding-bottom: 0;
  position: relative;
  border-bottom: none;
  margin-bottom: 4.8rem;
}
.about__section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #003174 0%, #003174 33.33%, #E3E3E3 33.33%, #E3E3E3 100%);
}
@media (min-width: 768px) {
  .about__section-title {
    font-size: 2.4rem;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .about__section-title {
    font-size: 3.2rem;
    text-align: left;
    margin-bottom: 6.4rem;
  }
}
.about__message {
  padding: 2.4rem 0;
}
@media (min-width: 768px) {
  .about__message {
    padding: 3.2rem 0;
  }
}
@media (min-width: 768px) {
  .about__message-content {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.about__message-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #003174;
  margin-bottom: 3.2rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .about__message-title {
    font-size: 2rem;
    margin-bottom: 4.8rem;
    line-height: 2;
  }
}
.about__message-text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 3.2rem;
  color: #000000;
}
@media (min-width: 1200px) {
  .about__message-text {
    font-size: 1.8rem;
    line-height: 2.2;
    margin-bottom: 4.8rem;
  }
}
.about__message-text:last-of-type {
  margin-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .about__message-text:last-of-type {
    margin-bottom: 6.4rem;
  }
}
.about__message-signature {
  text-align: right;
  margin-top: 4.8rem;
}
@media (min-width: 768px) {
  .about__message-signature {
    margin-top: 6.4rem;
  }
}
.about__message-signature-date, .about__message-signature-org, .about__message-signature-name {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .about__message-signature-date, .about__message-signature-org, .about__message-signature-name {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
.about__message-signature-date:last-child, .about__message-signature-org:last-child, .about__message-signature-name:last-child {
  margin-bottom: 0;
}
.about__message-signature-name {
  font-weight: bold;
}
.about__organization {
  padding: 2.4rem 0;
}
@media (min-width: 768px) {
  .about__organization {
    padding: 3.2rem 0;
  }
}
@media (min-width: 768px) {
  .about__organization-content {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.about__org-section {
  margin-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .about__org-section {
    margin-bottom: 6.4rem;
  }
}
.about__org-section:last-child {
  margin-bottom: 0;
}
.about__org-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #003174;
  margin-bottom: 2.4rem;
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 768px) {
  .about__org-title {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .about__org-title {
    font-size: 2.4rem;
    margin-bottom: 3.2rem;
  }
}
.about__org-table-wrapper {
  overflow-x: auto;
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .about__org-table-wrapper {
    margin-top: 3.2rem;
  }
}
.about__org-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #707070;
}
.about__org-th {
  background-color: #01419A;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 1rem 0.4rem;
  border: 1px solid #707070;
  font-size: 1.4rem;
  white-space: nowrap;
}
.about__org-th--role {
  width: 15%;
}
.about__org-th--name {
  width: 20%;
}
.about__org-th--company {
  width: 35%;
}
.about__org-th--position {
  width: 30%;
}
.about__org-td {
  text-align: center;
  padding: 1rem 0.4rem;
  border: 1px solid #BFBFBF;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.4rem;
  white-space: nowrap;
}
.about__org-separator td {
  border: 1px solid white;
  padding: 0.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px;
}
.about__org-info {
  margin-top: 1.6rem;
}
@media (min-width: 768px) {
  .about__org-info {
    margin-top: 2.4rem;
  }
}
.about__org-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  color: #000000;
}
@media (min-width: 768px) {
  .about__org-text {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 2.4rem;
  }
}
.about__org-text:last-child {
  margin-bottom: 0;
}
.about__achievements {
  padding: 2.4rem 0;
}
@media (min-width: 768px) {
  .about__achievements {
    padding: 3.2rem 0;
  }
}
.about__achievements-header {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .about__achievements-header {
    margin-bottom: 3.2rem;
  }
}
.about__achievements-title-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about__achievements-section-title {
  margin: 0;
  text-align: left;
  padding-bottom: 0;
}
.about__achievements-year {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #003174;
  margin: 0;
  padding-bottom: 0.8rem;
  display: block;
  text-align: left;
}
.about__achievements-year::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #003174 0%, #003174 33.33%, #E3E3E3 33.33%, #E3E3E3 100%);
}
@media (min-width: 768px) {
  .about__achievements-year {
    font-size: 2.4rem;
  }
}
.about__achievements-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.6rem;
  width: 100%;
}
@media (min-width: 768px) {
  .about__achievements-controls {
    gap: 2.4rem;
  }
}
.about__achievements-archive-btn {
  background-color: #C9C9C9;
  border: 1px solid #707070;
  color: #000000;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 2px;
  width: 240px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.about__achievements-archive-btn:hover, .about__achievements-archive-btn:focus-visible {
  opacity: 0.9;
}
.about__achievements-archive-btn__icon {
  font-size: 1.2rem;
  line-height: 1;
}
.about__achievements-dropdown {
  position: relative;
}
.about__achievements-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #F4F4F4;
  border: 1px solid #707070;
  min-width: 240px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  padding: 1.6rem 0;
  z-index: 10;
  list-style: none;
}
.about__achievements-menu li {
  padding: 0;
  text-align: center;
  font-size: 1.6rem;
  color: #000000;
  cursor: pointer;
}
.about__achievements-menu li a {
  display: block;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  color: inherit;
}
.about__achievements-menu li a:hover, .about__achievements-menu li a:focus-visible {
  background-color: rgba(0, 0, 0, 0.06);
}
.about__achievements-menu li:hover, .about__achievements-menu li:focus-visible {
  background-color: rgba(0, 0, 0, 0.06);
}
.about__achievements-dropdown.is-open .about__achievements-menu {
  display: block;
}
.about__achievements-select {
  display: inline-block;
}
.about__achievements-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #F4F4F4;
  border: 1px solid #707070;
  padding: 0.8rem 3.2rem 0.8rem 1.2rem;
  font-size: 1.4rem;
  border-radius: 2px;
  background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%);
  background-position: right 1rem center, right 0.5rem center;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  min-width: 220px;
  color: #000000;
  cursor: pointer;
}
.about__achievements-content {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
@media (min-width: 768px) {
  .about__achievements-content {
    margin: 0 auto;
    gap: 6.4rem;
  }
}
.about .achievement-card {
  background-color: #ffffff;
  box-shadow: none;
  margin-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .about .achievement-card {
    margin-bottom: 6.4rem;
  }
}
.about .achievement-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.about .achievement-card__link:hover {
  opacity: 0.9;
}
.about .achievement-card__head {
  padding: 0 0 2.4rem 0;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .about .achievement-card__head {
    padding: 0 0 2.4rem 0;
    margin-bottom: 2.4rem;
  }
}
.about .achievement-card__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2.4rem;
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 768px) {
  .about .achievement-card__title {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .about .achievement-card__title {
    font-size: 2.4rem;
    margin-bottom: 3.2rem;
  }
}
.about .achievement-card__date {
  font-size: 1.6rem;
  color: #000000;
  margin: 0;
}
.about .achievement-detail {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
@media (min-width: 768px) {
  .about .achievement-detail {
    gap: 3.2rem;
  }
}
.about .achievement-detail__controls {
  justify-content: flex-end;
  margin-bottom: 3.2rem;
}
.about .achievement-detail__heading {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2.4rem;
  text-align: center;
  padding-bottom: 0;
  position: relative;
  border-bottom: none;
}
.about .achievement-detail__heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #003174 0%, #003174 33.33%, #E3E3E3 33.33%, #E3E3E3 100%);
}
@media (min-width: 768px) {
  .about .achievement-detail__heading {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .about .achievement-detail__heading {
    font-size: 3.2rem;
    text-align: left;
    margin-bottom: 3.2rem;
  }
}
.about .achievement-detail__place {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
@media (min-width: 768px) {
  .about .achievement-detail__place {
    font-size: 1.8rem;
  }
}
.about .achievement-detail__time-block {
  margin-bottom: 4.8rem;
}
.about .achievement-detail__time-block:last-child {
  margin-bottom: 0;
}
.about .achievement-detail__time {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .about .achievement-detail__time {
    font-size: 2rem;
  }
}
.about .achievement-detail__back {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .about .achievement-detail__back .button {
    width: 40%;
  }
}

/* ========================================
   News Page
   ======================================== */
.news__content {
  padding: 4.8rem 0 6.4rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .news__content {
    padding: 6.4rem 0;
  }
}
.news--detail .news__detail-content {
  padding: 4.8rem 0 6.4rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .news--detail .news__detail-content {
    padding: 6.4rem 0;
  }
}

.news-detail__date {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 1em;
  line-height: 1;
}
@media (min-width: 768px) {
  .news-detail__date {
    font-size: 1.6rem;
  }
}
.news-detail__title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #003174;
  margin-bottom: 3.2rem;
  padding-bottom: 1.6rem;
  line-height: 1.6;
}
.news-detail__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #003174 0%, #003174 33.33%, #E3E3E3 33.33%, #E3E3E3 100%);
}
@media (min-width: 768px) {
  .news-detail__title {
    font-size: 2.4rem;
    margin-bottom: 4.8rem;
  }
}
.news-detail__body {
  margin-bottom: 6.4rem;
}
@media (min-width: 768px) {
  .news-detail__body {
    margin-bottom: 9.6rem;
  }
}
.news-detail__body p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .news-detail__body p {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.news-detail__body p:last-child {
  margin-bottom: 0;
}
.news-detail__body a {
  color: #003174;
}
.news-detail__back {
  text-align: center;
  margin-top: 6.4rem;
}
@media (min-width: 768px) {
  .news-detail__back {
    margin-top: 9.6rem;
  }
}
.news-detail__back .button {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   Members Page
   ======================================== */
.members__section {
  padding: 4.8rem 0 2.4rem;
  scroll-margin-top: 120px;
}
@media (min-width: 768px) {
  .members__section {
    padding: 6.4rem 0 3.2rem;
    scroll-margin-top: 140px;
  }
}
.members__section--support {
  padding-top: 3.2rem;
  padding-bottom: 6.4rem;
}
.members__section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .members__section-header {
    gap: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
.members__section-header p {
  align-self: end;
}
.members__section-title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  padding-bottom: 0.8rem;
  width: 100%;
}
.members__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #003174 0%, #003174 33.33%, #E3E3E3 33.33%, #E3E3E3 100%);
}
@media (min-width: 768px) {
  .members__section-title {
    font-size: 2.4rem;
  }
}
.members__section-switch {
  align-self: flex-end;
  font-size: 1.4rem;
  color: #000000;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  background-color: #ffffff;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.members__section-switch:hover {
  color: #003174;
  border-color: #003174;
  background-color: rgba(0, 49, 116, 0.05);
}
.members__category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin: 2.4rem 0 3.2rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .members__category-tabs {
    margin: 3.2rem 0 4.8rem;
    flex-direction: row;
  }
}
.members__category-tab {
  flex: 1 1 calc(50% - 2px);
  text-align: center;
  background-color: #999AB9;
  color: #ffffff;
  padding: 0.8rem 2.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 768px) {
  .members__category-tab {
    flex: 1;
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
  }
}
.members__category-tab:hover {
  opacity: 0.9;
}
.members__category-section {
  padding: 3.2rem 0;
  scroll-margin-top: 120px;
}
.members__category-section:last-of-type {
  border-bottom: none;
}
@media (min-width: 768px) {
  .members__category-section {
    padding: 4.8rem 0 6.4rem;
    scroll-margin-top: 140px;
  }
}
.members__category-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .members__category-title {
    font-size: 2rem;
    margin-bottom: 3.2rem;
  }
}
.members__card {
  border: none;
  background-color: #ffffff;
  margin-bottom: 3.2rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.members__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.members__card-header {
  background-color: #01419A;
  color: #ffffff;
  padding: 1.6rem 2.4rem;
  border: 1px solid #707070;
}
@media (min-width: 768px) {
  .members__card-header {
    padding: 2.4rem 3.2rem;
  }
}
.members__card-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .members__card-title {
    font-size: 2rem;
  }
}
.members__card-body {
  padding: 0;
}
.members__card-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem 2.4rem;
  border: 1px solid #707070;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .members__card-row {
    padding: 2.4rem 3.2rem;
  }
}
.members__card-row:not(:first-of-type) {
  border-top: 0;
}
.members__card-row a {
  color: #003174;
  text-decoration: none;
  word-break: break-all;
}
.members__card-row a:hover {
  text-decoration: underline;
}
.members__card-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
@media (min-width: 768px) {
  .members__card-text {
    font-size: 1.8rem;
  }
}
.members__back-to-top {
  text-align: right;
  margin-top: -1.6rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .members__back-to-top {
    margin-top: -0.8rem;
    margin-bottom: 4.8rem;
  }
}
.members__back-to-top a {
  font-size: 1.4rem;
  color: #003174;
  text-decoration: underline;
}
.members__back-to-top a:hover {
  text-decoration: underline;
}

/* ========================================
   Links Page
   ======================================== */
.links__section {
  padding: 4.8rem 0;
}
@media (min-width: 768px) {
  .links__section {
    padding: 6.4rem 0;
  }
}
.links__section--videos {
  padding-top: 2.4rem;
  padding-bottom: 6.4rem;
}
.links__section-title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  padding-bottom: 0.8rem;
  margin-bottom: 3.2rem;
}
.links__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #003174 0%, #003174 33.33%, #E3E3E3 33.33%, #E3E3E3 100%);
}
@media (min-width: 768px) {
  .links__section-title {
    font-size: 2.4rem;
    margin-bottom: 4.8rem;
  }
}
.links__cards {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .links__cards {
    gap: 3.2rem;
  }
}
.links__card {
  margin-top: 0;
  margin-bottom: 3.2rem;
  border: none;
  background-color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.links__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.links__card-header {
  border: 1px solid #707070;
  background-color: #01419A;
  color: #fff;
  padding: 2.4rem 3.2rem;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .links__card-header {
    padding: 2.4rem 4.8rem;
    font-size: 1.8rem;
  }
}
.links__card-header {
  background-color: #01909B;
  padding: 1.6rem 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}
@media (min-width: 768px) {
  .links__card-header {
    padding: 1.6rem 2.4rem;
    font-size: 2rem;
  }
}
.links__card-body {
  border: 1px solid #707070;
  background-color: #fff;
  padding: 2.4rem 3.2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
@media (min-width: 768px) {
  .links__card-body {
    padding: 3.2rem 4.8rem;
    font-size: 1.8rem;
  }
}
.links__card-body p:not(:last-child) {
  margin-bottom: 1.6rem;
}
.links__card-body {
  padding: 2.4rem;
  line-height: normal;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .links__card-body {
    padding: 2.4rem;
    font-size: 1.6rem;
  }
}
.links__card-link {
  color: #003174;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.links__card-link:hover {
  color: rgb(0, 46.55, 110.2);
  text-decoration: underline;
  opacity: 0.9;
}
.links__videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .links__videos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .links__videos {
    gap: 4.8rem;
  }
}
.links__video-card {
  margin-top: 0;
  margin-bottom: 3.2rem;
  border: none;
  background-color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.links__video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.links__video-card-header {
  border: 1px solid #707070;
  background-color: #01419A;
  color: #fff;
  padding: 2.4rem 3.2rem;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .links__video-card-header {
    padding: 2.4rem 4.8rem;
    font-size: 1.8rem;
  }
}
.links__video-card-header {
  background-color: #01909B;
  padding: 1.6rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}
@media (min-width: 768px) {
  .links__video-card-header {
    padding: 1.6rem 2.4rem;
  }
}
.links__video-thumb {
  border: 1px solid #707070;
  background-color: #fff;
  padding: 2.4rem 3.2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
@media (min-width: 768px) {
  .links__video-thumb {
    padding: 3.2rem 4.8rem;
    font-size: 1.8rem;
  }
}
.links__video-thumb p:not(:last-child) {
  margin-bottom: 1.6rem;
}
.links__video-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.glightbox-container .goverlay,
.glightbox-mobile .glightbox-container .goverlay {
  background: rgba(0, 0, 0, 0.7215686275);
}

.glightbox-container .ginner-container.gvideo-container {
  padding: 20px;
}

/* ========================================
   Join Page
   ======================================== */
.join__intro {
  padding: 4.8rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .join__intro {
    padding: 6.4rem 0;
  }
}
.join__intro-content {
  margin: 0 auto;
}
.join__intro-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .join__intro-text {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
  }
}
.join__intro-signature {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-top: 3.2rem;
}
@media (min-width: 768px) {
  .join__intro-signature {
    font-size: 1.8rem;
    margin-top: 4.8rem;
  }
}
.join__form-section {
  padding: 4.8rem 0 6.4rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .join__form-section {
    padding: 0 0 6.4rem;
  }
}

/* ========================================
   Privacy Page
   ======================================== */
.privacy__content {
  padding: 4.8rem 0 6.4rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .privacy__content {
    padding: 6.4rem 0;
  }
}
.privacy__intro {
  margin: 0 auto 6.4rem;
}
@media (min-width: 768px) {
  .privacy__intro {
    margin-bottom: 9.6rem;
  }
}
.privacy__intro-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
@media (min-width: 768px) {
  .privacy__intro-text {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.privacy__sections {
  margin: 0 auto;
}
.privacy__section {
  margin-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .privacy__section {
    margin-bottom: 6.4rem;
  }
}
.privacy__section:last-child {
  margin-bottom: 0;
}
.privacy__section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .privacy__section-title {
    font-size: 2rem;
    margin-bottom: 3.2rem;
  }
}
.privacy__section-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
@media (min-width: 768px) {
  .privacy__section-text {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.privacy__contact {
  margin: 6.4rem auto 0;
  padding-top: 4.8rem;
  border-top: 1px solid #BFBFBF;
}
@media (min-width: 768px) {
  .privacy__contact {
    margin-top: 9.6rem;
    padding-top: 6.4rem;
  }
}
.privacy__contact-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .privacy__contact-title {
    font-size: 2rem;
    margin-bottom: 3.2rem;
  }
}
.privacy__contact-content {
  padding-left: 2.4rem;
}
@media (min-width: 768px) {
  .privacy__contact-content {
    padding-left: 3.2rem;
  }
}
.privacy__contact-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
@media (min-width: 768px) {
  .privacy__contact-text {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.privacy__contact-link {
  color: #01419A;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.privacy__contact-link:hover {
  opacity: 0.7;
}

/* ========================================
   Copyright Page
   ======================================== */
.copyright__content {
  padding: 4.8rem 0 6.4rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .copyright__content {
    padding: 6.4rem 0;
  }
}
.copyright__sections {
  margin: 0 auto;
}
.copyright__section {
  margin-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .copyright__section {
    margin-bottom: 6.4rem;
  }
}
.copyright__section:last-child {
  margin-bottom: 0;
}
.copyright__section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .copyright__section-title {
    font-size: 2rem;
    margin-bottom: 3.2rem;
  }
}
.copyright__section-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .copyright__section-text {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 3.2rem;
  }
}
.copyright__section-text:last-child {
  margin-bottom: 0;
}

/* ========================================
   Contact Page
   ======================================== */
.contact__intro {
  padding: 4.8rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .contact__intro {
    padding: 6.4rem 0;
  }
}
.contact__intro-content {
  max-width: 940px;
  margin: 0 auto;
}
.contact__intro-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .contact__intro-text {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
  }
}
.contact__form-section {
  padding: 4.8rem 0 6.4rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .contact__form-section {
    padding: 0 0 6.4rem;
  }
}

/* ========================================
   404 Error Page
   ======================================== */
body.error404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.error404 .main.error-404 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.error-404__content {
  flex: 1;
  padding: 4.8rem 0 6.4rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .error-404__content {
    padding: 6.4rem 0 9.6rem;
  }
}
.error-404__message {
  text-align: center;
  margin-bottom: 6.4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .error-404__message {
    margin-bottom: 9.6rem;
  }
}
.error-404__title {
  font-size: 2rem;
  font-weight: bold;
  color: #003174;
  margin-bottom: 3.2rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 2.4rem;
    margin-bottom: 4.8rem;
  }
}
.error-404__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .error-404__text {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 3.2rem;
  }
}
.error-404__text:last-child {
  margin-bottom: 0;
}
.error-404__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 4.8rem;
}
@media (min-width: 768px) {
  .error-404__links {
    flex-direction: row;
    justify-content: center;
    gap: 3.2rem;
    margin-top: 6.4rem;
  }
}
/*# sourceMappingURL=style.css.map */
