/* 全体スタイル */
body {

  background-color: #fce5ef;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: inherit;           /* 親要素の色を引き継ぐ */
  text-decoration: none;    /* 下線を消す */
}

html {
  scroll-behavior: smooth;
}


/* ヘッダー */
header {
  background-color: #ffb6c1;
  color: #333333;
  padding: 1.5em;
  text-align: center;
  }
  
  .header-container_01 {
    position: relative;
    margin: 0 !important;
    height: 300px;
    font-family: serif;
  }
  
  .header__navi_01 {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: #f9c3f3;
    width: 70%;
    height: 100vh;
    transform: translateX(-100%);
    transition: all 0.6s;
  }
  
  .header__navi_01.active {
    transform: translateX(0%);
  }
  
  .header__navi_01 ul {
    padding-top: 48px;
    text-align: center;
  }
  
  .header__navi_01 li {
    list-style: none;
    margin-bottom: 24px;
  }
  
  .header__navi_01 li a {
    color: #fff;
    text-decoration: none;
  }

  .header__navi_01 li a:hover {
  color: #ff85c6; 
}

  /* メニューボタン */
  .sp-menu-btn_01 {
    background: #e291da;
    border: none;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
  }
  
  .sp-menu-btn_01 .line {
    display: block;
    position: absolute;
    width: 30px;
    height: 1px;
    right: 15px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  
  .sp-menu-btn_01 span:nth-child(1) {
    top: 20px;
  }
  
  .sp-menu-btn_01 span:nth-child(2) {
    top: 28px;
  }
  
  .sp-menu-btn_01 span:nth-child(3) {
    top: 36px;
  }
  
  /* メニューが開いているときのボタン */
  .sp-menu-btn_01.active span:nth-child(1) {
    top: 28px;
    transform: rotate(-45deg);
  }
  
  .sp-menu-btn_01.active span:nth-child(2) {
    opacity: 0;
  }
  
  .sp-menu-btn_01.active span:nth-child(3) {
    top: 28px;
    transform: rotate(45deg);
  }
  
  .header-container_01 h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    font-weight: normal;
  }
  
/* メイン */
main {
  padding: 1.5em;
}

.title{
  width: 49%;
}

/* ヘッダー全体 */
header {
  background: linear-gradient(to right, #ead4e6, #ffc0cb);
  padding: 1em 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ヘッダー内の配置 */
.header-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #333333;
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin: 0;
}

/* 推し紹介セクション */
.intro {
  text-align: center;
  margin-bottom: 2em;
}

.intro img {
  width: 1200px;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.banner-container {
  display: flex;            /* 横並びにする */
  justify-content: center;  /* 中央揃え（左右） */
  gap: 20px;                /* バナー間の隙間 */
  flex-wrap: wrap;          /* 画面が狭い時は折り返す */
}

.banner {
  width: 100% !important;
  object-fit: cover;        /* はみ出し調整（必要に応じて） */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);  /* 影（任意） */
}


/* スマホ用の簡易対応 */
@media (max-width: 1200px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}



#wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.big {
  font-size: 1.4em; /* 通常の1.5倍の大きさ */
  font-weight: bold;
  color: #ec5ca4;
}

.big_text {
  font-size: 1.2em; /* 通常の1.5倍の大きさ */
  font-weight: bold;
  color: #622a46;
}


.grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3em;
  max-width: 1300px;
  margin: 0 auto;
}

