@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.w100 {
  width: 100%;
}

img {
  display: block;
  margin: 0 auto;
}

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

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

.cta {
  background-image: url("../img/PC_cta_bg.png");
  background-size: cover;
  max-width: 100%;
  padding: 100px 15px 60px;
  position: relative;
}
@media (max-width: 768px) {
  .cta {
    padding: 40px 15px 30px;
  }
}
.cta .cta_bubble {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 70px;
  max-width: 430px;
}
@media (max-width: 768px) {
  .cta .cta_bubble {
    width: 80%;
    top: 20px;
  }
}

.cta_area {
  background: #fff;
  padding: 60px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border: 2.961px solid var(--linear_light, #ab7d28);
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .cta_area {
    padding: 40px 15px 20px;
  }
}
.cta_area .cta_text {
  display: inline-block;
  color: var(--text_color, #1e1e1e);
  font-size: 42.54px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  border-bottom: #ff7648 solid 4px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta_area .cta_text {
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 22.637px;
  }
}
.cta_area .cta_text span {
  font-size: 33px;
}
@media (max-width: 768px) {
  .cta_area .cta_text span {
    font-size: 16px;
  }
}
.cta_area .tel img {
  width: 70%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta_area .tel img {
    width: 90%;
    margin-bottom: 10px;
  }
}
.cta_area .tel img:hover {
  -webkit-transform: scale(99%);
          transform: scale(99%);
  opacity: 0.9;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cta_area .cta_linetext {
  font-size: 30px;
  color: #654720;
  font-style: normal;
  font-weight: 505;
  line-height: normal;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  margin: 15px 0 10px;
}
@media (max-width: 768px) {
  .cta_area .cta_linetext {
    font-size: 18px;
    margin: 5px 0;
    line-height: 1.5;
  }
}

.btn img {
  -webkit-filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  width: 80%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .btn img {
    width: 100%;
  }
}
.btn img:hover {
  -webkit-transform: scale(99%);
          transform: scale(99%);
  -webkit-filter: none;
          filter: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.target {
  background-image: url("../img/target_bg.png");
  background-size: cover;
  padding: 80px 0 0 0;
  text-align: center;
}
@media (max-width: 768px) {
  .target {
    padding: 40px 0 0 0;
  }
}
.target .target_1area {
  text-align: right;
}
.target .target_arrow {
  margin-top: -20px;
}
@media (max-width: 768px) {
  .target .target_arrow {
    width: 60px;
  }
}
.target .target_2 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .target .target_2 {
    width: 90%;
    margin-bottom: 15px;
  }
}
.target .target_3 {
  margin-bottom: 20px;
}
.target .target_4 {
  width: 100%;
  margin-bottom: -20px;
}

.difference {
  text-align: center;
  padding: 120px 0px 0;
  background-image: url("../img/dif_bg.png");
  background-size: cover;
}
@media (max-width: 768px) {
  .difference {
    padding: 40px 0 0;
  }
}
.difference img {
  display: block;
  margin: 0 auto;
}
.difference .img-dif_text {
  margin: 30px auto;
}
.difference .scroll-table {
  overflow-x: auto; /* 横スクロール有効化 */
  padding-left: 15px;
  -webkit-overflow-scrolling: touch; /* iOSでスムーズに */
}
.difference .scroll-table img {
  display: block;
  max-width: none; /* ←これ大事！100%にすると縮んでスクロールできない */
}
@media (max-width: 768px) {
  .difference .scroll-table img {
    width: 450px; /* PC版の実サイズに合わせる */
  }
}
.difference .img-industries {
  margin-top: 50px;
}

.price {
  background-image: url("../img/price_bg.png");
  background-size: cover;
  padding: 100px 15px;
}
@media (max-width: 768px) {
  .price {
    padding: 40px 15px;
  }
}
.price img {
  display: block;
  margin: 0 auto;
}
.price .img-price_1 {
  margin-bottom: 30px;
}
.price .img-price_2 {
  margin-bottom: 30px;
}
.price .img-price_3 {
  margin-bottom: 30px;
}

.works {
  padding: 100px 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .works {
    padding: 40px 15px;
  }
}
.works .works_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .works .works_items {
    display: block;
  }
}
.works .cta_linetext {
  font-size: 30px;
  color: #654720;
  font-style: normal;
  font-weight: 505;
  line-height: normal;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  margin: 15px 0 10px;
}
@media (max-width: 768px) {
  .works .cta_linetext {
    font-size: 18px;
    margin: 5px 0;
    line-height: 1.5;
  }
}
.works .btn img {
  -webkit-filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  max-width: 900px;
  width: 80%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .works .btn img {
    width: 100%;
  }
}
.works .btn img:hover {
  -webkit-transform: scale(99%);
          transform: scale(99%);
  -webkit-filter: none;
          filter: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.message {
  padding: 60px 0;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  width: 100%;
  grid-template-columns: 1fr 2.5fr 1fr;
}
.message img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.message .message_contents {
  text-align: center;
}
@media (max-width: 768px) {
  .message .message_contents {
    text-align: left;
    width: 100%;
  }
}
.message .message_title {
  font-size: 50px;
  color: #493110;
  font-weight: 600;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .message .message_title {
    font-size: 22px;
  }
}
.message .message_lead {
  color: #ff7648;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.9;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .message .message_lead {
    font-size: 15px;
  }
}
.message .message_text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 2;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .message .message_text {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .message {
    display: block;
    padding: 40px 0;
  }
  .message picture,
  .message .message_contents {
    width: 100%;
  }
  .message .message_contents {
    margin: 24px 0;
  }
}

.flow {
  background-image: url("../img/flow_bg.png");
  background-size: cover;
  padding: 120px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .flow {
    padding: 40px 15px;
  }
}

.faq {
  background-image: url("../img/target_bg.png");
  background-size: cover;
  padding: 83px 15px;
}
@media (max-width: 768px) {
  .faq {
    padding: 40px 15px;
  }
}
.faq .faq_wrap {
  margin-top: 50px;
}
.faq .faq_contents {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border: 6px solid var(--linear_light, #ab7d28);
  padding: 40px 10px;
}
@media (max-width: 768px) {
  .faq .faq_contents {
    padding: 20px 15px;
    border: 3px solid var(--linear_light, #ab7d28);
  }
}

:root {
  --brown: #493110; /* テキストの濃い茶 */
  --line: #a77846; /* 下線の茶（お好みで調整） */
  --q-size: 38px; /* Q/A のサイズ */
  --question-fs: 20px;
  --answer-fs: 16px;
  --gap: 16px;
  --maxw: 920px;
}

.faq-item {
  border: 0;
  background: rgba(255, 255, 255, 0.81);
  max-width: 900px;
  margin: 20px auto;
  padding: 5px 15px;
  text-align: left;
}
@media (max-width: 768px) {
  .faq-item {
    padding: 2px 15px;
  }
}

.faq-summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: var(--gap);
     -moz-column-gap: var(--gap);
          column-gap: var(--gap);
  padding: 12px 0 16px;
  cursor: pointer;
  color: var(--brown);
}
@media (max-width: 768px) {
  .faq-summary {
    padding: 3px 0 3px;
  }
}

/* ブラウザ既定の三角を非表示 */
.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-mark {
  font-weight: 700;
  line-height: 1;
  color: var(--brown);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.faq-q {
  font-size: var(--q-size);
}

.faq-question {
  font-size: var(--question-fs);
  font-weight: 700;
}

/* 右端の + / − アイコン */
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background: var(--brown);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.faq-icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
} /* 縦線（+） */
/* パネル */
.faq-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: var(--gap);
     -moz-column-gap: var(--gap);
          column-gap: var(--gap);
  row-gap: 8px;
  padding: 16px 0 20px;
  color: var(--brown);
  border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
  .faq-panel {
    padding: 6px 0 10px;
  }
}

.faq-a {
  font-size: var(--q-size);
  -ms-flex-item-align: start;
      align-self: start;
}

.faq-answer {
  font-size: var(--answer-fs);
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* 開閉時の見た目（−にする & 余白調整） */
details[open] .faq-summary {
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  details[open] .faq-summary {
    padding-bottom: 2px;
  }
}

details[open] .faq-icon::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
} /* 横線だけ=マイナス */
/* レスポンシブ */
@media (max-width: 768px) {
  :root {
    --q-size: 24px;
    --question-fs: 16px;
    --answer-fs: 14px;
  }
  .faq-panel {
    grid-template-columns: 1.2fr 6fr;
  }
}
@media (max-width: 480px) {
  :root {
    --q-size: 24px;
  }
  .faq-summary {
    grid-template-columns: auto 1fr auto;
  }
  .faq-panel {
    grid-template-columns: auto 1fr;
  }
}
form {
  margin-top: 60px;
}
@media (max-width: 768px) {
  form {
    margin-top: 30px;
  }
}
form .form-title {
  font-size: 30px;
  color: #493110;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  form .form-title {
    font-size: 22px;
  }
}
form p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  form p {
    font-size: 14px;
  }
}
form .formTable {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 18px;
}
form .formTable th,
form .formTable td {
  padding: 13px;
  text-align: left;
  vertical-align: top;
}
form .formTable th {
  width: 150px;
  font-weight: 700;
  color: #333;
}
form .formTable th span {
  margin-left: 10px;
  color: #f00;
  font-size: 0.85em;
  vertical-align: middle;
}
form .formTable td input,
form .formTable td textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 18px;
  border: 1px solid #7d602f;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  outline: none;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
