@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
共通設定(PC)
--------------------------------------------------------------------------------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
  background-color: #fff;
  /* scroll-behavior: smooth; */
  color: #252525;
}
body .sp-item {
  display: none !important;
}
body .pc-item {
  display: block !important;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
/*ボタン*/
.btn-poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
  position: relative;
  overflow: hidden;
  /* transform-origin: center center; */
}
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
.btn-shine::after {
  animation: 2s 0s shine-btn linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
}
@keyframes shine-btn {
  0% {
    left: -100%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.btn:hover {
  opacity: 0.7;
}
/* 矢印のアニメーション */
.arrow-animate {
  display: block;
  height: 100%;
  animation: revealDown 2s ease-in-out infinite;
  clip-path: inset(0 0 100% 0); /* 最初は上だけ表示 */
}
@keyframes revealDown {
  0% {
    clip-path: inset(0 0 100% 0); /* 完全に隠れている */
  }
  60% {
    clip-path: inset(0 0 0 0); /* 完全に表示される */
  }
  100% {
    clip-path: inset(0 0 0 0); /* 表示状態をキープ（待機時間） */
  }
}
img {
  width: 100%;
}
/*ページ全体*/
.container {
  width: 750px;
  margin: 0 auto;
  padding: 0;
}
/* hidden項目 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/*-----------------------
下部固定ボタンエリア
------------------------*/
.fixed-buttons {
  position: fixed;
  bottom: 10%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: none;
  flex-direction: column;
  transition: opacity 0.3s ease-in-out;
}
.fixed-buttons a {
  display: block;
  line-height: 0;
  margin-bottom: min(20px, calc(20 * 100vw / 750));
}
.fixed-buttons img {
  display: block;
  width: min(110px, calc(110 * 100vw / 750));
  height: auto;
  border-radius: 0;
  margin: 0;
}
.fixed-buttons.visible {
  display: flex;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    display: none;
    justify-content: space-around; /* ボタンを均等に配置 */
    z-index: 1000; /* 常に前面に表示 */
    transition: opacity 0.3s ease-in-out; /* スムーズな表示 */
    flex-direction: row;
  }
  .fixed-buttons.visible {
    display: flex; /* 表示状態 */
    opacity: 1;
  }
  .fixed-buttons a {
    flex: 1;
    display: block;
    margin-bottom: 0;
  }
  .fixed-buttons img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/*-----------------------
メーカーアイコンスクロールエリア
------------------------*/
.maker-icons-scroll-area {
  background-color: #fff;
  padding: min(30px, calc(30 * 100vw / 750)) 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .maker-icons-scroll-area {
    padding: calc(30 * 100vw / 750) 0;
  }
}
.maker-icons-ttl {
  padding: 0 min(120px, calc(120 * 100vw / 750));
  margin-bottom: min(20px, calc(20 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .maker-icons-ttl {
    padding: 0 calc(120 * 100vw / 750);
    margin-bottom: calc(20 * 100vw / 750);
  }
}
.maker-icons-ttl h3 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #fb8316;
  border-radius: min(100px, calc(100 * 100vw / 750));
  padding: min(6px, calc(6 * 100vw / 750)) 0;
}
@media screen and (max-width: 768px) {
  .maker-icons-ttl h3 {
    font-size: calc(24 * 100vw / 750);
    padding: calc(6 * 100vw / 750) 0;
  }
}
.maker-icons-container {
  width: 100%;
  height: min(80px, calc(80 * 100vw / 750));
  display: flex;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  padding: min(20px, calc(20 * 100vw / 750)) 0;
}
@media screen and (max-width: 768px) {
  .maker-icons-container {
    height: calc(80 * 100vw / 750);
    padding: calc(20 * 100vw / 750) 0;
  }
}
.maker-icons-wrapper {
  display: flex;
  animation: scroll 25s linear infinite;
  padding: min(20px, calc(20 * 100vw / 750)) 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .maker-icons-wrapper {
    padding: calc(20 * 100vw / 750) 0;
  }
}
.maker-icons-wrapper img {
  width: auto;
  height: min(56px, calc(56 * 100vw / 750));
  margin-right: min(24px, calc(24 * 100vw / 750));
  object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .maker-icons-wrapper img {
    height: calc(56 * 100vw / 750);
    margin-right: calc(24 * 100vw / 750);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*-----------------------
CTAエリア
------------------------*/
.cta-area {
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta-btn-tel {
    position: absolute;
    width: 90%;
    top: 18%;
    left: 5%;
    filter: drop-shadow(calc(4 * 100vw / 750) calc(4 * 100vw / 750) calc(4 * 100vw / 750) rgba(0, 0, 0, 0.2));
  }
}
.cta-btn-mail,
.cta-btn-line {
  position: absolute;
  width: 90%;
  left: 5%;
  filter: drop-shadow(min(4px, calc(4 * 100vw / 750)) min(4px, calc(4 * 100vw / 750)) min(4px, calc(4 * 100vw / 750)) rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  .cta-btn-mail,
  .cta-btn-line {
    filter: drop-shadow(calc(4 * 100vw / 750) calc(4 * 100vw / 750) calc(4 * 100vw / 750) rgba(0, 0, 0, 0.2));
  }
}
.cta-btn-mail {
  top: 30%;
}
@media screen and (max-width: 768px) {
  .cta-btn-mail {
    top: 30%;
  }
}
.cta-btn-line {
  top: 38%;
}
@media screen and (max-width: 768px) {
  .cta-btn-line {
    top: 42%;
  }
}
/*-----------------------
選ばれる理由エリア
------------------------*/
.reasons-area {
  margin-bottom: min(80px, calc(80 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .reasons-area {
    margin-bottom: calc(80 * 100vw / 750);
  }
}
.reasons-area-img {
  margin-bottom: min(60px, calc(60 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .reasons-area-img {
    margin-bottom: calc(60 * 100vw / 750);
  }
}
/*-----------------------
フローエリア
------------------------*/
.flow-steps {
  margin-top: min(-50px, calc(-50 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .flow-steps {
    margin-top: calc(-160 * 100vw / 750);
  }
}
.flow-step {
  margin-bottom: min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .flow-step {
    margin-bottom: calc(40 * 100vw / 750);
  }
}
/*-----------------------
安心ポイントエリア
------------------------*/
.points-card {
  margin-bottom: min(60px, calc(60 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .points-card {
    margin-bottom: calc(60 * 100vw / 750);
  }
}
.points-hr {
  width: 90%;
  margin: 0 auto min(60px, calc(60 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .points-hr {
    margin: 0 auto calc(60 * 100vw / 750);
  }
}
/*-----------------------
過去事例エリア
------------------------*/
.examples-area {
  background-color: #fff3e8;
  padding: min(60px, calc(60 * 100vw / 750)) 0;
}
@media screen and (max-width: 768px) {
  .examples-area {
    padding: calc(60 * 100vw / 750) 0;
  }
}
.examples-area-ttl {
  margin-bottom: min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .examples-area-ttl {
    margin-bottom: calc(40 * 100vw / 750);
  }
}
.example-card {
  margin-bottom: min(60px, calc(60 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .points-card {
    margin-bottom: calc(60 * 100vw / 750);
  }
}
/*--------------------------------------------------------
よくある質問エリア
--------------------------------------------------------*/
.faq-area {
  width: 100%;
  padding: min(80px, calc(80 * 100vw / 750)) 0 0;
}
@media screen and (max-width: 768px) {
  .faq-area {
    padding: calc(80 * 100vw / 750) 0 0;
  }
}
.faq-items {
  padding: min(40px, calc(40 * 100vw / 750)) min(20px, calc(20 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .faq-items {
    padding: calc(40 * 100vw / 750) calc(20 * 100vw / 750);
  }
}
.acd-check {
  display: none;
}
.acd-label {
  display: flex;
  align-items: flex-start;
  padding: min(10px, calc(10 * 100vw / 750)) min(60px, calc(60 * 100vw / 750)) min(10px, calc(10 * 100vw / 750)) min(20px, calc(20 * 100vw / 750));
  font-size: min(20px, calc(20 * 100vw / 750));
  font-weight: bold;
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .acd-label {
    padding: calc(10 * 100vw / 750) calc(80 * 100vw / 750) calc(10 * 100vw / 750) calc(20 * 100vw / 750);
    font-size: calc(30 * 100vw / 750);
  }
}
.acd-label:before {
  content: "Q";
  color: #0965b2;
  font-weight: bold;
  display: inline-block;
  width: 2em;
  flex-shrink: 0;
}
.acd-label:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: min(20px, calc(20 * 100vw / 750));
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .acd-label:after {
    right: calc(20 * 100vw / 750);
  }
}
.acd-content {
  display: flex;
  align-items: flex-start;
  height: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  font-size: min(20px, calc(20 * 100vw / 750));
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 min(60px, calc(60 * 100vw / 750)) 0 min(20px, calc(20 * 100vw / 750));
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .acd-content {
    padding: 0 calc(80 * 100vw / 750) 0 calc(20 * 100vw / 750);
    font-size: calc(30 * 100vw / 750);
  }
}
.acd-content:before {
  content: "A";
  color: #fb8316;
  font-weight: bold;
  display: inline-block;
  width: 2em;
  flex-shrink: 0;
}
.acd-check:checked + .acd-label:after {
  content: "\f068";
}
.qa-box {
  border-bottom: 1px solid #ddd;
  padding: min(20px, calc(20 * 100vw / 750)) 0;
}
@media screen and (max-width: 768px) {
  .qa-box {
    padding: calc(20 * 100vw / 750) 0;
  }
}
.qa-box:first-of-type {
  border-top: 1px solid #ddd;
}
/*--------------------------------------------------------
対応エリア
--------------------------------------------------------*/
.support-area {
  background-color: #fb8316;
  padding: min(80px, calc(80 * 100vw / 750)) min(20px, calc(20 * 100vw / 750));
  position: relative;
}
@media screen and (max-width: 768px) {
  .support-area {
    padding: calc(80 * 100vw / 750) calc(20 * 100vw / 750);
  }
}
.support-area-map {
  position: absolute;
  top: 1%;
  right: 3%;
  width: 35%;
  height: auto;
  z-index: 1;
}
.support-area-ttl {
  margin-bottom: min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .support-area-ttl {
    margin-bottom: calc(40 * 100vw / 750);
  }
}
.support-wrap {
  background-color: #fff;
  border-radius: min(20px, calc(20 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .support-wrap {
    border-radius: calc(20 * 100vw / 750);
  }
}
.support-content {
  padding: min(40px, calc(40 * 100vw / 750)) min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .support-content {
    padding: calc(40 * 100vw / 750) calc(40 * 100vw / 750);
  }
}
.support-content h3 {
  font-size: min(24px, calc(24 * 100vw / 750));
  text-align: center;
  margin: 0 min(220px, calc(220 * 100vw / 750)) min(20px, calc(20 * 100vw / 750));
  background-color: #fb8316;
  color: #fff;
  font-weight: bold;
  border-radius: min(100px, calc(100 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .support-content h3 {
    font-size: calc(24 * 100vw / 750);
    margin: 0 calc(240 * 100vw / 750) calc(20 * 100vw / 750);
    border-radius: calc(100 * 100vw / 750);
  }
}
.support-text {
  font-size: min(20px, calc(20 * 100vw / 750));
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .support-text {
    font-size: calc(20 * 100vw / 750);
  }
}
/*--------------------------------------------------------
会社情報エリア
--------------------------------------------------------*/
.company-info-area {
  padding: min(80px, calc(80 * 100vw / 750)) min(20px, calc(20 * 100vw / 750)) min(40px, calc(40 * 100vw / 750)) min(20px, calc(20 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .company-info-area {
    padding: calc(80 * 100vw / 750) calc(20 * 100vw / 750) calc(40 * 100vw / 750) calc(20 * 100vw / 750);
  }
}
.company-info-ttl {
  margin: min(20px, calc(20 * 100vw / 750)) auto min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .company-info-ttl {
    margin: calc(20 * 100vw / 750) auto calc(40 * 100vw / 750);
  }
}
.company-info-table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
  margin: min(20px, calc(20 * 100vw / 750)) auto min(40px, calc(40 * 100vw / 750));
  padding: 0 min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .company-info-table {
    margin: calc(20 * 100vw / 750) auto calc(40 * 100vw / 750);
    padding: 0 calc(40 * 100vw / 750);
  }
}
.company-info-table th {
  font-size: min(20px, calc(20 * 100vw / 750));
  font-weight: bold;
  width: 30%;
  padding: min(30px, calc(30 * 100vw / 750)) min(40px, calc(40 * 100vw / 750));
  border-top: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .company-info-table th {
    font-size: calc(28 * 100vw / 750);
    padding: calc(30 * 100vw / 750) calc(20 * 100vw / 750);
  }
}
.company-info-table td {
  font-size: min(20px, calc(20 * 100vw / 750));
  width: 70%;
  padding: min(30px, calc(30 * 100vw / 750)) min(40px, calc(40 * 100vw / 750));
  border-top: 1px solid #ccc;
  text-align: justify;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .company-info-table td {
    font-size: calc(28 * 100vw / 750);
    padding: calc(30 * 100vw / 750) calc(40 * 100vw / 750);
  }
}
/*-----------------------
フォームエリア
------------------------*/
.form-area {
  padding: min(60px, calc(60 * 100vw / 750)) min(20px, calc(20 * 100vw / 750));
  background-color: #fff3e8;
}
@media screen and (max-width: 768px) {
  .form-area {
    padding: calc(80 * 100vw / 750) calc(20 * 100vw / 750);
  }
}
.form-main-ttl {
  margin-bottom: min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .form-main-ttl {
    margin-bottom: calc(40 * 100vw / 750);
  }
}
.form-content {
  background-color: #fff;
  border-radius: min(20px, calc(20 * 100vw / 750));
  padding: min(20px, calc(20 * 100vw / 750)) min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .form-content {
    border-radius: calc(20 * 100vw / 750);
    padding: calc(40 * 100vw / 750) calc(40 * 100vw / 750);
  }
}
.form-content-ttl {
  margin-bottom: min(40px, calc(40 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .form-content-ttl {
    margin-bottom: calc(40 * 100vw / 750);
  }
}
/*-----------------------
フッター部分
------------------------*/
.footer-area {
  text-align: center;
  padding: min(40px, calc(40 * 100vw / 750));
  font-size: min(16px, calc(16 * 100vw / 750));
  background-color: #fb8316;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-area {
    padding: calc(40 * 100vw / 750);
    font-size: calc(24 * 100vw / 750);
  }
}
.footer-area a {
  color: #fff;
  text-decoration: none;
}
.footer-area a:hover {
  text-decoration: underline;
}
.footer-area .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .footer-area .menu {
    flex-direction: column;
    gap: min(20px, calc(20 * 100vw / 750));
  }
}
.footer-area .menu li {
  margin: 0;
  padding: 0 min(20px, calc(20 * 100vw / 750));
}
@media screen and (max-width: 768px) {
  .footer-area .menu li {
    padding: 0 calc(20 * 100vw / 750);
  }
}
.footer-area .copyright {
  margin: 0;
  padding: min(20px, calc(20 * 100vw / 750)) 0 0 0;
}
@media screen and (max-width: 768px) {
  .footer-area .copyright {
    padding: calc(20 * 100vw / 750) 0 0 0;
  }
}
/*-----------------------
スマホ用
------------------------*/
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    height: 100%;
  }
  body .sp-item {
    display: block !important;
  }
  body .pc-item {
    display: none !important;
  }
  section {
    scroll-margin-top: 0px;
  }
  .container {
    width: 100%;
  }
}
