@charset 'UTF-8';

.headingArchivePages {
  display: none;
}
.breadcrumb {
  display:none;
}
#section-0,
#section-1 {
  padding-block: 0;
}
#section-2 {
  padding-block: 3rem;
}
#section-0 .container,
#section-1 .container {
  width:100%;
}
#section-0 .breadcrumb {
  display:block;
  background-color:hsla(0,0%,76%,.2);
}
@media screen and (max-width: 900.9px) {
  #section-0 .breadcrumb {
    display: none;
  }
}
.headingCorporate {
  padding-bottom: 20px;
  background: url(/files/user/images/corporate/sports/rikujou/mv_rikujyo.jpg) no-repeat right bottom;
  background-size: cover;
  text-align: right;
  align-items:flex-end;
  justify-content: flex-end;
}
@media print, screen and (min-width: 901px) {
    .headingCorporate {
        height: 50vh !important;
    }
}
@media screen and (max-width: 900.9px) {
    .headingCorporate {
        height: 27vw !important;
    }
}
.headingCorporate:before {
  background: url(/files/user/images/corporate/sports/rikujou/img_rikujou_headingCorporate.png) no-repeat left 38% bottom -5vw !important;
  background-size: 130% !important;
}
.headingCorporate__h1 {
  padding-top:0;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 1.0);
}
@media screen and (max-width: 900.9px){
  .headingCorporate__h1 {
    align-self: self-end !important;
  }
}
@media screen and (max-width: 450px) {
  .headingCorporate__h1 {
    font-size: 6vw !important;
  }
}

/***  選手紹介  ***/
.cards {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  row-gap: 2rem;
  column-gap: 2rem;
  width: 100%;
  margin-inline: auto;
}
.card {
  text-align: center;
}
.card ruby {
  font-size: 1.4rem;
  font-weight: 900;
}
@media screen and (max-width: 450px) {
  .card ruby {
    font-size: 1.1rem;
  }
}
.card .modal ruby {
  font-size: 1.5rem;
}
.card rt {
  margin-bottom: 8px;
  font-size: 75%;
  font-style: italic;
  color: #1e389a;
}

@media screen and (max-width: 900.9px) {
  .cards {
    grid-template-columns:repeat(2, 1fr);
  }
}

/* カード内の画像 */
.card img {
  width: 100%;
  border-radius: 8px;
}

.profile_wrap {
  display: grid;
  grid-template-columns: 35% 60%;
  column-gap: 3rem;
}
.profile_wrap.staff {
  align-items: center;
}
.profile_img img {
  border: 2px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.profile_text .title {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 8px;
  line-height: 1;
  border-bottom: solid 2px;
}
.profile_text .title:after {
  content: "";
  display: inline-block;
  width: 31px;
  height: 50px;
  background: url(/files/user/images/corporate/sports/rikujou/ico_rikujou_runner.png) no-repeat left top;
  position: absolute;
  bottom: -2px;
  right: 0;
}
.profile_text .title em {
  margin: 0 1.5em 0 0;
  font-style: normal;
  font-weight: 900;
}
.profile_text .details {
  text-align: left;
}
.profile_text dl {
  display: grid;
  padding: 20px;
  line-height: 1.8;
  grid-template-columns: 10em 1fr;
  border-bottom: solid 1px #ddd;
}
.profile_text dt {
  width: 10em;
  color: #1e389a;
}

label.modal-button {
    display: inline-block;
    cursor: pointer;
}
.modal-button img {
    margin-bottom: 8px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
label.modal-button:hover img {
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.modal-button em {
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 450px) {
  .modal-button em {
    font-size: 86%;
  }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: scroll;
}

.modal-checkbox:checked ~ .modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
} /* チェックボックスは非表示 */

.modal-checkbox {
  display: none;
} /* 開閉ボタンスタイル */

.modal-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.close-btn-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.close-btn {
    width: 40px;
    height: 40px;
    background: rgba(30, 56, 154, 1.0);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-btn:hover {
    background: rgba(1, 33, 153, 1.0);
    transform: scale(1.1);
}

.fullscreen-content {
    flex: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}
.fullscreen-content p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .profile_wrap {
        display: block;
    }
    .profile_img {
      width: 64%;
      margin: 0 auto;
    }
    .profile_text {
      margin: 1.5rem 0 0;
    }
    .profile_text .title{
      margin: 0 0 1.5rem;
    }
    .profile_text dl {
      grid-template-columns: 8em 1fr;
    }
    .fullscreen-content {
        padding: 40px 20px;
    }
    .fullscreen-content p {
        font-size: 1rem;
    }
}

/***  ギャラリー  ***/
.movie button { 
  cursor:pointer; 
  transition:all 0.3s ease;
}
.movie button:hover { opacity:0.65; }
.movie button img { 
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.modal-video-close-btn {
  width: 40px;
  height: 40px;
  background: rgba(30, 56, 154, 1.0);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-video-close-btn:before,
.modal-video-close-btn:after {
  width: 60%;
  left: 20%;
  margin-top: 0;
}
.modal-video-close-btn:hover {
    background: rgba(1, 33, 153, 1.0);
    transform: scale(1.1);
}