@charset "UTF-8";
.underlayer:not(.life-item) {
  display: none;
}

.top-main {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .top-main {
    margin: 0;
    padding: 0 0 2em;
  }
  article {
    padding-top: 0;
  }
  .blue-topics {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  #page_top {
    display: none !important;
  }
}
section {
  position: relative;
  margin-left: 100px;
  margin-bottom: 0;
  overflow-y: hidden;
  padding: 5em 3em;
  background-color: #E9F6FD;
}
section.clab-section {
  padding: 0;
  margin-bottom: 0;
}
section.club-topics {
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}
section p {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  section {
    margin-left: 0;
    padding: 5em 3em;
  }
  .breadcrumb {
    display: none;
  }
  section.clab-section__detail .topics-box {
    width: auto;
  }
}
/* ---------------------▼club--------------------- */
section.main-bg {
  position: relative;
  margin-left: 0;
  margin-bottom: 0;
  background-image: url("../images/club/top.jpg");
  background-color: rgba(35, 24, 21, 0.7);
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
}

section.main-bg .main-box {
  padding-top: 12em;
  color: #fff;
}

section.main-bg .main-box h1 {
  padding: 0.8em 3em;
  line-height: 0;
  font-size: 70px;
  display: inline-block;
  border: 1px solid #fff;
}

section.main-bg .main-box p {
  text-align: center;
  font-size: 20px;
  line-height: 45px;
  margin: 4em auto 0;
}

@media screen and (max-width: 768px) {
  section.main-bg {
    height: 40vh;
    margin: 0;
    background-position: bottom;
    background-size: cover;
  }
  section.main-bg .main-box {
    padding-top: 8em;
  }
  section.main-bg .main-box h1 {
    padding: 1em;
    font-size: 30px;
  }
  section.main-bg .main-box p {
    font-size: 16px;
    line-height: 24px;
    margin: 3em auto 0;
  }
}
.blue-topics a {
  text-align: left;
}

/*タブのスタイル*/
.tab_item {
  width: 50%;
  height: 80px;
  background-color: #C8DBE5;
  line-height: 80px;
  font-size: 28px;
  color: #98B2C0;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .tab_item {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

/*ラジオボタンを全て消す*/
input[name=tab_item],
input[name=modalPop],
input[name=pop] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#athletic:checked ~ #athletic-inside,
#culture:checked ~ #culture-inside {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tab-select input:checked + .item1,
#athletic-inside { /*運動部*/
  background-color: #036EB7;
  color: #fff;
}

.tab-select input:checked + .item2,
#culture-inside { /*文化部*/
  background-color: #4D4398;
  color: #fff;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 0;
  clear: both;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 2.5em 0;
}
@media screen and (max-width: 768px) {
  .tab_content {
    padding: 20px 0;
  }
}

.tab-matter {
  width: calc(100% - 220px);
  max-width: 1560px;
  margin: 0 auto;
  padding: 30px 60px 60px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 1129px) {
  .tab-matter {
    width: calc(100% - 80px);
    padding: 30px 20px 60px;
  }
}
@media screen and (max-width: 768px) {
  .tab-matter {
    width: 80%;
    padding: 20px;
  }
}

.clab-section__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 60px;
}
@media screen and (max-width: 1129px) {
  .clab-section__list {
    gap: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  .clab-section__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}

.clab-section__item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .clab-section__item {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.clab-section__item:before { /* 灰色背景 */
  content: "";
  position: absolute;
  top: 0;
  right: -6%;
  bottom: 0;
  margin: auto 0;
  width: 80%;
  height: 90%;
  z-index: 0;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .clab-section__item:before {
    right: 0;
  }
}
.clab-section__item:hover .club-section__title:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left center 0;
          transform-origin: left center 0;
}

/* ==== 部活名 ==== */
.club-section__title {
  position: relative;
  margin-bottom: 5%;
  font-size: 24px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-left: 1.2em;
}
.club-section__title:before, .club-section__title:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
  width: 0.75em;
  height: 0.75em;
}
.club-section__title:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transform-origin: right center 0;
          transform-origin: right center 0;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 1, 0, 1);
  transition: -webkit-transform 1s cubic-bezier(0, 1, 0, 1);
  transition: transform 1s cubic-bezier(0, 1, 0, 1);
  transition: transform 1s cubic-bezier(0, 1, 0, 1), -webkit-transform 1s cubic-bezier(0, 1, 0, 1);
}
.club-section__title .small {
  font-size: 16px;
}
.club-section__title .sm2 {
  font-size: 16px;
}

