/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Yu Gothic", "游ゴシック体", sans-serif;
  color: #353535;
  background-color: #f9f9f9;
  line-height: 1.9;
}
.logo {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1px;
}
.logo a{
  text-decoration: none;
  color: #252525;
}
a {
  text-decoration: none;
  color: inherit;
}

/* 各セクションとサブタイトル*/
section h2{
  text-align: center; 
  font-size: 17px;
  padding-top: 90px;


}

.subtitle{
  text-align: center;
  padding-bottom: 40px;
  font-size: 12px;
}

.header-hero-wrapper {
  background: url('../images/background2.jpg') no-repeat center center / cover;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 90px 0px 180px 0px;
}
.hero-logo {
  width: 100%;
  opacity: 0.82;
}
.tagline {
  position: absolute;
  bottom: 100px;      /* 下からの距離（数値を調整可能） */
  left: 50px;        /* 左からの距離（ここで左寄せにする） */
  font-size: 10px;
  color: #29292993;
}

/* About */
.about {
  margin-bottom: 30px;
}
.description {
  max-width: 1800px; /* 長文の場合の最大幅 */
  color: #555;       /* 少し薄い色にして読みやすくする */
  padding: 0px 40px;
  font-size: 14px;
  text-align: left;
  display: inline-block;
}
.description p{
  line-height: 2.5;  /* 行間の調整 */
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  font-family: "Yu Gothic", "游ゴシック体", sans-serif;


}

.description-bottom {
  margin-top: 60px;
}
.about-gallery {/* about画像全体 */
  display: grid;
  grid-template-columns: 60% 40%; /* 左60%, 右40% */
  gap: 25px;                      /* 画像の間隔 */
  align-items: start;
  width: 100%;                    /* 横幅いっぱい */
  margin: 0;                      /* 余白なし */
  padding: 0; 
}

.img-large {/* about画像左 */
  width: 85%;
  height: auto;
  grid-column: 1;   /* 左側に配置 */
}

.img-small {/* about画像右 */
  width: 85%;
  height: auto;
  grid-column: 2;   /* 右側に配置 */
  margin-top: 230px; /* 下にずらす */
}


.arrow-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #353535;;
  text-decoration: none;
  float: right;
  margin-right: 30px;
}

.arrow-link .text {
  margin-right: 10px; /* テキストと線の間 */
}

.arrow-link .line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background:  #353535;;
  position: relative;
  margin-top: 3px;
  transition: width 0.3s ease;
}

.arrow-link .line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-40%) rotate(-45deg);
  width: 4px;   /* 矢印の長さを小さく */
  height: 4px;  /* 矢印の高さを小さく */
  border: solid  #353535;;
  border-width: 0 1px 1px 0;
}





/* Participants */
.participants {
  padding: 0px 20px;
}
.participant-list {
  display: flex;
  gap: 20px;
  /* justify-content: center;
  flex-wrap: wrap; */
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory; /* スナップあり（任意） */
  -webkit-overflow-scrolling: touch; /* iOSスムーズスクロール */
}
.participant {
  flex-shrink: 0;    /* 横幅が縮まないように */
  scroll-snap-align: start; /* スクロールスナップポイント */
  background-color: #eee;
  padding: 10px;
}
.participant .profile-img {
  height: 250px;
  margin-bottom: 10px;
}
.profile-card {
  margin: auto;
  position: relative;
  max-width: 280px;   /* 固定幅にして横スクロールを誘導 */
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 枠に収める＆はみ出し防止 */
  display: block;
}

.profile-text {
  padding: 10px;
  text-align: left;
  font-size: 12px;
  color: #222;
  position: relative;
}

.profile-text .name {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 2px;
}

.profile-text .insta-link {
  position: absolute;
  bottom: 0px;
  right: 12px;
  font-size: 25px;
}

.arrow-link2 {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  bottom: 3px;
  right: 3px;
  
}

