@charset "UTF-8";
:root {
  --color-text-title: #007E43;
  --color-text-main: #333333;
  --color-text-sub: #8FBF8E;
  --color-text-accent: #00582E;
  --color-back1: #fff7de;
  --color-back2: #d3ea9b;
}

html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

/* ナビバー */
.utility {
  display: flex;
  list-style: none;
}
.utility li {
  margin: 0 10px;
  font-size: 16px;
}
.utility li a {
  color: #4A95B7;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #sp_headerContent img {
    width: 100%;
    max-width: 150px;
    padding: 10px 20px 0;
  }
}

.left img {
  width: 100%;
  max-width: 150px;
}

header {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  header nav ul {
    gap: 8px;
  }
}

@media screen and (max-width: 992px) {
  .pc_header {
    display: none;
  }
}

/* 共通 */
#header {
  width: 100%;
  padding-top: 6px;
}

#headerContent {
  margin: 0 auto;
}

#headerMenu {
  width: 100%;
}

/* 画面サイズ(1025px以上) */
@media screen and (min-width: 1025px) {
  #headerContent {
    width: 980px;
    height: 110px;
  }
}
/* 画面サイズ(768~1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #headerContent {
    width: 100%;
    height: 110px;
  }
  .left {
    margin-left: 10px;
  }
  .right {
    margin-right: 10px;
  }
}
/* 画面サイズ(768px以上) */
@media screen and (min-width: 768px) {
  #headerMenuBtn {
    display: none;
  }
  #headerMenu {
    display: flex;
    justify-content: space-between;
  }
  #headerMenu h2 {
    display: none;
  }
  /* ナビバー左側 */
  .left {
    margin-top: 17px;
  }
  /* ナビバー右側 */
  .right {
    margin-top: 47px;
  }
  /* ナビバー */
  .utility {
    display: flex;
    list-style: none;
  }
  .utility li {
    font-size: 16px;
    line-height: 1;
  }
  .utility li a {
    color: #fff;
  }
}
/* 画面サイズ（767px以下）（ハンバーガーメニュー） */
@media screen and (max-width: 767px) {
  #headerContent {
    width: 100%;
  }
  #sp_headerContent {
    position: relative;
    width: 100%;
    height: 75px;
  }
  #sp_headerContent img {
    width: 100%;
    max-width: 150px;
    padding: 10px 20px 0;
  }
  #headerMenuBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    width: 30px;
  }
  #headerMenuBtn img {
    width: 100%;
  }
  #headerMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }
  #headerMenu h2 {
    position: relative;
    background-color: #000000;
    font: inherit;
    font-size: 18px;
    padding: 10px;
    color: #fff;
  }
  .open #headerMenu {
    right: 0;
  }
  /* ハンバーガーメニューを閉じるボタン */
  #headerMenu h2 .close {
    position: absolute;
    top: 180%;
    transform: translateY(-50%);
    right: 10px;
    width: 22px;
  }
  .utility {
    list-style: none;
    display: block;
    margin-top: 0;
    background-color: rgb(0, 0, 0);
  }
  .utility li:hover {
    text-decoration: none;
  }
  .utility li a {
    display: block;
    color: #4A95B7;
    padding: 10px 0px 10px 10px;
    font-size: 15px;
    border-bottom: 1px solid #4A95B7;
  }
}
#sp_headerContent h1 img {
  display: none;
}
@media screen and (max-width: 768px) {
  #sp_headerContent h1 img {
    display: block;
  }
}

/* =========================
   共通（全幅共通）
========================= */
.child_nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-child {
  position: relative;
}
.has-child > a {
  position: relative;
  display: flex;
  align-items: center;
  /* 縦ズレ防止 */
  cursor: pointer;
}

