@charset "UTF-8";
/* -----------------------------
   リセットCSS
------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
  text-align: center;
  font-size: 1.1vw;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -----------------------------
   基本レイアウト用クラス
------------------------------- */
.wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 5rem 0;
}

html {
  scroll-behavior: smooth;
}

.anchor-target {
  scroll-margin-top: 7rem;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.m_plus {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.marker {
  background-image: linear-gradient(to bottom, transparent 65%, #ffff00 65%, #ffff00 100%);
  background-repeat: no-repeat;
  background-size: 100% 1.2em;
  background-position: left bottom;
}

.img_hover {
  overflow: hidden;
}

.img_hover img {
  transition: 0.4s ease-in-out;
}

.img_hover img:hover {
  transform: scale(1.1, 1.1);
}

.fade_up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.fade_up.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fuwafuwaUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* reason_1.png と service_1.png のみに適用 */
.section_reason > .wrap > figure img,
.section_service > .wrap > figure img {
  animation: fuwafuwaUp 3.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes puffSharp {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.12); /* 拡大率アップでメリハリ */
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
/* kpi_1.png にだけ適用 */
.section_line_contact .line_contact_text figure img[src*="kpi_1.png"] {
  animation: puffSharp 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
}

.fwb {
  font-weight: bold;
}

.site_header {
  background-color: #32c832;
}
.site_header .wrap {
  max-width: 95vw;
  padding: 0;
  padding-top: 1.5rem;
}
.site_header .wrap h1 {
  color: #fff;
  font-size: 100%;
  margin-bottom: 1rem;
  font-weight: normal;
}
.site_header .wrap .logo {
  width: 40%;
  margin: 0 auto;
}
.site_header .wrap .main_visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.site_header .wrap .main_visual_image img {
  width: 100%;
  height: auto;
  display: block;
}
.site_header .wrap .main_visual_text {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  text-align: right;
}
.site_header .wrap .main_visual_text img {
  width: 40%; /* ← 文字画像の大きさを調整 */
  height: auto;
}

/*-------------kpi---------*/
.section_line_contact {
  background: #5bc236;
  color: #fff;
  /* ===============================
     ▼ スマホ全体設定（1024px 以下）
     =============================== */
  /* ===============================
     ▼ スマホ全体設定（768px 以下）
     =============================== */
}
.section_line_contact .wrap {
  max-width: 70vw;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 2rem;
  /* ===============================
     上部：見積もり無料 + テキスト + 人物画像
     =============================== */
  /* ===============================
     下部：黄色背景＋3ボタン
     =============================== */
}
.section_line_contact .wrap .line_contact_text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  /* ▼ 左：見積り無料マーク */
  /* ▼ 真ん中テキスト */
  /* ▼ 右：人物イラスト */
  /* ------------------------------------------------------------
       ▼ スマホ（1024px 以下）
       ------------------------------------------------------------ */
  /* ------------------------------------------------------------
       ▼ スマホ（768px 以下）
       ------------------------------------------------------------ */
}
.section_line_contact .wrap .line_contact_text figure {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.section_line_contact .wrap .line_contact_text figure img {
  width: 8rem;
  height: auto;
}
.section_line_contact .wrap .line_contact_text > div {
  flex: 0 0 auto;
}
.section_line_contact .wrap .line_contact_text h2 {
  font-size: 250%;
  font-weight: bold;
  margin-top: 3rem;
  letter-spacing: 0.2rem;
}
.section_line_contact .wrap .line_contact_text p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
}
.section_line_contact .wrap .line_contact_text p span {
  color: #ffff00;
  margin-top: 0.3rem;
}
.section_line_contact .wrap .line_contact_text .illustration {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.section_line_contact .wrap .line_contact_text .illustration img {
  width: 14rem;
  height: auto;
}
@media (max-width: 1024px) {
  .section_line_contact .wrap .line_contact_text {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
  }
  .section_line_contact .wrap .line_contact_text figure img {
    width: 90px;
  }
  .section_line_contact .wrap .line_contact_text > div {
    max-width: 90%;
  }
  .section_line_contact .wrap .line_contact_text h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
  .section_line_contact .wrap .line_contact_text p {
    font-size: 1.5rem;
  }
  .section_line_contact .wrap .line_contact_text .illustration img {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .section_line_contact .wrap .line_contact_text {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
  }
  .section_line_contact .wrap .line_contact_text figure img {
    width: 90px;
  }
  .section_line_contact .wrap .line_contact_text > div {
    max-width: 90%;
  }
  .section_line_contact .wrap .line_contact_text h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
  .section_line_contact .wrap .line_contact_text p {
    font-size: 1.3rem;
  }
  .section_line_contact .wrap .line_contact_text .illustration img {
    width: 200px;
  }
}
.section_line_contact .wrap .buttons_area {
  background: #fff200;
  border-radius: 10rem;
  padding: 1.2rem 2rem;
}
.section_line_contact .wrap .buttons_area .buttons_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.section_line_contact .wrap .buttons_area .buttons_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  overflow: hidden;
  background: none;
  transition: 0.3s;
}
.section_line_contact .wrap .buttons_area .buttons_wrap a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.section_line_contact .wrap .buttons_area .buttons_wrap a:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .section_line_contact {
    padding: 2rem 1rem;
  }
  .section_line_contact .wrap {
    max-width: 90vw;
    padding-bottom: 0rem;
    /* ▼ 修正版：ボタンレイアウト */
  }
  .section_line_contact .wrap .line_contact_text {
    flex-direction: column;
    gap: 1rem;
  }
  .section_line_contact .wrap .line_contact_text figure {
    margin-top: -2.8rem;
  }
  .section_line_contact .wrap .line_contact_text figure img {
    width: 150px;
  }
  .section_line_contact .wrap .line_contact_text h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    margin-top: 0;
  }
  .section_line_contact .wrap .line_contact_text .illustration img {
    width: 280px;
  }
  .section_line_contact .wrap .buttons_area {
    border-radius: 3rem;
    padding: 3rem;
  }
  .section_line_contact .wrap .buttons_area .buttons_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }
  .section_line_contact .wrap .buttons_area .buttons_wrap a {
    flex: 1 1 100%;
    text-align: center;
  }
  .section_line_contact .wrap .buttons_area .buttons_wrap a:nth-child(2), .section_line_contact .wrap .buttons_area .buttons_wrap a:nth-child(3) {
    flex: 1 1 calc(50% - 0.5rem);
  }
  .section_line_contact .wrap .buttons_area .buttons_wrap a img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .section_line_contact {
    padding: 2rem 1rem;
  }
  .section_line_contact .wrap {
    max-width: 100%;
    padding-bottom: 0rem;
    /* ▼ 修正版：ボタンレイアウト */
  }
  .section_line_contact .wrap .line_contact_text {
    flex-direction: column;
    gap: 1rem;
  }
  .section_line_contact .wrap .line_contact_text figure {
    margin-top: -2.8rem;
  }
  .section_line_contact .wrap .line_contact_text figure img {
    width: 6rem;
  }
  .section_line_contact .wrap .line_contact_text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    margin-top: 0;
  }
  .section_line_contact .wrap .line_contact_text .illustration img {
    width: 10rem;
  }
  .section_line_contact .wrap .buttons_area {
    border-radius: 3rem;
    padding: 1rem;
  }
  .section_line_contact .wrap .buttons_area .buttons_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }
  .section_line_contact .wrap .buttons_area .buttons_wrap a {
    flex: 1 1 100%;
    text-align: center;
  }
  .section_line_contact .wrap .buttons_area .buttons_wrap a:nth-child(2), .section_line_contact .wrap .buttons_area .buttons_wrap a:nth-child(3) {
    flex: 1 1 calc(50% - 0.5rem);
  }
  .section_line_contact .wrap .buttons_area .buttons_wrap a img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

