@charset "utf-8";/* ←これは文字コード */


/*基本設定★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/

/* 画面に隙間ができないようにするおまじない----------------- */
html, body { 
  margin: 0px;
  padding: 0px;
 }

/* サイト全体に係わる設定----------------- */
body {
    font-family: "筑紫A丸ゴシック"; /* フォントの指定 */
    font-size: 1em; /* フォントサイズの指定 */
    line-height:1.8em; /* 行間の指定 */
    background-color: #01354a; /* 背景色の指定 */
    background-image: url(../back.png); /* 外側背景に表示させている画像 */
}

a{
    text-decoration: none; /* リンクの文字に下線を表示させない */
    color: #ffffff; /* リンクの文字には白色 */
}



/*コンテンツ内の細々した設定★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/

/* 中央のコンテンツ表示部分の設定 ----------------------------*/
#container{ 
    margin: 0 auto;
    width: 100%;
    max-width: 390px;              /* iPhone12Proの実際の画面幅 */
    height: 844px;                 /* iPhone12Proの実際の画面高さ */
    text-align: center;
    background-image: url(haikei.jpg); /* 背景に表示させている画像 */
    background-size: cover;
    background-attachment: fixed; /* ←固定 */
    background-position: center;
}


html, body {
   height: 100%;        /* 高さを明示 */
   overflow-y: auto;    /* ←縦スクロールON */
}

#container {
   min-height: 100vh;   /* 画面全体分の高さを確保 */
   overflow-y: auto;    /* コンテンツが長ければスクロールできる */
}





/* 画面上部のキービジュアル部分------------------------- */
.header-title{
    text-align:center;              /* 横方向の中央揃え */
    font-weight:700;
    font-size:18px;
    letter-spacing:0.02em;
    color:var(--text);
    user-select:none;
  }

   .header-sub{
    display:block;
    font-weight:400;
    font-size:12px;
    color:var(--muted);
    margin-top:2px;
    font-weight:500;
  }

 /* メニューアイコン（左） */
 .menu-icon {
  width: 25px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-top: -10px;
}

 .menu-icon div {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

  
  
 

  /* 右側スペース */
  .menu-right {
  width: 25px; /* 左右バランスを取るために幅を確保 */
}

  /* 右側に寄せるコンテンツ全体 */
  .right-content {
  display: flex;
  justify-content: flex-end;  /* 右寄せ */
  padding: 100px 40px 40px;    /* 上だけ余白広め（ヘッダー対策） */
  }

 
  /*わたしの推しガエル*/
  .osigaeru{
  font-size: 16px;
  font-weight: 700;
  color: #4d8587;
  margin-right: 170px;
  margin-top: 100px;
  }
 
  /* 画像とテキストをまとめるボックス */
  .profile-box {
  width: 300px;               /* ボックスの横幅 */
  text-align: center;         /* 中の文字を中央揃え */
  }

   /* 画像のスタイル */
  .profile-image {
  width: 50%;
  border-radius: 12px;        /* 角を丸く */
  margin-top: -110px;
  margin-right: -120px;
  margin-bottom: 16px;
  }

  /* タイトル */
  .profile-title {
  font-size: 14px;
  font-weight: 700;
  color: #4d8587;
  margin: -35px 0 -4px;
  margin-right: -120px;
  }

  /* 説明文 */
  .profile-description {
  font-size: 12px;
  color: #4d8587;
  line-height: 1.6;
  margin-right: -115px;
   margin-top: -2px;
   margin-bottom: 20px;
  }






/* 画面上部のキービジュアル内に表示されてるテキスト------------------------- */
#top_txtarea{
    position: absolute; /* この要素は絶対位置で配置 */
    top: 70%; /* このエリアの上から70％の位置に配置な！ */
    text-align: left;
}

.top_txt{
    padding: 3px 10px 5px 10px; /* このエリア内に上3px、右10px、下5px、左10pxの隙間もたせて */
    font-weight: lighter; /* フォントは細くしてね */
    letter-spacing: 0.1em; /* 字間をすこーし空けてください */
    background-color: #4d8587; /* paddingで空けた部分も含めた背景色は黒ね */
    color: #ffffff; /* 文字は白でよろしく */
}

.top_title{
     font-size: 1.1em; /* フォントサイズ指定 */
}
.top_name{
    font-size: 0.8em;
}

/* プロフィール写真------------------------- */
#profile_photo{
    margin-top: -60px;
    margin-right: -140px; /* 上の隙間を-20ピクセルにしてね（上のエリアに食い込む） */
}

.photo_radius{
    width: 180px; /* 横20ピクセル */
    height: 180px; /* 縦260ピクセル */
    border-radius: 50%; /* 角をまーるくして */
    object-fit: cover; /* 縦横比キープしていっぱいに表示 */
    box-shadow: 0 4px 25px rgb(227, 180, 99); /* ← 影 */
}



.drop-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 160px;
}

.drop-shape {
  width: 100px;
  height: 100px;
  background-color: #6dbbbec5; /* 雫の色 */
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; /* 丸みの調整 */
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  margin-left: 20px;
  margin-top: 140px;
  margin-bottom: 50px;
}

/* フォローする、テキストを配置 */
.drop-text {
  color: white;
  font-weight: bold;
  font-size: 14px;
  margin-top: 38px;
}

.drop-container2 {
  
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 160px;
}