.item {
  text-align: center;
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-weight: bold;
  font-variation-settings:
    "wdth" 100;
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.item img:hover {
  transform: scale(1.05);
}

.item p {
  margin-top: 0.5em;
  font-size: 1.2em;
  color: #333333;
}

.list ul, ol {
  color: #622a46;
  border-top: solid #ec5ca4 2px;/*上のボーダー*/
  border-bottom: solid #ec5ca4 2px;/*下のボーダー*/
  padding: 0.5em 0 0.5em 1.5em;
}

.list ul li, ol li {
  line-height: 1.8;
  padding: 0.5em 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  justify-items: center;
}

.video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.intro_kai {
  background-color: #124d9e;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 0.5em;
  font-weight: bold;
  font-size: 1.5em;
}

.intro_ryg {
  background-color: #734196;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

.intro_tky {
  background-color: #00903f;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

.intro_yk {
  background-color: #c21f1f;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

.intro_tks {
  background-color: #ffffff;
  color: #4d4d4d;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

.intro_shy {
  background-color: #808080;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

.intro_ms {
  background-color: #754c24;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

.intro_alh {
  background-color: #5dc5ef;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

.intro_hr {
  background-color: #f7931e;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

/* プロフィール */
.profile {
  display: flex;
  flex-wrap: wrap;
  padding: 2em;
  gap: 2em;
  align-items: flex-start;
}

.image-box img {
  width: 400px;
  border-radius: 2px;
  object-fit: cover;
}

.info {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.info_ki ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_ki li  {
  margin-bottom: 0.3em;
  color: #124d9e;
  font-weight: bold;
  font-size: 1.7em;
}

.info_ryg ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_ryg li  {
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #734196;
  font-size: 1.7em;
}

.info_tky ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_tky li  {
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #00903f;
  font-size: 1.7em;
}

.info_yk ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_yk li  {
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #c21f1f;
  font-size: 1.7em;
}

.info_tks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_tks li  {
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #ffffff;
  font-size: 1.7em;
}

.info_shy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_shy li  {
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #808080;
  font-size: 1.7em;
}

.info_ms ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_ms li  {
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #754c24;
  font-size: 1.7em;
}

.info_alh ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_alh li  {
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #5dc5ef;
  font-size: 1.7em;
}

.info_hr ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_hr li  {
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #f7931e;
  font-size: 1.7em;
}

/* テキストブロック */
.text-block {
  padding: 1em;
}

.highlight_kai h1 {
  font-size: 1.4em;
  color: #124d9e;
  margin-bottom: 1em;
}

.highlight_ryg h1 {
  font-size: 1.4em;
  color: #734196;
  margin-bottom: 1em;
}

.highlight_tky h1 {
  font-size: 1.4em;
  color: #00903f;
  margin-bottom: 1em;
}

.highlight_yk h1 {
  font-size: 1.4em;
  color: #c21f1f;
  margin-bottom: 1em;
}

.highlight_tks h1 {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 1em;
}

.highlight_shy h1 {
  font-size: 1.4em;
  color: #808080;
  margin-bottom: 1em;
}

.highlight_ms h1 {
  font-size: 1.4em;
  color: #754c24;
  margin-bottom: 1em;
}

.highlight_alh h1 {
  font-size: 1.4em;
  color: #5dc5ef;
  margin-bottom: 1em;
}

.highlight_hr h1 {
  font-size: 1.4em;
  color: #f7931e;
  margin-bottom: 1em;
}

.video-container{
 display: grid;
 grid-template-columns: 1fr 1fr;
 margin: 0 auto;
}

.video-container2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-box2 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* ここが大事！ iframe自体のサイズを制御 */
.video-box2 iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-section_ki {
  color: #124d9e;
  padding: 2em;
}

.video-section_ryg {
  color: #734196;
  padding: 2em;
}

.video-section_tky {
  color: #00903f;
  padding: 2em;
}

.video-section_yk {
  color: #c21f1f;
  padding: 2em;
}

.video-section_tks {
  color: #4d4d4d;
  padding: 2em;
}

.video-section_shy {
  color: #808080;
  padding: 2em;
}

.video-section_ms {
  color: #754c24;
  padding: 2em;
}

.video-section_alh {
  color: #5dc5ef;
  padding: 2em;
}

.video-section_hr {
  color: #f7931e;
  padding: 2em;
}

.media {
  text-align: center;
  margin-bottom: 2em;
}

.media img {
  width: 1000px;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.sns_link{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1em;
  list-style: none;
}




/* フッター */
footer {
  background-color: #ffb6c1;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}


