/* ======================
   全体設定
====================== */

/* 色を名前指定できるようにしているところ */
:root{
  --navy:#243f6b;
  --pink:#e6c6cb;
  --gold:#f4c21d;
}

/* 規定値 */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* body部全体設定 */
body{
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  background:#ffffff;
}



/* ======================
 ★第０セクション設定部分★
====================== */
.header{
  background:#e6c3d4; /* ヘッダー部の色 */
  padding:0px; /* ヘッダー部の余白 */
}

.header-logo{
  width:120px;/* ヘッダー部のロゴの幅 */
}


/* ======================
 ★第１セクション設定部分★
====================== */

/* =========== HERO ============ */
.hero{
  display:flex;
  min-height:100vh;
  position:relative;
  overflow:hidden;
}

/* ======================   左（紺）====================== */
.hero-left{
  width:50%;
  background:var(--navy);
  color:#fff;
  padding:20px 90px;
  position:relative;
  z-index:2;
}

.hero-left::after{ /* 斜めカット（穴なし） */
  content:"";
  position:absolute;
  top:0;
  right:-100px;
  width:300px;
  height:100%;
  background:var(--navy);
  transform:skewX(-12deg);
  z-index:-1;
}

/* バッジ */
.badge{
  display:inline-block;
  border:2px solid rgba(255,255,255,0.7);
  padding:8px 20px;
  font-size:22px;
  margin-bottom:50px;
}

/* 見出し */
h1{
  font-size:52px;
  font-weight:700;
  line-height:1.5;
  margin-bottom:60px;
}

/* サブテキスト */
.subtext{
  font-size:32px;
  font-weight:600;
  line-height:1.8;
  margin-bottom:70px;
}

/* ボタン */
.cta{
  display:inline-block;
  background:var(--gold);
  color:#000;
  font-weight:700;
  font-size:18px;
  padding:20px 50px;
  border-radius:40px;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:.3s ease;
}

.cta:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,0.4);
}

/* ======================   右（画像）====================== */
.hero-right{
  width:50%;
  position:relative;
}

.hero-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:100%;
}

/* ======================   ロゴエリア（右下ピンク）====================== */
.logo-area{
  position:absolute;
  bottom:-60px;
  right:0;
  width:50%;
  background:var(--pink);
  padding:0px 20px;
  text-align:center;
}

.logo-area img{
  width:320px;
}

/* ======================   スマホ対応====================== */
@media(max-width:900px){
  .hero{
    flex-direction:column;
  }

  .hero-left{
    width:100%;
    padding:80px 40px;
  }

  .hero-left::after{
    display:none;
  }

  .hero-right{
    width:100%;
    height:350px;
  }

  .logo-area{
    position:relative;
    width:100%;
    display:none;
  }

  h1{
    font-size:34px;
  }

  .subtext{
    font-size:20px;
  }

  .cta{
    width:100%;
    text-align:center;
  }
}



/* ======================
 ★第２セクション設定部分★
====================== */
.worry-perfect{
  position:relative;
  background: linear-gradient(
    180deg,
    #1e2a5b 0%,
    #7ea4c4 100%
  );
  padding:80px 0 120px;
  overflow:hidden;
}

/* タイトル */
.worry-perfect-title{
  text-align:center;
  font-size:44px;
  color:white;
  font-weight:700;
  margin-bottom:90px;
}

/* 中央コンテナ */
.worry-perfect-inner{
  position:relative;
  width:1100px;
  margin:0 auto;
}

/* グレーBOX */
.worry-perfect-box{
  background:#d9d9d9;
  border-radius:35px;
  padding:60px 80px;
  width:760px;
}

.worry-perfect-box ul{
  list-style:none;
}

.worry-perfect-box li{
  font-size:26px;
  font-weight:800;
  margin-bottom:30px;
  padding-left:40px;
  position:relative;
  color:black;
}

