.maximan-section {
  margin: 0;
}

.maximan-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px; /* テキストと画像の間隔 */
  padding: 20px;
}

.maximan-text {
  flex: 1 1 400px;
  line-height: 2;
  font-size: 14px;
  text-align: center;
}

.maximan-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center; /* 横方向の中央寄せ */
  align-items: center; /* 縦方向の中央寄せ（必要に応じて） */
}

.maximan-image img {
  display: block;
  width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0px;
}

.maximan-message {
  color: orange;
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .maximan-content {
    gap: 0px; /* テキストと画像の間隔 */
    padding: 15px;
  }
  .maximan-image img {
    width: 200px;
  }
  .maximan-text {
    flex: 1 1 400px;
    line-height: 1.5;
    font-size: 12px;
  }

  .maximan-message {
    font-size: 12px;
  }
}

.insta {
  float: right;
}

    .responsive-iframe {
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 のアスペクト比 */
      display: none; /* 初期状態では非表示 */
    }

    .responsive-iframe iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 1;
    }

    .link-button {
      display: inline-block;
      margin: 10px 0;
      color: orange;
      cursor: pointer;
      text-decoration: underline;
      transition: all 0.3s ease;
 
   }
    .link-button:hover {
      color: #ff0000; /* ホバー時の文字色を変更 */
      text-decoration: none; /* 下線を消す（任意） */
      transform: scale(1.05);
   }





    .responsive-box {
      position: relative;
      width: 100%;
      padding-top: 75%; /* 4:3 の縦横比（高さ = 幅 × 0.75） */
      background-color: #000000;
    }

    .responsive-box img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* 必要に応じて contain に変更可能 */
    }

    .triangle {
      font-size: 1.8em; /* 通常の文字より大きく */
      vertical-align: middle; /* テキストと高さを揃える */
      margin-right: 5px; /* テキストとの間隔 */
      text-decoration: none; /* ← 下線を消す */
      color: orange;
      display: inline-block;
    }

    /* 点滅アニメーション */
    .blink {
      animation: blinkAnim 1s ease-in-out infinite;
    }

    @keyframes blinkAnim {
      50% {
        opacity: 0;
      }
    }


    .responsive-text-frame {
      width: 100%;
      height: 100px;
      border: none;
      background-color: #000000;
      font-family: sans-serif;
    }

.image-3d {
  transform: perspective(800px) rotateY(15deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.image-3d:hover {
  transform: perspective(800px) rotateY(0deg);
}


