@charset "UTF-8";

/*PCサイズレスポンシブ*/
@media (min-width: 1000px) {
  body {
    min-width: 1000px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .header {
    width: 100%;
    height: auto;
  }

  .header img {
    width: 10%;
    object-fit: cover;
  }

  /*========= ナビゲーションのためのCSS ===============*/

  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: rgba(242, 180, 243, 0.866);
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    color: #615f5f;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 30px;
    right: 20px;
    cursor: pointer;
    width: 70px;
    height: 70px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fd91e0;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 27px;
  }

  .openbtn span:nth-of-type(3) {
    top: 40px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .interview {
    width: 100%;

    max-width: none;

    margin: 0;

    position: relative;

    overflow: hidden;

    padding-top: 90px;
  }

  /* SVGのタイトル帯 */
  .title-wave {
    position: absolute;
    top: 20px;
    left: 0;

    width: 100%;
    height: 95px;

    display: block;
    z-index: 0;
    pointer-events: none;
  }

  .interview-title {
    position: relative;

    width: fit-content;

    margin: 15px 0 85px 90px;

    text-align: center;

    z-index: 2;

    transform: none;
  }

  /* 左上の百合 */

  .interview-title::before {
    content: "";

    position: absolute;

    top: -130px;

    left: -200px;

    width: 300px;

    height: 400px;

    background: url("../img/lily_left.png") no-repeat center;

    background-size: contain;

    opacity: 1;

    pointer-events: none;

    z-index: -1;
  }

  /* 百合・タイトル周辺のふわっとした薄ピンク */

  .interview::after {
    content: "";
    position: absolute;

    top: -10px; /* ← 55px → -10px */
    left: -60px; /* 少し右へ */

    width: 650px;
    height: 460px;
    background: radial-gradient(
      ellipse at center,
      rgba(250, 210, 242, 0.42) 0%,
      rgba(250, 220, 245, 0.2) 45%,
      rgba(255, 255, 255, 0) 75%
    );

    filter: blur(30px); /* 少し柔らかく */
    z-index: 0;
    pointer-events: none;
  }

  /* ←ここに追加！ */
  .interview-title,
  .pickup,
  .latest {
    position: relative;
    z-index: 2;
  }

  .interview-title h1,
  .interview-title p,
  .title-butterfly {
    position: relative;
    z-index: 2;
  }

  .interview-title h1 {
    font-size: 72px;
    color: #ee9de4;
    line-height: 1;
    font-weight: bold;
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
  }

  .interview-title p {
    margin-top: 6px;
    letter-spacing: 2px;
    font-size: 22px;
    color: #ee9de4;
    font-weight: bold;
  }

  .title-butterfly {
    width: 70px;
    transform: translateY(-8px);
  }

  .pickup {
    width: 90%;
    max-width: 1100px;
    margin: 80px auto;
  }

  .pickup-title {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 45px;
  }

  .pickup-title-line {
    position: relative;
    flex: 1;
    max-width: 220px;
    height: 2px;
    background: #efb2e7;
  }

  /* 線の先端のひし形 */

  .pickup-title-line:first-child::before,
  .pickup-title-line:last-child::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 9px;

    height: 9px;

    background: #efb2e7;

    transform: translateY(-50%) rotate(45deg);
  }

  .pickup-title-line:first-child::before {
    left: 0;
  }

  .pickup-title-line:last-child::after {
    right: 0;
  }

  .pickup-title img:first-of-type {
    width: 34px; /* 王冠 */
  }

  .pickup-title img:last-of-type {
    width: 28px; /* キラキラ */
  }

  .pickup-title h2 {
    margin: 0;

    color: #ee9de4;

    font-size: 34px;

    line-height: 1.15;

    text-align: center;
  }

  .pickup-title h2 span {
    display: block;

    margin-top: 6px;

    font-size: 16px;

    color: #777;

    font-weight: normal;
  }

  .pickup-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
  }

  .pickup-card {
    width: 30%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
  }

  .pickup-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  }

  .pickup-rank {
    position: absolute;
    top: 0;
    left: 18px;

    width: 42px;
    height: 58px;

    background: rgba(229, 90, 201, 0.6);
    color: #fff;

    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 12px;

    z-index: 10;

    clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 68%, 0 82%);
  }

  .pickup-card a {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .pickup-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #fff;
    display: block;
  }

  .pickup-text {
    padding: 20px;
  }

  .pickup-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }

  .pickup-tags span {
    background: #efa5e9;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
  }

  .pickup-text h3 {
    color: #5d275d;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 14px;
  }

  .pickup-desc {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    min-height: 60px;
  }

  .pickup-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
  }

  .pickup-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid #f3b8e9;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s;
  }

  .pickup-arrow span {
    color: #f3b8e9;
    font-size: 38px;
    line-height: 1;
    margin-left: 3px;
  }

  .pickup-card:hover .pickup-arrow {
    background: #ef8edb;
  }

  .pickup-card:hover .pickup-arrow span {
    color: #fff;
  }

  .latest {
    width: 90%;
    max-width: 1100px;
    margin: 180px auto 100px;
  }

  .latest-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .latest-title-main {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
  }

  .latest-title-line {
    position: relative;

    flex: 1;

    max-width: 220px;

    height: 2px;

    background: #efb2e7;
  }

  /* 線の先端のひし形 */

  .latest-title-line:first-child::before,
  .latest-title-line:last-child::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 9px;

    height: 9px;

    background: #efb2e7;

    transform: translateY(-50%) rotate(45deg);
  }

  .latest-title-line:first-child::before {
    left: 0;
  }

  .latest-title-line:last-child::after {
    right: 0;
  }

  .latest-title h2 {
    margin: 0;

    color: #e99adb;

    font-size: 40px;

    line-height: 1.2;

    white-space: nowrap;
  }

  .latest-sparkle {
    width: 50px;

    height: auto;
  }

  .latest-butterfly {
    width: 40px;

    height: auto;
  }

  .latest-title p {
    margin-top: 8px;
    font-size: 15px;
    color: #555;
  }

  .latest-card {
    border: 3px dotted #f7ccef;
    border-radius: 24px;
    padding: 60px 70px;
    background: #fff;
    text-align: center;
  }

  .latest-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .latest-meta time {
    font-size: 16px;
    color: #555;
  }

  .latest-meta span {
    color: #ef8edb;
    border: 2px solid #ef8edb;
    border-radius: 20px;
    padding: 3px 14px;
    font-size: 13px;
    font-weight: bold;
    background: #fff0fb;
  }

  .latest-card h3 {
    color: #5d275d;
    font-size: 38px;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .latest-line {
    height: 2px;
    background: #f3b8e9;
    margin: 25px auto 35px;
  }

  .latest-text {
    max-width: 760px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 2;
    color: #333;
  }

  .latest-quote {
    max-width: 420px;
    margin-top: 10px;
    margin: 0 auto;
    background: #fdeafa;
    border-radius: 50px;
    padding: 16px;
    transition: 0.3s;
  }

  .latest-quote a {
    display: block;
    text-decoration: none;
    color: #7a3b7a;
    font-weight: bold;
    font-size: 18px;
  }

  .latest-quote:hover {
    background: #ef8edb;
    transform: translateY(-3px);
  }

  .latest-quote:hover a {
    color: white;
  }

  .latest-quote span {
    margin-left: 8px;
    transition: 0.3s;
  }

  .latest-quote:hover span {
    margin-left: 16px;
  }

  .footer {
    position: relative;
    width: 100%;
    min-height: 320px;
    padding: 130px 60px 70px;
    margin-bottom: 70px;
    overflow: hidden;

    background: linear-gradient(135deg, #f9ebf7 0%, #f3d4ef 45%, #e9bde4 100%);
  }

  /* なだらかな波 */

  .footer-wave {
    position: absolute;

    top: -1px;

    left: 0;

    width: 100%;

    height: 115px;

    display: block;

    z-index: 1;
  }

  .footer-wave path {
    fill: #fff;
  }

  .footer1,
  .footer2,
  .footer-sparkles {
    position: relative;
    z-index: 3;
  }

  /* 右下の百合 */
  .footer::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -55px;

    width: 390px;
    height: 390px;

    background: url("../img/lily_right.png") no-repeat center;
    background-size: contain;

    opacity: 0.8;
    pointer-events: none;
    filter: brightness(1.08);

    z-index: 2;
  }

  .footer-sparkles {
    position: absolute;
    left: 55%;
    bottom: 50px;
    width: 120px;
    height: 90px;
    z-index: 2;
    pointer-events: none;
  }

  .footer-sparkles span {
    position: absolute;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
  }

  .sparkle-upper {
    top: 0;
    right: 5px;
    font-size: 22px;
  }

  .sparkle-lower {
    left: 20px;
    bottom: 0;
    font-size: 28px;
  }

  .footer1 {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .footer2 {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);

    z-index: 1;
    font-size: 13px;
    color: #444;
    white-space: nowrap;
  }

  .cta {
    position: fixed;
    display: flex;
    justify-content: center;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    background: rgba(119, 250, 93, 0.711);
    z-index: 9999;
  }

  .cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    /* ←太く */
    font-size: 30px;
    /* ←大きく */
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
  }
}