.drop-shape2 {
  width: 100px;
  height: 100px;
  background-color: #beb56dc5; /* 雫の色 */
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; /* 丸みの調整 */
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  margin-left: 80px;
  margin-top: -180px;
}

/* メッセージを送る、テキストを配置 */
.drop-text2 {
  position: absolute;
  bottom: 7px; /* ← 下から20pxの位置に配置 */
  left: 17%;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* 左寄せで配置する全体のエリア */
.left-numbers {
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  padding: 40px 40px;          /* 周囲に少し余白 */
  margin-top: 60px;
  margin-right: -20px;
}

/* 数字をまとめるボックス */
.number-box {
  display: flex;
  gap: 16px;                   /* 各要素の間のスペース */
  margin-top: -90px;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px; /* ← 数字とラベルの距離をここで設定 */
}

/* 数字のスタイル */
.number-item .num {
  font-size: 20px;
  font-weight: 700;
  color: #4d8587;
  line-height: -6;
}

/* ラベルのスタイル */
.number-item .label {
  font-size: 13px;
  color: #4d8587;
  margin-top: -30px;
  line-height: -6;
}


/* 縦棒のデザイン */
.divider {
  width: 2px;
  height: 40px;
  background: #4d8587;
  margin-top: 8px;
}





/* 名前表記のテキスト------------------------- */
#profile_name{
    margin: 0 auto; /* 上限は隙間なく、左右は中央に配置 */
    margin-top: -20px;
    margin-left: -200px;
    font-size: 2em; /* 文字サイズ */
    font-weight: 600; /* 文字の太さ */
    color: #4d8587;
}

/* 名前英語表記のテキスト------------------------- */
#profile_name_en{
    margin: 0 auto;
    margin-top: -20px;
    margin-left: 50px;
    font-size: 1em;
    color: #4d8587;
    font-weight: normal;
    font-family: "筑紫A丸ゴシック";
}

/* 本文テキスト------------------------- */
#maintxt{
    font-size: 0.8em;
    width: 70%;
    color: #4d8587;
    margin: 0 auto;
    text-align:left;
    margin-bottom: 100px;
    margin-left: 30px;
    margin-top: -10px;
}


/* 画像＋テキストをまとめるボックス */
.sizuku1_box {
  display: flex;
  flex-direction: column; /* 縦並びにする */
  align-items: center;    /* 横方向の中央揃え */
  margin-top: 20px;
}

/* 画像のスタイル */
  .sizuku1_photo {
  width: 180px;
  height: 180px; 
  margin-top: -140px;
  margin-right: -230px;
  }

  /* テキストのスタイル */
.sizuku1_text {
  font-size: 14px;
  color: #4d8587;
  margin-top: -5px;  /* 画像との間隔を調整 */
  margin-right: -230px; /* 画像位置に合わせて調整 */
}


.nidan-box {
  display: flex;              /* 横並びにする */
  justify-content: flex-end;  /* 右寄せにする（中央なら center） */
  align-items: flex-start;    /* 上をそろえる */
  margin-top: 0px;
  margin-right: 95px;
}

/* 各画像＋テキストのセット */
.nidan-item {
  display: flex;
  flex-direction: column;     /* 縦に配置（画像→テキスト） */
  
}

/* 画像のスタイル */
  .sizuku2_photo {
  width: 180px;
  height: 180px; 
  margin-right: -50px;
  }

  /* テキストのスタイル */
.sizuku2-text {
  margin-top: -6px;            /* 画像との間隔 */
  margin-right: -40px;
  font-size: 14px;
  color: #4d8587;
  text-align: center;
}

  /* 画像のスタイル */
  .sizuku3_photo {
  width: 180px;
  height: 180px; 
  margin-right: -110px;
  }

 /* テキストのスタイル */
.sizuku3-text {
  margin-top: -6px;            /* 画像との間隔 */
  margin-right: -100px;
  font-size: 14px;
  color: #4d8587;
  text-align: center;
}




/*ヘッダー----------------------------------------------------*/
header{
    margin: 0;
    padding: 10px 0 10px 20px;
    background-color: #6dbbbe;
    margin-bottom: 50px;
    font-family: "筑紫A丸ゴシック";
    font-size: 0.7em;
    line-height:1em;
    color: #ffffff;
    text-align:left;
}
.header{
    display: flex; /* Flexbox を使うよ！ */
    align-items: center; /* 縦中央に並べよう */
    color: #ffffff;
}
.head_title{
    margin: 0 10px;
}

/*フッター----------------------------------------------------*/

/* iPhone12Pro画面にぴったり収まるフッター */
.footer {
  width: 100%;
  max-width: 390px;           /* iPhone12Proの幅に合わせる */
  height: 70px;               /* 高さ（好みで調整可能） */
  background-color: #6dbbbea5;  /* フッターの背景色 */
  position: fixed;            /* 画面下に固定 */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* 中央に配置（横方向） */
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(9, 118, 98, 0.538); /* 影をつける */
}

/* アイコンを横並びに配置 */
.footer-icons {
  display: flex;
  justify-content: space-around; /* 均等配置 */
  align-items: center;
  width: 90%;                    /* 左右に少し余白 */
}

/* 各アイコン設定 */
.footer-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ホバー時の動き */
.footer-icon:hover {
  transform: scale(1.15);
  opacity: 0.8;
}