.worry-perfect-box li::before{
  content:"●";
  position:absolute;
  left:0;
  color:#666;
}

/* 女の子 */
.worry-perfect-girl{
  position:absolute;
  right:0;
  top:0px;
  width:440px;
  z-index:0;
}

/* 亀 */
.worry-perfect-kame{
  position:absolute;
  left:-80px;
  bottom:-200px;
  width:220px;
  z-index:3;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  transform:scaleX(-1);
}

/* 大丈夫ボックス */
.worry-perfect-relief{
  position:absolute;
  right:80px;
  bottom:-30px;
  background:#e5b7bf;
  padding:30px 110px;
  border-radius:40px;
  font-size:42px;
  font-weight:900;
  color:#1e2a5b;
}

/* 下メッセージ */
.worry-perfect-message{
  text-align:center;
  margin-top:120px;
  font-size:38px;
  font-weight:900;
  color:#0d1c44;
}

/* ======================   スマホ対応====================== */
@media (max-width:768px){
  .worry-perfect-inner{
    width:100%;
    padding:0 20px;
  }

  .worry-perfect-title{
    font-size:26px;
    margin-bottom:40px;
  }

  .worry-perfect-box{
    width:100%;
    padding:30px;
  }

  .worry-perfect-box li{
    font-size:16px;
  }

  .worry-perfect-girl{
    position:static;
    width:220px;
    display:block;
    margin:30px auto;
  }

  .worry-perfect-relief{
    text-align:center;
  }

  .worry-perfect-kame{
    display:none;
  }

  .worry-perfect-relief{
    position:static;
    font-size:24px;
    padding:15px 40px;
    margin:40px auto 0;
  }

  .worry-perfect-message{
    font-size:20px;
    margin-top:40px;
  }
}


/* ======================
 ★第３セクション設定部分★
====================== */

.philosophy-section{
  background-color:#153261 !important;
  color:#ffffff;
  padding:80px 10px 80px;
  position:relative;
  overflow:hidden;
  color:white;
  text-align:center;
}

/* 中央コンテナ */
.philosophy-inner{
  max-width:1200px;
  margin:0 auto;
  position:relative;
}

/* 左花びら */
.philosophy-petal-l{
  position:absolute;
  width:45px;
  z-index:1;
  top:200px;
  left:-40px;
}

/* 右花びら */
.philosophy-petal-r{
  position:absolute;
  width:80px;
  z-index:1;
  top:120px;
  right:20px;
}

/* 上文章 */
.philosophy-lead{
  font-size:34px;
  font-weight:700;
  line-height:1.8;
  margin-bottom:50px;
}

.philosophy-sub{
  font-size:28px;
  font-weight:700;
  line-height:1.8;
  margin-bottom:100px;
  color:#ffe600;
}

/* 黄色強調 */
.highlight{
  color:#ffe600;
  font-weight:900;
}

/* カード横並び */
.philosophy-cards{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-bottom:100px;
}

/* カード */
.ph-card{
  background:#e6e6e6;
  border-radius:30px;
  padding:20px 15px 20px;
  width:360px;
  position:relative;
  border:4px solid #f3a6b8;
  color:#1f2c5c;
}

/* 丸ラベル */
.ph-circle{
  position:absolute;
  top:-40px;
  left:50%;
  transform:translateX(-50%);
  width:80px;
  height:80px;
  background:#f3cbd5;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  font-weight:900;
}

/* タイトル */
.ph-card h3{
  font-size:22px;
  margin:30px 0 20px;
  font-weight:900;
}

/* 黄色マーカー */
.marker{
  background:linear-gradient(
    to top,
    #ffe600 50%,
    transparent 60%
  );
  padding:0 6px;
  font-weight:900;
}

/* 本文 */
.ph-card p{
  font-size:18px;
  line-height:1.8;
  font-weight:600;
}

