@charset "UTF-8";

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --color-main: #2e7d32;
  --color-accent: #f57c00;
  --color-text: #333333;
  --color-bg-light: #f5f9f5;
  --color-white: #ffffff;
}

/* ==========================================================================
   Background Image (has_bg)
   画像が存在しない場合は background-color がフォールバックとして表示される
   ========================================================================== */
.has_bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sec_1.has_bg       { background-image: url('../img/bg_sec01.jpg'); }
.sec_2.has_bg       { background-color: rgb(197, 225, 197);}
.sec_2_5.has_bg     { background-image: url('../img/bg_sec02.jpg'); }
.sec_3.has_bg       { background-image: url('../img/bg_sec03.jpg'); }
.sec_4.has_bg       { background-image: url('../img/bg_sec04.jpg'); }
.sec_6.has_bg       { background-image: url('../img/bg_sec06.jpg'); }
.sec_7.has_bg       { background-image: url('../img/bg_sec07.jpg'); }
.sec_cta_mid.has_bg { background-image: url('../img/bg_sec_cta_mid.jpg'); }
.sec_8.has_bg       { background-image: url('../img/bg_sec08.jpg'); }
.sec_9.has_bg       { background-image: url('../img/bg_sec09.jpg'); }
.sec_10.has_bg      { background-image: url('../img/bg_sec10.jpg'); }


/* ==========================================================================
   Reset CSS (現行維持)
   ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tfoot, thead, th, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: var(--color-main);
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

ol li, ul li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

/* ==========================================================================
   PC / SP Toggle (現行維持)
   ========================================================================== */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}

/* ==========================================================================
   Base Typography
   ========================================================================== */
html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  color: var(--color-text);
  -webkit-text-size-adjust: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* ==========================================================================
   Section Base
   ========================================================================== */
main section {
  padding: 80px 0;
  background-color: var(--color-white);
  overflow: hidden;
}
main section .s_hdr {
  display: flex;
  width: 100%;
  align-items: center;
}
main section .inner {
  width: min(984px, 100vw - 12px);
  margin: 0 auto;
  max-width: 100%;
}
main section .inner::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 899px) {
  main section {
    padding: 50px 0;
  }
  main section .inner {
    width: min(1024px, 94vw);
  }
}

/* ==========================================================================
   Paragraph & Image Base
   ========================================================================== */
p {
  font-size: clamp(14px, 3.7vw, 18px);
  margin-bottom: 1.5em;
  line-height: 1.65em;
}
p:last-child {
  margin-bottom: 0;
}
p:has(img) {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 0;
}
p:has(img) img {
  max-width: 100%;
  margin: 0 auto;
  line-height: 1;
}
p:has(img):last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  p:has(img) {
    margin-bottom: 0;
  }
}

p, h3 {
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Misc Components (現行維持)
   ========================================================================== */
.box_txt {
  max-width: 1000px;
  margin: 0 auto;
}
.box_txt > p:has(img) {
  margin-bottom: 0;
}
.box_txt .txt {
  background-color: #fff;
  padding: 4%;
}
.box_txt .txt p:has(img).f_r {
  margin-bottom: 0;
}
.box_txt .txt::after {
  content: "";
  display: block;
  clear: both;
}
.box_txt + .box_txt {
  margin-top: 7%;
}

.slick-slider {
  display: none;
}
.slick-slider.slick-initialized {
  display: block;
}

.box_video {
  position: relative;
  width: 100%;
  height: 56.25%;
  padding: 56.25% 0 0 0;
  text-align: center;
}
.box_video .video_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  margin: 0 auto;
}
.box_video .video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Check list */
ul.chk li {
  font-size: 18px;
  padding: 0.5em 0.5em 0.5em 1.75em;
  background: url(../img/icon_chk.png.webp) no-repeat left center;
  background-size: 1.2em 1.2em;
  line-height: 1.4em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  ul.chk li {
    font-size: 16px;
    background-size: 1.5em 1.5em;
  }
}

/* Ripple animations */
.ripple {
  position: relative;
  display: block;
}
.ripple img {
  max-width: 100%;
  margin: 0 auto;
}
.ripple span {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 90%;
  height: 100%;
  margin: auto;
  animation-name: rippleAnimation;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  border-radius: 100px;
  background-color: #fff072;
  box-shadow: 0 0 5px white;
}
@media screen and (max-width: 768px) {
  .ripple span {
    width: 100%;
  }
}
@keyframes rippleAnimation {
  0% {
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}
.ripple2 {
  position: relative;
  display: block;
}
.ripple2 img {
  max-width: 100%;
  margin: 0 auto;
}
.ripple2 span.clr_1, .ripple2 span.clr_2 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 70px;
  height: 70px;
  margin: auto;
  animation-name: rippleAnimation2;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  border-radius: 100%;
  box-shadow: 0 0 45px 1px #ff004a inset;
}
.ripple2 span.clr_2 {
  animation-delay: 0.3s;
}
@keyframes rippleAnimation2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
  100% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}