/*-------------kpi end---------*/
.section_worries .wrap {
  max-width: 65vw;
}
.section_worries .wrap h2 {
  font-size: 350%;
  margin-bottom: 1.5rem;
}
.section_worries .wrap h2 span {
  color: #29abe2;
}
.section_worries .wrap .worries_flex {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.section_worries .wrap .worries_flex figure {
  flex: 0 1 45%;
  box-sizing: border-box;
}
.section_worries .wrap .worries_flex .worries_list {
  list-style: none;
}
.section_worries .wrap .worries_flex .worries_list li {
  position: relative;
  text-align: left;
  background-color: #29abe2;
  color: #fff;
  padding: 1rem 2rem 1rem 4rem;
  margin-bottom: 0.7rem;
  font-weight: bold;
  font-size: 130%;
}
.section_worries .wrap .worries_flex .worries_list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background: url("/img/check.png") no-repeat center center/contain;
}
.section_worries .worries_solution {
  background-color: #1a3d6d;
  padding: 3rem 0;
}
.section_worries .worries_solution h3 {
  color: #ffff00;
  font-size: 270%;
}
.section_worries .worries_solution p {
  color: #fff;
  font-size: 190%;
  font-weight: bold;
}

.section_reason figure {
  width: 30%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.section_reason h2 {
  font-size: 500%;
  line-height: 0.8;
  margin-bottom: 3rem;
}
.section_reason h2 span {
  font-size: 70%;
}
.section_reason .reason_contents {
  border: #000 1px solid;
  padding: 3rem;
  border-radius: 20px;
}
.section_reason .reason_contents h3 {
  font-size: 300%;
  margin-bottom: 0.5rem;
}
.section_reason .reason_contents h4 {
  color: #32c832;
  font-size: 150%;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.section_reason .reason_contents p {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.section_reason .reason_contents p span {
  font-size: 65%;
  display: block;
  margin-top: 1rem;
}
.section_reason .reason_contents .reason_p {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

.section_service figure {
  width: 30%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.section_service h2 {
  font-size: 400%;
  line-height: 0.8;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.section_service h2 span {
  font-size: 70%;
}
.section_service .service_contents {
  border: #000 1px solid;
  padding: 3rem;
  border-radius: 20px;
}
.section_service .service_contents h3 {
  font-size: 300%;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section_service .service_contents h4 {
  color: #32c832;
  font-size: 150%;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.section_service .service_contents p {
  font-size: 120%;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.section_service .service_contents p span {
  font-size: 65%;
  display: block;
  margin-top: 1rem;
}
.section_service .service_contents .reason_p {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.section_service .service_contents_2 figure {
  width: 60%;
}
.section_service .service_contents_2 .service_box_flex {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  justify-content: space-between; /* 横の間隔調整（centerやflex-startでもOK） */
  gap: 2rem; /* 要素間の余白（好みで） */
}
.section_service .service_contents_2 .service_box_flex .service_box {
  flex: 1 1 calc(33.333% - 1rem); /* 3列分に分割（gap分を引く） */
  box-sizing: border-box;
  padding: 1rem;
  text-align: left;
}
.section_service .service_contents_2 .service_box_flex .service_box figure {
  width: 100%;
}
.section_service .service_contents_2 .service_box_flex .service_box h3 {
  font-size: 200%;
  color: #32c832;
}

.section_free {
  background-color: #f5f5f5;
}
.section_free h2 {
  font-size: 400%;
  line-height: 0.8;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.section_free h2 span {
  font-size: 70%;
}
.section_free p {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.section_free .free_photo_main {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section_free .free_photo {
  width: 70%;
  margin: 0 auto;
}

/*-------------開閉リスト---------*/
.pickup_area {
  max-width: 70vw;
  margin: 2rem auto;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f7f7;
}
.pickup_area .pickup_header {
  background: #1a3668;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
}
.pickup_area .pickup_header h3 {
  font-size: 1.1rem;
  font-weight: bold;
}
.pickup_area .pickup_header .toggle_button {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.6s ease;
  transform-origin: center;
  display: inline-block;
  /* 初期（＋） */
  /* アクティブ時（✗） */
}
.pickup_area .pickup_header .toggle_button::before, .pickup_area .pickup_header .toggle_button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.35s ease;
}
.pickup_area .pickup_header .toggle_button::before {
  transform: translate(-50%, -50%) rotate(0deg); /* 横棒 */
}
.pickup_area .pickup_header .toggle_button::after {
  transform: translate(-50%, -50%) rotate(90deg); /* 縦棒 */
}
.pickup_area .pickup_header .toggle_button.active {
  transform: rotate(360deg); /* 風車回転 */
}
.pickup_area .pickup_header .toggle_button.active::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.pickup_area .pickup_header .toggle_button.active::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.pickup_area .pickup_content {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}
.pickup_area .pickup_content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 2rem;
  list-style: none;
  text-align: left;
  padding-bottom: 1.5rem;
}
.pickup_area .pickup_content ul li {
  position: relative;
  padding-left: 1em;
  font-size: 0.95rem;
  line-height: 1.8;
}
.pickup_area .pickup_content ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.8;
}
.pickup_area .pickup_content .note {
  font-size: 0.8rem;
  text-align: left;
  margin-bottom: 0rem;
  font-weight: normal;
}
.pickup_area .pickup_content.active {
  max-height: 1000px;
  padding: 1rem 1.5rem;
}
.pickup_area .pickup_content_2 {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}
.pickup_area .pickup_content_2 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  list-style: none;
  text-align: left;
  padding-bottom: 1.5rem;
}
.pickup_area .pickup_content_2 ul li {
  position: relative;
  padding-left: 1em;
  font-size: 0.95rem;
  line-height: 1.8;
}
.pickup_area .pickup_content_2 ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.8;
}
.pickup_area .pickup_content_2 .note {
  font-size: 0.8rem;
  text-align: left;
  margin-bottom: 0rem;
  font-weight: normal;
}
.pickup_area .pickup_content_2.active {
  max-height: 1000px;
  padding: 1rem 1.5rem;
}

.pickup {
  max-width: 70vw;
  display: flex;
  gap: 4rem;
  margin: 0 auto;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .pickup_area .pickup_content ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .pickup_area .pickup_content_2 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pickup_area .pickup_content ul {
    grid-template-columns: 1fr;
  }
  .pickup_area .pickup_content_2 ul {
    grid-template-columns: 1fr;
  }
}
/*-------------開閉リストend---------*/
.section_flow {
  background-color: #32c832;
}
.section_flow .wrap {
  max-width: 85vw;
}
.section_flow .wrap h2 {
  font-size: 400%;
  line-height: 0.8;
  margin-bottom: 3rem;
  line-height: 1.2;
  color: #fff;
}
.section_flow .wrap h2 span {
  font-size: 70%;
}
.section_flow .wrap p {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: #fff;
}

/*-------------流れ---------*/
.steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 2rem;
  overflow-x: hidden;
  /* ▶︎風の矢印 */
  /* スマホでは横スクロール */
}
.steps .step {
  flex: 0 0 calc((80vw - 30px * 3 - 0.5rem * (4 + 3 - 1)) / 4);
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: left;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.steps .step .step_num {
  font-size: 0.9rem;
  color: #32c832;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.steps .step h3 {
  line-height: 1.3;
  color: #32c832;
  font-size: 170%;
  margin-bottom: 0.8rem;
  font-weight: bold;
}
.steps .step p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0;
}
.steps .arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  position: relative;
  align-self: center;
}
.steps .arrow::before, .steps .arrow::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  right: 0;
}
.steps .arrow::before {
  transform: rotate(45deg);
  top: 0px;
}
.steps .arrow::after {
  transform: rotate(-45deg);
  bottom: 8px;
}
@media (max-width: 768px) {
  .steps {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .steps .step {
    flex: 0 0 80%;
    min-width: 255px;
    min-height: 260px;
  }
  .steps .arrow {
    width: 29px;
    height: 29px;
  }
  .steps .arrow::before {
    width: 30px;
    top: 7px;
  }
  .steps .arrow::after {
    width: 30px;
    bottom: 0px;
  }
}

/*-------------流れend---------*/
.section_voice h2 {
  font-size: 400%;
  line-height: 0.8;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.section_voice h2 span {
  font-size: 70%;
}
.section_voice .voice_flex {
  display: flex;
  gap: 2rem;
}
.section_voice .voice_flex .voice_box {
  flex: 1;
  box-sizing: border-box;
  background-color: #e0f7e0;
  padding: 2rem;
  text-align: left;
}
.section_voice .voice_flex .voice_box h3 {
  font-size: 145%;
  margin-bottom: 0.5rem;
}
.section_voice .voice_flex .voice_box span {
  font-size: 90%;
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
}
.section_voice .voice_flex .voice_box figure {
  margin-bottom: 1rem;
}

.section_company {
  background-color: #f5f5f5;
}
.section_company .wrap {
  max-width: 60vw;
  padding-bottom: 10rem;
}
.section_company .wrap h2 {
  font-size: 400%;
  line-height: 0.8;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.section_company .wrap h2 span {
  font-size: 70%;
}
.section_company .wrap p {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.section_company .wrap .company_info {
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.section_company .wrap .company_info table {
  width: 100%;
  border-collapse: collapse;
}
.section_company .wrap .company_info th,
.section_company .wrap .company_info td {
  text-align: left;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}
.section_company .wrap .company_info th {
  width: 25%;
  font-weight: bold;
  white-space: nowrap;
}
.section_company .wrap .company_info td {
  width: 75%;
}
.section_company .wrap .company_info a {
  color: #000;
  text-decoration: none;
}
.section_company .wrap .company_info a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .section_company .wrap .company_info th,
  .section_company .wrap .company_info td {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
  }
  .section_company .wrap .company_info th {
    font-size: 0.95rem;
    border-bottom: none;
    color: #555;
  }
  .section_company .wrap .company_info td {
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
  }
  .section_company .wrap .company_info tr:last-child td {
    border-bottom: none;
  }
}
.section_company .wrap .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: 0;
  margin-bottom: 2rem;
}
.section_company .wrap .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.section_company .wrap .office {
  display: flex;
  gap: 2rem;
}

/*-------------kpi下部FIX---------*/
/* ===============================
 CTA固定バナー
=============================== */
.cta_fixed {
  position: fixed;
  bottom: -120px;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  background: #fff200;
  /* ===== 共通ボタン設定 ===== */
  /* ===== 電話ボタン ===== */
  /* ===== LINEボタン群 ===== */
  /* ===== スマホ（768px以下） ===== */
}
.cta_fixed.visible {
  bottom: 0;
  opacity: 1;
  transform: translateY(0);
}
.cta_fixed.fade-out {
  opacity: 0;
  transform: translateY(100%);
}
.cta_fixed .cta_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.cta_fixed .cta_btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: #fff;
  padding: 1rem 0;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
  line-height: 1.4;
  min-height: 80px;
  cursor: pointer;
  position: relative;
}
.cta_fixed .cta_btn:hover {
  opacity: 0.9;
}
.cta_fixed .cta_btn strong {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-left: 0.3rem;
}
.cta_fixed .cta_btn i {
  font-size: 1.4rem;
  vertical-align: middle;
}
.cta_fixed .cta_tel {
  background: #f39800; /* オレンジ */
}
.cta_fixed .cta_tel .cta_tel_text {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.cta_fixed .cta_tel .cta_tel_number {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta_fixed .cta_tel .cta_tel_number i {
  font-size: 1.4rem;
}
.cta_fixed .cta_tel .cta_tel_number strong {
  font-size: 1.8rem;
  font-weight: bold;
}
.cta_fixed .cta_line_group {
  display: flex;
  flex: 2;
}
.cta_fixed .cta_line_group .cta_btn {
  flex: 1;
  font-size: 1.2rem;
  flex-direction: row; /* ★PCデフォルトは横並び */
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta_fixed .cta_line_group .cta_btn i {
  margin-right: 0.5rem;
  font-size: 1.6rem;
}
.cta_fixed .cta_line_group .cta_btn br.br_sp {
  display: none;
}
.cta_fixed .cta_line_group .cta_line_request {
  background: #009944; /* グリーン */
}
.cta_fixed .cta_line_group .cta_line_estimate {
  background: #00bcd4; /* 水色 */
}
.cta_fixed .cta_line_group .cta_btn:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .cta_fixed .cta_wrap {
    flex-direction: column;
    width: 100%;
  }
  .cta_fixed .cta_tel {
    width: 100%;
  }
  .cta_fixed .cta_tel .cta_tel_number strong {
    font-size: 1.5rem;
  }
  .cta_fixed .cta_line_group {
    flex-direction: row;
    width: 100%;
  }
  .cta_fixed .cta_line_group .cta_btn {
    flex-direction: column; /* ★スマホでは縦並びに変更！ */
    font-size: 1rem;
    padding: 1rem 0;
  }
  .cta_fixed .cta_line_group .cta_btn i {
    margin: 0 0 0.3rem 0; /* 上に配置 */
    font-size: 1.6rem;
  }
  .cta_fixed .cta_line_group .cta_btn br.br_sp {
    display: inline;
  }
}

/*-------------kpi下部FIX end---------*/
.mt_2 {
  margin-top: -2rem;
}

.section_line_contact .wrap .line_contact_text .mt_3 {
  margin-top: 0rem;
}

.section_line_contact .wrap .line_contact_text .mt_4 {
  margin-top: 0rem;
}

footer {
  padding: 1rem 0;
  background-color: #32c832;
}
footer p {
  font-size: 70%;
  letter-spacing: 0.1rem;
  color: #fff;
}

/* -----------------------------
   レスポンシブ対応
------------------------------- */
/*PCのみ*/
@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
@media (max-width: 1024px) {
  html,
  body {
    font-size: 1.5vw;
  }
  .br_pc {
    display: none;
  }
  .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .site_header .wrap h1 {
    font-size: 130%;
    margin-bottom: 0.5rem;
  }
  .site_header .wrap .logo {
    width: 75%;
  }
  .section_worries .wrap {
    max-width: 90vw;
  }
  .section_company .wrap {
    max-width: 90vw;
    padding-bottom: 5rem;
  }
  .section_service .service_contents p {
    margin-bottom: 1rem;
  }
  .pickup_area {
    max-width: 85vw;
  }
  .pickup {
    max-width: 80vw;
    gap: 2rem;
  }
  .steps {
    padding: 0rem;
  }
  .section_line_contact .wrap .line_contact_text .mt_4 {
    margin-top: -4rem;
  }
  .mt_2 {
    margin-top: 0rem;
  }
}
@media (max-width: 768px) {
  html,
  body {
    font-size: 3.8vw;
  }
  .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .map {
    padding-bottom: 75%;
  }
  .site_header .wrap {
    padding-top: 1rem;
  }
  .site_header .wrap h1 {
    font-size: 80%;
    margin-bottom: 0.5rem;
  }
  .site_header .wrap .logo {
    width: 90%;
  }
  .section_worries .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .section_worries .wrap h2 {
    font-size: 280%;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .section_worries .wrap .worries_flex {
    flex-direction: column;
  }
  .section_worries .wrap .worries_flex figure {
    width: 70%;
  }
  .section_worries .wrap .worries_flex {
    gap: 0rem;
  }
  .section_worries .wrap .worries_flex .worries_list li {
    font-size: 105%;
  }
  .section_worries .worries_solution {
    padding: 1.5rem 0;
  }
  .section_worries .worries_solution h3 {
    font-size: 190%;
  }
  .section_worries .worries_solution p {
    font-size: 130%;
  }
  .section_reason figure {
    width: 50%;
    margin-bottom: 1rem;
  }
  .section_reason h2 {
    font-size: 400%;
    margin-bottom: 1.5rem;
  }
  .section_reason .reason_contents {
    padding: 1.5rem;
  }
  .section_reason .reason_contents h3 {
    font-size: 250%;
    line-height: 1.2;
  }
  .section_reason .reason_contents h4 {
    font-size: 130%;
    line-height: 1.5;
  }
  .section_reason .reason_contents p {
    font-size: 100%;
  }
  .section_reason .reason_contents .reason_p {
    width: 100%;
    margin-bottom: 1rem;
  }
  .section_service figure {
    width: 50%;
    margin-bottom: 1rem;
  }
  .section_service h2 {
    font-size: 315%;
    margin-bottom: 1.5rem;
  }
  .section_service .service_contents {
    padding: 1.5rem;
  }
  .section_service .service_contents h3 {
    font-size: 225%;
    line-height: 1.2;
  }
  .section_service .service_contents h4 {
    font-size: 130%;
    line-height: 1.5;
  }
  .section_service .service_contents p {
    font-size: 100%;
    margin-bottom: 1.5rem;
  }
  .section_service .service_contents_2 figure {
    width: 100%;
  }
  .section_service .service_contents_2 .service_box_flex {
    display: block;
  }
  .section_service .service_contents_2 .service_box_flex .service_box {
    padding: 0rem;
  }
  .section_free h2 {
    font-size: 300%;
    margin-bottom: 1.5rem;
  }
  .section_free p {
    font-size: 100%;
    margin-bottom: 1.5rem;
  }
  .free_photo_main {
    margin-bottom: 1.5rem;
  }
  .section_free .free_photo {
    width: 100%;
  }
  .section_free .free_photo_main {
    width: 100%;
    margin-bottom: 1rem;
  }
  .pickup_area {
    max-width: 90vw;
    margin: 1rem auto;
  }
  .pickup_area .pickup_header h3 {
    font-size: 1rem;
  }
  .pickup {
    max-width: 90vw;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section_free figure {
    width: 47%;
    margin-bottom: 0rem;
  }
  .section_flow .wrap h2 {
    font-size: 235%;
    margin-bottom: 1.5rem;
  }
  .section_flow .wrap p {
    font-size: 100%;
    margin-bottom: 1.5rem;
  }
  .steps {
    padding: 0rem;
  }
  .section_voice h2 {
    font-size: 195%;
    margin-bottom: 1.5rem;
  }
  .section_voice .voice_flex {
    display: block;
  }
  .section_voice .voice_flex .voice_box {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  .section_company .wrap {
    max-width: 90vw;
    padding-bottom: 3rem;
  }
  .section_company .wrap h2 {
    font-size: 300%;
    margin-bottom: 1.5rem;
  }
  .section_company .wrap p {
    font-size: 100%;
    margin-bottom: 1.5rem;
  }
  .section_company .wrap .company_info {
    margin-bottom: 1rem;
  }
  .section_company .wrap .office {
    display: flex;
    gap: 1rem;
  }
  .mt_2 {
    margin-top: 0rem;
  }
  .mt_3 {
    margin-top: 3rem;
  }
  .section_line_contact .wrap .line_contact_text .mt_4 {
    margin-top: -4rem;
  }
}
/* ===============================
   スマホ時：illustrationがCTAに被らず、かつCTAが最前面に戻る
=============================== */
@media (max-width: 768px) {
  .section_line_contact:has(+ .cta_fixed) {
    padding-bottom: 13vh;
  }
  /* CTA は最前面に戻す */
  .cta_fixed {
    z-index: 9999 !important; /* ← 常に最前面 */
  }
}
/*# sourceMappingURL=style.css.map */