@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: #ffffff;
    padding: 60px 40px 0;
    color: #333;
}

/* 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;
    margin-top: 50px;
}

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

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

.text-small {
    font-size: clamp(30px, 4vw, 65px);
}

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

.text-highlight {
    color: #fc490d;
}

/* コンテンツテキスト メリット */
.hero-merit {
    font-size: clamp(15px, 1.8vw, 24px);
    line-height: 1.8;
    margin: 50px 0 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;
  　flex: 0 1 auto;
}

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

/* 訴求バッジ */
.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: 100%;
    height: auto;
    display: block;
}
 
.badge-image {
   width: 100%;  
    height: auto;
}



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

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

/* フォームタイトル */
.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: -60px 0;
    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: -35px 0;
  }
}

/* レスポンシブ(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: 60px 20px 0;
  }
  
  .hero-title.main {
    white-space: normal;
  }
  
  .fa-regular.fa-circle-check {
    padding: 0 5px 0 0;
  }
  
  .hero-image {
    gap: 0px;
    margin: -40px 0;
  }
  
  .hero-badge {
    display: none;
  }
  
  .title-main {
    font-size: 18px;
  }
  
  .title-sub {
    font-size: 14px;
  }
}