/* Bounce */
.bounce {
  position: relative;
}
.bounce::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 50px;
  margin: 0 auto auto;
  content: "";
  background: url(../img/down.png) no-repeat center top;
  animation-name: bounce;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

/* Fade-In Animations */
.Fade-In {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.Fade-In.Fade-In-2 {
  transition-delay: 0.2s;
}
.Fade-In.Fade-In-3 {
  transition-delay: 0.3s;
}
.Fade-In.Fade-In-4 {
  transition-delay: 0.4s;
}

.Fade-In-Down {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s;
}
.Fade-In-Down.Fade-In-Down-2 {
  transition-delay: 0.2s;
}
.Fade-In-Down.Fade-In-Down-3 {
  transition-delay: 0.3s;
}
.Fade-In-Down.Fade-In-Down-4 {
  transition-delay: 0.4s;
}

.Fade-In-Left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 1s;
}
.Fade-In-Left.Fade-In-Left-2 {
  transition-delay: 0.2s;
}
.Fade-In-Left.Fade-In-Left-3 {
  transition-delay: 0.3s;
}
.Fade-In-Left.Fade-In-Left-4 {
  transition-delay: 0.4s;
}

.Fade-In-Right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s;
}
.Fade-In-Right.Fade-In-Right-2 {
  transition-delay: 0.2s;
}
.Fade-In-Right.Fade-In-Right-3 {
  transition-delay: 0.3s;
}
.Fade-In-Right.Fade-In-Right-4 {
  transition-delay: 0.4s;
}

/* ==========================================================================
   Text Utility Classes (現行維持)
   ========================================================================== */
.t_1 {
  color: #e00;
}

.t_2 {
  color: #090;
}

.t_3 {
  color: #00c;
}

.t_4 {
  color: #c00;
}

.t_5 {
  color: #c00;
}

.t_1_b {
  padding: 0.1em;
  color: #e00;
  background-color: #ff0;
}

.t_2_b {
  padding: 0.1em;
  color: #000;
  background-color: #ff0;
}

.t_3_b {
  padding: 0.1em;
  color: #ff0;
  background-color: #e00;
}

.t_4_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_5_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_lrg {
  font-size: 130%;
}

.t_xlrg {
  font-size: 170%;
}

.t_sml {
  font-size: 80%;
}

.t_stg {
  font-weight: bold;
}

.t_ul {
  text-decoration: underline;
}