#athletic-inside .club-section__title {
  color: #036EB7;
}
#athletic-inside .club-section__title:before, #athletic-inside .club-section__title:after {
  border: 2px solid #036EB7;
}
#athletic-inside .club-section__title:after {
  background-color: #036EB7;
}

#culture-inside .club-section__title {
  color: #4D4398;
}
#culture-inside .club-section__title:before, #culture-inside .club-section__title:after {
  border: 2px solid #4D4398;
}
#culture-inside .club-section__title:after {
  border: 2px solid #4D4398;
  background-color: #4D4398;
}

/* ==== 写真+矢印 ==== */
.modal1 label.link .details {
  position: relative;
}
.modal1 label.link .details img {
  width: 100%;
  max-width: 480px;
  max-height: 350px;
}
.modal1 label.link .details .arrow {
  position: absolute;
  border-radius: 50%;
  bottom: 10px;
  right: 10px;
  width: 3em;
  height: 3em;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal1 label.link .details .arrow i {
  position: absolute;
  color: #fff;
  left: 13px;
  top: 24px;
  width: 22px;
  height: 1px;
  background-color: currentColor;
}
.modal1 label.link .details .arrow i:after {
  content: "";
  position: absolute;
  right: 2px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: solid 1px currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal1 label.link:hover .arrow i {
  color: #036EB7;
}

#culture-inside .modal1 label.link:hover .arrow i {
  color: #4D4398;
}

#athletic-inside .modal1 label.link .arrow {
  background-color: #036EB7;
}

#culture-inside .modal1 label.link .arrow {
  background-color: #4D4398;
}

#athletic-inside .modal1 label.link:hover .arrow,
#culture-inside .modal1 label.link:hover .arrow {
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*============= ポップアップ ============ */
.modal1 > input { /* ラジオボックス非表示 */
  -webkit-appearance: none;
  pointer-events: none;
}

.modal1 > input:nth-child(1) + label {
  cursor: pointer;
}

.modal1 :nth-child(1) + label ~ label {
  display: none;
}

.modal1 > input:nth-child(1):checked + label + input:nth-child(3) + label {
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.8);
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

.modalPopup3::-webkit-scrollbar {
  width: 5px;
}

.modalPopup3::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

.modalPopup3::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
}

.modalPopup3 {
  display: none;
  width: 90vw;
  height: 80%;
  margin: 5.75em auto 0;
  overflow-y: scroll;
  background-color: #036EB7;
  -webkit-font-feature-settings: normal !important;
          font-feature-settings: normal !important;
}
@media screen and (max-width: 540px) {
  .modalPopup3 {
    margin: 3em auto 0;
  }
}

.popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1129px) {
  .popup {
    display: block;
  }
}

/* 文化部 */
#culture-inside .modalPopup3 {
  background-color: #4D4398;
}

.clab-section__imgWrap {
  margin-top: 6.3em;
  display: table-cell;
  width: 50%;
}
@media screen and (max-width: 1129px) {
  .clab-section__imgWrap {
    margin: 0 auto;
    width: 100%;
  }
}
.clab-section__imgWrap .clab-section__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1129px) {
  .clab-section__imgWrap .clab-section__img {
    height: 520px;
  }
}
@media screen and (max-width: 540px) {
  .clab-section__imgWrap .clab-section__img {
    display: block;
    height: 100%;
  }
}