/* =========================
   PC：769px以上は全部同じ
========================= */
@media screen and (min-width: 769px) {
  /* ヘッダーレイアウトを固定 */
  #headerMenu {
    position: static;
    height: auto;
    width: auto;
    background: none;
  }
  body.open {
    overflow: visible;
  }
  /* 子メニュー */
  .child_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: #000;
    padding: 8px 0;
    z-index: 2000;
  }
  .child_nav li a {
    display: block;
    padding: 10px 16px;
    color: #fff;
    white-space: nowrap;
  }
  .child_nav li a:hover {
    background-color: #1DC18D;
    color: #000;
  }
  /* hover表示 */
  .has-child:hover > .child_nav {
    display: block;
  }
  /* ▼ アイコン（PC共通） */
  .has-child > a::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
    transform: translateY(-1px);
  }
  /* SP用状態を完全無効化 */
  .has-child.is-open > .child_nav {
    display: none;
  }
}
/* =========================
   SP：768px以下（ハンバーガー）
========================= */
@media screen and (max-width: 768px) {
  #headerMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #000;
    transition: right 0.3s ease;
    z-index: 3000;
  }
  body.open #headerMenu {
    right: 0;
  }
  /* 子メニュー：縦に伸びる */
  .child_nav {
    display: none;
    position: static;
    background-color: #111;
  }
  .has-child.is-open > .child_nav {
    display: block;
  }
  .has-child > a {
    padding-right: 40px;
  }
  /* ＋／－ */
  .has-child > a::after {
    content: "＋";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .has-child.is-open > a::after {
    content: "－";
  }
}
/* =========================
   footer
========================= */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 50px;
  font-size: 16px;
}
footer .footer_menubox {
  display: flex;
  width: 96%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer_menubox {
    display: block;
    margin-bottom: 40px;
  }
}
footer .footer_menubox img {
  width: 100%;
  max-width: 150px;
}
footer .f_copy {
  font-size: 14px;
  color: #9b9b9b;
}
footer .footer_menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer_menu {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  footer .footer_menu .footer_menulink {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  footer .footer_menu .footer_menulink li {
    margin: 10px 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu .footer_menulogo {
    margin-top: 20px;
  }
}
footer .footer_menu ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul {
    align-items: center;
    justify-content: center;
  }
}
footer .footer_menu ul li {
  padding-left: 20px;
}
footer .footer_menu ul li a {
  color: #fff;
  text-decoration: none;
}
footer .footer_menu ul li a img {
  width: 100%;
  max-width: 30px;
}

/* =========================
   ベース設定
========================= */
html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text-main);
  line-height: 1.6;
  /* ★ 本文の基準サイズ */
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
}