.t_mk {
  background: linear-gradient(transparent 60%, #ffe400 60%);
}

.t_c {
  text-align: center;
}

.t_r {
  text-align: right;
}

.t_l {
  text-align: left;
}

.f_l {
  float: left;
  margin-right: 1em;
  width: auto;
}

.f_r {
  float: right;
  margin-left: 1em;
  width: auto;
}

@media screen and (max-width: 768px) {
  .f_l, .f_r {
    float: none;
    margin: 0 0 1em;
  }
}

/* ==========================================================================
   Margin / Padding Utility Classes (現行維持)
   ========================================================================== */
.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.mb210 {
  margin-bottom: 210px !important;
}

.mb220 {
  margin-bottom: 220px !important;
}

.mb230 {
  margin-bottom: 230px !important;
}

.mb240 {
  margin-bottom: 240px !important;
}

.mb250 {
  margin-bottom: 250px !important;
}

.mb260 {
  margin-bottom: 260px !important;
}

.mb270 {
  margin-bottom: 270px !important;
}

.mb280 {
  margin-bottom: 280px !important;
}

.mb290 {
  margin-bottom: 290px !important;
}

.mb300 {
  margin-bottom: 300px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

.pb210 {
  padding-bottom: 210px !important;
}

.pb220 {
  padding-bottom: 220px !important;
}

.pb230 {
  padding-bottom: 230px !important;
}

.pb240 {
  padding-bottom: 240px !important;
}

.pb250 {
  padding-bottom: 250px !important;
}

.pb260 {
  padding-bottom: 260px !important;
}

.pb270 {
  padding-bottom: 270px !important;
}

.pb280 {
  padding-bottom: 280px !important;
}

.pb290 {
  padding-bottom: 290px !important;
}

.pb300 {
  padding-bottom: 300px !important;
}

/* ==========================================================================
   Width Utility Classes (現行維持)
   ========================================================================== */
.w1 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w2 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w3 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w4 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w5 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w6 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w7 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w8 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w9 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w33 {
  width: 33%;
}

/* ==========================================================================
   Flexbox Grid (現行維持)
   ========================================================================== */
.f_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.f_box.gtr .w1 {
  width: 8%;
}
.f_box.gtr .w2 {
  width: 18%;
}
.f_box.gtr .w3 {
  width: 30%;
}
.f_box.gtr .w4 {
  width: 38%;
}
.f_box.gtr .w5 {
  width: 48%;
}
.f_box.gtr .w6 {
  width: 58%;
}
.f_box.gtr .w7 {
  width: 68%;
}
.f_box.gtr .w8 {
  width: 78%;
}
.f_box.gtr .w9 {
  width: 88%;
}
.f_box.gtr .w15 {
  width: 13%;
}
.f_box.gtr .w25 {
  width: 23%;
}
.f_box.gtr .w35 {
  width: 33%;
}
.f_box.gtr .w45 {
  width: 47%;
}
.sec_4 .f_box.gtr .w45 {
  width: 43%;
}
.f_box.gtr .w55 {
  width: 53%;
}
.f_box.gtr .w65 {
  width: 63%;
}
.f_box.gtr .w75 {
  width: 73%;
}
.f_box.gtr .w85 {
  width: 83%;
}
.f_box.gtr .w95 {
  width: 93%;
}
.f_box.gtr .w33 {
  width: 31%;
}
.f_box.flw {
  flex-flow: wrap;
}
.f_box.r_rvs {
  flex-flow: row-reverse;
}
.f_box.w_rvs {
  flex-flow: wrap-reverse;
}
.f_box.al_c {
  align-items: center;
}
.f_box.al_s {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .f_box {
    flex-flow: column;
  }
  .f_box .w1 .w2, .f_box .w3, .f_box .w4, .f_box .w5, .f_box .w6, .f_box .w7, .f_box .w8, .f_box .w9, .f_box .w15, .f_box .w25, .f_box .w35, .f_box .w45, .f_box .w55, .f_box .w65, .f_box .w75, .f_box .w85, .f_box .w95, .f_box .w33 {
    width: 100%;
    margin-bottom: 3%;
  }
  .f_box.gtr .w1 .w2, .f_box.gtr .w3, .f_box.gtr .w4, .f_box.gtr .w5, .f_box.gtr .w6, .f_box.gtr .w7, .f_box.gtr .w8, .f_box.gtr .w9, .f_box.gtr .w15, .f_box.gtr .w25, .f_box.gtr .w35, .f_box.gtr .w45, .f_box.gtr .w55, .f_box.gtr .w65, .f_box.gtr .w75, .f_box.gtr .w85, .f_box.gtr .w95, .f_box.gtr .w33 {
    width: 100%;
  }
  .sec_4 .f_box.gtr {
    width: 90%;
    margin: 0 auto;
  }
  .sec_4 .f_box.gtr .w45 {
    margin: 0;
    width: 100%;
  }
  .sec_4 .f_box.gtr .w45 img {
    width: 100%;
  }
  .f_box.gtr.sp_2 .w1 .w2, .f_box.gtr.sp_2 .w3, .f_box.gtr.sp_2 .w4, .f_box.gtr.sp_2 .w5, .f_box.gtr.sp_2 .w6, .f_box.gtr.sp_2 .w7, .f_box.gtr.sp_2 .w8, .f_box.gtr.sp_2 .w9, .f_box.gtr.sp_2 .w15, .f_box.gtr.sp_2 .w25, .f_box.gtr.sp_2 .w35, .f_box.gtr.sp_2 .w45, .f_box.gtr.sp_2 .w55, .f_box.gtr.sp_2 .w65, .f_box.gtr.sp_2 .w75, .f_box.gtr.sp_2 .w85, .f_box.gtr.sp_2 .w95, .f_box.gtr.sp_2 .w33 {
    width: 31%;
  }
  .f_box.gtr.sp_3 .w1 .w2, .f_box.gtr.sp_3 .w3, .f_box.gtr.sp_3 .w4, .f_box.gtr.sp_3 .w5, .f_box.gtr.sp_3 .w6, .f_box.gtr.sp_3 .w7, .f_box.gtr.sp_3 .w8, .f_box.gtr.sp_3 .w9, .f_box.gtr.sp_3 .w15, .f_box.gtr.sp_3 .w25, .f_box.gtr.sp_3 .w35, .f_box.gtr.sp_3 .w45, .f_box.gtr.sp_3 .w55, .f_box.gtr.sp_3 .w65, .f_box.gtr.sp_3 .w75, .f_box.gtr.sp_3 .w85, .f_box.gtr.sp_3 .w95, .f_box.gtr.sp_3 .w33 {
    width: 31%;
  }
  .f_box.flw {
    flex-flow: wrap;
  }
  .f_box.r_rvs {
    flex-flow: column;
  }
  .f_box.w_rvs {
    flex-flow: column;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site_header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 984px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
}
.logo {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-main);
  text-decoration: none;
  line-height: 1;
}
.logo:hover {
  opacity: 0.8;
}

/* PC Nav */
#nav_menu ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
#nav_menu ul li a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}
#nav_menu ul li a:hover {
  color: var(--color-main);
}

/* Hamburger - hidden on PC */
#hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .header_inner {
    height: 56px;
  }
  .logo {
    font-size: 2rem;
  }

  /* Hamburger Button */
  #hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 110;
    gap: 6px;
    padding: 0;
  }
  #hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
  }
  #hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-white);
  }
  #hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  #hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-white);
  }

  /* SP Menu Overlay */
  #nav_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 105;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  #nav_menu.open {
    opacity: 1;
    visibility: visible;
  }
  #nav_menu ul {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  #nav_menu ul li a {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
  }
  #nav_menu ul li a:hover {
    color: var(--color-accent);
  }
}