.arrow-icon {
  display: inline-block;
  width: 7px;   /* 矢印の大きさ */
  height: 7px;
  border-top: 1px solid #333;   /* 細い線 */
  border-right: 1px solid #333;
  transform: rotate(45deg);     /* 斜めで矢印っぽくする */
  margin-left: 6px;             /* 文字と矢印の余白 */
  transition: transform 0.3s ease, margin-left 0.3s ease;
}

.insta-link:hover{
  opacity: 0.8;
}

.profile-text .insta-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* ページネーションの位置 */
.swiper-pagination {
  position: absolute;
  bottom: 30px; /* コンテナの中に表示 */
  left: 50;
  width: 100%;
  text-align: center;
  color: #666;
}
/* ドットの色（未選択） */
.swiper-pagination-bullet {
  background-color: #999; /* ← 灰色に変更（お好みで） */
  opacity: 1; /* デフォルトでは薄くなるので固定 */
}
/* アクティブなドットの色 */
.swiper-pagination-bullet-active {
  background-color: #333; /* ← 濃い灰色や黒など */
}



.view-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.view-more-button {
  position: relative;
  color: #555;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 10px 50px;
  cursor: pointer;
}

/* 横線（上下） */
.view-more-button::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 70%;
  height: 1px;
  background-color: #ccc;
  transition: width 0.4s ease;
}

.view-more-button::before {
  top: 0;
  transform: translateX(-50%);
}

.view-more-button::after {
  bottom: 0;
  transform: translateX(-50%);
}

/* プラスマーク */
.plus {
  display: inline-block;
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* ホバーアニメーション */
.view-more-button:hover::after {
  width: 90%;
}

.view-more-button:hover .plus {
  transform: rotate(45deg);
}
/* 矢印の位置調整 */
.swiper-button-prev,
.swiper-button-next {
  color: #666; /* グレー（必要に応じて #999 や #888 に調整） */
  top: -10%;    /* ← 上の方に移動（お好みで 10〜30% に調整） */
  width: 30px;
  height: 30px;
}

.swiper-button-prev {
  left: -10px; /* 右に寄せたい場合は数値を減らす */
}

.swiper-button-next {
  right: -10px;
}

/* 矢印アイコンの大きさ */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #7e7e7e;
}



