@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}

.background-animation {
  position: fixed;
  top: -50px;
  left: -50px;
  width: calc(100vw + 100px);
  height: calc(100vh + 100px);
  pointer-events: none;
  z-index: -10;
  overflow: visible;
}

.background-animation::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: url('../images/logos.png') no-repeat center/contain;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}


.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(158, 141, 225, 0.2); /* パステル紫 */
  width: 70px;
  height: 70px;
  animation: floatAround 10s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes floatAround {
  0%   { transform: translate(0, 0) rotate(0deg); }
  20%  { transform: translate(25px, -20px) rotate(15deg); }
  40%  { transform: translate(40px, 10px) rotate(-10deg); }
  60%  { transform: translate(15px, 30px) rotate(20deg); }
  80%  { transform: translate(-20px, 15px) rotate(-15deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}


.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

header{
    height: 60px; /* 高さ */
  line-height: 60px;
    background-color: #c4bde0;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.hero-bg {
  position: relative;
  padding-top: 60px;
  height: 100vh; /* 画面いっぱいの高さ */
  background-image: url('../images/home.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; /* 背景画像*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white; /* 文字色*/
  text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* 影 */
  filter: brightness(1.0) saturate(1.2); /* 彩度 */
  animation: fadeIn 2s ease forwards;
}


/*ホームイラストふわっと表示*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px; /* 上からの余白 */
}

.hero-logo {
  max-width: 500px; /* ロゴ */
  width: 80%; /* 画面幅に応じて縮む */
  margin-bottom: 20px;
}

.hero-bg::before {
  /* 背景に薄いオーバーレイ */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2); /* 半透明の白 */
  z-index: 0;
}

.hero-bg .logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.hero-content {
  padding-top: 40px;
  text-align: center;
}
.hero-bg h2 {
  position: relative;
  display: inline-block;
  color: white;
  font-size: 2rem;
  padding: 10px 20px;
  overflow: hidden;
  animation: slideIn 1s ease forwards;
}

.hero-bg h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 150%;
  height: 100%;
  background: #efe8d9;
  transform: skew(-20deg);
  z-index: -1;
}

.hero-bg p {
  font-size: 1.2rem;
}

section h2 {
  font-family: 'Arial Black', serif;  /* フォント */
  font-size: 2.5rem;
  color: #9e8de1;
  text-align: center;
  margin-bottom: 20px;
}

section h2 {
  position: relative;
  color: #9e8de1;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #9e8de1;
  margin: 8px auto 0;
  border-radius: 2px;
}


nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  padding: 5px 20px;
  height: 60px;
  box-sizing: border-box;
}
nav .logo-link img {
  width: 60px;
  height: auto;
}
nav .logo-link {
  position: relative;
  top: -6px;
  display: inline-block;
}
/* .logo {
  height: 40px;
  width: auto;
  margin-bottom: 2px;
  margin: 0;
  display: block;
} */

nav ul {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

nav ul li {
  margin: 0 50px;
}

nav ul li a {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: border-bottom 0.3s ease;
  padding-bottom: 3px;
  border-bottom: 3px solid transparent;
}

nav ul li a:hover {
  border-bottom: 3px solid #9e8de1;
}



section{
    padding: 60px 20px;
    margin-top: 60px;
}

section h1, section h2{
    text-align: center;
    margin-bottom: 20px;
}




/*✨ ABOUT US ✨*/
#about {
  max-width: 800px;
  margin: 80px auto;
  padding: 30px 25px;
  background-color: rgba(253, 246, 249,0.6); /* 透け感 */
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(158, 141, 225, 0.25); /* パステル紫の影 */
  color: #4a4a4a;
  font-size: 1.15rem;
  line-height: 1.75;
  text-align: left;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.03em; /* 文字間広 */
}

#about p {
  white-space: pre-line;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
}

#about .logo {
  display: block;
  margin: 0 0 -40px auto;
  width: 100px;
  height: auto;
}

#about h3 {
  font-size: 1.5rem;
  color: #7a6fc1;
  text-align: center;
  margin-bottom: -10px;
  font-weight: normal;
  font-family: 'Arial', sans-serif;
}




/*✨ メンバー ✨*/
.member-list {
  display: flex;
  gap: 20px;
  margin: 80px auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* メンバー画像の枠 */
.member-photo-wrapperr {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid rgba(196, 189, 224, 0.7); /* 薄い紫 */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}

.member-profile {
  display: block;
  width: 500px; /* 目安 */
  padding: 20px;
}



/* 画像本体 */
.member-photo-wrapperr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

/* 画像拡大 */
.member-photo-wrapperr img:hover {
  transform: scale(1.2);
}

/* 画像拡大*/
.member-link:hover .member-photo {
  transform: scale(1.05);
}

/* メンバー名 */
.member-link h3 {
  font-size: 1.3rem;
  font-weight: bold;
}

#members h3 {
  font-size: 1.5rem;
  color: #7a6fc1;
  text-align: center;
  margin-bottom: 20px;
  font-weight: normal;
  font-family: 'Arial', sans-serif;
}


