/* ========================================
   基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease; /* opacityを0.5秒で変更 */
}
a:hover{
  opacity: 0.7;
}

.only-pc{
  display: block;
}
.only-sp{
  display: none;
}
@media (max-width: 1024px) {
  .only-pc{
    display: none;
  }
  .only-sp{
    display: block;
  }
}

/* ========================================
   コンテナ
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #F5F5F5;
}

/* ========================================
   ヘッダー
======================================== */
header {
    background-color: #fff;
    padding: 0px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
}

.header-cta {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 7px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.header-cta:hover {
    background-color: #005a9e;
}

.senkyo{
    background: linear-gradient(90deg, #237dd8 0%, #173880 100%);
    padding: 30px 0 0;
}
.senkyo div{
  max-width: 1000px;
  margin: auto;
}
.senkyo-a {
  text-align: center;
  transform: translateY(-50%);

}
.senkyo-a a{
  background: linear-gradient(135deg, #ed7b23 0%, #f2502f 100%);
  color: #fff;
  padding: 20px 100px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 500;
  display: inline-block;
}
@media (max-width: 1024px) {
  .senkyo div{
    width: 90%;
    margin: auto;
  }
  .senkyo-a a{
    background: linear-gradient(135deg, #ed7b23 0%, #f2502f 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 4vw;
    display: inline-block;
  }
}
/* ========================================
   岡川さんFV
======================================== */
.lp-fv{
  position: relative;
  min-height: 500px;                 /* 好きな高さに調整OK */
  padding: 48px 24px;
  display: flex;
  align-items: center;

  /* 背景画像：全体が映るように（切れない） */
  background-image: url("../images/lp1-1.png");
  background-repeat: no-repeat;
  background-position: right 35%;
  background-size: cover;

}

/* 左側の青い塗りつぶし（オーバーレイ） */
.lp-fv::before{
  content:"";
  position: absolute;
  inset: 0;
  /* 左側だけ青くする（必要なら比率や透明度を調整） */
  background: linear-gradient(
    to right,
    #173a83 0%,
    #173a83 10%,
    #237ad4 45%,
    rgba(35, 125, 216, 0.00) 60%,
    rgba(0, 92, 255, 0.00) 100%
  );
  z-index: 1;
}

/* 中央を起点にして左へ配置 */
.lp-fv__inner{
  position: absolute;
  top: 50%;
  left: 50%;

  /* 中央起点 → 左方向へ */
  transform: translate(-110%, -50%);

  /* 余白（中心からの距離） */
  margin-left: -clamp(20px, 6vw, 120px);

  z-index: 2;
  color: #fff;
  max-width: 520px;
  line-height: 1.6;
}

.lp-fv-p1{
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
.lp-fv-h2{
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-shadow: 2px 4px 6px rgba(0,0,0,.3);
}
.lp-fv-p2{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.lp-fv-p3{
  font-size: 28px;
  font-weight: 700;
  color: #f2512c;
  text-shadow: 1px 1px 1px #333;
  margin-bottom: 0px;
}
/* 画面が広い時に左寄せを強める（任意） */
@media (min-width: 768px){
  .lp-fv{
    padding: 80px 64px;
  }
}

.lp-img{
  text-align: center;
  max-width: 1200px;
  margin:auto;
}
.lp-s1{
  background: #f6f6f6;
  text-align: center;
  padding: 60px 0 0px;
  position: relative; /* 擬似要素を配置するために相対位置に設定 */
}
.lp-s1-triangle {
  width: 0px;
  height: 0px;
  border-top: 80px solid #f6f6f6;
  border-right: 50vw solid #fff;
  border-left: 50vw solid #fff;
  border-bottom: 0px solid #fff;
}
.lp-s1-p1{
  color: #173880;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}
.lp-s1-p2{
  color: #173880;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}
.lp-s1-p3{
  color: #232323;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 20px;
}

.lp-s2{
  text-align: center;
  padding: 60px 0;
  background-image: url("../images/lp-s2-img1.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.lp-s2-p1{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
.lp-s2-p1-s1{
  color: #173880;
}
.lp-s2-p1-s2{
  display: inline-block;
  border-bottom: 10px solid #dcefff;
  line-height: 1;
}

.lp-s2-p2{
  font-size: 18px;
  font-weight: 400;
  margin-bottom:40px;
}
.lp-s2-p2 span{
  font-size: 22px;
  font-weight: 600;
  color: #173880;
}

.lp-s2-p3 a{
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: #fff;
  padding: 20px 100px;
  border-radius: 50px;
  font-size: 24px;
  display: inline-block;
}
.lp-s3{
  background: #dcefff;
  text-align: center;
  padding: 60px 0;
}
.lp-s3-h2{
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #173880;
}

.lp-s3-p1{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 60px;
}

.lp-s3-d1{
  max-width: 1000px;
  margin: auto;
  display:flex;
  justify-content: space-around;
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow:3px 3px 10px #98bee5;
}
.lp-s3-d1 article{
  width:45%;
  border-radius: 20px;
  border: 1px solid #aaa;
  text-align: center;
}
.lp-s3-d1 article img{
  height: 80px;
  margin:30px auto;
}
.lp-s3-d1 article h3{
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #aaa;
}
.lp-s3-d1 article h3 span:first-child{
    display: inline-block;
    background-color: #ddd;
    width: 40%;
    padding: 5px 0;
    border-radius: 20px 0 0 0;
}
.lp-s3-d1 .lp-s3-d1-ar2{
    border: 1px solid #173880;
}
.lp-s3-d1 .lp-s3-d1-ar2 h3 span:first-child{
  background-color: #97c6ff;
  color: #173880;
}
.lp-s3-d1 .lp-s3-d1-ar2 h3{
  border-bottom: 1px solid #173880;
}
.lp-s3-d1 article h3 span:last-child{
    display: inline-block;
    width: 60%;
    padding: 5px 0;
}
.lp-s3-d1 article p{
  margin-bottom: 20px;
}
.lp-s3-d1 .lp-s3-d1-ar1 p{
  padding-top: 10px;
}
.lp-s3-d2{
  margin: 50px auto;
  max-width: 1000px;
}
.lp-s3-d2-h2-box{
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: -2px;
}
.lp-s3-d2-h2{
    color: #173880;
    font-size: 30px;
}

.lp-s3-d2 article{
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow:3px 3px 10px #98bee5;
}
.lp-s3-d2 article .lp-s3-d2-l{
  width: 30%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-s3-d2 article .lp-s3-d2-l h3{
  color: #173880;
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.lp-s3-d2 article .lp-s3-d2-l img{
  width: 70%;
  margin: 20px auto 0px;
}

.lp-s3-d2 article .lp-s3-d2-r{
  width: 65%;
  text-align: left;
}
.lp-s3-d2 article .lp-s3-d2-r h4{
  color:#237dd8;
  font-size: 24px;
  margin-bottom: 20px;
}
.lp-s3-d2 article .lp-s3-d2-r p{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.lp-s3-d2 article .lp-s3-d2-r p span{
  color:#237dd8;
}

.lp-s3-d2 article .lp-s3-d2-r ul li{
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 40px; /* 画像とテキストの間隔（画像の幅分） */
margin-bottom: 10px; /* 各アイテム間に少しスペース */
}
.lp-s3-d2-r ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 画像を縦方向に中央揃え */
}

.lp-s3-d2-r ul li span {
  padding-left: 20px; /* 画像とテキストの間隔 */
}




.lp-s3-d3{
  margin: 50px auto;
  max-width: 1000px;
}
.lp-s3-d3-h2-box{
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: -2px;
}
.lp-s3-d3-h2{
    color: #173880;
    font-size: 36px;
}
.lp-s3-d3 section{
  background-color: #fff;
  padding:0 30px 30px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow:3px 3px 10px #98bee5;
}
.lp-s3-d3 section h3{
  color: #173880;
  font-size: 28px;
  margin-bottom: 10px;
}
.lp-s3-d3 section .lp-s3-d3-p1{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}
.lp-s3-d3 section .lp-s3-d3-p1 span{
  color: #237dd8;
  font-weight: 700;
  font-size: 20px;
}
.lp-s3-d3 section .lp-s3-d3-p2{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
}
.lp-s3-d3 section .lp-s3-d3-p2 span{
  color: #237dd8;
  font-weight: 700;
  font-size: 20px;
}
.lp-s3-d3 section .lp-s3-d3-ul1{
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin-bottom: 20px;
}
.lp-s3-d3 section .lp-s3-d3-ul1 li{
  width: 45%;
  padding: 20px;
  border-radius: 20px;
  background-color: #f6f6f6;
}
.lp-s3-d3 section .lp-s3-d3-ul1 li h4{
  color: #173880;
  font-size: 20px;
}
.lp-s3-d3 .lp-s3-d3-s2 .lp-s3-d3-ul1 li h4{
  margin-bottom: 20px;
}
.lp-s3-d3 section .lp-s3-d3-ul1 li p{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.lp-s3-d3 .lp-s3-d3-s2 .lp-s3-d3-ul1 li p{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
}
.lp-s3-d3 section .lp-s3-d3-ul1 li p span{
  font-size: 16px;
  font-weight: 800;
  border-bottom: 2px solid #237dd8;
}
.lp-s3-d3 section .lp-s3-d3-ul1 li img{
  width: 70%;
  margin: auto;
}
.lp-s3-d3 .lp-s3-d3-s2 .lp-s3-d3-ul1 li img{
  width: 50%;
  margin:0 auto 20px;
}
.lp-s3-d3 section .lp-s3-d3-ul1 .lp-s3-d3-ul1-l2{
  width: 45%;
  padding: 20px;
  border-radius: 20px;
  background-color: #dcefff;
}

.lp-s3-d3 section .lp-s3-d3-ul2{
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin:0 auto 20px;
  max-width: 800px;
}
.lp-s3-d3 section .lp-s3-d3-ul2 li{
  width: 25%;
}

.lp-s3-d3-p0{
  text-align: center;
  background-color: #173880;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  border-radius: 50%;
  transform: translateY(-50%); /* 要素の高さの半分だけ上に引き上げる */
}

/* ========================================
   買取
======================================== */
.lp-s4-d1-bg{
  background: linear-gradient(90deg, #237dd8 0%, #173880 100%);
  color: #fff;
}
.lp-s4-d1-p0{
  text-align: center;
    transform: translateY(-50%);
    margin-bottom: 0px;
}
.lp-s4-d1-p0 img{
  margin: auto;
}
.lp-s4-d1{
  display: flex;
  max-width: 1000px;
  margin: auto;
  align-items: center;
  justify-content: space-around;
      transform: translateY(-50%);
}
.lp-s4-d1 p{
  font-size: 40px;
  font-weight: 800;
}
.lp-s4-d2-bg{
  background-color: #f4f4f4;
}
.lp-s4-d2{
  padding: 50px 0;
  max-width: 1000px;
  display: flex;
  margin: auto;
  justify-content: space-around;
}

.lp-s4-d2 article{
  background-color: #fff;
  width: 48%;
  padding: 20px;
  border-radius: 20px;
}
.lp-s4-d2 article h3{
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
  color:#173880;
}
.lp-s4-d2 article .lp-s4-d2-p1{
  font-size: 18px;
  margin-bottom: 30px;
}
.lp-s4-d2 article .lp-s4-d2-d1{
background-color:#ebf7ff;
padding: 15px;
margin-bottom: 10px;
}
.lp-s4-d2 article .lp-s4-d2-d1 h4{
  color:#237dd8;
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
}
.lp-s4-d2-d1-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}
.lp-s4-d2-d1-flex .lp-s4-d2-d1-flex-l{
  width: 15%;
}
.lp-s4-d2-d1-flex img{
  width: 100%;
}
.lp-s4-d2-d1-flex dl{
  width: 80%;
}
.lp-s4-d2-d1-flex dt{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
}
.lp-s4-d2-d1-flex dd{
  font-size: 16px;
  font-weight: 500;
}
.lp-s4-d2-d1-p1{
  font-size: 14px;
  margin-bottom: 20px;
}

.lp-s4-d2 article ul li{
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 40px; /* 画像とテキストの間隔（画像の幅分） */
margin-bottom: 10px; /* 各アイテム間に少しスペース */
}
.lp-s4-d2 ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 画像を縦方向に中央揃え */
}

.lp-s4-d3{
  background: #f4f4f4;
  text-align: center;
  padding: 20px 0 80px;
}
.lp-s4-d3 .lp-s4-d3-p1{
    color:#173880;
  font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.lp-s4-d3 .lp-s4-d3-p1 span{
    color:#173880;
  font-size: 30px;
  line-height: 2;
  font-weight: 700;
}

.lp-s4-d3-p2 a{
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    color: #fff;
    padding: 20px 100px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    display: inline-block;
    margin-bottom:5px;
}
.lp-s4-d3-p3{
  font-size: 16px;
      font-weight: 500;
}

/* ========================================
   期間限定キャンペーン
======================================== */
.lp-s5{
  max-width: 1000px;
  margin: 60px auto;
  background: linear-gradient(135deg,#237dd8 0%, #173880 100%);
  border-radius: 20px;
  padding:80px 50px 50px 50px;
}
.lp-s5-ar1{
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.lp-s5-ar1 h2{
  width: 70%;
  margin: -100px auto 30px;
}

.lp-s5-ar1-p1{
  text-align: center;
      color:#173880;
      font-size: 40px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 20px;
}

.lp-s5-ar1-p1 span{
  font-size: 50px;
}

.lp-s5-ar1-p2{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 50px;
}
.lp-s5-ar1-p3{
  text-align: center;
  color:#173880;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.lp-s5-ar1-p4{
  text-align: center;
  color:#173880;
  font-size: 75px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 6px;
  line-height:0.6;
}
.lp-s5-ar1-p4 span{
  background:linear-gradient(135deg,#3185fd 0%, #2A4E9A 100%);
-webkit-background-clip:text;
-webkit-text-fill-color: transparent;
}
.lp-s5-ar1-p4 .lp-s5-ar1-p4-sp1{
  font-size: 120px;
}

.lp-s5-ar1-p5{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.lp-s5-ar1-p6-flex{
  display: flex;
}
.lp-s5-ar1-p6-flex-img{
  width: 60px;
}
.lp-s5-ar1-p6{
  display: inline-block;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.7;
  margin:0 auto 60px;
  border-bottom: 20px solid;
  border-image: linear-gradient(to right, #d9b972 0%, #f4db8c 50%,#f9f3e5 70%, #efca84 90%, #f0cc7e 100%);
  border-image-slice: 1;
}
.lp-s5-ar1-p6 span{
  font-size: 31px;
}
.lp-s5-ar1-p6 .lp-s5-ar1-p6-sp1{
  font-size: 50px;
}
.lp-s5-ar1 ul{
  max-width: 600px;
  margin: auto;
}
.lp-s5-ar1 ul li{
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 40px; /* 画像とテキストの間隔（画像の幅分） */
margin-bottom: 10px; /* 各アイテム間に少しスペース */
text-align: left;
}
.lp-s5-ar1 ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 画像を縦方向に中央揃え */
}
.lp-s5-ar1 ul li span{
  color: #237dd8;
  }
.lp-s5-d1{
  display: flex;
  justify-content: space-around;
  border: 1px solid #fff;
  padding: 20px;
  color: #fff;
  margin-bottom: 30px;
}
.lp-s5-d1 dl{
  width: 47%;
}
.lp-s5-d1 dl dt{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
.lp-s5-d1 dl dd{
  font-size: 16px;
  margin-bottom: 10px;
}
.lp-s5-d1 dl dd span{
  font-size: 14px;
}

.lp-s5-d2{
  background-color: #eaeef4;
  padding: 20px 0;
  margin-bottom: 50px;
}
.lp-s5-d2-p1{
  text-align: center;
  color: #173880;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.lp-s5-d2-p2{
  font-size: 22px;
  font-weight: 700;
  text-align: center;
    margin-bottom: 10px;
}
.lp-s5-d2-p2 span{
  color: #f2512c;
}
.lp-s5-d2-p3{
  font-size: 16px;
  font-weight: 500;
  text-align: center;
    margin-bottom: 3px;
}
.lp-s5-d2-p4{
  font-size: 14px;
  font-weight: 500;
    text-align: center;
}
.lp-s5-d2-p5{
  margin: auto;
  text-align: center;
}
.lp-s5-d2-p5 a{
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    color: #fff;
    padding: 20px 100px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    display: inline-block;
    margin:auto;
}
.lp-s6{
background-color: #f2f4f7;
padding: 70px 0;
}
.lp-s6 h2{
  text-align: center;
  font-size: 40px;
  color: #173880;
  margin-bottom: 50px;
  font-weight: 800;
}
.lp-s6 ul{
display: flex;
list-style: none;
justify-content: space-around;
margin:0 auto 50px;
max-width: 1000px;
}
.lp-s6 ul li{
display: flex;
list-style: none;
flex-direction:column;
justify-content: center;
align-items: center;
box-shadow:3px 3px 10px #98bee5;
width: 23%;
background-color: #fff;
padding:40px 20px;
border-radius: 20px;
font-weight: 500;
}
.lp-s6 ul li img{
  height: 120px;
  margin-bottom: 20px;
}
.lp-s6-p1{
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
.lp-s7{
  background-color: #dcefff;
  padding: 50px 0;
}

.lp-s7 h2{
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: 700;
  color: #173880;
}

.lp-s7-d1{
  max-width: 1000px;
  margin:0 auto 50px;
  display: flex;
  justify-content: space-between;
}

.lp-s7 .lp-s7-d1 article{
  background-color: #fff;
  border-radius: 20px;
  width: 47%;
  padding: 30px 60px;
  text-align:center;
}
.lp-s7 .lp-s7-d1 article h3{
  color: #237dd8;
  font-size: 24px;
  margin-bottom: 20px;
}
.lp-s7 .lp-s7-d1 article img{
  margin:0 auto 20px;
}

.lp-s7 ul{
  max-width: 500px;
  margin: auto;
}
.lp-s7 ul li{
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 40px; /* 画像とテキストの間隔（画像の幅分） */
margin-bottom: 10px; /* 各アイテム間に少しスペース */
text-align: left;
}
.lp-s7 ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 画像を縦方向に中央揃え */
}

.lp-s7-ar3{
  background: #fff;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1000px;
  margin:0 auto 70px;
  border-radius: 20px;
}
.lp-s7-ar3 div{
  display: flex;
  align-items: center;
  width: 47%;
  justify-content: space-around;
}
.lp-s7-ar3 div dl{
  width: 80%;
}
.lp-s7-ar3 div dl dt{
  font-size: 24px;
  font-weight: 700;
  color:#237dd8;
}
.lp-s7-ar3 div dl dd{
  font-size: 18px;
  font-weight: 500;
}

.lp-s7-d2{
  max-width: 1000px;
  margin:0 auto 20px;
  display: flex;
  justify-content: space-between;
}
.lp-s7-d2 article{
  width: 47%;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
.lp-s7-d2-p1{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.lp-s7-d2 img{
  margin:0 auto 20px;
}
.lp-s7-d2-p2{
  background-color: #237dd8;
  padding: 20px 60px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 20px;
  display: inline-block;
}
.lp-s7-ar5-d1{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.lp-s7-d2-p3{
  background-color: #237dd8;
  padding: 20px 30px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 20px;
  display: inline-block;
}
.lp-s7-d2-p4{
  color: #237dd8;
  font-size: 50px;
  font-weight: 700;
}
.lp-s7-d2-p5{
  border:3px solid #237dd8;
  padding: 17px 30px;
  color: #237dd8;
  font-size: 22px;
  font-weight: 700;
  border-radius: 20px;
  display: inline-block;
  box-sizing: border-box;
}

.lp-s7-p1{
  font-size: 16px;
  text-align: left;
  margin:0 auto 50px;
  max-width: 500px;
}
.lp-s7-p2{
  font-size: 36px;
  text-align: center;
    color: #237dd8;
    font-weight: 700;
}
.lp-s7-p2-dots {
  background-image: radial-gradient(circle at center, #237dd8 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .2em; /* 縦方向の位置調整 */
}
.lp-s7-p3{
  font-size: 30px;
  text-align: center;
  font-weight: 700;
}

.lp-s8{
  padding: 70px;
}
.lp-s8 h2{
  font-size: 40px;
  color: #173880;
  margin-bottom: 60px;
  text-align: center;
}
.lp-s8 .lp-s8-d1{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.lp-s8 .lp-s8-d1 article{
  background-color: #fff;
  padding: 20px;
  margin: auto;
  width: 30%;
  box-shadow:3px 3px 10px #98bee5;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-s8-p1{
  font-size:24px;
  background-color:#237dd8;
  color: #fff;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  box-sizing: border-box;
  text-align: center;
  margin:0 auto 10px;
}

.lp-s8-p2{
  font-size:24px;
  color: #237dd8;
  font-weight: 700;
}
.lp-s8-p3{
  font-weight: 500;
  margin-bottom: 20px;
}

.lp-s8 img{
  height: 110px;
  margin:0 auto 20px;
}
.lp-s8-p4{
  background-color: #237dd8;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  display:inline-block;
  padding: 3px 30px;
  border-radius: 10px;
  max-width: 300px;
  margin: auto;
}
.triangle{
  display: inline-block;
width: 20px;
height: 10px;
background:  #237dd8;
clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: auto;
}
.lp-s8-p5{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}
.lp-s8-p5::after {
  display: inline-block;
  width: 73.5px;
  height: 100px;
  background: #000000;
  clip-path: polygon(0 63.2%, 50% 63.2%, 50% 0, 50% 0, 50% 63.2%, 100% 63.2%, 50% 100%);
}
.lp-s8-p6{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #173880;}


.lp-s9{
  background: linear-gradient(90deg, #237dd8 0%, #173880 100%);
  padding: 70px 0;
}
.lp-s9 h2{
  text-align: center;
  font-size: 40px;
  color: #fff;
    margin-bottom: 30px;
}
.lp-s9 .lp-s9-p1{
  text-align: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 40px;
}
.lp-s9 .lp-s9-p2{
  text-align: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}
.lp-s9-p3{
  text-align: center;
  margin-bottom: 60px;
}
.lp-s9-p3 a{
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    color: #fff;
    padding: 20px 100px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    display: inline-block;
    margin:auto;
}
.lp-s9-form{
  padding-top: 80px;
  max-width: 1000px;
  margin: auto;
}
/* ========================================
   ファーストビュー
======================================== */
.hero {
    background: linear-gradient(135deg, #237dd8 0%, #2253bd 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-logo {
    max-width: 400px;
    margin: 0 auto 50px;
}

/* 課題提示(大きく) */
.hero-problem {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-problem-label {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    }
}

.hero-problem-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B6B;
    line-height: 1.6;
    margin-bottom: 12px;
}

.hero-problem-sub {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* メインコピー */
.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0078D4;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero h1 .highlight {
    background: linear-gradient(transparent 60%, #FFD700 60%);
    padding: 0 8px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    background-color: #0078D4;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,120,212,0.3);
}

.btn-primary:hover {
    background-color: #005a9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,120,212,0.4);
}

.btn-secondary {
    background-color: #fff;
    color: #0078D4;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #0078D4;
}

.btn-secondary:hover {
    background-color: #E3F2FD;
}

.hero-visual-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-visual {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.comparison-table {
    display: flex;
    align-items: stretch;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    flex: 1;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-card.old {
    background-color: #FFE6E6;
    border: 3px solid #FF6B6B;
    position: relative;
    opacity: 0.85;
}

.comparison-card.new {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border: 4px solid #0078D4;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 120, 212, 0.3);
    transform: scale(1.05);
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.comparison-card.old .comparison-badge {
    background-color: #FF6B6B;
    color: #fff;
}

.comparison-card.new .comparison-badge {
    background: linear-gradient(135deg, #0078D4 0%, #5B9BD5 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.4);
}

.comparison-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.comparison-card.old .comparison-icon {
    color: #FF6B6B;
}

.comparison-card.new .comparison-icon {
    color: #0078D4;
}

.comparison-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.comparison-card.old .comparison-title {
    color: #FF6B6B;
}

.comparison-card.new .comparison-title {
    color: #0078D4;
}

.comparison-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.comparison-price {
    font-size: 1.8rem;
    font-weight: 900;
    margin-top: auto;
    padding-top: 20px;
}

.comparison-card.old .comparison-price {
    color: #FF6B6B;
}

.comparison-card.new .comparison-price {
    color: #0078D4;
}

/* ========================================
   キャンペーンセクション
======================================== */
.campaign-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.campaign-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.campaign-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.campaign-content {
    position: relative;
    z-index: 1;
}

.campaign-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.campaign-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.campaign-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
    opacity: 0.95;
}

.campaign-main {
    background-color: #fff;
    color: #333;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    max-width: 900px;
    margin: 0 auto 40px;
}

.campaign-offer {
    text-align: center;
    margin-bottom: 40px;
}

.campaign-price {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 10px;
}

.campaign-price-note {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.campaign-period {
    display: inline-block;
    background-color: #FFF3CD;
    color: #856404;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.05rem;
    border: 2px solid #FFD700;
}

.campaign-features {
    margin-bottom: 40px;
}

.campaign-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0078D4;
    margin-bottom: 20px;
    text-align: center;
}

.campaign-feature-list {
    list-style: none;
}

.campaign-feature-list li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    border-bottom: 1px solid #E0E0E0;
}

.campaign-feature-list li:last-child {
    border-bottom: none;
}

.campaign-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1.2rem;
}

.campaign-conditions {
    background-color: #F8F9FA;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #0078D4;
    margin-bottom: 30px;
}

.campaign-conditions-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0078D4;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.campaign-conditions-list {
    list-style: none;
}

.campaign-conditions-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.campaign-conditions-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #0078D4;
}

.campaign-spec {
    background-color: #E3F2FD;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.campaign-spec-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0078D4;
    margin-bottom: 16px;
    text-align: center;
}

.campaign-spec-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.campaign-warning {
    background-color: #FFF9E6;
    padding: 20px 30px;
    border-radius: 8px;
    border-left: 4px solid #FFC107;
    margin-bottom: 30px;
}

.campaign-warning-title {
    font-weight: 700;
    color: #856404;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaign-warning-text {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.campaign-cta {
    text-align: center;
}

.campaign-button {
    background-color: #FF6B6B;
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

.campaign-button:hover {
    background-color: #FF5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,107,107,0.5);
}

.campaign-button-note {
    margin-top: 20px;
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
}

/* ========================================
   既存PC対応セクション(NEW)
======================================== */
.existing-pc-section {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.existing-pc-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.existing-pc-content {
    position: relative;
    z-index: 1;
}

.existing-pc-question {
    text-align: center;
    margin-bottom: 60px;
}

.existing-pc-question-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.existing-pc-question-text {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.existing-pc-question-sub {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.existing-pc-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.existing-pc-card {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.existing-pc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.existing-pc-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.existing-pc-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 16px;
}

.existing-pc-card-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.existing-pc-card-features {
    list-style: none;
    text-align: left;
}

.existing-pc-card-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.existing-pc-card-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.existing-pc-cta-wrapper {
    text-align: center;
    background-color: rgba(255,255,255,0.15);
    padding: 40px;
    border-radius: 16px;
}

.existing-pc-cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.6;
}

.existing-pc-cta-button {
    background-color: #fff;
    color: #4CAF50;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.existing-pc-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: #f5f5f5;
}

.existing-pc-note {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   見出し共通
======================================== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0078D4;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #5B9BD5;
    border-radius: 2px;
}

/* ========================================
   課題提示セクション
======================================== */
.problems-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

.problems-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-alt .problem-item {
    background-color: #fff;
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.problem-icon {
    font-size: 2.5rem;
    color: #5B9BD5;
    margin-bottom: 20px;
}

.problem-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.problems-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: #0078D4;
    font-weight: 500;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,120,212,0.1);
}

/* ========================================
   サービス特徴セクション
======================================== */
.feature-section {
    padding: 100px 0;
    background: #fff;
}

.feature-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.feature-intro-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0078D4;
    margin-bottom: 30px;
    line-height: 1.4;
}

.feature-intro-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.9;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 0 0 300px;
    text-align: center;
}

.feature-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0078D4 0%, #5B9BD5 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0,120,212,0.3);
}

.feature-icon-large {
    font-size: 8rem;
    color: #E3F2FD;
    margin-top: 20px;
}

.feature-content {
    flex: 1;
}

.feature-label {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 2rem;
    font-weight: 900;
    color: #0078D4;
    margin-bottom: 24px;
    line-height: 1.4;
}

.feature-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 24px;
}

.feature-points {
    list-style: none;
}

.feature-points li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.feature-points li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1.2rem;
}

/* ========================================
   仕組み説明セクション
======================================== */
.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.mechanism-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.mechanism-icon {
    width: 80px;
    height: 80px;
    background-color: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #0078D4;
}

.mechanism-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0078D4;
    margin-bottom: 20px;
}

.mechanism-list {
    list-style: none;
    text-align: left;
}

.mechanism-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.mechanism-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #5B9BD5;
}

.mechanism-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 12px;
}

.mechanism-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: #0078D4;
    font-weight: 500;
    padding: 30px;
    background-color: #E3F2FD;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   料金セクション
======================================== */
.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.pricing-item {
    margin-bottom: 30px;
}

.pricing-item:last-child {
    margin-bottom: 0;
}

.pricing-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0078D4;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-label i {
    font-size: 1.5rem;
}

.pricing-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pricing-example {
    background-color: #F5F5F5;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #5B9BD5;
}

.pricing-example-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.pricing-example-list {
    list-style: none;
}

.pricing-example-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.pricing-example-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5B9BD5;
    font-weight: 700;
}

.pricing-note {
    background-color: #FFF9E6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FFC107;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   利用シーンセクション
======================================== */
.usecases {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.usecase-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.usecase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.usecase-number {
    width: 50px;
    height: 50px;
    background-color: #0078D4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.usecase-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0078D4;
}

.usecase-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}

/* ========================================
   CTAセクション
======================================== */
.cta-section {
    background: linear-gradient(135deg, #0078D4 0%, #5B9BD5 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #fff;
    color: #0078D4;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-final-message {
    font-size: 1.1rem;
    margin-top: 30px;
    font-weight: 500;
}

/* ========================================
   フッター
======================================== */
footer {
    background-color: #f2f4f7;
    color: #232323;
    padding: 50px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 30px;
}

.footer-info {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #232323;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #232323;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #232323;
}

.footer-note {
    font-size: 0.9rem;
    color: #232323;
    line-height: 1.7;
    padding-top: 30px;
    border-top: 1px solid #34495E;
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495E;
    color: #95A5A6;
    font-size: 0.9rem;
}



/* ========================================
   サンクスページ
======================================== */

.form-thanks{
  background-color: #E8EDF5;
  padding: 60px 0;
}

.form-thanks-inner{
  background-color: #fff;
  width: 80%;
  margin: 0px auto;
  padding: 20px 40px;
  border-radius: 20px;
}

.form-thanks-inner h1{
  text-align: center;
  margin-bottom: 10px;
}
.form-thanks-inner p{
  max-width: 800px;
  margin:0 auto 15px;
}
.form-thanks-inner .top-back-link{
  text-align: center;
  text-decoration:underline;
  font-size: 24px;
}


/* ロゴ＋h1 */
.thanks-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin:0 auto 15px;
}

.thanks-logo {
  width: 100px;
  height: auto;
}

/* スマホ対応：縦並び */
@media (max-width: 768px) {
  .thanks-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .thanks-logo {
    width: 56px;
  }

  .thanks-header h1 {
    font-size: 22px;
  }
}


/* ========================================
   レスポンシブ対応
======================================== */

/* タブレット */
@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-problem-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .campaign-title {
        font-size: 2rem;
    }

    .campaign-main {
        padding: 40px 30px;
    }

    .feature-card {
        flex-direction: column !important;
        gap: 40px;
        padding: 40px 30px;
    }

    .feature-visual {
        flex: 0 0 auto;
    }

    .comparison-table {
        flex-direction: column;
        gap: 30px;
    }

    .comparison-card.new {
        transform: scale(1);
    }

    .existing-pc-solutions {
        grid-template-columns: 1fr;
    }

    .existing-pc-question-text {
        font-size: 1.8rem;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo {
        height: 40px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-logo {
        max-width: 280px;
        margin-bottom: 30px;
    }

    .hero-problem {
        padding: 20px 24px;
    }

    .hero-problem-text {
        font-size: 1.3rem;
    }

    .hero-problem-sub {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .hero-visual {
        padding: 30px 20px;
    }

    .comparison-table {
        flex-direction: column;
        gap: 25px;
    }

    .comparison-card {
        padding: 24px 20px;
    }

    .comparison-icon {
        font-size: 2.5rem;
    }

    .comparison-price {
        font-size: 1.6rem;
    }

    .campaign-section {
        padding: 60px 0;
    }

    .campaign-title {
        font-size: 1.6rem;
    }

    .campaign-subtitle {
        font-size: 1rem;
    }

    .campaign-main {
        padding: 30px 20px;
    }

    .campaign-price {
        font-size: 2.2rem;
    }

    .campaign-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
    }

    .existing-pc-section {
        padding: 60px 0;
    }

    .existing-pc-question-icon {
        font-size: 3rem;
    }

    .existing-pc-question-text {
        font-size: 1.5rem;
    }

    .existing-pc-question-sub {
        font-size: 1rem;
    }

    .existing-pc-card {
        padding: 30px 20px;
    }

    .existing-pc-cta-wrapper {
        padding: 30px 20px;
    }

    .existing-pc-cta-text {
        font-size: 1.1rem;
    }

    .existing-pc-cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .feature-section {
        padding: 60px 0;
    }

    .feature-intro {
        margin-bottom: 50px;
    }

    .feature-intro-title {
        font-size: 1.8rem;
    }

    .feature-intro-text {
        font-size: 1rem;
    }

    .feature-cards {
        gap: 50px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .feature-icon-large {
        font-size: 5rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .problems-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-item {
        padding: 24px;
    }

    .mechanism-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mechanism-card {
        padding: 30px 20px;
    }

    .pricing-box {
        padding: 30px 20px;
    }

    .usecase-card {
        padding: 30px 20px;
    }

    .usecase-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .usecase-title {
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo {
        max-width: 200px;
    }
}

/* 小さいスマートフォン */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-problem-text {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .hero-logo {
        max-width: 220px;
    }

    .campaign-title {
        font-size: 1.4rem;
    }

    .campaign-price {
        font-size: 2rem;
    }

    .feature-intro-title {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .existing-pc-question-text {
        font-size: 1.3rem;
    }
}