/*ipadサイズレスポンシブ*/
@media (min-width: 600px) and (max-width: 999px) {
  body {
    min-width: 600px;
    max-width: 999px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .header {
    width: 100%;
    height: auto;
  }

  .header img {
    width: 10%;
    object-fit: cover;
  }

  /*========= ナビゲーションのためのCSS ===============*/

  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: rgba(242, 180, 243, 0.866);
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    color: #615f5f;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 30px;
    right: 20px;
    cursor: pointer;
    width: 70px;
    height: 70px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fd91e0;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 27px;
  }

  .openbtn span:nth-of-type(3) {
    top: 40px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .interview {
    width: 100%;

    max-width: none;

    margin: 0;

    position: relative;

    overflow: hidden;

    padding-top: 90px;
  }

  /* SVGのタイトル帯 */
  .title-wave {
    position: absolute;
    top: 20px;
    left: 0;

    width: 100%;
    height: 95px;

    display: block;
    z-index: 0;
    pointer-events: none;
  }

  .interview-title {
    position: relative;

    width: fit-content;

    margin: 15px 0 85px 90px;

    text-align: center;

    z-index: 2;

    transform: none;
  }

  /* 左上の百合 */

  .interview-title::before {
    content: "";

    position: absolute;

    top: -130px;

    left: -200px;

    width: 300px;

    height: 400px;

    background: url("../img/lily_left.png") no-repeat center;

    background-size: contain;

    opacity: 1;

    pointer-events: none;

    z-index: -1;
  }

  /* 百合・タイトル周辺のふわっとした薄ピンク */

  .interview::after {
    content: "";
    position: absolute;

    top: -10px; /* ← 55px → -10px */
    left: -60px; /* 少し右へ */

    width: 650px;
    height: 460px;
    background: radial-gradient(
      ellipse at center,
      rgba(250, 210, 242, 0.42) 0%,
      rgba(250, 220, 245, 0.2) 45%,
      rgba(255, 255, 255, 0) 75%
    );

    filter: blur(30px); /* 少し柔らかく */
    z-index: 0;
    pointer-events: none;
  }

  /* ←ここに追加！ */
  .interview-title,
  .pickup,
  .latest {
    position: relative;
    z-index: 2;
  }

  .interview-title h1,
  .interview-title p,
  .title-butterfly {
    position: relative;
    z-index: 2;
  }

  .interview-title h1 {
    font-size: 72px;
    color: #ee9de4;
    line-height: 1;
    font-weight: bold;
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
  }

  .interview-title p {
    margin-top: 6px;
    letter-spacing: 2px;
    font-size: 22px;
    color: #ee9de4;
    font-weight: bold;
  }

  .title-butterfly {
    width: 70px;
    transform: translateY(-8px);
  }

  .pickup {
    width: 90%;
    max-width: 1100px;
    margin: 80px auto;
  }

  .pickup-title {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 45px;
  }

  .pickup-title-line {
    position: relative;
    flex: 1;
    max-width: 220px;
    height: 2px;
    background: #efb2e7;
  }

  /* 線の先端のひし形 */

  .pickup-title-line:first-child::before,
  .pickup-title-line:last-child::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 9px;

    height: 9px;

    background: #efb2e7;

    transform: translateY(-50%) rotate(45deg);
  }

  .pickup-title-line:first-child::before {
    left: 0;
  }

  .pickup-title-line:last-child::after {
    right: 0;
  }

  .pickup-title img:first-of-type {
    width: 34px; /* 王冠 */
  }

  .pickup-title img:last-of-type {
    width: 28px; /* キラキラ */
  }

  .pickup-title h2 {
    margin: 0;

    color: #ee9de4;

    font-size: 34px;

    line-height: 1.15;

    text-align: center;
  }

  .pickup-title h2 span {
    display: block;

    margin-top: 6px;

    font-size: 16px;

    color: #777;

    font-weight: normal;
  }

  .pickup-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
  }

  .pickup-card {
    width: 30%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
  }

  .pickup-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  }

  .pickup-rank {
    position: absolute;
    top: 0;
    left: 18px;

    width: 42px;
    height: 58px;

    background: rgba(229, 90, 201, 0.6);
    color: #fff;

    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 12px;

    z-index: 10;

    clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 68%, 0 82%);
  }

  .pickup-card a {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .pickup-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #fff;
    display: block;
  }

  .pickup-text {
    padding: 20px;
  }

  .pickup-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }

  .pickup-tags span {
    background: #efa5e9;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
  }

  .pickup-text h3 {
    color: #5d275d;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 14px;
  }

  .pickup-desc {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    min-height: 60px;
  }

  .pickup-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
  }

  .pickup-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid #f3b8e9;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s;
  }

  .pickup-arrow span {
    color: #f3b8e9;
    font-size: 38px;
    line-height: 1;
    margin-left: 3px;
  }

  .pickup-card:hover .pickup-arrow {
    background: #ef8edb;
  }

  .pickup-card:hover .pickup-arrow span {
    color: #fff;
  }

  .latest {
    width: 90%;
    max-width: 1100px;
    margin: 180px auto 100px;
  }

  .latest-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .latest-title-main {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
  }

  .latest-title-line {
    position: relative;

    flex: 1;

    max-width: 220px;

    height: 2px;

    background: #efb2e7;
  }

  /* 線の先端のひし形 */

  .latest-title-line:first-child::before,
  .latest-title-line:last-child::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 9px;

    height: 9px;

    background: #efb2e7;

    transform: translateY(-50%) rotate(45deg);
  }

  .latest-title-line:first-child::before {
    left: 0;
  }

  .latest-title-line:last-child::after {
    right: 0;
  }

  .latest-title h2 {
    margin: 0;

    color: #e99adb;

    font-size: 40px;

    line-height: 1.2;

    white-space: nowrap;
  }

  .latest-sparkle {
    width: 50px;

    height: auto;
  }

  .latest-butterfly {
    width: 40px;

    height: auto;
  }

  .latest-title p {
    margin-top: 8px;
    font-size: 15px;
    color: #555;
  }

  .latest-card {
    border: 3px dotted #f7ccef;
    border-radius: 24px;
    padding: 60px 70px;
    background: #fff;
    text-align: center;
  }

  .latest-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .latest-meta time {
    font-size: 16px;
    color: #555;
  }

  .latest-meta span {
    color: #ef8edb;
    border: 2px solid #ef8edb;
    border-radius: 20px;
    padding: 3px 14px;
    font-size: 13px;
    font-weight: bold;
    background: #fff0fb;
  }

  .latest-card h3 {
    color: #5d275d;
    font-size: 38px;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .latest-line {
    height: 2px;
    background: #f3b8e9;
    margin: 25px auto 35px;
  }

  .latest-text {
    max-width: 760px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 2;
    color: #333;
  }

  .latest-quote {
    max-width: 420px;
    margin-top: 10px;
    margin: 0 auto;
    background: #fdeafa;
    border-radius: 50px;
    padding: 16px;
    transition: 0.3s;
  }

  .latest-quote a {
    display: block;
    text-decoration: none;
    color: #7a3b7a;
    font-weight: bold;
    font-size: 18px;
  }

  .latest-quote:hover {
    background: #ef8edb;
    transform: translateY(-3px);
  }

  .latest-quote:hover a {
    color: white;
  }

  .latest-quote span {
    margin-left: 8px;
    transition: 0.3s;
  }

  .latest-quote:hover span {
    margin-left: 16px;
  }

  .footer {
    position: relative;
    width: 100%;
    min-height: 320px;
    padding: 130px 60px 70px;
    margin-bottom: 70px;
    overflow: hidden;

    background: linear-gradient(135deg, #f9ebf7 0%, #f3d4ef 45%, #e9bde4 100%);
  }

  /* なだらかな波 */

  .footer-wave {
    position: absolute;

    top: -1px;

    left: 0;

    width: 100%;

    height: 115px;

    display: block;

    z-index: 1;
  }

  .footer-wave path {
    fill: #fff;
  }

  .footer1,
  .footer2,
  .footer-sparkles {
    position: relative;
    z-index: 3;
  }

  /* 右下の百合 */
  .footer::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -55px;

    width: 390px;
    height: 390px;

    background: url("../img/lily_right.png") no-repeat center;
    background-size: contain;

    opacity: 0.8;
    pointer-events: none;
    filter: brightness(1.08);

    z-index: 2;
  }

  .footer-sparkles {
    position: absolute;
    left: 55%;
    bottom: 50px;
    width: 120px;
    height: 90px;
    z-index: 2;
    pointer-events: none;
  }

  .footer-sparkles span {
    position: absolute;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
  }

  .sparkle-upper {
    top: 0;
    right: 5px;
    font-size: 22px;
  }

  .sparkle-lower {
    left: 20px;
    bottom: 0;
    font-size: 28px;
  }

  .footer1 {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .footer2 {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);

    z-index: 1;
    font-size: 13px;
    color: #444;
    white-space: nowrap;
  }

  .cta {
    position: fixed;
    display: flex;
    justify-content: center;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    background: rgba(119, 250, 93, 0.711);
    z-index: 9999;
  }

  .cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    /* ←太く */
    font-size: 30px;
    /* ←大きく */
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
  }
}