/* ==========================================================================
   CTA Button
   ========================================================================== */
.btn_cta {
  display: inline-block;
  position: relative;
  padding-top: 14px;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
}
.btn_badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #e53a36;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 3px 16px;
  border-radius: 20px;
  white-space: nowrap;
  border: 2px solid #f57c00;
  z-index: 1;
  letter-spacing: 0.05em;
}
.btn_text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  padding: 1.6rem 4rem;
  border-radius: 50px;
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 12px rgba(245,124,0,0.5);
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.btn_arrow {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.btn_cta:hover .btn_text {
  opacity: 0.88;
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .btn_text {
    font-size: 1.6rem;
    padding: 1.4rem 2.4rem;
  }
}

/* ==========================================================================
   h2 Common
   ========================================================================== */
h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  text-align: center;
  color: var(--color-text);
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 0.85em;
  margin-bottom: 1.5em;
  line-height: 1.3;
}
h2::after {
  position: absolute;
  display: block;
  content: "";
  width: 40px;
  height: 4px;
  background: var(--color-main);
  inset: 0 0 0 0;
  margin: auto auto 0;
  border-radius: 5px;
}
h2 em {
  font-style: normal;
  font-size: 1.2rem;
  display: block;
  color: var(--color-main);
  letter-spacing: 0.2em;
  margin-bottom: 0.75em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2em;
  }
  h2::after {
    width: 30px;
    height: 3px;
  }
}

/* ==========================================================================
   sec_1: FV (First View)
   ========================================================================== */