/* CTAボタン */
.ph-cta{
  display:inline-block;
  background:linear-gradient(180deg,#ff8a8a,#ff5f5f);
  color:#fff;
  padding:22px 60px;
  border-radius:40px;
  font-size:22px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
  transition:0.3s ease;
}

.ph-cta:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.6);
}

/* 亀 */
.ph-kame{
  position:absolute;
  right:40px;
  bottom:-50px;
  width:220px;
}

/* ======================   スマホ対応====================== */
@media(max-width:768px){

  .philosophy-petal-l{
    width:0px;
  }

  .philosophy-petal-r{
    width:0px;
  }

  .philosophy-lead{ font-size:20px; }
  .philosophy-sub{ font-size:18px; }

  .ph-card{
    width:100%;
    max-width:320px;
  }

  .ph-cta{
    font-size:18px;
    padding:15px 40px;
  }

  .ph-kame{
    display:none;
  }
}



/* ======================
 ★第４セクション設定部分★
====================== */
.result-section{
  background:#f5f5f5;
  padding:0px 0px 20px 0px;
}

.result-inner{
  max-width:100%;
  margin:0 auto;
  position:relative;
}

/* タイトル */
.result-title{
  background:#ffe600;
  text-align:center;
  font-size:40px;
  font-weight:900;
  padding:25px;
  margin-bottom:0px;
}

.result-title span{
  color:#ff2e2e;
}

