@charset "UTF-8";
/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
  left: 0;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #B87595;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: calc(50% - 50px); /*50%から円の半径を引いた値*/
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a, #g-nav li p {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: left;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

nav {
  text-align: center;
}

/*ナビゲーションを横並びに*/
nav ul {
  list-style: none;
}

/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  text-decoration: none;
  color: #999;
  transition: all 0.3s;
}

nav ul li li a {
  padding: 10px 8px;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 4;
  /*形状を指定*/
  background: #9AD5E2;
  width: 180px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

nav li.has-child ul li:last-child > a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #90b9c5;
}

/*==3階層目*/
/*3階層目の位置*/
nav li.has-child ul ul {
  top: 0;
  left: 182px;
  background: #5B698B;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active {
  background: #7E87A0;
}

html {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}
a:hover {
  opacity: 0.8;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  background-color: #FFF;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}
.header__wrap--right {
  display: flex;
  flex-direction: column;
}
.header__wrap--pc {
  display: none;
}
.header__wrap--sp {
  display: block;
}
.header__logo {
  display: block;
  width: 120px;
}
.header__logo img {
  width: 100%;
}
.header__Link li {
  transition: 0.3s;
}
.header__Link li:hover {
  color: #B87595;
}
.header__Link a {
  text-decoration: none;
  color: initial;
}
.header__Link a:hover {
  color: #B87595;
}
.header__snsLink {
  display: flex;
  justify-content: end;
  -moz-column-gap: 10px;
       column-gap: 10px;
  list-style-type: none;
  padding-bottom: 6px;
}
.header__snsLink a {
  display: block;
  width: 40px;
  height: 40px;
}
.header__snsLink a img {
  width: 100%;
}
.header__Link {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  list-style-type: none;
  font-size: 1.5rem;
}

.footer {
  padding: 48px 0;
  background-color: #5B698B;
  color: white;
  text-align: center;
}
.footer__title {
  padding-bottom: 24px;
}
.footer__sitemap {
  display: none;
}
.footer__snsLink {
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: center;
  padding: 0 5% 36px;
}
.footer__snsLink li {
  list-style-type: none;
}
.footer__snsLink li a {
  display: block;
  max-width: 40px;
}
.footer__snsLink li a img {
  width: 100%;
}
.footer__link {
  padding-bottom: 48px;
}
.footer__link li {
  padding-bottom: 12px;
}

.br::before {
  content: "\a";
  white-space: pre;
}

.spbr::before {
  content: "\a";
  white-space: pre;
}

.sptbbr::before {
  content: "\a";
  white-space: pre;
}

.br::before {
  content: "\a";
  white-space: pre;
}

.spbr::before {
  content: "\a";
  white-space: pre;
}

.sptbbr::before {
  content: "\a";
  white-space: pre;
}

#follow-icon {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 10px;
}
#follow-icon a {
  display: block;
  padding: 20px 40px;
  border-radius: 40px;
  color: #fff;
  background-color: #B2A687;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .spbr::before {
    content: "";
    white-space: unset;
  }
  .tbpcbr::before {
    content: "\a";
    white-space: pre;
  }
}
@media screen and (min-width: 1025px) {
  .sptbbr::before {
    content: "";
    white-space: unset;
  }
  .pcbr::before {
    content: "\a";
    white-space: pre;
  }
  .header__wrap--pc {
    display: block;
  }
  .header__wrap--sp {
    display: none;
  }
  .header__Link li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 4;
    /*子要素を横並びに*/
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*形状を指定*/
    background: rgba(255, 255, 255, 0.7254901961);
    width: 100vw;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all 0.3s;
  }
  .header__Link li.has-child ul li {
    width: 15%;
    list-style-type: none;
  }
  .header__Link li.has-child ul li a {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: block;
    color: #000;
    box-sizing: border-box;
    transition: 0.6s;
    text-align: center;
  }
  .header__Link li.has-child ul li a:hover, .header__Link li.has-child ul li a:active {
    background-color: #B87595;
    color: #FFF;
  }
  .header__Link li.has-child:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  .header__Link li img {
    max-width: 100%;
    height: auto;
    transition: all 0.5s;
    vertical-align: bottom;
  }
  .header__Link li dt {
    overflow: hidden;
    margin: 0 0 10px 0;
  }
  .footer__title {
    display: none;
  }
  .footer__sitemap {
    display: flex;
    justify-content: space-between;
    padding: 0 24px 40px;
    max-width: 1024px;
    margin: 0 auto;
  }
  .footer__sitemap dl {
    width: 20%;
  }
  .footer__sitemap dt {
    border-bottom: 1px solid #fff;
    margin-bottom: 16px;
    padding-bottom: 4px;
    text-align: left;
  }
  .footer__sitemap dd {
    padding-bottom: 12px;
    text-align: left;
    font-size: 1.4rem;
  }
  .footer__sitemap dd a:hover {
    color: #B87595;
  }
  .footer__link {
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    -moz-column-gap: 18px;
         column-gap: 18px;
    margin: 0 auto;
    padding-bottom: 24px;
    list-style-type: none;
  }
}
.partnership__contact, .join__us, .schedule__application, .schedule__detail, .achievement__report a, .activity__report a, .activity__award--link, .activity__main--link--club, .activity__main--link--guest, .activity__main--link--event {
  display: block;
  margin-bottom: 24px;
  padding: 12px 0;
  border-radius: 36px;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.partnership__contact:hover, .join__us:hover, .schedule__application:hover, .schedule__detail:hover, .achievement__report a:hover, .activity__report a:hover, .activity__award--link:hover, .activity__main--link--club:hover, .activity__main--link--guest:hover, .activity__main--link--event:hover {
  opacity: 0.9;
  transform: translateY(-6px);
}

h2 {
  font-size: 2rem;
  font-weight: 400;
}

.kv {
  position: relative;
  height: 80vh;
  max-height: 700px;
  background-image: url("../../img/top/kv_sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.kv__wrap {
  padding: 40px 20px;
  max-width: 1024px;
  margin: 0 auto;
}
.kv__wrap h2 {
  margin-bottom: 32px;
  color: #FFF;
  font-size: 4.8rem;
  font-weight: 400;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  line-height: 1.5;
}
.kv__wrap--description {
  color: #FFF;
  font-size: 2.4rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  line-height: 1.5;
}

.vision {
  padding: 40px 24px 48px;
  background-image: url("../../img/top/vision_bg.png");
  background-size: 150%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.vision__wrap {
  max-width: 1024px;
  margin: 0 auto;
  color: #4A5F87;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.vision__wrap h2 {
  margin-bottom: 30px;
}
.vision__wrap h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "VISION";
}
.vision__wrap p {
  line-height: 2.5;
}

.activity__main {
  max-width: 1024px;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0 24px;
}
.activity__main h2 {
  margin-bottom: 24px;
  color: #B87595;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.activity__main h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "ACTIVITIES";
}
.activity__main--icon--sp, .activity__main--icon--pc {
  display: flex;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding-bottom: 24px;
}
.activity__main--icon--pc {
  display: none;
}
.activity__main--link--event {
  margin-bottom: 18px;
  border: 2px solid #B87595;
  background-color: #B87595;
  color: #FFF;
}
.activity__main--link--guest {
  margin-bottom: 18px;
  border: 2px solid #B87595;
  background-color: #FFF;
  color: #B87595;
}
.activity__main--link--club {
  margin-bottom: 1px;
  border: 2px solid #5B698B;
  background-color: #5B698B;
  color: #FFF;
}
.activity__event {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
}
.activity__event h3 {
  margin-bottom: 24px;
  color: #B87595;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  font-weight: 400;
}
.activity__event--recent {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.activity__event--recent--item {
  width: 100%;
  box-shadow: 5px 5px 10px #eeeeee;
}
.activity__event--recent--h3:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "UPCOMING EVENTS";
}
.activity__event--regular--h3:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "REGULAR EVENTS";
}
.activity__event--wrap {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 12px;
}
.activity__event--list {
  display: flex;
  flex-direction: column-reverse;
}
.activity__event--list--wrap {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background-color: #B87595;
  color: #FFF;
  text-align: center;
}
.activity__event--list img {
  width: 100%;
}
.activity__event--list h4 {
  order: 2;
  margin-bottom: 8px;
  font-size: 3.2rem;
  font-weight: 400;
}
.activity__event--list--description {
  order: 1;
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.activity__event--list--date {
  order: 3;
  padding: 4px;
  border: 1px solid #FFF;
}
.activity__award {
  display: flex;
  flex-direction: column-reverse;
}
.activity__award--wrap {
  background-image: url(../../img/top/background_star.jpg);
  background-size: cover;
  color: #FFF;
}
.activity__award--right {
  margin: 24px;
  background-color: #485263;
}
.activity__award--left img {
  width: 100%;
}
.activity__award h3 {
  margin-bottom: 12px;
  padding-top: 20px;
  font-weight: 400;
  text-align: center;
}
.activity__award h3:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "Cosmosgirl Award";
}
.activity__award h3:before {
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
}
.activity__award--date {
  padding: 12px;
  background-color: #B87595;
  text-align: center;
}
.activity__award--description {
  margin: 12px;
  line-height: 2;
}
.activity__award--link {
  margin: 12px;
  border: 2px solid #FFF;
  background-color: transparent;
  color: #FFF;
}
.activity__guest {
  max-width: 1024px;
  margin: 0 auto;
  padding: 58px 24px 64px;
}
.activity__guest h3 {
  margin-bottom: 12px;
  color: #B87595;
  font-size: 3rem;
  font-weight: 400;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.activity__guest--wrap {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  align-items: center;
}
.activity__guest--list {
  position: relative;
  width: 300px;
  height: 300px;
  background-size: 100%;
}
.activity__guest--list--detail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
  color: #424C5E;
  background-color: rgba(255, 255, 255, 0.7019607843);
}
.activity__guest--list--detail h4 {
  padding-bottom: 8px;
}
.activity__guest--list--position {
  font-size: 1.4rem;
  padding-left: 8px;
}
.activity__report {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 60px;
}
.activity__report a {
  border: 2px solid #B87595;
  background-color: #B87595;
  color: #FFF;
}
.activity__list h3 {
  margin-bottom: 12px;
  color: #B87595;
  font-size: 3rem;
  font-weight: 400;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.activity__list--wrap {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  padding: 0 24px 48px;
}
.activity__list--item {
  display: flex;
  flex-direction: row-reverse;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.activity__list--item dt {
  display: flex;
  align-items: flex-end;
  width: 60%;
  padding: 14px;
  color: #5B698B;
  font-size: 1.6rem;
}
.activity__list--item dd {
  width: 40%;
}
.activity__list--item dd img {
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}

.club {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #9AD5E2;
}
.club__wrap {
  max-width: 1024px;
  margin: 0 auto;
}
.club h2 {
  max-width: 1024px;
  margin: 0 auto;
  margin-bottom: 24px;
  padding: 0 24px;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.club h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "CLUB";
}
.club__list {
  display: grid;
  justify-content: center;
  grid-template-columns: 170px 170px;
  gap: 10px;
  color: #fff;
}
.club__list--item {
  width: 100%;
  height: 180px;
  display: block;
  justify-content: center;
  align-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  transition: 0.3s;
}
.club__list--item span {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.club__list--item:hover {
  scale: 1.05;
}

.achievement__img {
  width: 100%;
}
.achievement__list {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  padding: 48px 24px;
}
.achievement__list--item {
  display: flex;
  flex-direction: row-reverse;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.achievement__list--item dt {
  display: flex;
  align-items: flex-end;
  width: 60%;
  padding: 14px;
  color: #5B698B;
  font-size: 1.6rem;
}
.achievement__list--item dd {
  width: 40%;
}
.achievement__list--item dd img {
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.achievement__report {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 60px;
}
.achievement__report a {
  border: 2px solid #B87595;
  background-color: #B87595;
  color: #FFF;
  width: 100%;
}

.members {
  padding-bottom: 48px;
}
.members h2 {
  max-width: 1024px;
  margin: 0 auto;
  margin-bottom: 24px;
  padding: 0 24px;
  color: #B87595;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.members h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "MEMBERS";
}
.members__image {
  width: 100%;
  margin-bottom: 20px;
}
.members__article {
  display: flex;
  flex-direction: column;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}
.members__article iframe {
  width: 100% !important;
}

.schedule {
  padding: 48px 24px;
  background-color: #9AD5E2;
}
.schedule h2 {
  margin-bottom: 24px;
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.schedule h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "SCHEDULE";
}
.schedule__img {
  width: 100%;
  margin-bottom: 20px;
}
.schedule__anchor {
  display: block;
  transition: 0.5s;
}
.schedule__anchor:hover {
  opacity: 1;
  transform: translateY(-10px);
}
.schedule__detail {
  border: 2px solid #FFF;
  background-color: #FFF;
  color: #B87595;
}
.schedule__application {
  border: 2px solid #FFF;
  background-color: #FFF;
  color: #B87595;
}

.join {
  display: flex;
  flex-direction: column;
  margin: 80px 0;
}
.join h2 {
  margin-bottom: 24px;
  color: #B87595;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.join h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "JOIN US!";
}
.join__left {
  padding: 0 24px;
}
.join__us {
  border: 2px solid #B87595;
  background-color: #B87595;
  color: #FFF;
}
.join__experience {
  display: block;
  width: 100%;
  padding: 32px 0;
  background-color: #B87595;
  color: #FFF;
  text-align: center;
  text-decoration: none;
}
.join__contact {
  display: block;
  width: 100%;
  padding: 32px 0;
  background-color: #5B698B;
  color: #FFF;
  text-align: center;
  text-decoration: none;
}

.question {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}
.question h2 {
  margin-bottom: 24px;
  color: #B87595;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.question h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "QUESTION";
}
.question__list--item {
  margin-bottom: 24px;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.question__list--item dt {
  padding: 16px;
  border-radius: 5px 5px 0 0;
  background-color: #D9D9D9;
}
.question__list--item dd {
  padding: 16px;
}
.question__list--item dd a {
  text-decoration: underline;
}

.partnership {
  padding: 48px 24px;
  background-image: url(../../img/top/background_star.jpg);
  background-size: cover;
}
.partnership__wrap {
  max-width: 1024px;
  margin: 0 auto;
}
.partnership h2 {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6784313725);
}
.partnership h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 4.8rem;
  content: "PARTNERSHIP";
}
.partnership__list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.partnership__list a {
  width: 180px;
  color: #fff;
  text-align: center;
}
.partnership__list img {
  width: 100%;
}
.partnership__list .partner__name {
  padding-top: 10px;
  padding-bottom: 15px;
}
.partnership__logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}
.partnership__logo a {
  width: 40%;
}
.partnership__logo a img {
  width: 100%;
}
.partnership__link {
  text-align: right;
  display: block;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
}
.partnership .slick-slide {
  margin-right: 30px !important;
  position: relative;
}
.partnership .next-arrow {
  position: absolute;
  border-left: 4px solid #999;
  border-top: 4px solid #999;
  padding: 10px;
  width: 50px;
  height: 50px;
  transform: rotate(135deg);
  color: #999;
  text-decoration: none;
  z-index: 1;
  top: 30%;
  right: -10px;
}
.partnership .prev-arrow {
  position: absolute;
  border-left: 4px solid #999;
  border-top: 4px solid #999;
  padding: 10px;
  width: 50px;
  height: 50px;
  transform: rotate(-45deg);
  color: #999;
  text-decoration: none;
  z-index: 1;
  top: 30%;
  left: -10px;
}
.partnership__contact {
  display: block;
  padding: 12px;
  border: 2px solid #FFF;
  background-color: #FFF;
  color: #5B698B;
  font-weight: 400;
}

@media screen and (min-width: 580px) {
  .club__list {
    display: grid;
    grid-template-columns: 180px 180px 180px;
    gap: 10px;
  }
  .club__list--item {
    width: 100%;
    height: 180px;
  }
}
@media screen and (min-width: 768px) {
  .kv {
    background-image: url("../../img/top/kv_pc.jpg");
    background-position: right;
  }
  .kv__wrap h2 {
    font-size: 8rem;
  }
  .vision {
    padding: 80px 0 120px;
    background-size: 1024px;
    background-position: bottom right;
    background-repeat: no-repeat;
  }
  .vision__wrap {
    padding: 0 24px;
  }
  .activity__main {
    display: flex;
    margin-top: 80px;
  }
  .activity__main--left {
    width: 65%;
  }
  .activity__main--right {
    width: 35%;
    text-align: center;
  }
  .activity__main--link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .activity__main--link a {
    width: 48%;
  }
  .activity__main--icon--sp {
    display: none;
  }
  .activity__main--icon--pc {
    display: block;
  }
  .activity__event--wrap {
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .activity__award {
    flex-direction: row-reverse;
    max-width: 980px;
    margin: 0 auto;
  }
  .activity__award--right {
    width: 60%;
  }
  .activity__award--left {
    width: 40%;
  }
  .activity__award--left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .activity__guest--wrap {
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .activity__report {
    margin-bottom: 100px;
  }
  .activity__list {
    max-width: 1024px;
    margin: 0 auto;
  }
  .activity__list--wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .activity__list--wrap a {
    width: 48%;
  }
  .activity__list--item {
    width: 100%;
    height: 100%;
  }
  .club__list {
    display: grid;
    grid-template-columns: 230px 230px 230px;
    gap: 20px;
  }
  .club__list--item {
    width: 100%;
    height: 230px;
  }
  .achievement a {
    width: 48%;
  }
  .achievement__list {
    max-width: 1024px;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .achievement__list--item {
    width: 100%;
    height: 100%;
  }
  .achievement__report a {
    width: 100%;
  }
  .members h2 {
    margin-bottom: 24px;
  }
  .members__image {
    max-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 0% 27%;
       object-position: 0% 27%;
  }
  .members__article {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .members__article iframe {
    width: 48% !important;
  }
  .schedule__wrap {
    max-width: 783px;
    margin: 0 auto;
  }
  .schedule__banner {
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 30px;
  }
  .schedule__banner a {
    width: 100%;
  }
  .schedule__banner--item {
    width: 100%;
  }
  .join {
    flex-direction: row;
    margin: 0;
  }
  .join__left {
    width: 50%;
    padding: 200px 48px;
  }
  .join__right {
    width: 50%;
  }
  .join__right a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
  }
  .question {
    padding: 48px 24px 60px;
  }
  .partnership__logo {
    justify-content: space-between;
  }
  .partnership__logo a {
    width: 14%;
  }
  .partnership__contact {
    max-width: 512px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .club__list {
    display: grid;
    grid-template-columns: 220px 220px 220px 220px;
  }
  .club__list--item {
    width: 100%;
    height: 220px;
  }
}/*# sourceMappingURL=front-page.css.map */