@charset "UTF-8";
/* CSS Document */
#container {
  background-image: none;
}
#member-container {
  margin-bottom: 0;
  padding-bottom: 0;
}
#member-container .inner {
  background-color: #fff;
  max-width: 1000px;
  padding: 0;
  margin: 80px auto 0px;
  border: none;
}
#member-container .underline {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #3a250b;
}
#member-container .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  height: 7px;
  width: 100%;
  background-color: #ffd200;
  border-radius: 3px;
  z-index: -1;
}
#member-container ul {
  margin: 0 0 80px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: #333 1px solid;
}
#member-container ul::after {
  content: "";
  display: block;
  width: 32%;
}
#member-container .tab-button ul::after {
  display: none;
}
.tab-button ul li.active a {
  color: #4dc2a8 !important; /* !important を追加して色を強制的に適用 */
}
#member-container li {
  list-style: none;
  width: 32%;
  height: 100%;
  background-color: #999;
  margin: 0 0 40px;
}
#member-container li img {
  background-color: #ccc;
  width: 100%;
  aspect-ratio: 16 / 9;
  vertical-align: top;
  object-fit: cover;
  margin-left: 0;
}
#member-container img {
  max-width: 350px;
  margin-right: 40px;
}
#member-container .logo-x img {
  max-width: 32px;
  height: auto;
  margin: 0;
}
#member-container .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0 22px;
  letter-spacing: 2px;
}
#member-container .member-top_right .flex {
  margin: 40px 0 0;
  justify-content: flex-start;
  gap: 50px;
}
#member-container .title {
  border: 1px #3a250b solid;
  border-radius: 10px;
  padding: 2px 0 1px;
  font-size: 1.2rem;
  line-height: 1.5rem;
  width: 100px;
  text-align: center;
  letter-spacing: 2px;
}
#member-container .profile {
  text-align: left;
  width: 100%;
  margin-bottom: 0;
}
#member-container .profile p {
  line-height: 3rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