.sec_1 {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.sec_1 .inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.sec_1 .fv_img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 560px;
  object-fit: cover;
}
.sec_1 .fv_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 60px 10px;
  z-index: 2;
  max-width: 984px;
  margin: 0 auto;
}
.sec_1 .fv_btn {
  width: min(920px, 90vw);
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.sec_1 .fv_btn:hover {
  transform: translateY(-10px);
}
.sec_1 .area_badge {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  line-height: 1;
}
.sec_1 .area_badge span {
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
}
.sec_1 h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--color-white);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}
.sec_1 .fv_badges {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  line-height: 1;
}
.sec_1 .fv_badges span {
  display: inline-block;
  background-color: var(--color-white);
  border: 2px solid var(--color-main);
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .sec_1 .fv_img {
    min-height: 400px;
  }
  .sec_1 .fv_overlay {
    padding: 32px 16px;
  }
  .sec_1 h1 {
    font-size: 2.6rem;
  }
  .sec_1 .area_badge span,
  .sec_1 .fv_badges span {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

/* ==========================================================================
   sec_2: PROBLEM (偶数 → bg-light)
   ========================================================================== */
.sec_2 {
  background-color: var(--color-bg-light);
  padding-bottom: 0;
}
.sec_2 h2 em {
  color: var(--color-main);
}
.sec_2 .f_box {
  align-items: center;
}
.sec_2 .f_box .txt {
  background-color: var(--color-white);
  padding: 3% 5%;
  margin: 0 0 5% 0%;
  border-radius: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sec_2 .bg {
  background-color: var(--color-white);
  padding: 40px 0 0 0;
  position: relative;
  z-index: 2;
  border-radius: 16px 16px 0 0;
}
.sec_2 .bg .f_box {
  align-items: center;
}
.sec_2 .bg .f_box .w45 {
  margin-bottom: 0;
}
.sec_2 .bg .f_box .txt {
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .sec_2 .f_box .w3 {
    margin-bottom: 0;
  }
  .sec_2 .f_box .w3 img {
    width: 50%;
  }
  .sec_2 .bg {
    margin-top: 24px;
    padding: 24px 0;
  }
  .sec_2 .bg .f_box .w45 {
    margin-bottom: 0;
  }
  .sec_2 .bg .f_box .w45 img {
    width: 80%;
  }
}

/* ==========================================================================
   sec_2_5: 解決提案
   ========================================================================== */
.sec_2_5 {
  background-color: var(--color-white);
  border-radius: 16px 16px 0 0;
  padding: 80px 0 0 0;
}
.sec_2_5 .f_box {
  align-items: center;
}
.sec_2_5 .f_box .w45 {
  margin-bottom: 0;
}
.sec_2_5 .f_box .txt {
  background-color: var(--color-white);
  padding: 10% 7%;
  margin: 0 0 5% 0%;
  border-radius: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
@media screen and (max-width: 767px) {
  .sec_2_5 .f_box .w45 {
    margin-bottom: 0;
  }
  .sec_2_5 .f_box .w45 img {
    width: 80%;
  }
}

/* ==========================================================================
   sec_3: MERIT
   ========================================================================== */
.sec_3 {
  background-color: var(--color-white);
  padding: 80px 0 0 0;
}
.sec_3 h2 {
  color: var(--color-text);
}
.sec_3 h2 em {
  color: var(--color-main);
}
.sec_3 h2::after {
  background-color: var(--color-main);
}
.sec_3 .f_box {
  align-items: end;
}
.sec_3 .txt {
  background-color: var(--color-bg-light);
  padding: 2em 3em;
  border: 2px solid var(--color-main);
  border-radius: 1em;
  margin-bottom: 1em;
}
.sec_3 .txt ul li {
  font-size: clamp(16px, 4.3vw, 22px);
  border: none;
  padding: 0.4em 0 0.4em 1.75em;
  color: var(--color-text);
}
.sec_3 .txt .btn_cta {
  margin-top: 1.0em;
  display: grid;
}

.sec_3 .w45 {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .sec_3 .f_box .w45 {
    margin-bottom: 0;
  }
  .sec_3 .f_box .w45 img {
    width: 60%;
  }
  .sec_3 .f_box .txt {
    padding: 1.5em;
  }
  .sec_3 .f_box .txt ul li {
    margin-bottom: 0.5em;
  }
}

/* ==========================================================================
   sec_4: REASON (偶数 → bg-light)
   ========================================================================== */
.sec_4 {
  background-color: var(--color-bg-light);
}
.sec_4 h2 {
  color: var(--color-white);
}
.sec_4 h2 em {
  color: var(--color-main);
}
.sec_4 h2::after {
  background-color: var(--color-main);
}
/* Reason Card */
.sec_4 .reason_card {
  background-color: var(--color-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 960px;
  margin: 0 auto 28px;
}
.sec_4 .reason_heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sec_4 .reason_num {
  width: 48px;
  height: 48px;
  background-color: var(--color-main);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.sec_4 .reason_card .f_box {
  align-items: center;
}
.sec_4 .reason_heading h3 {
  position: static;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  font-size: clamp(18px, 4.3vw, 26px);
  line-height: 1.4;
  color: var(--color-main);
  text-align: left;
}
.sec_4 .reason_heading h3 small {
  display: block;
  font-size: 0.65em;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 0.2em;
}
.sec_4 .reason_card p {
  font-size: clamp(14px, 3.7vw, 16px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .sec_4 .reason_card {
    padding: 20px;
    margin-bottom: 24px;
  }
  .sec_4 .reason_num {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  .sec_4 .reason_card p:has(img) img {
    width: 90%;
  }
}

/* ==========================================================================
   sec_6: SERVICE (偶数 → bg-light)
   ========================================================================== */
.sec_6 {
  background-color: var(--color-bg-light);
}
.sec_6 h2 {
  color: var(--color-text);
}
.sec_6 h2 em {
  color: var(--color-main);
}
.sec_6 h2::after {
  background-color: var(--color-main);
}
.sec_6 .f_box.gtr.flw {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex-flow: unset;
}
.sec_6 .f_box.gtr.flw .w33 {
  width: 100% !important;
  min-width: 0;
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  padding: 24px 16px;
  transition: box-shadow 0.2s;
  margin-bottom: 0;
}
.sec_6 .f_box.gtr.flw .w33:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.sec_6 .f_box.gtr.flw .w33 p:has(img) {
  margin-bottom: 16px;
}
.sec_6 .f_box.gtr.flw .w33 h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1.4;
  white-space: normal;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .sec_6 .f_box.gtr.flw {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex-flow: unset;
  }
  .sec_6 .f_box.gtr.flw .w33 {
    width: 100% !important;
    padding: 16px 12px;
  }
  .sec_6 .f_box.gtr.flw .w33 h3 {
    font-size: 1.4rem;
    white-space: normal;
  }
}

/* ==========================================================================
   sec_7: VOICE
   ========================================================================== */
.sec_7 {
  background-color: var(--color-white);
  padding: 80px 0;
}
.sec_7 h2 {
  color: var(--color-text);
}
.sec_7 h2 em {
  color: var(--color-main);
}
.sec_7 h2::after {
  background-color: var(--color-main);
}
.sec_7 .f_box {
  gap: 24px;
}
.sec_7 .w33 {
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 24px;
}
.sec_7 .w33 p:has(img) {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}
.sec_7 .w33 p:has(img) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec_7 .w33 p:nth-child(2) {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-main);
  margin-bottom: 12px;
}
.sec_7 .w33 p:last-child {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .sec_7 {
    padding: 50px 0;
  }
  .sec_7 .f_box {
    flex-flow: column;
    gap: 20px;
  }
  .sec_7 .w33 {
    width: 100%;
  }
}

/* ==========================================================================
   sec_cta_mid: 吹き出し＋人物CTA
   ========================================================================== */
.sec_cta_mid {
  background: #e8f5e9;
  padding: 0;
  overflow: hidden;
}
.cta_mid_inner {
  max-width: 984px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;   /* 画像を下揃え（立っている表現） */
  padding: 0 20px;
  min-height: 320px;
}
/* テキスト＋ボタン：左〜中央、縦中央 */
.cta_mid_content {
  display: flex;
  flex-direction: column;
  align-items: normal;
  gap: 24px;
  padding: 50px 0;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  align-self: center;      /* 画像は下揃え、コンテンツは縦中央 */
}
/* 人物画像：右側フロー配置・下揃え */
.cta_mid_chara {
  width: 390px;
  flex-shrink: 0;
  height: auto;
  display: block;
}
/* 吹き出し：矢印は右側（人物方向） */
.cta_balloon {
  position: relative;
  background: #fff;
  border: 3px solid #333;
  border-radius: 20px;
  padding: 24px 40px;
  text-align: center;
}
.cta_balloon::after {
  content: '';
  position: absolute;
  top: 55%;
  right: -30px;
  transform: translateY(-50%);
  border: 14px solid transparent;
  border-left-color: #333;
}
.cta_balloon::before {
  content: '';
  position: absolute;
  top: 55%;
  right: -25px;
  transform: translateY(-50%);
  border: 13px solid transparent;
  border-left-color: #fff;
  z-index: 1;
}
.cta_balloon_text {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.8;
  color: #333;
}
/* SP */
@media (max-width: 768px) {
  .cta_mid_inner {
    padding: 0 50px;
    min-height: 240px;
    position: relative;
  }
  .cta_mid_content {
    padding: 20px 0;
    gap: 16px;
    position: relative;
    z-index: 2;
  }
  .cta_mid_chara {
    width: 300px;
    position: absolute;
    right: -50px;
    bottom: 0;
    z-index: 1;
  }
  .cta_balloon {
    padding: 12px 14px;
    position: relative;
    z-index: 3;
    max-width: 70%;
  }
  .cta_balloon_text {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .cta_balloon::after {
    border-width: 10px;
    right: -20px;
  }
  .cta_balloon::before {
    border-width: 9px;
    right: -14px;
  }
  /* このセクション内のみボタン縮小 */
  .sec_cta_mid .btn_text {
    font-size: 1.3rem;
    padding: 1rem 1.4rem;
  }
  .sec_cta_mid .btn_badge {
    font-size: 1.1rem;
    padding: 2px 10px;
  }
  .sec_cta_mid .btn_cta {
    padding-top: 10px;
  }
}

/* ==========================================================================
   sec_8: STEP (偶数 → bg-light)
   ========================================================================== */
.sec_8 {
  background-color: var(--color-bg-light);
}
.sec_8 h2 {
  color: var(--color-text);
}
.sec_8 h2 em {
  color: var(--color-main);
}
.sec_8 h2::after {
  background-color: var(--color-main);
}

/* STEP */
.sec_8 .f_box {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_8 .w3 {
  position: relative;
}
.sec_8 .w3 p {
  text-align: center;
  font-size: clamp(16px, 3.7vw, 18px);
  line-height: 1.5em;
  margin-bottom: 1em;
  font-weight: 500;
}
.sec_8 .w3 .step {
  background-color: var(--color-main);
  font-weight: 600;
  color: var(--color-white);
  width: fit-content;
  padding: 4px 1.2em;
  border-radius: 1.5em;
  margin: 0 auto 0.5em;
  font-size: clamp(14px, 3.7vw, 17px);
}
.sec_8 .w3 h3 {
  font-size: clamp(18px, 4.7vw, 22px);
  line-height: 1.3em;
  text-align: center;
  margin-bottom: 1em;
  color: var(--color-text);
}
.sec_8 .w3 + .w3 {
  position: relative;
}
.sec_8 .w3 + .w3::after {
  position: absolute;
  display: block;
  content: "";
  width: 23px;
  height: 33px;
  background: url(../img/arw.png.webp) no-repeat;
  inset: 0 0 0 -15%;
  margin: auto auto auto 0;
}
@media screen and (max-width: 767px) {
  .sec_8 .w3 {
    padding-left: 48%;
  }
  .sec_8 .w3 p, .sec_8 .w3 h3 {
    text-align: left;
  }
  .sec_8 .w3 p {
    font-size: clamp(12px, 3.2vw, 16px);
  }
  .sec_8 .w3 h3 {
    margin-bottom: 0.5em;
  }
  .sec_8 .w3 .step {
    margin-left: 0;
  }
  .sec_8 .w3 p:has(img) {
    position: absolute;
    top: 0;
    width: 35%;
    left: 5%;
    margin-top: 20px;
    margin-right: 10px;
  }
  .sec_8 .w3 + .w3 {
    margin-top: 3.5em;
  }
  .sec_8 .w3 + .w3::after {
    inset: -3em 0 0 0;
    margin: 0 auto auto;
    transform: rotate(90deg);
  }
}

/* ==========================================================================
   sec_9: FAQ
   ========================================================================== */
.sec_9 {
  background-color: var(--color-white);
}
.sec_9 h2 {
  color: var(--color-text);
  margin-bottom: 1.5em;
}
.sec_9 h2 em {
  color: var(--color-main);
}
.sec_9 h2::after {
  background-color: var(--color-main);
}

.faq {
  line-height: 1.65em;
  background-color: var(--color-white);
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}
.faq dt {
  font-weight: bold;
  font-size: 1.8rem;
  padding: 1.1em 3em 1.1em 1.2em;
  background-color: var(--color-white);
  color: var(--color-text);
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
  margin-bottom: 0;
}
.faq dt::before {
  content: "+";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1;
  transition: transform 0.3s;
}
.faq dt.open {
  color: var(--color-main);
}
.faq dt.open::before {
  content: "\2212";
}
.faq dd {
  padding: 1.2em 1.5em;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: #fafafa;
  display: none;
}
@media screen and (max-width: 768px) {
  .faq dt {
    font-size: 1.5rem;
    padding: 1em 2.8em 1em 1em;
  }
  .faq dd {
    font-size: 1.4rem;
    padding: 1em;
  }
}

/* ==========================================================================
   sec_10: FORM
   ========================================================================== */
.sec_10 {
  background-color: var(--color-bg-light);
}
.sec_10 h2 {
  color: var(--color-text);
  margin-bottom: 1.5em;
}
.sec_10 h2 em {
  color: var(--color-main);
}
.sec_10 h2::after {
  background-color: var(--color-main);
}
.sec_10 .form_box {
  padding: 32px 40px 48px;
  background-color: var(--color-white);
  border: 4px solid var(--color-main);
  border-radius: 16px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.sec_10 .form_box dl {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 24px;
}
.sec_10 .form_box dl dt,
.sec_10 .form_box dl dd {
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
  line-height: 1.4em;
  font-size: 1.6rem;
}
.sec_10 .form_box dl dt {
  width: 35%;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sec_10 .form_box dl dt .required {
  display: inline-block;
  background-color: #e53935;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}
.sec_10 .form_box dl dd {
  width: 65%;
}
.sec_10 .form_box dl dd input,
.sec_10 .form_box dl dd textarea {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1.6rem;
  padding: 10px 14px;
  line-height: 1.4em;
  font-family: inherit;
  transition: border-color 0.2s;
}
.sec_10 .form_box dl dd input:focus,
.sec_10 .form_box dl dd textarea:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}
.sec_10 .form_box dl dd textarea {
  min-height: 100px;
  resize: vertical;
}

/* Checkbox custom style */
.sec_10 .form_box dl dd .checkbox_box {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
}
.sec_10 .form_box dl dd input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #ccc;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
}
.sec_10 .form_box dl dd input[type=checkbox]:checked {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.sec_10 .form_box dl dd input[type=checkbox]:checked::after {
  position: absolute;
  display: block;
  content: "";
  width: 6px;
  height: 11px;
  border: solid var(--color-white);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  top: 2px;
  left: 6px;
}
.sec_10 .form_box dl dd label {
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Submit button */
.sec_10 .form_box .btn_submit {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.sec_10 .form_box .btn_submit .btn_text {
  width: 100%;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .sec_10 .form_box {
    padding: 20px 16px 32px;
    border-width: 3px;
  }
  .sec_10 .form_box dl {
    flex-flow: column;
  }
  .sec_10 .form_box dl dt,
  .sec_10 .form_box dl dd {
    width: 100%;
  }
  .sec_10 .form_box dl dt {
    border-bottom: none;
    padding-bottom: 4px;
    font-size: 1.5rem;
  }
  .sec_10 .form_box dl dd input,
  .sec_10 .form_box dl dd textarea {
    font-size: 1.6rem;
  }
  .sec_10 .form_box .btn_submit .btn_text {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   Fixed CTA Bar
   ========================================================================== */
.f_cta {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto 0;
  width: 100%;
  height: fit-content;
  padding: 12px;
  z-index: 20;
  background-color: var(--color-accent);
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.f_cta.hidden {
  transform: translateY(100%);
}
.f_cta .btn_cta {
  padding-top: 12px;
}
.f_cta .btn_badge {
  font-size: 1.5rem;
}
.f_cta .btn_text {
  background-color: var(--color-white);
  color: var(--color-accent);
  font-size: 1.6rem;
  padding: 12px 32px;
  box-shadow: none;
  border-color: rgba(245,124,0,0.3);
}
.f_cta .btn_cta:hover .btn_text {
  opacity: 0.9;
  transform: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background-color: #1b3a1b;
  color: var(--color-white);
  line-height: 1.7;
}
.footer_inner {
  max-width: 984px;
  margin: 0 auto;
  padding: 48px 16px 24px;
}
.footer_logo {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
}
.footer_company {
  margin-bottom: 32px;
}
.footer_company p {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.footer_area {
  margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}
.footer_area h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-white);
}
.footer_area p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
footer .f_link {
  text-align: center;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
footer .f_link a {
  color: rgba(255,255,255,0.8);
  font-size: 1.3rem;
  text-decoration: none;
}
footer .f_link a:hover {
  color: var(--color-white);
  text-decoration: underline;
}
footer .copyright {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  padding: 16px;
  background-color: rgba(0,0,0,0.15);
}
@media screen and (max-width: 768px) {
  .footer_inner {
    padding: 32px 16px 16px;
  }
  .footer_logo {
    font-size: 1.8rem;
    text-align: center;
  }
  .footer_company {
    text-align: center;
  }
  .footer_company p {
    font-size: 1.3rem;
  }
  .footer_area p {
    font-size: 1.1rem;
  }
  footer .copyright {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   Thanks Page（サンクスページ）
   LP既存スタイル（main section, h2, .inner, .btn_cta）を継承しつつ
   サンクスページ固有のスタイルのみ追加
   ========================================================================== */

/* セクション背景：LPのsec_8（STEP）と同じライトグリーン */
.sec_thanks.has_bg {
  background-color: #f5f9f5;
  background-image: none;
}

/* リード文：h2直下の説明テキスト */
.sec_thanks .thanks_lead {
  text-align: center;
  font-size: clamp(14px, 3.7vw, 18px);
  line-height: 1.65;
  margin-bottom: 2.5em;
  color: #333;
}

/* カード：今後の流れ */
.sec_thanks .thanks_card {
  max-width: 720px;
  margin: 0 auto 2.5em;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sec_thanks .thanks_card_title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 1.5em;
  position: relative;
  padding-bottom: 0.85em;
}
.sec_thanks .thanks_card_title::after {
  position: absolute;
  display: block;
  content: "";
  width: 40px;
  height: 4px;
  background: #2e7d32;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 5px;
}

/* ステップリスト */
.sec_thanks .thanks_steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sec_thanks .thanks_step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sec_thanks .thanks_step_num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #2e7d32;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  line-height: 1;
}

.sec_thanks .thanks_step_body h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 4vw, 18px);
  color: #2e7d32;
  margin-bottom: 0.4em;
  line-height: 1.4;
}

.sec_thanks .thanks_step_body p {
  font-size: clamp(13px, 3.4vw, 15px);
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}

/* 注意書き */
.sec_thanks .thanks_note {
  text-align: center;
  font-size: clamp(11px, 2.8vw, 13px);
  line-height: 1.7;
  color: #888;
  margin-bottom: 2em;
}

/* CTAボタンの中央揃え */
.sec_thanks .btn_cta {
  display: block;
  text-align: center;
  padding-top: 0;
}
.sec_thanks .btn_cta .btn_text {
  display: inline-flex;
}

@media screen and (max-width: 768px) {
  .sec_thanks .thanks_card {
    padding: 28px 20px;
    border-radius: 12px;
  }
  .sec_thanks .thanks_card_title {
    font-size: 1.8rem;
  }
  .sec_thanks .thanks_step_num {
    width: 36px;
    height: 36px;
    font-size: 1.7rem;
  }
  .sec_thanks .thanks_step {
    gap: 12px;
  }
}
