@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
html {
  color: #333333;
  background: #f0f0f0;
  scroll-behavior: auto;
}

body {
  background: #FFFFFF; !important;
  background-color: #FFFFFF; !important;
}


div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

li,
ul{
  list-style: none;
}



/* Heroエリア 全体 */
.hero-section {
    background-image: linear-gradient(to right, #eaeff3 60%, #fccf00 60%);
    padding: 60px 20px;
    color: #333;
}

@media (max-width: 1148px) {
  .hero-section { 
    background-image: linear-gradient(to bottom, #eaeff3 43%, #fccf00 43%)
  }
}

/* Heroコンテンツエリア 全体 */
.hero-inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    gap: 30px;
}



/* コンテンツエリア 左側（テキスト+画像） */
.hero-content-left {
    flex: 1;
}

/* コンテンツテキスト メイン */
.hero-title {
    font-size: clamp(60px, 6.0vw, 120px);
    font-weight: bold;
    margin: 10px ;
    line-height: 1.2;
}

.hero-title.main {
    white-space: nowrap;
}

.text-small {
    font-size: clamp(40px, 5.0vw, 70px);
}

/* コンテンツテキスト サブ */
.hero-title.sub {
    font-size: clamp(25px, 3.0vw, 40px);
}

.text-highlight {
    color: #fc490d;
    text-shadow: 1px 1px #000, 2px 2px #333, 3px 3px #666;
}

.text-shadow {
    text-shadow: 0.5px 0.5px #ccc, 2px 2px #999;
}

/* コンテンツテキスト メリット */
.hero-merit {
    font-size: clamp(15px, 1.8vw, 24px);
    line-height: 1.8;
    margin: 50px 0 25px;
}

@media (max-width: 500px) {
  .hero-merit{
    margin: 50px 10px 25px;
  }
}

.fa-regular.fa-circle-check {
    color: #333;
    padding: 0 20px 0 10px;
}



/* コンテンツ画像エリア 全体 */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* コンテンツ画像エリア　訴求バッジ */
.badge-container {
    display: flex;
    gap: 15px;
}

.hero-illustration {
    flex: 0 0 40%;
}

/* 訴求バッジ */
.hero-badge {
    background-color: #fccf00;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
    font-weight: bold;
    font-size: 24px;
}

.badge-value {
    font-size: 50px;
    margin: -10px;
}

.value-small {
    font-size: 35px;
}

.hero-illustration img {
    width: auto;
    max-height: 300px;
    display: block;
}
 
.badge-image {
    width: 100%;  
    height: auto;
}

.hero-illustration {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

/* 1. アニメーション定義 */
@keyframes float {
    0% {
        transform: translateY(0); /* 開始位置 */
    }
    50% {
        transform: translateY(-10px); /* 中間位置：少し上に浮く */
    }
    100% {
        transform: translateY(0); /* 終了位置：元に戻る */
    }
}



/* コンテンツエリア 右側（フォーム） */
.hero-form-right {
    flex: 0 500px;
    max-height: 800px;
}

/* フォーム枠組み */
.form-container {
    position: relative;
    background: #fff;
    padding: 50px 24px;
    border-radius: 10px;
}

/* フォームタイトル */
.form-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}

.title-main {
    font-size: 24px;
    font-weight: bold;
}

.title-sub {
    font-size: 16px;
    display: inline-block;
    background: #fccf00;
    padding: 5px 20px 3px;
    border-radius: 50px;
}



/* レスポンシブ(1400px）対応 */
@media (max-width: 1400px) {
  .hero-badge {
    width: 150px;
    height: 150px;
    font-size: 15px;
  }
  
  .badge-value {
    font-size: 40px;
  }
  
  .value-small {
    font-size: 25px;
  }
}

/* レスポンシブ(1024px ※タブレットサイズ）対応 */
@media (max-width: 1148px) {
  .hero-inner {
    flex-direction: column;
    gap: 0px;
  }
  
  .hero-content-left, .hero-form-right {
    width: 100%;
  }
  
  .hero-image {
    margin: -10px 0 -40px;
    z-index: 10;
  }
  
  .form-container {
    z-index: 1;
  }
}

/* レスポンシブ(900px）対応 */
@media (max-width: 900px) {
  .hero-badge {
    width: 125px;
    height: 125px;
    font-size: 15px;
  }
  
  .badge-value {
    font-size: 35px;
  }
  
  .value-small {
    font-size: 20px;
  }
}

/* レスポンシブ(750px）対応 */
@media (max-width: 750px) {
  .hero-image {
    margin: -10px 0 -30px;
  }
}

/* レスポンシブ(650px）対応 */
@media (max-width: 650px) {
  .hero-badge {
    width: 100px;
    height: 100px;
    font-size: 12px;
  }
  
  .badge-value {
    font-size: 30px;
  }
  
  .value-small {
    font-size: 17.5px;
  }
}

/* レスポンシブ(500px ※スマホサイズ）対応 */
@media (max-width: 500px) {
  .hero-section {
    padding: 30px 20px;
  }
  
  .hero-title.main {
    white-space: normal;
  }
  
  .fa-regular.fa-circle-check {
    padding: 0 5px 0 0;
  }
  
  .hero-image {
    gap: 0px;
    margin: 0 0 -40px;
  }
  
  .hero-badge {
    display: none;
  }
  
  .title-main {
    font-size: 18px;
  }
  
  .title-sub {
    font-size: 14px;
  }
}