form .formTable td input::-webkit-input-placeholder, form .formTable td textarea::-webkit-input-placeholder {
  color: #9a9a9a;
}
form .formTable td input::-moz-placeholder, form .formTable td textarea::-moz-placeholder {
  color: #9a9a9a;
}
form .formTable td input:-ms-input-placeholder, form .formTable td textarea:-ms-input-placeholder {
  color: #9a9a9a;
}
form .formTable td input::-ms-input-placeholder, form .formTable td textarea::-ms-input-placeholder {
  color: #9a9a9a;
}
form .formTable td input::placeholder,
form .formTable td textarea::placeholder {
  color: #9a9a9a;
}
form .formTable td input:focus,
form .formTable td textarea:focus {
  border-color: #a65c1c;
  -webkit-box-shadow: 0 0 0 3px rgba(166, 92, 28, 0.15);
          box-shadow: 0 0 0 3px rgba(166, 92, 28, 0.15);
}
form .formTable td textarea {
  min-height: 180px;
  resize: vertical;
}
form .submit-button {
  background-image: url("../img/form-btn.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 330px;
  height: 80px;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.1s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.1s ease;
  transition: box-shadow 0.3s ease, transform 0.1s ease;
  transition: box-shadow 0.3s ease, transform 0.1s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.1s ease;
  -webkit-box-shadow: 0 4px 0 0 #a65c1c;
          box-shadow: 0 4px 0 0 #a65c1c;
  display: block;
  margin: 24px auto 0;
}
form .submit-button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
form .submit-button:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media (max-width: 768px) {
  form .formTable {
    display: block;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  form .formTable tbody,
  form .formTable tr,
  form .formTable th,
  form .formTable td {
    display: block;
    width: 100%;
  }
  form .formTable tr {
    margin: 0 0 18px;
  }
  form .formTable th {
    width: 100%;
    padding: 0 0 6px;
    font-weight: 700;
  }
  form .formTable td {
    padding: 0;
  }
  form .formTable input,
  form .formTable textarea {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 16px;
  }
}

footer {
  background-color: #f8f8f8;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}
footer small {
  display: block;
  margin-top: 10px;
  color: #999;
}

.floating {
  display: none;
}
@media (max-width: 768px) {
  .floating {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .floating .float_content {
    background-image: url(../img/float.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 150px;
    width: 100%;
    position: relative;
  }
}
.floating .float_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  right: 15px;
}
.floating .float_btn_area a {
  height: 45px;
}
.floating .float_btn_area a img {
  width: 100%;
  height: auto;
}

.card {
  background-image: url("../img/dif_bg.png");
  text-align: center;
  padding: 60px 15px;
  height: 100vh;
}
@media (max-width: 768px) {
  .card {
    text-align: left;
  }
}
.card .thanks-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 150%;
}
.card .totop {
  display: inline-block;
  margin-top: 30px;
  color: #ff7648;
  text-decoration: none;
  padding: 10px 50px;
  border: 1px solid #ff7648;
  background: #fff;
}