@media screen and (max-width: 1129px) {
  .clab-section__imgWrap,
  .clab-section__detail {
    display: block;
  }
}
.clab-section__detail {
  display: table-cell;
  width: 50%;
  padding-right: 2em;
  color: #fff;
}
@media screen and (max-width: 540px) {
  .clab-section__detail {
    display: block;
    width: calc(100% - 32px);
  }
}

.clab-section__name {
  text-align: center;
  font-weight: bold;
  margin: 1em auto;
  line-height: 50px;
  font-size: 40px;
  border-bottom: 1px solid #fff;
}
.clab-section__name .small {
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 540px) {
  .clab-section__name {
    font-size: 24px;
  }
  .clab-section__name .small {
    display: inline-block;
    font-size: 16px;
  }
}

.modalPopup3 p {
  width: 100%;
  text-align: justify;
  font-size: 16px;
  line-height: 1.6em;
}

.clab-section__wrap {
  background-color: #fff;
  margin: 2em auto;
  padding: 16px;
  border-radius: 10px;
}

.clab-section__text {
  font-size: 16px;
  line-height: 20px;
}

.clab-section__wrapList {
  margin: 0;
}

.clab-section__wrapItem {
  color: #036EB7;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-font-feature-settings: normal !important;
          font-feature-settings: normal !important;
}
@media screen and (max-width: 540px) {
  .clab-section__wrapItem {
    display: block;
  }
}
.clab-section__wrapItem.--block {
  display: block;
}
.clab-section__wrapItem.--block span {
  width: 100%;
}
.clab-section__wrapItem:nth-child(n+2) {
  margin-top: 20px;
}
.clab-section__wrapItem.--block02 {
  display: block;
  margin-top: 30px;
}
.clab-section__wrapItem span {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 140px;
}
@media screen and (max-width: 1129px) {
  .clab-section__wrapItem span {
    width: 150px;
  }
}
@media screen and (max-width: 540px) {
  .clab-section__wrapItem span {
    width: 110px;
  }
}
.clab-section__wrapItem span:before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 8px;
  height: 8px;
  background-color: #036EB7;
}
.clab-section__wrapItem span:after {
  content: "";
  display: inline-block;
  margin: 0 10px;
  width: 8px;
  height: 1px;
  vertical-align: top;
  background-color: #036EB7;
}
.clab-section__wrapItem span.small {
  font-weight: normal;
  font-size: 14px;
  width: 100%;
}
.clab-section__wrapItem span.small:before, .clab-section__wrapItem span.small:after {
  display: none !important;
}
.clab-section__wrapItem p {
  font-size: 16px;
}
@media screen and (max-width: 540px) {
  .clab-section__wrapItem p {
    line-height: 1.5;
  }
}
.clab-section__wrapItem p.clab-section__message {
  width: 100%;
}

#culture-inside .clab-section__wrapItem {
  color: #4D4398;
}
#culture-inside .clab-section__wrapItem:before {
  background-color: #4D4398;
}
#culture-inside .clab-section__wrapItem span:before {
  background-color: #4D4398;
}

.clab-result__list {
  display: block;
  margin-top: 10px;
}
.clab-result__list.--junior, .clab-result__list.--high {
  position: relative;
}
.clab-result__list.--junior:before, .clab-result__list.--high:before {
  display: block;
  font-size: 16px;
}
.clab-result__list.--junior:before {
  content: "【中学】";
}
.clab-result__list.--high {
  margin-top: 16px;
}
.clab-result__list.--high:before {
  content: "【高校】";
}