.member-top {
  display: flex;
  margin: 80px 0 60px;
  align-items: flex-end; /* 下部揃えにする */
}
.member-top img {
  max-width: 350px;
  aspect-ratio: 1/1;
  margin-right: 60px;
}
.member-top_right {
  margin-top: 0; /* 上部の余白を削除 */
  margin-bottom: 16px;
  text-align: left;
}
.member-top_right a {
  color: #fff;
}
.member-top_right .position {
  font-family: "Oswald";
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.member-top_right .name {
  font-size: 2.4rem;
  margin: 0 0 25px 0; /* 左寄せ用の余白を設定 */
  text-align: left; /* 明示的に左寄せ */
}
.member-top_right a {
  height: 40px;
}
.member-top_right .name.pc {
  display: block;
}
.member-top_right .name.sp {
  display: none;
}
.portfolio-button {
  border: 2px #3a250b solid;
  border-radius: 100px;
  padding: 15px 30px;
  width: auto;
  text-align: center;
  letter-spacing: 2px;
  /* 追加: ホバー時のアニメーションのためのtransition */
  transition: transform 0.2s ease;
}
.portfolio-button:hover {
  /* ホバー時にスケール */
  transform: scale(1.1);
}
.portfolio-button span {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #3a250b;
}
.portfolio-button .portfolio-button_img {
  margin: 0 0 0 20px;
  width: 16px;
  height: 16px;
}
/* ここから .logo-x の修正 */
.logo-x {
  border: #3a250b 2px solid;
  border-radius: 100px;
  margin-left: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  /* 追加: ホバー時のアニメーションのためのtransition */
  transition: transform 0.2s ease;
}
.logo-x:hover {
  /* ホバー時にスケール */
  transform: scale(1.1);
}
.more-button {
  width: auto;
  padding: 10px 40px 10px 20px;
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: none;
}
.more-button img {
  margin-left: 20px;
}
.tab-button {
  padding: 0 20px;
  font-size: 1.2rem;
  height: 24px;
  box-shadow: none;
  border: 1px #222 solid;
  margin-bottom: 30px;
}
#news-container {
  margin-top: 0;
  margin-bottom: 0;
}
#news-container .inner {
  margin-top: 60px;
  margin-bottom: 60px;
}
#news-container .flex {
  margin-top: 0;
  margin-bottom: 30px;
}
#member-container img:hover {
  transform: none;
}
.member.display-flex {
  width: 100%;
  margin: 0 auto;
  display: flex; /* フレックスボックスを適用 */
  justify-content: space-between; /* 子要素を均等に分散 */
  align-items: center; /* 子要素を垂直方向に中央揃え */
  gap: 40px; /* img間の隙間を指定 */
  margin-top: 60px;
  margin-bottom: 100px;
}
.member.display-flex li {
  flex: 1; /* 各リストアイテムを等しい幅にする */
  display: flex; /* 子要素を中央揃え */
  justify-content: center; /* 画像を中央揃え */
}
.member.display-flex img {
  width: 100%; /* 親要素の幅いっぱいに画像を広げる */
  max-width: none; /* 自動の幅制限を無効化 */
  transition: transform 0.3s ease; /* アニメーションのスムーズな効果 */
}
.member.display-flex img:hover {
  transform: scale(1.1); /* ホバー時に1.2倍にスケール */
}
/* iPad版 (760px - 1100px) - index.htmlのスタイルに合わせる */
@media (min-width: 760px) and (max-width: 1100px) {
  #member-container {
    background-color: rgba(0, 0, 0, 0.00) !important; /* 背景を透明に */
    padding: 0 !important;
    padding-bottom: 0 !important; /* padding-bottomを0に */
    margin: 30px auto !important;
    border-radius: 0 !important;
  }

  #member-container .inner {
    background-color: transparent !important; /* innerの背景も透明に */
    margin-top: 40px !important;
  }

  .member-top {
    margin-top: 0 !important;
  }

  /* member-topのメイン画像のマージン調整 - iPad版 */
  .member-top > img {
    margin-left: 0 !important; /* margin-leftを0に */
  }

  /* 書籍テキストの左寄せ調整 */
  #member-container .profile p:last-child {
    text-align: left !important;
    text-justify: none !important;
  }

  /* underlineのスタイル - iPad版（SP版と同じ方式に変更） */
  #member-container .underline {
    position: relative;
    display: inline !important; /* inline-blockをinlineに変更 */
    z-index: 1;
    color: #3a250b;
    background: linear-gradient(180deg, transparent 60%, #ffd200 60%) !important;
  }
  #member-container .underline::after {
    content: none !important; /* 擬似要素を削除 */
  }

  /* tomaru.html・tsukamoto.htmlの名前部分でiPad版のみ改行 */
  .member-top_right .name.pc {
    display: none !important; /* iPad版ではPC版を非表示 */
  }
  .member-top_right .name.sp {
    display: block !important; /* iPad版では改行ありを表示 */
    line-height: 3.2rem; /* 改行テキストの上下間隔を調整 */
  }
}

/* 600px - 760px の範囲でpadding-top調整 */
@media (min-width: 600px) and (max-width: 760px) {
  html body #member-container {
    padding-top: 0 !important; /* メンバーページのみpadding-topを0に */
  }

  /* メンバー画像のグリッド調整 */
  /* メンバー画像のグリッド調整 - iPad版と同じスタイルを適用 */
  .member.display-flex {
    width: 90% !important;
    margin: 50px auto 60px !important;
    padding: 0 7vw !important; /* 画面幅に対して7%のパディング */
    gap: 20px !important;
  }

  .member.display-flex img {
    max-width: 120px !important;
  }
}

/* iPad版 (760px - 1100px) - メンバーページ専用の調整 */
@media (min-width: 760px) and (max-width: 1100px) {
  html body #member-container {
    padding-top: 0 !important; /* メンバーページのみpadding-topを0に */
    padding-bottom: 0 !important; /* メンバーページのみpadding-bottomを0に */
  }

  /* メンバー画像のグリッド調整 - iPad版 */
  .member.display-flex {
    width: 90% !important;
    margin: 50px auto 60px !important;
    padding: 0 7vw !important; /* 画面幅に対して7%のパディング */
    gap: 20px !important;
  }

  .member.display-flex img {
    max-width: 120px !important;
  }

  /* MEMBERのh2テキストのマージントップを0に - iPad版 */
  .curved-section h2 {
    margin-top: 0 !important;
  }

  /* curved-sectionのinner要素のマージントップを調整 - iPad版 */
  .curved-section .inner:first-child {
    margin-top: 40px !important;
  }
}