.member-list .member-photo-wrapperr:nth-child(4) {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white; /* 背景白 */
}

.member-list .member-photo-wrapperr:nth-child(4) p {
  font-size: 1.5rem;       /* 大きめ文字 */
  color: #9e8de1;         /* 黒文字（背景白に映える） */
  font-weight: bold;
  text-align: center;
  margin: 0;
}




/*✨ ギャラリー ✨*/
#gallery {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
  border-radius: 15px;
  font-family: 'Arial', sans-serif;
  color: #444;
}

#gallery h2 {
  font-size: 2.4rem;
  color: #9e8de1;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

#gallery h3 {
  font-size: 1.5rem;
  color: #6f5ca5;
  margin: 25px 0 10px 0;
  border-bottom: 2px solid #c4bde0;
  padding-bottom: 6px;
}

#gallery img {
  display: block;
  margin: 0 auto 30px auto;
    margin-bottom: 20px;
  max-width: 90%;
  border-radius: 1px;
  box-shadow: 0 2px 8px rgba(158, 141, 225, 0.3);
  transition: transform 0.3s ease;
  cursor: default;
}

 h3 + h3 {
  margin-top: 50px;
}

#gallery h4 {
  font-size: 1.5rem;
  color: #7a6fc1;
  text-align: center;
  margin-bottom: 20px;
  font-weight: normal;
  font-family: 'Arial', sans-serif;
}


/*✨ 使用ツール紹介 ✨*/

#tools {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
  background-color: rgba(253, 246, 249,0.6); /* 透け感 */
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(158, 141, 225, 0.3);
  font-family: 'Arial', sans-serif;
  color: #4a4a4a;
}

#tools h2 {
  font-size: 2.2rem;
  color: #9e8de1;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

#tools h3 {
  font-size: 1.5rem;
  color: #7a6fc1;
  text-align: center;
  margin-bottom: 20px;
  font-weight: normal;
  font-family: 'Arial', sans-serif;
}

#tools ul {
  list-style-type: disc;
  font-size: 1.1rem;
  line-height: 1.6;
  list-style-position: inside;
  padding-left: 0;
  text-align: center; /* 中央寄せ */
}

#tools ul li {
  margin-bottom: 10px;
}



/*✨ メール ✨*/
#contact form {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
  background-color: rgba(253, 246, 249,0.6); /* 透け感 */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(158, 141, 225, 0.3);
}

#contact label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

#contact button {
  display: block;
  width: 150px;        /* 横幅 */
  margin: 0 auto;      /* 中央寄せ */
  background-color: #c4bde0;
  color: white;
  border: none;
  padding: 12px 0;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;  /* テキスト中央寄せ */
  line-height: normal;
}

#contact button:hover {
  background-color: #9e8de1;
}

footer.ffjosefin {
  position: static;
  width: 100%;
  background-color: #c4bde0;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.ffjosefin {
  font-family: 'Josefin Sans', sans-serif;
  text-align: center;
  padding: 10px 0;
  background-color: #c4bde0;
  color: #fff;
}



















/*🍒 メンバー1 🍒 */

.member-profile {
  max-width: 1000px;
  width: 90vw;
  margin: 80px auto;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(158, 141, 225, 0.3);
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: nowrap; /* 折り返さない */
}

/* 左：イラスト */
.member-photo-big {
  flex: 1 1 45%;
  max-width: 450px;
}

/* 右：紹介文＋詳細 */
.member-info-wrapper {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}






/* 共通デザイン */
.member-profile {
  display: flex;
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(158, 141, 225, 0.3);
    font-family: 'Josefin Sans', sans-serif;
}

/* 名前 */
.member-info-basic h1 {
    font-size: 2.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    margin: 0 0 10px 0;
}

/* キャッチコピー */
.catchcopy {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

/* テーブル */
.member-details table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}
.member-details th {
    text-align: left;
    font-weight: bold;
    padding: 10px 15px;
    width: 30%;
    border-radius: 8px 0 0 8px;
}
.member-details td {
    padding: 10px 15px;
    background-color: #fff;
    color: #444;
    border-radius: 0 8px 8px 0;
}



/* ===== メンバー別カラー ===== */
.member1 .member-details th {
    background-color: #f0f9f5;
    color: #4ea987;
}
.member1 .member-info-basic h1 {
    color: #4ea987;
}
.member1 .sns-links.member1 a {
    background: #6fc4a1;
}
.member1 .sns-links.member1 a:hover {
    background: #4ea987;
}

.member2 .member-details th {
    background-color: #f5f0ff;
    color: #967fbc;
}
.member2 .member-info-basic h1 {
    color: #967fbc;
}
.member2 .sns-links.member2 a {
    background: #b49fd8;
}
.member2 .sns-links.member2 a:hover {
    background: #967fbc;
}

.member3 .member-details th {
    background-color: #fff0f3;
    color: #8f3b49;
}
.member3 .member-info-basic h1 {
    color: #8f3b49;
}
.member3 .sns-links.member3 a {
    background: #b04b5a;
}
.member3 .sns-links.member3 a:hover {
    background: #8f3b49;
}