.clab-result__item {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.clab-result__item:nth-child(n+2) {
  margin-top: 10px;
}
.clab-result__item:before {
  display: none;
}

.clab-result__text {
  font-weight: 400;
  margin-top: 20px;
}

.info-center {
  margin: 0 auto 3em;
  text-align: center;
}

.information {
  width: calc((100% - 10px) / 2);
  vertical-align: top;
  display: inline-block;
}

.information p.center,
.state p.center {
  text-align: center;
  color: #fff;
  margin-bottom: 1em;
}

.information p.center span,
.state p.center span {
  font-size: 18px;
  display: block;
  width: 140px;
  margin: 0 auto 1em;
}
@media screen and (max-width: 540px) {
  .information p.center span,
  .state p.center span {
    font-size: 16px;
  }
}

.information:first-child span::before,
.information:last-child span::before,
.state p.center span::before {
  content: "";
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.information:first-child span::before {
  height: 20px;
  width: 24px;
  background-image: url("../images/club/tag.svg");
}

.information:last-child span::before {
  height: 16px;
  width: 26px;
  background-image: url("../images/club/mov.svg");
}

#athletic-inside li.clab-section__item:nth-child(3) .information:first-child span::before,
#athletic-inside li.clab-section__item:nth-child(5) .information:first-child span::before,
#athletic-inside li.clab-section__item:nth-child(6) .information:first-child span::before,
#athletic-inside li.clab-section__item:nth-child(12) .information:first-child span::before,
#culture-inside li.clab-section__item:nth-child(1) .information:first-child span::before,
#culture-inside li.clab-section__item:nth-child(10) .information:first-child span::before { /*youtube無し*/
  height: 20px;
  width: 24px;
  background-image: url("../images/club/tag.svg");
}

.information a {
  text-decoration: underline;
  display: inline-block;
  font-size: 16px;
}

.state {
  margin: 3em 0;
}

.state p.center span {
  margin: 0 auto;
  width: 150px;
}

.state p.center span::before {
  height: 20px;
  width: 23px;
  margin-bottom: -1px;
  background-image: url("../images/club/photo.svg");
}

.state ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.state ul li {
  width: calc((100% - 20px) / 2);
  display: table-cell;
}

.state ul li:nth-of-type(n+2) + li:nth-of-type(n+3) {
  margin-top: 1em;
}

.state img {
  width: 100%;
  max-width: 600px;
}

.close-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}

.position {
  position: absolute;
  bottom: 20px;
  right: 70px;
  cursor: pointer;
}

.close {
  position: relative;
  margin: 0 auto;
}
.close:before, .close:after {
  content: "";
}
.close:before {
  -webkit-mask: url("../images/common/icon-close.svg") no-repeat center/contain;
          mask: url("../images/common/icon-close.svg") no-repeat center/contain;
  background-color: #fff;
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
}
.close:after {
  content: "close";
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 540px) {
  .close:after {
    font-size: 14px;
  }
}

@media screen and (max-width: 1129px) {
  .popup {
    display: block;
  }
  .modalPopup3 {
    height: 80%;
    top: 5em;
    left: 0;
    right: 0;
  }
  .clab-section__detail {
    margin: 0 auto;
    padding: 0;
  }
  .modalPopup3 h2 {
    text-align: center;
  }
  .position {
    position: absolute;
    bottom: 2%;
  }
}
@media screen and (max-width: 768px) {
  .modal1 label.link .details img {
    width: 100%;
    max-width: 600px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .modal1 label.link .arrow {
    right: 20px;
  }
  .position {
    right: 30px;
  }
  .position p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media screen and (max-width: 540px) {
  section.main-bg .main-box {
    padding-top: 6em;
  }
  section.main-bg .main-box p {
    margin: 2em auto 0;
  }
  .modal1 label.link .arrow {
    right: 10px;
  }
  .modalPopup3 {
    height: 75%;
  }
  .modalPopup3 p.center span {
    font-size: 16px;
  }
  .info-center {
    margin: 0;
  }
  .information {
    width: 100%;
    display: block;
    margin: 0 auto 3em;
  }
  .information p.center,
  .state p.center,
  .information p.center span,
  .state p.center span {
    margin: 0 auto 0.5em;
  }
  .information a {
    font-size: 16px;
  }
  .state ul {
    display: block;
  }
  .state ul li {
    width: 100%;
    display: block;
  }
  .state ul li + li {
    margin-top: 1em;
  }
}