/* iPad縦向き (761px - 880px) - メンバーページ専用のpadding-top調整 */
@media (min-width: 761px) and (max-width: 880px) {
  html body #member-container {
    padding-top: 0 !important; /* メンバーページのみpadding-topを0に */
  }
}

@media (max-width: 1350px) {}

@media (max-width: 760px) {
  .left-strip, .right-strip {
    background-size: auto 70%;
  }
	#news-container .inner {
  margin-bottom: 50px;
}
  #news-container .flex {
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 40px;
  }
  .curved-section h2 {
    font-size: 2.6rem;
  }
  #member-container {
    margin-top: 30px;
  }
  #member-container .inner {
    margin: 0 auto;
    padding: 0 25px;
  }
  #member-container img {
    max-width: 100%;
    margin: 0;
  }
  .member-top {
    display: block;
    margin: 0;
  }
  .member-top img {
    max-width: 320px;
    margin: auto;
  }
  .member-top_right {
    margin: 30px auto 0;
    text-align: center;
    align-items: center; /* 子要素を中央揃え */
  }
  .member-top_right .position {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .member-top_right .name {
    padding: 0;
    margin: 0 0 40px 0;
    font-size: 2.4rem;
    text-align: center;
  }
  .member-top_right .name.pc {
    display: none;
  }
  .member-top_right .name.sp {
    display: block;
    line-height: 3.2rem;
  }
  .member-top_right .margin-none {
    margin: 0;
  }
  .member-top_right .flex {
    margin: 0 auto;
    justify-content: center; /* 水平方向中央揃え */
  }
  #member-container .member-top_right .flex {
    margin: 35px 0 0;
    justify-content: center;
    gap: 0;
  }
  .portfolio-button {
    border: 2px #3a250b solid;
    border-radius: 100px;
    padding: 10px 20px;
    text-align: center;
    letter-spacing: 2px;
  }
  .portfolio-button span {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #3a250b;
  }
  .logo-x {
    padding: 8px;
    margin-left: 30px;
  }
  #member-container .logo-x img {
    max-width: 30px;
    height: auto;
    margin: 0;
  }
  .profile {
    text-align: left;
    width: 100%;
    padding: 0;
    margin: 70px 0;
  }
  #member-container .title {
    background-color: #3a250b;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.6rem;
  }
  .title {
    background-color: #3a250b;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.6rem;
  }
  .news-contents .flex span {
    font-size: 1.2rem;
  }
  #news-container .art ul {
    padding: 0 35px;
  }
  #member-container .profile p {
    font-size: 1.4rem;
    line-height: 2.6rem;
    font-weight: 300;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  #member-container .underline {
    position: relative;
    display: inline; /* inline-blockをinlineに変更 */
    z-index: 1;
    color: #3a250b;
    background: linear-gradient(180deg, transparent 60%, #ffd200 60%);
  }
  #member-container .underline::after {
    content: none; /* 擬似要素を削除 */
  }
  #member-container ul {
    margin: 0 0 40px;
  }
  #member-container li {
    width: 47%;
    margin: 0 0 20px;
  }
  .member-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }
  /* 共通のスタイル */
  .member.display-flex {
    display: flex;
    justify-content: center; /* 画像を中央寄せ */
    gap: 10px; /* 画像間のスペース */
    list-style: none;
    padding: 0;
    margin: 5px 0;
  }
  /* 画像のスタイル */
  .member.display-flex img {
    width: 22vw;
    height: auto;
  }
  /* 上段3つ */
  .member.display-flex.top-row {
    width: 80%;
  }
  /* 下段2つ */
  .member.display-flex.bottom-row {
    width: 55%; /* 幅を少し狭めて中央揃え */
  }
}