/* 上段 */
.result-top{
  display:flex;
  gap:60px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.result-image img{
  width:500px;
  border-radius:6px;
}

.result-list{
  line-height:2;
}

.uni-item{
  display:flex;
  align-items:center;
  gap:20px;
  font-size:26px;
  font-weight:900;
}

.check-icon{
  width:40px;
}

/* 統計ボックス */
.result-stats{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.stat-card.dark{
  background:linear-gradient(180deg,#1f3b63,#0d1c2e);
  color:white;
  border:none;
}

.stat-icon{
  width:60px;
  margin-bottom:20px;
}

.stat-card h3{
  font-size:50px;
  font-weight:900;
  margin-bottom:10px;
}

.stat-card p{
  font-size:20px;
  font-weight:900;
  line-height:1.6;
}

.stat-card{
  width:260px;
  padding:40px 30px;
  border-radius:20px;
  text-align:center;
  background:white;
  border:2px solid #f4a6b8;
}

.design-message{
  background:#f4cbd2;
  padding:40px 40px;
  border-radius:30px;
  text-align:center;
  font-size:36px;
  font-weight:900;
  margin:50px auto 60px;
  max-width:900px;
}

/* CTA */
.result-cta{
  display:block;
  width:320px;
  margin:0px auto;
  text-align:center;
  background:linear-gradient(180deg,#8be05c,#55c232);
  color:#000;
  font-size:22px;
  font-weight:900;
  padding:20px;
  border-radius:35px;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  transition:0.3s;
}

.result-cta:hover{
  transform:translateY(-5px);
}

/* うさぎ */
.result-usagi{
  position:absolute;
  left:20px;
  bottom:20px;
  width:220px;
}

/* ======================   スマホ対応====================== */
@media(max-width:768px){

  .result-title{
    font-size:24px;
  }

  .result-top{
    flex-direction:column;
  }

  .result-image img{
    width:100%;
  }

  .result-list{
    font-size:20px;
  }

  .result-stats{
    justify-content:center;
  }

  .result-cta{
    width:100%;
    max-width:320px;
  }

  .result-usagi{
    display:none;
  }
}



/* ======================
 ★第５セクション設定部分★
====================== */
.complex-section{
  background: linear-gradient(
    180deg,
    #a9d6df 0%,
    #5e63b6 55%,
    #0c1b3a 100%
  );
  padding:100px 20px 100px;
  text-align:center;
  color:white;
}

.complex-inner{
  max-width:1200px;
  margin:0 auto;
}

/* タイトル */
.complex-title{
  font-size:64px;
  font-weight:900;
  color:#000;
  margin-bottom:80px;
}

/* ポイント */
.complex-points{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:40px 60px; /* 左が改行幅、右が左右配置間隔 */
  margin-bottom:100px;
}

.point{
  font-size:40px;
  font-weight:900;
  color:#ffe600;
}

/* 中央メッセージ */
.complex-middle{
  font-size:44px;
  font-weight:800;
  margin-bottom:40px;
}

/* 中央メッセージ２ */
.complex-middle2{
  font-size:50px;
  font-weight:800;
  margin-bottom:40px;
}

/* 赤警告 */
.complex-warning{
  font-size:48px;
  font-weight:900;
  color:#ff2e2e;
}

/* ======================   スマホ対応====================== */
@media(max-width:768px){

  .complex-title{
    font-size:36px;
  }

  .complex-points{
    grid-template-columns: 1fr;
    gap:20px;
  }

  .point{
    font-size:22px;
  }

  .complex-middle{
    font-size:24px;
  }

  .complex-middle2{
    font-size:28px;
  }

  .complex-warning{
    font-size:26px;
  }
}



/* ======================
 ★第６セクション設定部分★
====================== */
.structure-section{
  background:#1f3b63;
  padding:80px 20px 80px;
  color:white;
  text-align:center;
}

.structure-inner{
  max-width:1000px;
  margin:0 auto;
}

/* タイトル */
.structure-title{
  font-size:50px;
  font-weight:900;
  margin-bottom:20px;
}

.structure-sub{
  font-size:26px;
  font-weight:900;
  color:#ffe600;
  margin-bottom:80px;
}

/* カード */
.structure-card{
  background:white;
  color:#1f3b63;
  border-radius:30px;
  padding:40px;
  margin-bottom:60px;
  text-align:left;
  position:relative;
  border:4px solid #f4a6b8;
}

.structure-card h3{
  font-size:26px;
  font-weight:900;
  margin-bottom:20px;
}

/* 区切り線 */
.divider{
  height:3px;
  background:#f4a6b8;
  margin:15px 0 25px;
}

/* テキスト */
.card-text{
  font-size:20px;
  line-height:1.8;
  margin-bottom:25px;
}

/* ピンク強調 */
.highlight-box{
  background:#f6d6dc;
  padding:20px;
  font-size:20px;
  font-weight:900;
  border-left:8px solid #f4a6b8;
  border-radius:8px;
}

/* CTAボタン */
.structure-cta{
  display:inline-block;
  background:linear-gradient(180deg,#ffd84d,#f0b400);
  color:#000;
  padding:20px 60px;
  border-radius:35px;
  font-size:22px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
  transition:0.3s;
}

.structure-cta:hover{
  transform:translateY(-5px);
}

/* ======================   スマホ対応====================== */
@media(max-width:768px){

  .structure-title{
    font-size:26px;
  }

  .structure-sub{
    font-size:18px;
  }

  .structure-card{
    padding:25px;
  }

  .structure-card h3{
    font-size:18px;
  }

  .card-text,
  .highlight-box{
    font-size:16px;
  }

}



/* ======================
 ★第７セクション設定部分★
====================== */
.solution-section{
  background: linear-gradient(
    135deg,
    #f6b1c9 0%,
    #f2e2a1 100%
  );
  padding:100px 20px 100px;
  position:relative;
}

.solution-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
  position:relative;
}

/* タイトル */
.solution-title{
  font-size:80px;
  font-weight:900;
  color:#1f3b63;
  position:relative;
  display:inline-block;
  z-index:1;
}

.solution-title::after{
  content:"";
  position:absolute;
  left:-10px;
  bottom:8px;
  width:110%;
  height:28px;
  background:#ff6a3d;
  transform:skewX(-8deg) rotate(-2deg);
  border-radius:6px;
  z-index:-1;
}

.solution-lead{
  font-size:36px;
  font-weight:700;
  margin-bottom:40px;
}

/* ステップカード */
.solution-steps{
  display:flex;
  flex-direction:column;
  gap:40px;
  margin-bottom:60px;
}

.solution-card{
  background:white;
  border-radius:20px;
  padding:30px;
  display:flex;
  align-items:flex-start;
  gap:20px;
  border:3px solid #1f3b63;
}

.step-number{
  background:#1f3b63;
  color:#ffe600;
  font-size:26px;
  font-weight:900;
  width:50px;
  height:50px;
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.step-content h3{
  font-size:24px;
  font-weight:900;
  margin-bottom:10px;
  text-align:left;
}

.step-content p{
  font-size:18px;
  line-height:1.6;
}

/* Before After */
.beforeafter-title{
  font-size:40px;
  font-weight:900;
  margin-bottom:30px;
}

.beforeafter-wrap{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-bottom:80px;
  flex-wrap:wrap;
}

.before-box,
.after-box{
  background:#fff;
  border-radius:20px;
  padding:30px;
  width:400px;
  text-align:left;
}

.before-box{
  border:4px solid #1f3b63;
}

.after-box{
  border:4px solid #f26a8d;
}

.label{
  display:inline-block;
  background:#1f3b63;
  color:white;
  padding:6px 20px;
  border-radius:20px;
  font-weight:900;
  margin-bottom:20px;
}

.after-box .label{
  background:#f26a8d;
}

.before-box ul li,
.after-box ul li{
  font-size:20px;
  margin-bottom:15px;
}

.before-list,
.after-list{
  list-style:none;
  padding:0;
  margin:0;
}

.before-list li,
.after-list li{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:22px;
  margin-bottom:16px;
}

.icon-x,
.icon-check{
  width:26px;
  height:auto;
}

/* CTA */
.solution-cta{
  display:inline-block;
  background:linear-gradient(180deg,#79aef2,#4c7fd6);
  color:white;
  padding:20px 60px;
  border-radius:35px;
  font-size:22px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  transition:0.3s;
}

.solution-cta:hover{
  transform:translateY(-5px);
}

/* キャラ */
.solution-character{
  position:absolute;
  left:0;
  bottom:-70px;
  width:220px;
}

/* ======================   スマホ対応====================== */
@media(max-width:768px){

  .solution-title{
    font-size:36px;
  }

  .solution-lead{
    font-size:18px;
  }

  .solution-card{
    flex-direction:column;
  }

  .beforeafter-wrap{
    flex-direction:column;
    align-items:center;
  }

  .before-box,
  .after-box{
    width:100%;
    max-width:320px;
  }

  .solution-character{
    display:none;
  }

}



/* ======================
 ★第８セクション設定部分★
====================== */
.service-section{
  background:#1f3b63;
  padding:80px 20px;
  text-align:center;
}

.service-title{
  font-size:80px;
  color:#fff;
  margin-bottom:70px;
}

.service-card{
  background:#eee;
  border-radius:25px;
  padding:50px;
  margin-bottom:60px;
  border:4px solid #f4a6b8;
}

.service-header{
  display:flex;
  align-items:center;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.service-label{
  background:#ffe600;
  padding:8px 20px;
  font-weight:bold;
}

.service-main-title{
  font-size:32px;
  margin:0;
}

.divider-line{
  height:3px;
  background:#dcdcdc;
  width:100%;
  margin:30px 0 50px;
}

.step-grid{
  display:flex;
  gap:20px;
  justify-content:space-between;
  flex-wrap:wrap;
}

.step-number-8{
  width:50px;
  height:50px;
  background:#000;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
  font-size:26px;
}

.step-item h4{
  width:25%;
  min-width:300px;
  font-size:22px;
}

.step-item p{
  width:25%;
  min-width:300px;
  font-size:18px;
}

.custom-title{
  font-size:32px;
  margin:30px;
}

.custom-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:50px;
}

.custom-grid div{
  background:#f4cbd2;
  padding:10px;
  border:3px solid #f4a3b8;
}

.etc{
  margin-top:20px;
  font-weight:bold;
}

.change-wrapper{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:60px;
}

.change-card{
  background:#eee;
  padding:30px;
  border-radius:20px;
  width:550px;
  border:5px solid #f4a3b8;
  font-size:24px;
}

.divider-line.small{
  margin:15px 0 25px;
}

.change-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.change-card li{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.check-icon{
  width:22px;
}

.parent-card{
  text-align:center;
  font-size:30px;
}

.parent-sub{
  margin-bottom:40px;
  font-size:24px;
}

.parent-grid{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.parent-number{
  width:80px;
  height:80px;
  background:#1f3b63;
  color:#ffe600;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
  border-radius:10px;
  font-size:40px;
}

.parent-number-h4{
  font-size:24px;
}

.parent-number-p{
  font-size:24px;
}

.service-cta{
  display:inline-block;
  background:linear-gradient(180deg,#e49adf,#a774ff);
  padding:20px 60px;
  border-radius:40px;
  color:#000;
  font-weight:900;
  text-decoration:none;
  margin-top:40px;
}

/* ======================   スマホ対応====================== */
@media(max-width:768px){

  .service-card{
    padding:25px;
  }

}



/* ======================
 ★第９セクション設定部分★
====================== */
.faq-section{
  background:#e8c9d8;
  padding:120px 20px;
}

.faq-inner{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

.faq-title{
  font-size:42px;
  font-weight:900;
  margin-bottom:60px;
  color:#000;
}

.faq-box{
  background:#fff;
  border:4px solid #1f3b63;
  border-radius:25px;
  padding:50px;
  text-align:left;
}

.faq-item{
  margin-bottom:40px;
}

.faq-question{
  font-size:22px;
  font-weight:900;
  margin-bottom:15px;
}

.faq-answer{
  background:#e3e0dd;
  padding:20px;
  border-radius:12px;
  font-size:18px;
  line-height:1.7;
}

/* ======================   スマホ対応====================== */
@media(max-width:768px){

  .faq-title{
    font-size:28px;
  }

  .faq-box{
    padding:25px;
  }

  .faq-question{
    font-size:18px;
  }

  .faq-answer{
    font-size:16px;
  }

}



/* ======================
 ★第10セクション設定部分★
====================== */
.final-cta-section{
  background:#1f3b63;
  text-align:center;
  position:relative;
  padding-top:140px;
}

/* 上エリア */
.final-cta-inner{
  max-width:1000px;
  margin:0 auto;
  padding-bottom:140px;
  position:relative;
  color:white;
}

.final-cta-title{
  font-size:48px;
  font-weight:900;
  margin-bottom:40px;
}

.final-cta-text{
  font-size:24px;
  line-height:1.8;
  margin-bottom:80px;
}

/* ボタン */
.final-cta-button{
  display:inline-block;
  background:linear-gradient(180deg,#f4a6c8,#e76eb1);
  color:black;
  font-size:26px;
  font-weight:900;
  padding:25px 80px;
  border-radius:40px;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,0.4);
  transition:0.3s;
}

.final-cta-button:hover{
  transform:translateY(-5px);
}

/* うさぎ */
.final-cta-character{
  position:absolute;
  left:0;
  bottom:0;
  width:240px;
}

/* 下帯 */
.final-cta-footer{
  background:#e6c3d4;
  padding:20px 20px;
}

.final-logo{
  width:350px;
  margin-bottom:0px;
}


/* ======================   スマホ対応====================== */
@media(max-width:768px){

  .final-cta-title{
    font-size:28px;
  }

  .final-cta-text{
    font-size:16px;
  }

  .final-cta-button{
    font-size:18px;
    padding:18px 40px;
  }

  .final-cta-character{
    display:none;
  }

  .final-logo{
    width:150px;
  }

}

/* ======================
 ★End of Line★
====================== */