/*SPサイズレスポンシブ*/
@media (max-width: 599px) {
  body {
    max-width: 599px;
    min-width: auto;
    width: 100%;
  }

  .interview,
  .pickup,
  .latest,
  .footer {
    width: 100%;
    max-width: none;
  }

  .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }

  .header {
    width: 100%;
    height: auto;
  }

  .header img {
    width: 20%;
    object-fit: cover;
  }

  /*========= ナビゲーションのためのCSS ===============*/

  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: rgba(242, 180, 243, 0.866);
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    color: #615f5f;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 30px;
    right: 20px;
    cursor: pointer;
    width: 70px;
    height: 70px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fd91e0;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 27px;
  }

  .openbtn span:nth-of-type(3) {
    top: 40px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .interview {
    width: 100%;
    max-width: none;
    margin: 0;
    position: relative;
    overflow: hidden;
    padding-top: 55px;
  }

  /* SVGのタイトル帯 */
  .title-wave {
    position: absolute;
    top: 10px;
    left: 0;

    width: 100%;
    height: 55px;

    display: block;
    z-index: 0;
    pointer-events: none;
  }

  .interview-title {
    position: relative;
    width: fit-content;
    margin: 10px auto 30px;
    padding: 0 20px;
    text-align: center;

    left: -35px;
    top: -15px;
  }

  /* 左上の百合 */

  .interview-title::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -65px;
    width: 120px;
    height: 160px;
    opacity: 0.7;
    background: url("../img/lily_left.png") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
  }

  /* 百合・タイトル周辺のふわっとした薄ピンク */

  .interview::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -70px;
    width: 230px;
    height: 120px;
    background: radial-gradient(
      ellipse at center,
      rgba(250, 210, 242, 0.42) 0%,
      rgba(250, 220, 245, 0.2) 45%,
      rgba(255, 255, 255, 0) 75%
    );

    filter: blur(24px); /* 少し柔らかく */
    z-index: 0;
    pointer-events: none;
  }

  /* ←ここに追加！ */
  .interview-title,
  .pickup,
  .latest {
    position: relative;
    z-index: 2;
  }

  .interview-title h1,
  .interview-title p,
  .title-butterfly {
    position: relative;
    z-index: 2;
  }

  .interview-title h1 {
    font-size: 32px;
    color: #ee9de4;
    line-height: 1;
    font-weight: bold;
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
    white-space: nowrap;
  }

  .interview-title p {
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 12px;
    color: #ee9de4;
  }

  .title-butterfly {
    width: 28px;
    transform: translateY(-4px);
  }

  .pickup {
    width: 100%;
    margin: 45px auto 70px;
  }

  .pickup-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
    padding: 0 12px;
  }

  .pickup-title-line {
    /* position: relative;
    flex: 1;
    max-width: 42px;
    height: 1.5px;
    background: #efb2e7; */
    display: none;
  }

  /* 線の先端のひし形 */

  .pickup-title-line:first-child::before,
  .pickup-title-line:last-child::after {
    /* content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #efb2e7;
    transform: translateY(-50%) rotate(45deg); */
    display: none;
  }

  .pickup-title-line:first-child::before {
    left: 0;
  }

  .pickup-title-line:last-child::after {
    right: 0;
  }

  .pickup-title img:first-of-type {
    width: 27px; /* 王冠 */
  }

  .pickup-title img:last-of-type {
    width: 28px; /* キラキラ */
  }

  .pickup-title h2 {
    margin: 0;
    color: #ee9de4;
    font-size: 28px;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
  }

  .pickup-title h2 span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    font-weight: normal;
    white-space: nowrap;
  }

  .pickup-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .pickup-card {
    width: 76%;
    max-width: 290px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
  }

  .pickup-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  }

  .pickup-rank {
    position: absolute;
    top: 0;
    left: 18px;

    width: 42px;
    height: 58px;

    background: rgba(229, 90, 201, 0.6);
    color: #fff;

    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 12px;

    z-index: 10;

    clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 68%, 0 82%);
  }

  .pickup-card a {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .pickup-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
    display: block;
  }

  .pickup-text {
    padding: 20px;
  }

  .pickup-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }

  .pickup-tags span {
    background: #efa5e9;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
  }

  .pickup-text h3 {
    color: #5d275d;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 14px;
  }

  .pickup-desc {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    min-height: 60px;
  }

  .pickup-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
  }

  .pickup-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid #f3b8e9;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s;
  }

  .pickup-arrow span {
    color: #f3b8e9;
    font-size: 38px;
    line-height: 1;
    margin-left: 3px;
  }

  .pickup-card:hover .pickup-arrow {
    background: #ef8edb;
  }

  .pickup-card:hover .pickup-arrow span {
    color: #fff;
  }

  .latest {
    width: 100%;
    margin: 55px auto 0;
  }

  .latest-title {
    text-align: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 0 16px;
  }

  .latest-title-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .latest-title-line {
    /* position: relative;
    flex: 1;
    max-width: 220px;
    height: 2px;
    background: #efb2e7; */
    display: none;
  }

  /* 線の先端のひし形 */

  .latest-title-line:first-child::before,
  .latest-title-line:last-child::after {
    /* content: "";
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    background: #efb2e7;
    transform: translateY(-50%) rotate(45deg); */
    display: none;
  }

  .latest-title-line:first-child::before {
    left: 0;
  }

  .latest-title-line:last-child::after {
    right: 0;
  }

  .latest-title h2 {
    margin: 0;
    color: #e99adb;
    font-size: 28px;
    line-height: 1.1;
    text-align: center;
  }

  /* サブタイトル */

  .latest-title h2 span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-weight: normal;
  }

  .latest-sparkle {
    width: 22px;
    height: auto;
  }

  .latest-butterfly {
    width: 22px;
    height: auto;
  }

  .latest-title p {
    margin-top: 4px;
    font-size: 12px;
    color: #555;
  }

  .latest-card {
    width: 92%;
    border: 3px dotted #f7ccef;
    background: #fff;
    text-align: center;
    margin: 0 auto;
    padding: 28px 20px;
    border-width: 2px;
    border-radius: 22px;
  }

  .latest-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .latest-meta time {
    font-size: 12px;
    color: #555;
  }

  .latest-meta span {
    color: #ef8edb;
    border: 2px solid #ef8edb;
    border-radius: 20px;
    font-size: 11px;
    padding: 2px 10px;
    font-weight: bold;
    background: #fff0fb;
  }

  .latest-card h3 {
    color: #5d275d;
    font-size: 20px;
    line-height: 1.35;
    margin: 30px 0 20px;
  }

  .latest-line {
    height: 2px;
    background: #f3b8e9;
    margin: 25px auto 25px;
  }

  .latest-text {
    width: 100%;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 2;
    color: #333;
  }

  .latest-quote {
    width: 100%;
    margin-top: 20px;
    margin: 0 auto;
    background: #fdeafa;
    border-radius: 16px;
    padding: 16px;
    transition: 0.3s;
    word-break: break-all;
  }

  .latest-quote a {
    display: block;
    text-decoration: none;
    color: #7a3b7a;
    font-weight: bold;
    font-size: 13px;
  }

  .latest-quote:hover {
    background: #ef8edb;
    transform: translateY(-3px);
  }

  .latest-quote:hover a {
    color: white;
  }

  .latest-quote span {
    margin-left: 8px;
    transition: 0.3s;
  }

  .latest-quote:hover span {
    margin-left: 16px;
  }

  .footer {
    position: relative;
    width: 100%;
    min-height: 250px;
    padding: 100px 22px 55px;
    margin-top: 45px;
    margin-bottom: 72px;
    overflow: hidden;

    background: linear-gradient(135deg, #f9ebf7 0%, #f3d4ef 45%, #e9bde4 100%);
  }

  /* なだらかな波 */

  .footer-wave {
    position: absolute;
    top: -1px;
    left: 0;

    width: 100%;
    height: 78px;

    display: block;
    z-index: 1;
    pointer-events: none;
  }

  .footer-wave path {
    fill: #fff;
  }

  .footer1,
  .footer2,
  .footer-sparkles {
    position: relative;
    z-index: 3;
  }

  /* 右下の百合 */
  .footer::before {
    content: "";
    position: absolute;

    right: -55px;
    bottom: -35px;

    width: 230px;
    height: 230px;

    background: url("../img/lily_right.png") no-repeat center;
    background-size: contain;

    opacity: 0.8;
    filter: brightness(1.08);

    pointer-events: none;
    z-index: 2;
  }

  .footer-sparkles {
    position: absolute;
    left: 53%;
    bottom: 40px;

    width: 70px;
    height: 55px;

    z-index: 3;
    pointer-events: none;
  }

  .footer-sparkles span {
    position: absolute;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
  }

  .sparkle-upper {
    top: 0;
    right: 0;
    font-size: 16px;
  }

  .sparkle-lower {
    left: 5px;
    bottom: 0;
    font-size: 20px;
  }

  .footer1 {
    position: relative;
    z-index: 3;

    font-size: 13px;
    line-height: 1.8;
    color: #333;
  }

  .footer2 {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);

    z-index: 3;
    font-size: 11px;
    color: #444;
    white-space: nowrap;
  }

  .cta {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 5px;

    display: flex;
    justify-content: center;

    background: rgba(119, 250, 93, 0.711);
    z-index: 9999;
  }

  .cta-btn {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px 12px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    text-decoration: none;

    border-radius: 0px;
    text-decoration: none;
  }
}
