@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
共通設定(PC)
--------------------------------------------------------------------------------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.6;
  scroll-behavior: smooth;
  color: #252525;
}
body .sp-item {
  display: none !important;
}
body .pc-item {
  display: block !important;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
/*ボタンホバー設定(半透明)*/
.btn:hover {
  opacity: 0.7;
}
img {
  width: 100%;
}
.orange-word {
  color: #fd8b47;
}
.weight5 {
  font-weight: 500;
}
.weight6 {
  font-weight: 600;
}
.weight8 {
  font-weight: 800;
}
.bebas {
  font-family: "Bebas Neue", sans-serif;
}
/*-----------------------------------------------------------------------------------------------------
各エリアの設定(PC)
-----------------------------------------------------------------------------------------------------*/
/*ページ全体*/
.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
  background-color: #f8f5ef;
}
/*-----------------------------------------------------------------------------------------------------
ファーストビューエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.cta-btn {
  width: 90%;
  margin: 20px auto;
}
.fv-area-question {
  margin: 40px auto 40px;
}
.cta-msg-wrap {
  padding: 0 40px;
}
.cta-msg {
  text-indent: -1em; /* 1文字分、左に引っ込める */
  padding-left: 1em; /* 左に1文字分、押し出す */
  line-height: 1.8; /* 行間を広めにするときれい */
  font-size: 3.4rem;
  font-weight: 500;
  margin-top: 30px;
}
.img-msg {
  width: 90%;
  margin: 0 auto 40px;
}
/*-----------------------------------------------------------------------------------------------------
提案エリア(PC)
-----------------------------------------------------------------------------------------------------*/
.bg-green-area {
  background-image: url("../images/bg_green.png");
  background-repeat: repeat;
  padding: 0 0 40px 0;
}
.suggestion-area {
  padding: 60px 0;
}
.ttl-suggestion {
  margin-bottom: 30px;
}
.img-suggestion1 {
  margin-bottom: 40px;
}
/*-----------------------------------------------------------------------------------------------------
理由エリア(PC)
-----------------------------------------------------------------------------------------------------*/
.reason-area {
  margin-bottom: 60px;
}
.ttl-reason {
  margin-bottom: 60px;
}
.reason-card {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  width: 94%;
  margin: 80px auto 0;
  padding: 60px 5px 40px;
}
.reason-card-subttl {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background-color: #8e7461;
  color: #fff;
  font-weight: bold;
  font-size: 3.4rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  text-align: center;
  line-height: 1;
}
.reason-card-subttl span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  vertical-align: baseline;
  position: relative;
  top: 2px;
}
.reason-card-ttl {
  font-size: 3.6rem;
  font-weight: 800;
  color: #fd8b47;
  text-align: center;
  margin-bottom: 20px;
}
.reason-card-img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.reason-card-detail {
  font-size: 3.4rem;
  font-weight: 500;
  text-align: justify;
  padding: 0 20px;
}
.reason-card-detail p {
  margin-bottom: 1.8rem;
}
/*-----------------------------------------------------------------------------------------------------
サービス一覧エリア(PC)
-----------------------------------------------------------------------------------------------------*/
.service-area {
  padding: 40px 20px 60px;
}
.ttl-service {
  margin-bottom: 40px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.service-card {
  width: calc(50% - 10px); /* 2列表示 */
  background: #fff;
  border: 1px solid #8eba43;
  border-radius: 10px;
  padding: 40px 15px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service-card img {
  width: 50%;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 3.4rem;
  color: #7fb522; /* 緑系 */
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 600;
}
.service-card p {
  font-size: 3.4rem;
  color: #333;
  line-height: 1.6;
  text-align: justify;
  font-weight: 500;
}
/* 同じ高さ揃えのためにカード全体をflexスタート揃え */
.service-cards {
  align-items: stretch;
}
/*-----------------------------------------------------------------------------------------------------
ご利用の流れエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.ttl-flow {
  margin-bottom: 30px;
}
.flow-scroll {
  margin: 0 40px 10px 0;
  text-align: right;
  font-size: 2.8rem;
}
.flow-container {
  overflow-x: auto;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.flow-container img {
  width: 150%; /* 画像本来のサイズにする */
  height: auto;
  display: block; /* 画像の下に隙間を出さない */
}
.flow-msg {
  padding: 40px 40px 20px 40px;
  text-align: justify;
  font-size: 3.4rem;
  font-weight: 500;
}
/*-----------------------------------------------------------------------------------------------------
お客様の声エリア(PC)
-----------------------------------------------------------------------------------------------------*/
.ttl-voice {
  margin: 80px 0 20px;
}
.voice-area {
  padding: 0 20px;
}
.voice-cards {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.voice-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.voice-card.green {
  background-color: #f5f9ee;
}
.voice-card.pink {
  background-color: #fff3ed; /* ピンク系の背景 */
}
.voice-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.voice-image {
  flex-basis: 20%;
}
.voice-image img {
  border-radius: 50%;
  object-fit: cover;
}
.voice-text {
  flex-basis: 70%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.voice-name {
  font-weight: bold;
  font-size: 3.4rem;
  color: #725139;
  margin-bottom: 10px;
}
.voice-text p {
  font-size: 3.4rem;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 500;
  color: #252525;
  text-align: justify;
}
.voice-text .highlight {
  color: #fd8b47; /* オレンジ色強調 */
}
/*--------------------------------------------------------
よくある質問エリア(PC)
--------------------------------------------------------*/
.faq-area {
  margin: 80px 0;
  padding: 0 20px;
}
.faq-cards {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #fd8b47;
}
.faq-question {
  background-color: #fd8b47; /* オレンジ */
  color: #fff;
  font-weight: bold;
  font-size: 3.4rem;
  padding: 40px 20px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: justify;
}
.q-mark {
  flex-shrink: 0;
  font-weight: bold;
}
.faq-answer {
  background-color: #fff;
  color: #333;
  font-size: 3.4rem;
  line-height: 1.6;
  padding: 40px 30px;
  text-align: justify;
  font-weight: 600;
}
/*--------------------------------------------------------
Youtubeエリア
--------------------------------------------------------*/
.img-youtube {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.btn-youtube {
  position: absolute;
  width: 80%;
  top: 65%;
  left: 10%;
}
/*-----------------------------------------------------------------------------------------------------
フッター部分(PC)
-----------------------------------------------------------------------------------------------------*/
.footer-area {
  margin: 20px auto 0;
  text-align: center;
  padding: 60px 30px 30px 30px;
  font-size: 2.8rem;
  background-color: #8e7461;
}
.footer-area a {
  color: #f8f5ef;
  text-decoration: none;
}
.footer-area a:hover {
  text-decoration: underline;
}
.footer-area .menu {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #f8f5ef;
}
.footer-area .menu li {
  margin: 0;
  padding: 0 20px;
}
.footer-area .copyright {
  margin: 0;
  padding: 20px 0 0 0;
  color: #f8f5ef;
}
/*-----------------------------------------------------------------------------------------------------
スマホ用
-----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    height: 100%;
  }
  body .sp-item {
    display: block !important;
  }
  body .pc-item {
    display: none !important;
  }
  body .sp-item img {
    width: 100%;
  }
  .spacer60 {
    margin-top: 60px;
  }
  /* ページ内リンク先の要素にマージンを適用 */
  section {
    scroll-margin-top: 60px; /* ヘッダーの高さ分ずらす */
  }
  .orange-word {
    color: #fd8b47;
    font-weight: bold;
  }

  /*-----------------------------------------------------------------------------------------------------
ファーストビューエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .cta-msg-wrap {
    padding: 0 20px;
  }
  .cta-msg {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 20px;
  }
  .img-msg {
    width: 90%;
    margin: 0 auto 40px;
  }

  /*-----------------------------------------------------------------------------------------------------
提案エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .bg-green-area {
    padding: 40px 0 20px;
  }
  .suggestion-area {
    padding: 0 0 40px;
  }
  .ttl-suggestion {
    margin-bottom: 20px;
  }
  .img-suggestion1 {
    margin-bottom: 40px;
  }
  /*-----------------------------------------------------------------------------------------------------
理由エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .reason-area {
    margin-bottom: 40px;
  }
  .ttl-reason {
    margin-bottom: 10px;
  }
  .reason-card {
    margin: 60px auto 0;
    padding: 40px 5px 40px;
  }
  .reason-card-subttl {
    font-size: 1.8rem;
  }
  .reason-card-subttl span {
    font-size: 2.4rem;
    left: 2px;
  }
  .reason-card-ttl {
    font-size: 1.8rem;
  }
  .reason-card-detail {
    font-size: 1.8rem;
    padding: 0 10px;
  }
  /*-----------------------------------------------------------------------------------------------------
サービス一覧エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .service-area {
    padding: 20px 10px 40px;
  }
  .ttl-service {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  /*-----------------------------------------------------------------------------------------------------
ご利用の流れエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .ttl-flow {
    margin-bottom: 20px;
  }
  .flow-scroll {
    margin: 0 20px 10px 0;
    font-size: 1.6rem;
  }
  .flow-msg {
    padding: 20px 20px 0 20px;
    font-size: 1.8rem;
    font-weight: 600;
  }
  /*-----------------------------------------------------------------------------------------------------
お客様の声エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .ttl-voice {
    margin: 40px 0 0;
  }
  .voice-area {
    padding: 0 10px;
  }
  .voice-cards {
    gap: 30px;
  }
  .voice-card {
    padding: 40px 20px;
  }
  .voice-name {
    font-weight: bold;
    font-size: 1.8rem;
  }
  .voice-text p {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  .voice-text .highlight {
    font-weight: bold;
  }

  /*--------------------------------------------------------
よくある質問エリア(SP)
--------------------------------------------------------*/
  .faq-area {
    margin: 40px 0;
  }
  .faq-cards {
    margin: 0 auto;
    gap: 30px;
  }
  .faq-question {
    font-weight: bold;
    font-size: 1.8rem;
    padding: 30px 20px;
  }
  .faq-answer {
    font-size: 1.8rem;
    padding: 30px 30px;
  }
  /*-----------------------------------------------------------------------------------------------------
フッター部分(PC)
-----------------------------------------------------------------------------------------------------*/
  .footer-area {
    margin: 20px auto 0;
    text-align: center;
    padding: 30px 30px 20px 30px;
    font-size: 1.6rem;
    background-color: #8e7461;
  }
}