/* =========================
   見出し
========================= */
main {
  /* =========================
     フォントサイズユーティリティ
  ========================= */
  /* =========================
     メインコンテンツ
  ========================= */
  /* =========================
     表示制御
  ========================= */
  /* =========================
     ページによって変わる場所
  ========================= */
  /* 見出し */
  /* 入力エリア */
  /* textarea */
  /* 送信ボタン */
}
main h1 {
  font-size: clamp(3rem, 3vw, 4.5rem);
  color: var(--color-text-title);
}
main h2 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  font-weight: 500;
  text-align: center;
  padding-bottom: 60px;
  color: var(--color-text-title);
}
@media screen and (max-width: 768px) {
  main h2 {
    font-weight: bold;
  }
}
main h3 {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  text-align: center;
  font-weight: 500;
}
main img {
  width: 100%;
}
main .f_13 {
  font-size: clamp(1rem, 1.2vw, 1.3rem);
}
main .f_20 {
  font-size: clamp(1.6rem, 1.8vw, 2rem);
}
main .f_25 {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
}
main .f_30 {
  font-size: clamp(2rem, 2.6vw, 3rem);
}
main .f_40 {
  font-size: clamp(2.6rem, 3.4vw, 4rem);
}
main main {
  color: #1A1A1A;
}
main .pc_none {
  display: none;
}
@media screen and (max-width: 768px) {
  main .pc_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  main .sp_none {
    display: none;
  }
}
main .main_box {
  width: min(90%, 1200px);
  margin-inline: auto;
  padding: clamp(50px, 10vh, 100px) 0;
}
@media screen and (max-width: 992px) {
  main .main_box {
    padding: clamp(50px, 10vh, 100px) 0 clamp(20px, 6vh, 50px) 0;
  }
}
main .orange_box {
  background-color: var(--color-back2);
}
main .dark_box {
  background-color: var(--color-back1);
}
main button {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  padding: clamp(16px, 1vw, 25px) clamp(40px, 5vw, 70px);
  border-radius: 50px;
  border: none;
  background-color: var(--color-text-accent);
  color: #fff;
  cursor: pointer;
  transition: all 0.5s ease;
  border: 2px solid var(--color-text-accent);
}
main button:hover {
  background-color: #fff;
  color: var(--color-text-accent);
}
main .border_line {
  position: relative;
}
main .border_line::after {
  content: "";
  display: block;
  width: 20rem;
  height: 8px;
  background: var(--color-text-sub);
  margin: 30px auto 0;
}
main .list_number {
  counter-reset: step;
}
main .list_number .list_maru {
  counter-increment: step;
  position: relative;
  padding-left: 2em;
  line-height: 1.7;
  font-weight: 500;
}
main .list_number .list_maru::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: var(--color-text-title);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .list_canma {
  list-style: disc;
  margin-left: 60px;
  margin-bottom: 4rem;
}
main .fv {
  background-color: var(--color-back1);
}
main .fv .fv_contents {
  max-width: 1200px;
  padding: 15rem 20px 5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main .fv .fv_contents {
    padding: 10rem 20px 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  main .fv .fv_contents {
    padding: 5rem 20px 3rem;
    display: block;
  }
}
main .fv .fv_contents .fv_text {
  padding-top: 5rem;
}
main .fv .fv_contents .fv_text p {
  padding-top: 3rem;
  margin-bottom: 15rem;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  main .fv .fv_contents .fv_text p {
    margin-bottom: 5rem;
  }
}
main .fv .fv_contents .fv_text button {
  margin: 20px 0;
}
@media screen and (max-width: 992px) {
  main .fv .fv_contents .fv_text button {
    margin: 20px auto 0;
    display: block;
  }
}
main .fv .fv_contents .fv_img {
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  main .fv .fv_contents .fv_img {
    width: 60%;
  }
}
@media screen and (max-width: 576px) {
  main .fv .fv_contents .fv_img {
    width: 100%;
  }
}
main .fv .fv_contents .fv_imgbox {
  display: flex;
  color: var(--color-text-title);
  align-items: center;
  font-weight: 500;
}
main .fv .fv_contents .fv_imgbox img {
  width: 100%;
  max-width: clamp(40px, 10vw, 70px);
  padding-right: 10px;
}
@media screen and (max-width: 576px) {
  main .fv .fv_contents .ssp_none {
    display: none;
  }
}
main .fv .fv_contents .spc_none {
  display: none;
}
@media screen and (max-width: 576px) {
  main .fv .fv_contents .spc_none {
    display: block;
    margin: 0 auto;
  }
}
main .thoughts_contents p {
  padding-top: clamp(20px, 1vh, 10px);
}
main .structure_contents {
  display: flex;
  gap: clamp(16px, 4vw, 32px);
  margin-top: 70px;
}
@media screen and (max-width: 992px) {
  main .structure_contents {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  main .structure_contents {
    margin-top: 0px;
  }
}
main .structure_contents .structure_left,
main .structure_contents .structure_right {
  flex: 1;
}
@media screen and (max-width: 992px) {
  main .structure_contents .structure_right {
    margin-bottom: 40px;
  }
}
main .structure_contents .structure_left h3 {
  text-align: left;
  margin-bottom: clamp(24px, 6vw, 50px);
}
main .load_contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  main .load_contents {
    max-width: 900px;
    margin-inline: auto;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  main .load_contents {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
main .drop_sectionbox {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding-inline: 16px;
}
@media screen and (max-width: 768px) {
  main .drop_sectionbox {
    gap: 25px;
  }
}
main .drop_sectionbox .use_contents {
  width: calc((80% - 100px) / 3);
}
@media screen and (max-width: 992px) {
  main .drop_sectionbox .use_contents {
    width: calc((100% + 160px) / 3);
  }
}
@media screen and (max-width: 768px) {
  main .drop_sectionbox .use_contents {
    width: 45%;
  }
}
@media screen and (max-width: 576px) {
  main .drop_sectionbox .use_contents {
    width: 100%;
  }
}
main .drop_sectionbox .load_box {
  width: calc((100% - 64px) / 3);
  padding: 0;
}
@media screen and (max-width: 992px) {
  main .drop_sectionbox .load_box {
    width: calc((100% - 48px) / 3);
  }
}
@media screen and (max-width: 576px) {
  main .drop_sectionbox .load_box {
    margin-bottom: 20px;
  }
}
main .drop_sectionbox .load_box p {
  padding-top: 30px;
}
@media screen and (max-width: 992px) {
  main .drop_sectionbox .load_box p {
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  main .drop_sectionbox .load_box {
    width: 100%;
    max-width: 400px;
  }
}
main .drop_sectionbox .automation_box,
main .drop_sectionbox .use_box {
  border: 1px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 18px 18px 10px;
}
main .drop_sectionbox .automation_box {
  display: flex;
  flex-direction: column;
  min-height: clamp(200px, 20vw, 250px);
}
@media screen and (max-width: 768px) {
  main .drop_sectionbox .automation_box {
    min-height: 200px;
  }
}
@media screen and (max-width: 576px) {
  main .drop_sectionbox .automation_box {
    min-height: 170px;
  }
}
main .drop_sectionbox .use_box {
  min-height: 220px;
}
main .drop_sectionbox .use_box h3 {
  font-weight: 500;
}
main .drop_sectionbox .use_box p {
  text-align: center;
  padding-top: 10px;
}
main .drop_sectionbox .use_box .use_img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
main .automation_sectionbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media screen and (max-width: 992px) {
  main .automation_sectionbox {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  main .automation_sectionbox {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
main .step-number {
  text-align: center;
  color: var(--color-text-title);
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  main .step-number {
    font-weight: bold;
  }
}
main .step-number::after {
  content: "";
  display: block;
  width: 10rem;
  height: 2px;
  background: var(--color-text-title);
  margin: 0 auto 20px;
}
main .step-no {
  font-weight: bold;
}
main .step-text {
  padding-top: 20px;
}
@media screen and (max-width: 992px) {
  main .step-text {
    width: 80%;
    margin: 0 auto;
  }
}
main .circle-media {
  position: relative;
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 992px) {
  main .circle-media {
    margin-bottom: 12px;
    width: 200px;
  }
}
main .circle-media img {
  position: relative;
  z-index: 1;
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
}
main .circle-media__bg {
  position: absolute;
  inset: 0;
  background: var(--color-text-title);
  border-radius: 50%;
}
main .faq-subtitle {
  margin: 10rem 0 0;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  main .faq-subtitle {
    padding-bottom: 30px;
    margin: 5rem 0 0;
  }
}
@media screen and (max-width: 992px) {
  main .faq-title {
    padding-bottom: 30px;
  }
}
main .faq-item {
  max-width: 1000px;
  margin-inline: auto;
  background: #fff;
  border-radius: 40px;
  padding: clamp(20px, 2vw, 28px);
  margin-bottom: clamp(24px, 4vw, 48px);
}
main .faq-item .faq-q {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-text-title);
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--color-text-title);
}
@media screen and (max-width: 768px) {
  main .faq-item .faq-q {
    font-weight: bold;
  }
}
main .faq-item .faq-label {
  margin-right: 0.4em;
}
main .question-card {
  max-width: 960px;
  margin-inline: auto;
  background: #fff;
  border-radius: 40px;
  padding: clamp(24px, 4vw, 40px);
}
main .question-card__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text-title);
  margin-bottom: 10px;
}
main .question-input {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-text-title);
  align-items: flex-start;
}
main .question-input__field {
  flex: 1;
  border: none;
  resize: none;
  color: #333;
  line-height: 1.6;
  background: transparent;
}
main .question-input__field::-moz-placeholder {
  color: #b5b5b5;
}
main .question-input__field::placeholder {
  color: #b5b5b5;
}
main .question-input__field:focus {
  outline: none;
}
main .question-input__send {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text-title);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
}
main .question-input__send:hover {
  transform: translateX(4px);
}
main .inquery_section {
  padding: 7rem 0;
}
main .inquery_section button {
  margin: 0 auto;
  display: block;
}
main .use_contents.is-dummy {
  visibility: hidden;
  margin: 0;
  padding: 0;
}/*# sourceMappingURL=style.css.map */