/* Member Profile */
.member {
  text-align: center;
}
.profile-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.profile {
  width: 190px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.MemberProfile-img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形に切り抜く */
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.MemberPro-img:hover {
  transform:scale(0.97);
}
.MinaTop-img{
    border: 1px solid #bebebe17; 
}

/* PC/横並び用 */
.MemberProfile-img {
  width: 190px;   /* 既存の指定 */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  
}

/* スマホ/縦並び用 */
@media (max-width: 768px) {
  .MemberProfile-img {
    width: 100%;     /* 親要素いっぱい */
    max-width: 350px;/* 必要なら上限サイズを設定 */
    margin: 0 auto;  /* 中央寄せ */
  }

  .profile {
    width: 100%;
    text-align: center; /* テキスト中央寄せ */
    padding: 0px 40px;
  }
}



.profile p{
  font-size: 16px;
  margin-top: 10px;;
}
/* Moreリンク*/
.profile a{
  font-size: 14px;
}
.text{
  padding-right: 5px;
}
.arrow-animate {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #353535;
  font-weight: 600;
  }
.arrow-animate .line {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: #333;
  margin-left: 6px;
  transition: width 0.3s ease;
}
.arrow-animate .arrow {
  display: inline-block;
  margin-left: -1px;
  border: solid #333;
  border-width: 0 1px 1px 0;
  padding: 3px;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-top: 2px;
}




/* Contact */
.contact {
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact-description {
  font-size: 12px;
  color: #555;
  margin-bottom: 30px;
  padding: 0px 40px;
  line-height: 2.2;  /* 行間の調整 */
  letter-spacing: 0.05em;
}

.contact-links {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;    /* 横方向の中央揃え */
  gap: 19px; 
  padding: 0px 25px;

}

.contact-box {
  width: 90%;
  max-width: 400px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 17px; /* 丸みを強調して親しみやすく */
  color: #fff;
  background: linear-gradient(135deg, #a0a0a0, #c0c0c0d5); /* 柔らかいピンクグラデーション */
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* ホバー時の効果 */
.contact-box:hover {
  transform: translateY(-2px); /* 少し浮かせる */
  background: linear-gradient(135deg, #929292, #929292); /* 少し明るく */
}

/* 押した瞬間の効果 */
.contact-box:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.arrow-icon-sub{
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-left: 10px;
}
.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.instagram-link i {
  font-size: 18px;
}

@media (min-width: 768px) {
  .contact-links {
    flex-direction: row; /* PCでは横並びに */
    justify-content: center;
  }
}





/* Swiper調整 */
.swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* 通常時 */
.swiper-slide {
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー時に下に動く */
.swiper-slide:hover {
  transform: scale(0.98);
}

/* 全体 */
.site-header {
  width: 100%;
  background: none;
  border: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ナビ */
.nav {
  display: none; /* モバイルでは非表示 */
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 55px;
}

.nav-list a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  position: relative;
}

/* 下線アニメーション */
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #111;
  transition: width 0.3s ease;
}
.nav-list a:hover::after {
  width: 100%;
}

/* ハンバーガー */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  height: 2px;           /* 太さを調整 */
  width: 100%;
  background: #333;      /* 黒にして背景とコントラストを出す */
  border-radius: 2px;
  display: block;
}

/* PC表示 */
@media (min-width: 768px) {
  .nav {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
}

/* モバイル時のドロップダウン */
.nav.open {
  display: block;
  position: absolute;
  top: 60px;
  right: 20px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.nav.open .nav-list {
  flex-direction: column;
  gap: 0;
}
.nav.open .nav-list li {
  border-bottom: 1px solid #eee;
}
.nav.open .nav-list a {
  padding: 12px 20px;
  display: block;
}


.button-wrapper {
  text-align: center; /* 中央寄せ */
  margin: 40px 0 20px;
  
}


.button {/* 第一回参加者メンバーを見る */
  display: inline-block;
  padding: 13px 30px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 50px; /* 丸み */
  color: #333;  
  border: 1px solid #949494;
  background: #33333300;
  transition: all 0.3s ease;
}

.button:hover {
  background: #666666;
  color: #fff;
  border-color: #666666;
}


.profile-text p {
  font-variant: normal;
}








/* ==============================
   PCレイアウト最適化（1024px以上）
============================== */
@media (min-width: 1024px) {

  /* ページ全体の余白調整 */
  body {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px;
  }

  /* Heroセクション */
  .hero {
    padding: 0px 80px 60px 80px;
  }
  .hero-logo {
    width: 70%;
  }
  .tagline {
    font-size: 12px;
    bottom: 90px;
    left: 80px;
  }

  /* Aboutセクション */
  .about .description {
    font-size: 14px;
    padding: 0 150px;
    text-align: left;
  }

  .about .gallery {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    padding: 80px 0;
    position: relative;
  }

  .image-box, .image-box2 {
    width: 40%;
    height: 400px;
    position: relative;
    top: 0;
    left: 0;
  }

  /* Participants */
  .participants .swiper-container {
    width: 90%;
    margin: 0 auto;
  }
  .profile-card {
    width: 280px;
  }

  /* Memberセクション */
  .member .profile-list {
    gap: 80px;
  }
  .member .profile {
    width: 220px;
  }

  /* Contact */
  .contact .contact-description {
    max-width: 800px;
    margin: 0 auto 40px;
  }
  .contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  /* Footer */
  .site-footer {
    padding: 60px 120px;
  }
  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-nav {
    display: flex;
    gap: 30px;
  }
  .footer-nav li {
    margin-bottom: 0;
  }
  .footer-logo {
    font-size: 22px;
  }
}

















