@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:hover {
  opacity: 0.7;
}
img {
  width: 100%;
}
/*-----------------------------------------------------------------------------------------------------
各エリアの設定(PC)
-----------------------------------------------------------------------------------------------------*/
/*ページ全体*/
.container {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0;
}
/*-----------------------------------------------------------------------------------------------------
ヘッダーエリア(PÇ)
-----------------------------------------------------------------------------------------------------*/
.header-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: #fff;
  max-width: 1200px;
  width: 100%;
}
.header-area {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  max-width: 100%;
  max-height: 100%;
  width: 15%;
  height: auto;
  margin-left: 20px;
}
.header-btn {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin-right: 20px;
}
/*-----------------------------------------------------------------------------------------------------
ファーストビューエリア(PÇ)
-----------------------------------------------------------------------------------------------------*/
.fv-area {
  position: relative;
}
.fv-icon {
  position: absolute;
  top: 77%;
  left: 7%;
  width: 57%;
}
/*-----------------------------------------------------------------------------------------------------
CTAエリア(PÇ)
-----------------------------------------------------------------------------------------------------*/
.cta-area {
  position: relative;
  margin: 0 auto;
}
.cta-btn {
  position: absolute;
  top: 43%;
  left: 10%;
}
.cta-btn img {
  animation: anime1 0.8s ease 0s infinite alternate;
  transform-origin: center;
}
@keyframes anime1 {
  from {
    transform: scale(95%, 95%);
  }
  to {
    transform: scale(100%, 100%);
  }
}
.tokuten {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 30%;
  left: 54.5%;
  gap: 15px;
  width: 38%;
}
.tokuten-item {
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: #06c755;
  border-style: solid;
  border-color: #fff;
  border-width: 2px;
  font-size: 2.4rem;
  flex-basis: 50%;
}
.tokuten-ttl {
  text-align: center;
  font-weight: 600;
  color: #06c755;
  background-color: #fff;
  padding: 5px 10px;
}
.tokuten-detail {
  text-align: center;
  font-weight: 600;
  color: #fff;
  background-color: #06c755;
  padding: 10px;
}
/*-----------------------------------------------------------------------------------------------------
悩みエリア(PÇ)
-----------------------------------------------------------------------------------------------------*/
.nayami-area {
  margin-bottom: 80px;
}
/*-----------------------------------------------------------------------------------------------------
実績エリア(PÇ)
-----------------------------------------------------------------------------------------------------*/
.works-odd {
  padding: 60px 0;
}
.works-even {
  padding: 60px 0;
  background-color: #ecf7ee;
}
/*-----------------------------------------------------------------------------------------------------
選ばれる理由エリア(PÇ)
-----------------------------------------------------------------------------------------------------*/
.reason-area {
  background-image: url(../images/bg_reason.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
/*-----------------------------------------------------------------------------------------------------
料金プランエリア(PÇ)
-----------------------------------------------------------------------------------------------------*/
.gentei-tokuten-area {
  margin-bottom: 80px;
}
.plan {
  padding: 60px 80px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-around;
}
.plan-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex-basis: 30%;
}
.plan-ttl {
  font-size: 4.4rem;
  font-weight: 600;
  border-style: solid;
  border-width: 1px;
}
.plan-item.basic .plan-ttl {
  color: #009933;
  border-color: #009933;
}
.plan-item.standard .plan-ttl {
  color: #e95513;
  border-color: #e95513;
}
.plan-item.premium .plan-ttl {
  color: #af1e23;
  border-color: #af1e23;
}
.plan-price {
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0 10px 20px 10px;
  color: #fff;
}
.plan-price span {
  font-size: 3rem;
  font-weight: 600;
}
.plan-item.basic .plan-price {
  background-color: #009933;
}
.plan-item.standard .plan-price {
  background-color: #e95513;
}
.plan-item.premium .plan-price {
  background-color: #af1e23;
}
.plan-sub-ttl {
  font-size: 2rem;
  font-weight: 600;
  padding: 20px 0;
  border-style: solid;
  border-width: 1px;
}
.plan-item.basic .plan-sub-ttl {
  border-color: #009933;
}
.plan-item.standard .plan-sub-ttl {
  border-color: #e95513;
}
.plan-item.premium .plan-sub-ttl {
  border-color: #af1e23;
}
.plan-detail {
  font-size: 2rem;
  border-spacing: 0 5px;
  padding: 20px;
  text-align: left;
  background-color: #ededed;
  font-weight: 500;
}
.plan-detail td {
  vertical-align: top;
}
.plan-detail td:nth-child(1) {
  width: 10%;
}
.plan-detail td:nth-child(2) {
  width: 90%;
}
.plan-detail .okok {
  color: #004178;
  font-weight: 600;
}
.plan-detail .ok {
  color: #00913b;
  font-weight: 600;
}
.plan-detail .ng {
  color: #a11e19;
  font-weight: 600;
}
.plan-margin-area {
  width: 100%;
  height: 60px;
}
.plan-item.basic .plan-margin-area {
  background-color: #009933;
}
.plan-item.standard .plan-margin-area {
  background-color: #e95513;
}
.plan-item.premium .plan-margin-area {
  background-color: #af1e23;
}
.osusume {
  width: 100%;
  height: 60px;
}
.sub-ttl-plan {
  color: #e95513;
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  margin: 60px auto 20px;
}
.gentei-tokuten {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 0 120px;
}
.tokuten-header {
  width: 290px;
  background: #06c755;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.tokuten-content {
  width: 290px;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
  padding: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.tokuten-text {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.divider {
  width: 80%;
  border: 0;
  height: 1px;
  background: #ccc;
  margin: 10px auto;
}
.price {
  position: relative;
}
.zero {
  color: #e95513;
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
}
.sparkle {
  position: absolute;
  top: 0;
  left: 45%;
}
.yen {
  font-size: 2.4rem;
  font-weight: 600;
  margin-left: 5px;
}
/*-----------------------------------------------------------------------------------------------------
お客様の声エリア(PÇ)
-----------------------------------------------------------------------------------------------------*/
.voice {
  background-color: #ecf7ee;
  padding: 80px 0 40px;
}
.voice-ttl {
  margin-bottom: 40px;
}
.voice-card {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  padding: 40px;
  margin: 0 auto 40px;
  width: 90%;
  gap: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.voice-card:nth-child(odd) {
  flex-direction: row-reverse;
}
.voice-card-img {
  flex-basis: 30%;
}
.voice-card-content {
  flex-basis: 60%;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.voice-card-ttl {
  font-size: 3.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.voice-card-detail {
  font-size: 2rem;
  text-align: justify;
}
.voice-card-detail span {
  color: #e95513;
  font-weight: 600;
}
/*--------------------------------------------------------
よくある質問エリア(PÇ)
--------------------------------------------------------*/
.faq-area {
  width: 100%;
  padding: 80px 0 40px 0;
}
.faq-accordion {
  position: relative;
  margin: 20px auto;
  padding: 15px 40px;
}
.faq-q {
  font-size: 2rem;
  font-weight: bold;
  padding: 30px 40px 30px 45px;
  margin: 0;
  border-top: 1px solid #ccc;
  position: relative;
  line-height: 1.5;
  text-align: justify;
}
.faq-q::before {
  content: "Q";
  width: 30px;
  height: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: #06c755;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  left: 5px;
  top: 27px;
}
.faq-q::after {
  position: absolute;
  content: "\03e";
  right: 10px;
  top: 27px;
  transition: transform 0.2s;
}
.faq-q span {
  font-size: 1.8rem;
}
.faq-q.open::after {
  transform: rotate(90deg);
}
.faq-a {
  padding: 0 60px 30px 45px;
  transition: transform 0.2s;
  font-size: 2rem;
  position: relative;
  line-height: 1.5;
  text-align: justify;
  margin: 0;
}
.faq-a::before {
  content: "A";
  width: 30px;
  height: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: #e95513;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  left: 5px;
  top: 0px;
}
.faq-a span {
  font-size: 1.8em;
}
/*--------------------------------------------------------
会社情報エリア
--------------------------------------------------------*/
.company-info-area {
  width: 100%;
  padding: 80px 120px 40px 120px;
  background-color: #ecf7ee;
}
.company-info-table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
  margin: 60px auto;
  padding: 0 120px;
}
.company-info-table th {
  font-size: 1.8rem;
  font-weight: bold;
  width: 20%;
  border-top: 1px solid #ccc;
  text-align: left;
  padding-left: 80px;
  vertical-align: middle;
}
.company-info-table td {
  font-size: 1.8rem;
  width: 80%;
  padding: 15px 0 15px 40px;
  border-top: 1px solid #ccc;
  text-align: justify;
  line-height: 180%;
}
/*-----------------------------------------------------------------------------------------------------
フッター部分(PÇ)
-----------------------------------------------------------------------------------------------------*/
.footer-area {
  margin-top: 40px;
  text-align: center;
  padding: 30px;
  font-size: 1.6rem;
}
.footer-area a {
  color: #252525;
  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;
}
.footer-area .menu li {
  margin: 0;
  padding: 0 20px;
}
.footer-area .copyright {
  margin: 0;
  padding: 20px 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;
  }
  body .sp-item img {
    width: 100%;
  }
  /*ページ全体*/
  .container {
    margin-top: 0;
  }
  .pc-break {
    display: none;
  }
  /*-----------------------------------------------------------------------------------------------------
ヘッダーエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .header-fixed {
    position: relative;
  }
  .header-area {
    height: 60px;
    padding: 10px 10px 0 10px;
    align-items: center;
    justify-content: space-between;
  }
  .header-logo {
    width: 30%;
    margin-left: 0;
  }
  .header-btn {
    width: 55%;
    margin-right: 0;
  }
  /*-----------------------------------------------------------------------------------------------------
固定表示ボタン(SP)
-----------------------------------------------------------------------------------------------------*/
  /* 固定表示ボタンボタン*/
  .fixed-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none; /* 初期状態で非表示 */
    z-index: 1000; /* 常に前面に表示 */
    transition: opacity 0.3s ease-in-out; /* スムーズな表示 */
  }
  /* 表示時のスタイル */
  .fixed-button.visible {
    display: flex; /* 表示状態 */
    opacity: 1;
  }
  .fixed-button::after {
    animation: 4s 0s shine 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 {
    20% {
      left: 150%;
    }
    100% {
      left: 150%;
    }
  }

  /*-----------------------------------------------------------------------------------------------------
ファーストビューエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .fv-icon {
    top: 55%;
    left: 6%;
    width: 42%;
  }
  /*-----------------------------------------------------------------------------------------------------
CTAエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .cta-btn {
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
  .tokuten {
    top: 18%;
    left: 5%;
    width: 90%;
    justify-content: space-around;
    gap: 10px;
  }
  .tokuten-item {
    border-color: #06c755;
    font-size: 2rem;
  }
  .tokuten-ttl {
    color: #fff;
    background-color: #06c755;
    padding: 2px 10px;
  }
  .tokuten-detail {
    color: #06c755;
    background-color: #fff;
    padding: 8px 10px;
    line-height: 1.1;
  }
  /*-----------------------------------------------------------------------------------------------------
悩みエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .nayami-area {
    margin-bottom: 40px;
  }

  /*-----------------------------------------------------------------------------------------------------
実績エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .works-odd {
    padding: 20px 0;
  }
  .works-even {
    padding: 20px 0;
  }
  /*-----------------------------------------------------------------------------------------------------
選ばれる理由エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .reason-area {
    background-image: url(../images/bg_reason_sp.webp);
  }
  /*-----------------------------------------------------------------------------------------------------
料金プランエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .scroll-text {
    font-size: 1.8rem;
    text-align: right;
    padding-top: 10px;
    padding-right: 10px;
  }
  .plan-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .plan {
    flex-wrap: nowrap;
    min-width: 850px;
    padding: 20px;
  }
  .plan-item {
    min-width: 220px;
    text-align: center;
  }
  .plan-ttl {
    font-size: 2.4rem;
  }
  .plan-price {
    font-size: 3.4rem;
    padding: 0 10px 10px 10px;
  }
  .plan-price span {
    font-size: 2rem;
  }
  .plan-sub-ttl {
    font-size: 1.8rem;
    padding: 10px 0;
  }
  .plan-detail {
    font-size: 1.6rem;
    padding: 10px;
  }
  .plan-margin-area {
    height: 40px;
  }
  .osusume {
    height: 50px;
  }
  .sub-ttl-plan {
    font-size: 2.2rem;
    margin: 40px auto 20px;
  }
  .gentei-tokuten {
    flex-direction: column;
    padding: 0 40px;
    gap: 20px;
  }
  .tokuten-header {
    width: 100%;
    font-size: 2rem;
    padding: 5px 0;
  }
  .tokuten-content {
    width: 100%;
    padding: 10px 0;
  }
  .tokuten-text {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .divider {
    margin: 5px auto;
  }
  .zero {
    font-size: 6rem;
  }
  .sparkle {
    width: 15%;
  }
  .yen {
    font-size: 2rem;
  }
  /*-----------------------------------------------------------------------------------------------------
お客様の声エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .voice-card {
    flex-direction: column !important; /* 偶数・奇数どちらも縦並びに統一 */
    align-items: center;
    text-align: center;
    padding: 20px 20px 40px 20px;
    gap: 20px;
  }
  /* .voice-card-content を無視 */
  .voice-card-content {
    display: contents;
  }
  /* .voice-card-ttl を最上部に */
  .voice-card-ttl {
    order: 1;
    margin-bottom: 10px;
    font-size: 3rem;
  }
  /* すべての .voice-card-img を2番目に */
  .voice-card-img {
    order: 2;
    width: 70%;
    flex-basis: auto;
  }
  /* すべての .voice-card-detail を3番目に */
  .voice-card-detail {
    order: 3;
    text-align: justify;
    font-size: 1.8rem;
  }
  /* .voice-card-content の順番を統一 */
  .voice-card-content .voice-card-ttl {
    order: 1;
  }
  .voice-card-content .voice-card-detail {
    order: 3;
  }
  /* .voice-card-img を2番目に */
  .voice-card:nth-child(odd) .voice-card-img,
  .voice-card:nth-child(even) .voice-card-img {
    order: 2;
  }
  /* 偶数行にも .voice-card-content を消す */
  .voice-card:nth-child(even) .voice-card-content {
    display: contents;
  }
  /*--------------------------------------------------------
よくある質問エリア(SP)
--------------------------------------------------------*/
  .faq-area {
    padding: 40px 0 20px 0;
  }
  .faq-accordion {
    padding: 15px 10px;
  }
  /*--------------------------------------------------------
会社情報エリア(SP)
--------------------------------------------------------*/
  .company-info-area {
    width: 100%;
    padding: 40px 10px 10px;
  }
  .company-info-table {
    margin: 40px auto;
    padding: 0 20px;
  }
  .company-info-table th {
    width: 35%;
    padding-left: 20px;
  }
  .company-info-table td {
    width: 65%;
    padding: 15px 0;
  }
  /*-----------------------------------------------------------------------------------------------------
フッター部分(SP)
-----------------------------------------------------------------------------------------------------*/
  .footer-area {
    margin-top: 20px;
    margin-bottom: 100px;
  }
  .footer-area .menu {
    margin-bottom: 0px;
  }
  .footer-area .menu li {
    margin-bottom: 20px;
  }
  .footer-area .copyright {
    padding: 0;
  }
}
