@charset "UTF-8";
/* ===================================
   変数（色・共通設定）
=================================== */
/* ===================================
   ベース設定
=================================== */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #FFF3D9;
  color: #997860;
  line-height: 1.7;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
  transition: all 0.7s;
}
a:hover {
  opacity: 0.7;
}

.header li,
.plans-wrapper ul li,
.voice-user li,
.text-box li,
.footer li,
.footer .sns {
  list-style: none;
}

/* ===================================
   レイアウト共通
=================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===================================
   共通パーツ
=================================== */
/* セクションタイトル */
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-block: 10px;
}
.title .icon1 {
  width: 40px;
}
.title .section-title {
  font-size: 24px;
  color: #6B4E38;
}
@media (max-width: 768px) {
  .title .section-title {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .title .section-title {
    font-size: 18px;
  }
}

/* ボタン系 */
.request,
.request1 {
  display: inline-block;
  background: #D1683A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.7s;
}
.request:hover,
.request1:hover {
  opacity: 0.8;
}

/* more-link 共通 */
.more-link {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  background-color: #D8E5ED;
  border-radius: 10px;
  font-weight: bold;
  font-size: 10px;
  position: relative;
}

.more-link::after,
.request::after {
  content: ">";
  margin-left: 6px;
}

/* ===================================
   Header
=================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-inline: 5px;
  /* ロゴ */
}
.header .logo {
  width: 100px;
}
@media (max-width: 500px) {
  .header .logo {
    width: 70px;
  }
}
.header {
  /* ナビ */
}
.header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.header nav ul li a {
  font-size: 12px;
  text-decoration: none;
  color: #6B4E38;
}
@media (max-width: 768px) {
  .header nav ul li a {
    font-size: 12px;
    padding-left: 10px;
  }
}
@media (max-width: 500px) {
  .header nav ul li a {
    font-size: 10px;
  }
}
.header nav ul li a:hover {
  opacity: 0.7;
}
.header {
  /* 資料請求ボタン */
}
.header .request1 {
  background: #E77B6B;
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
}

/* ===================================
   Footer
=================================== */
footer {
  background: #fff;
  margin-top: 100px;
  padding-top: 10px;
}
@media (max-width: 768px) {
  footer {
    padding-top: 10px;
  }
}
footer .logo {
  width: 100px;
}
footer {
  /* ナビ */
}
footer ul {
  line-height: 30px;
}
@media (max-width: 768px) {
  footer ul {
    line-height: 25px;
  }
}
@media (max-width: 500px) {
  footer ul {
    line-height: 20px;
  }
}
footer ul li {
  list-style: none;
  font-size: 14px;
}
@media (max-width: 768px) {
  footer ul li {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  footer ul li {
    font-size: 8px;
  }
}
footer ul li a {
  color: #6B4E38;
  transition: all 0.3s;
}
footer ul li a:hover {
  color: #D1683A;
}
footer {
  /* SNS */
}
footer .sns {
  display: flex;
  padding-top: 30px;
}
@media (max-width: 500px) {
  footer .sns .sns {
    justify-content: center;
  }
}
footer .sns i {
  font-size: 20px;
  color: #888;
  padding-left: 10px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  footer .sns i {
    font-size: 18px;
  }
}
footer .sns i:hover {
  color: #D1683A;
}
footer {
  /* コピーライト */
}
footer p {
  margin-top: 24px;
  font-size: 12px;
  text-align: center;
  color: #6B4E38;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  footer p {
    font-size: 12px;
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  footer p {
    font-size: 10px;
  }
}
footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 500px) {
  footer .footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* .main-visual */
.main-visual {
  position: relative;
}

.main-visual img {
  height: calc(100vh - 64px);
}
@media (max-width: 768px) {
  .main-visual img {
    height: 300px;
  }
}
@media (max-width: 500px) {
  .main-visual img {
    height: 200px;
  }
}

.main-visual p {
  font-size: 50px;
  position: absolute;
  right: 20px;
  bottom: 180px;
  color: #fff;
}
@media (max-width: 768px) {
  .main-visual p {
    font-size: 30px;
    position: absolute;
    right: 18px;
    bottom: 100px;
  }
}
@media (max-width: 500px) {
  .main-visual p {
    bottom: 50px;
    font-size: 24px;
  }
}
.main-visual span {
  color: #FA6762;
}

/* about(メリット) */
.about {
  max-width: 600px;
  background-color: #F6E8D3;
  padding-bottom: 40px;
  border-radius: 10px;
  margin-top: 80px;
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .about {
    max-width: 500px;
    padding: 20px 0;
    margin-top: 60px;
  }
}
@media (max-width: 500px) {
  .about {
    width: 100%;
  }
}

.about .reason {
  font-size: 18px;
  color: #F44D4D;
}
@media (max-width: 768px) {
  .about .reason {
    font-size: 16px;
  }
}

.about .text {
  font-size: 18px;
  padding: 15px 0;
  width: 380px;
  margin: 0 auto;
  text-align: left;
  color: #997860;
}
@media (max-width: 768px) {
  .about .text {
    font-size: 14px;
    width: 60%;
  }
}

.about .text li {
  list-style-position: inside;
  border-bottom: 2px solid #6B4E38;
  line-height: 40px;
}

/* plans */
.plans {
  max-width: 1280px;
  margin-block: 100px auto;
  text-align: center;
}
@media (max-width: 768px) {
  .plans {
    max-width: 860px;
  }
}
@media (max-width: 500px) {
  .plans .plans-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.plans .plans-more {
  text-align: center;
}
.plans .plans-more .more-link {
  display: inline-block;
  padding: 10px 50px;
  background-color: #D8E5ED;
  color: #6B4E38;
  font-size: 12px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .plans .plans-more .more-link {
    padding: 10px 20px;
    width: 50%;
    border-radius: 10px;
  }
}
@media (max-width: 500px) {
  .plans .plans-more .more-link {
    padding: 10px 20px;
    width: 100%;
  }
}
.plans .plans-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 500px) {
  .plans .plans-wrapper {
    flex-direction: column;
    width: 100%;
  }
}
.plans .plans-wrapper .left .plan .popular {
  color: #F44D4D;
  margin: 0;
  padding-top: 5px;
}
.plans .plans-wrapper .right {
  padding-top: 15px;
}
.plans .plans-wrapper .right .plan {
  padding-top: 20px;
}
.plans .plans-wrapper .left,
.plans .plans-wrapper .right {
  background-color: #fff;
  padding-inline: 70px;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .plans .plans-wrapper .left,
  .plans .plans-wrapper .right {
    max-width: 400px;
  }
}
@media (max-width: 500px) {
  .plans .plans-wrapper .left,
  .plans .plans-wrapper .right {
    padding: 0px 20px;
    width: 100%;
  }
}
.plans .plans-wrapper .left .plan p,
.plans .plans-wrapper .right .plan p {
  color: #6B4E38;
  font-size: 16px;
  margin: 0;
}
.plans .plans-wrapper .left .icon2,
.plans .plans-wrapper .right .icon2 {
  width: 50px;
  margin-inline: auto;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .plans .plans-wrapper .left .icon2,
  .plans .plans-wrapper .right .icon2 {
    margin-block: 10px;
  }
}
.plans .plans-wrapper .left li,
.plans .plans-wrapper .right li {
  margin-block: auto;
  line-height: 30px;
}
.plans .plans-wrapper .left li .detail,
.plans .plans-wrapper .right li .detail {
  color: #6B4E38;
  text-align: left;
  font-size: 16px;
}
@media (max-width: 768px) {
  .plans .plans-wrapper .left li .detail,
  .plans .plans-wrapper .right li .detail {
    margin: 0 auto;
    font-size: 14px;
    width: 250px;
  }
}
@media (max-width: 500px) {
  .plans .plans-wrapper .left li .detail,
  .plans .plans-wrapper .right li .detail {
    width: 100%;
  }
}

.request {
  margin-top: 30px;
  margin-bottom: 10px;
  background-color: #E77B6B;
  color: #fff;
  font-size: 14px;
  padding: 10px 80px;
  border-radius: 10px;
}
@media (max-width: 500px) {
  .request {
    margin-block: 20px;
    font-size: 10px;
  }
}

/* voice */
.voice {
  margin-top: 100px;
  width: 100%;
  margin-inline: auto;
  background-color: #F6E8D3;
}
.voice .voice-more {
  text-align: center;
}
.voice .voice-more .more-link {
  display: inline-block;
  padding: 10px 80px;
  background-color: #D8E5ED;
  color: #6B4E38;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 12px;
}
@media (max-width: 500px) {
  .voice .voice-more .more-link {
    margin: 20px 0;
    padding: 10px 20px;
    width: 100%;
  }
}
.voice .voice-user {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .voice .voice-user {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .voice .voice-user {
    grid-template-columns: 1fr;
  }
}
.voice .voice-user .voice-card {
  padding: 10px 0;
  width: 33.3333333333%;
}
.voice .voice-user .voice-card .profile {
  width: 300px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .voice .voice-user .voice-card .profile {
    width: 100%;
    margin-block: 10px;
    display: flex;
    flex-wrap: wrap;
  }
}
.voice .voice-user .voice-card .profile .pet-pct {
  width: 300px;
  height: 100px;
}
.voice .voice-user .voice-card .profile .pet-pct img {
  border-radius: 10px;
}
@media (max-width: 768px) {
  .voice .voice-user .voice-card .profile .pet-pct img {
    max-width: 300px;
  }
}
.voice .voice-user .voice-card .profile .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 100px;
  font-size: 10px;
  color: #6B4E38;
}
@media (max-width: 768px) {
  .voice .voice-user .voice-card .profile .inner {
    justify-content: center;
  }
}
.voice .voice-user .voice-card .profile .voice-text {
  background-color: #fff;
  font-size: 12px;
  border-radius: 10px;
  position: relative;
  text-align: left;
}
@media (max-width: 500px) {
  .voice .voice-user .voice-card .profile .voice-text {
    font-size: 10px;
  }
}

/* CTAボタン */
.plan-cta {
  margin-block: 100px auto;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .plan-cta {
    gap: 50px;
  }
}
@media (max-width: 500px) {
  .plan-cta {
    flex-direction: column;
    margin: 40px 0;
  }
}
.plan-cta li {
  list-style: none;
  width: 200px;
  height: 100px;
}
@media (max-width: 768px) {
  .plan-cta li {
    height: 60px;
    width: 20%;
  }
}
@media (max-width: 500px) {
  .plan-cta li {
    width: 100%;
    height: 60px;
  }
}
.plan-cta li .plan-btn1 {
  background-color: #D1683A;
  position: relative;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .plan-cta li .plan-btn1 {
    padding-top: 1px;
  }
}
.plan-cta li .plan-btn1 .badge {
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .plan-cta li .plan-btn1 .badge {
    width: 40px;
  }
}
.plan-cta li .plan-btn1 span {
  color: #6B4E38;
  align-items: center;
}
.plan-cta li .plan-btn1,
.plan-cta li .plan-btn2,
.plan-cta li .plan-btn3 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
}
.plan-cta li .plan-btn1 span,
.plan-cta li .plan-btn2 span,
.plan-cta li .plan-btn3 span {
  color: #6B4E38;
  align-items: center;
  font-size: 14px;
}
.plan-cta li .plan-btn2 {
  background-color: #E37341;
}
@media (max-width: 500px) {
  .plan-cta li .plan-btn2 {
    padding-top: 10px;
  }
}
.plan-cta li .plan-btn3 {
  background-color: #CD8A5D;
}
@media (max-width: 500px) {
  .plan-cta li .plan-btn3 {
    padding-top: 18px;
  }
}

/* faq */
.faq {
  background-color: #F6E8D3;
  max-width: 700px;
  margin-inline: auto;
  border-radius: 10px;
  margin-block: 150px;
  text-align: center;
}
@media (max-width: 768px) {
  .faq {
    max-width: 700px;
  }
}
@media (max-width: 500px) {
  .faq {
    width: 100%;
  }
}

/*アコーディオンタイトル*/
.accordion-area {
  max-width: 400px;
  margin: 0 auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .accordion-area {
    width: 100%;
  }
}
.accordion-area {
  /* ───────── 左：矢印 ───────── */
}
.accordion-area li {
  margin-block: 15px;
  list-style: none;
}
.accordion-area {
  /* タイトル行 */
}
.accordion-area .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  /* +に〇をつける */
}
.accordion-area .title-wrapper::before, .accordion-area .title-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s;
  width: 15px;
  height: 1px;
  background-color: #333;
}
.accordion-area .title2 {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #6B4E38;
  /* ▼マーク */
}
.accordion-area .title2::before {
  content: "▼";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
@media (max-width: 500px) {
  .accordion-area .title2::before {
    left: 200px;
    font-size: 12px;
  }
}

/* ＋ボタン */
.toggle {
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  border-radius: 50%;
  position: relative;
}

/* 横線 */
.toggle::before,
.toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #333;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

/* 縦線（＋の縦部分） */
.toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いたら縦線消す（－にする） */
.is-open .toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.close .toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* 開いたら表示 */
.is-open .box {
  display: block;
}

/* 本文 */
.box {
  display: none;
  background: #f3f3f3;
  padding: 15px;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 14px;
  color: #6B4E38;
}
@media (max-width: 768px) {
  .box {
    font-size: 12px;
    max-width: 400px;
  }
}

.faq-more a {
  background-color: #D8E5ED;
  margin: 20px 0;
  padding: 10px 40px;
  font-size: 10px;
  color: #3A2E25;
}
@media (max-width: 768px) {
  .faq-more a {
    width: 40%;
  }
}
@media (max-width: 500px) {
  .faq-more a {
    width: 100%;
  }
}

.text-box {
  margin-bottom: 50px;
  text-align: center;
}
.text-box .text2 {
  color: #6B4E38;
  font-size: 14px;
}
@media (max-width: 768px) {
  .text-box .text2 {
    font-size: 12px;
  }
}
.text-box ul .btn1 {
  background-color: #D1683A;
  margin-bottom: 20px;
}
.text-box ul .btn2 {
  background-color: #E37341;
}
.text-box ul .btn1,
.text-box ul .btn2 {
  font-size: 14px;
  margin-block: 10px;
}
.text-box ul a {
  display: inline-block;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  width: 400px;
  margin: 10px auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .text-box ul {
    width: 500px;
    padding: 10px 40px;
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .text-box ul {
    width: 100%;
  }
}

/* contact */
.contact {
  max-width: 800px;
  margin-inline: auto;
  font-size: 12px;
  background-color: #F6E8D3;
  border-radius: 10px;
  margin-block: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact {
    max-width: 720px;
  }
}
@media (max-width: 500px) {
  .contact {
    width: 100%;
    font-size: 10px;
  }
}
.contact dl {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin: 0 auto;
  color: #6B4E38;
}
@media (max-width: 768px) {
  .contact dl {
    padding-bottom: 10px;
  }
}
.contact dl dt {
  width: 20%;
  font-size: 14px;
}
@media (max-width: 500px) {
  .contact dl dt {
    font-size: 12px;
  }
}
.contact dl dd {
  display: flex;
  width: 60%;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 10px;
}
@media (max-width: 500px) {
  .contact dl dd {
    width: 70%;
    margin-bottom: 10px;
  }
}
.contact dl dd input,
.contact dl dd textarea {
  width: 100%;
  border: 1px solid #fff;
  padding: 10px;
}
@media (max-width: 768px) {
  .contact dl dd input,
  .contact dl dd textarea {
    padding: 5px;
  }
}
.contact dl dd textarea {
  border-radius: 10px;
}
.contact dl input {
  background-color: #fff;
}
@media (max-width: 768px) {
  .contact dl input {
    padding: 10px 40px;
    font-size: 10px;
  }
}

input {
  background-color: #997860;
  padding: 10px 20px;
  font-size: 10px;
  color: #fff;
  border-radius: 10px;
  border: 2px solid #997860;
  margin-bottom: 10px;
}

form {
  padding-block: 10px;
}

/* ===================================
   Application Page
=================================== */
#application {
  max-width: 980px;
  background: #fff;
  padding: 10px 0;
  margin-inline: auto;
  margin-bottom: 50px;
}
#application h2 {
  margin-left: 30px;
}
#application {
  /* メインボックス */
}
#application .box3 {
  display: flex;
  gap: 40px;
  font-size: 12px;
  margin: 0 auto;
  padding: 30px 40px;
  color: #997860;
}
@media (max-width: 768px) {
  #application .box3 {
    flex-direction: column;
  }
}
#application .box3 {
  /* left */
}
#application .box3 .left {
  width: 40%;
}
@media (max-width: 768px) {
  #application .box3 .left {
    width: 100%;
  }
}
#application .box3 .image-container {
  border-radius: 10px;
}
#application .box3 {
  /* right */
}
#application .box3 .right {
  width: 60%;
}
@media (max-width: 768px) {
  #application .box3 .right {
    width: 100%;
  }
}
#application .box3 .right {
  /* 名前 */
}
#application .box3 .right .name {
  display: flex;
  gap: 8px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #application .box3 .right .name {
    flex-direction: column;
  }
}
#application .box3 .right .name input {
  padding: 10px 20px;
  border-radius: 6px;
  background-color: #fff;
}
#application .box3 .right {
  /* 情報 */
}
#application .box3 .right .information dt {
  margin-top: 5px;
  font-weight: bold;
}
#application .box3 .right .information input {
  padding: 10px 150px;
  border-radius: 6px;
  background-color: #fff;
}
#application .box3 .right .information p {
  font-weight: bold;
}
#application .box3 .right {
  /* プラン */
}
#application .box3 .right .plan1,
#application .box3 .right .plan2 {
  display: inline-flex;
  margin-left: 50px;
  border: 2px solid #997860;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 30px;
  align-items: center;
}
#application .box3 .right .plan1 input[type=radio],
#application .box3 .right .plan2 input[type=radio] {
  accent-color: #997860;
}
#application .box3 .right {
  /* textarea */
}
#application .box3 .right #message {
  padding: 50px 150px;
}
#application .box3 .right {
  /* 送信 */
}
#application .box3 .right .submit {
  display: block;
  margin-top: 50px;
  margin-inline: auto;
  background: #997860;
  color: #fff;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.7s;
}
#application .box3 .right .submit:hover {
  opacity: all 0.8;
}

/* ===================================
   FAQ PAGE
=================================== */
.faq-lower {
  background-color: #fff;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 500px) {
  .faq-lower {
    padding: 20px 12px;
  }
}
.faq-lower .section-title {
  font-size: 18px;
  padding-top: 50px;
}
.faq-lower .faq-lead {
  margin-inline: auto;
  font-size: 12px;
}
.faq-lower .faq-search input {
  background-color: #fff;
  width: 400px;
  color: #6B4E38;
}
.faq-lower .is-hide {
  display: none !important;
}
.faq-lower {
  /* =========================
     accordion-area2
  ========================= */
}
.faq-lower .accordion-area2 {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-lower .accordion-area2 li {
  list-style: none;
  margin-bottom: 16px;
}
.faq-lower .accordion-area2 {
  /* ---------- タイトル行 ---------- */
}
.faq-lower .accordion-area2 .title-wrapper2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-lower .accordion-area2 .title-wrapper2 .title4 {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #6B4E38;
  /* ▼マーク */
}
.faq-lower .accordion-area2 .title-wrapper2 .title4::before {
  content: "▼";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: 0.3s;
}
.faq-lower .accordion-area2 .title-wrapper2 {
  /* ---------- ＋ボタン ---------- */
}
.faq-lower .accordion-area2 .title-wrapper2 .toggle {
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  border-radius: 50%;
  position: relative;
  /* 横線 */
}
.faq-lower .accordion-area2 .title-wrapper2 .toggle::before, .faq-lower .accordion-area2 .title-wrapper2 .toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #333;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq-lower .accordion-area2 .title-wrapper2 .toggle {
  /* 縦線 */
}
.faq-lower .accordion-area2 .title-wrapper2 .toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-lower .accordion-area2 {
  /* ---------- 開いた時 ---------- */
}
.faq-lower .accordion-area2 li.is-open .box2 {
  display: block;
  animation: fade 0.3s ease;
}
.faq-lower .accordion-area2 li.is-open {
  /* ＋ → − */
}
.faq-lower .accordion-area2 li.is-open .toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-lower .accordion-area2 li.is-open {
  /* ▼回転 */
}
.faq-lower .accordion-area2 li.is-open .title4::before {
  transform: translateY(-50%) rotate(-180deg);
}
.faq-lower .accordion-area2 {
  /* ---------- 回答 ---------- */
}
.faq-lower .accordion-area2 .box2 {
  display: none;
  background: #f7f7f7;
  margin-top: 8px;
  padding: 16px;
  font-size: 12px;
  color: #997860;
  border-radius: 6px;
  text-align: left;
}
.faq-lower .accordion-area2 {
  /* アニメーション */
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    transform: translateY(0);
  }
}

/* ===================================
   plans Page
=================================== */
#plans-lower {
  max-width: 980px;
  background: #fff;
  padding: 10px 0;
  margin: 0 auto;
  margin-bottom: 30px;
}
#plans-lower h2 {
  margin-left: 30px;
}
#plans-lower .table1 {
  width: 600px;
  margin: 0 auto;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
}
#plans-lower .table1 tr {
  border-bottom: 1px solid #6B4E38;
}
#plans-lower .table1 tr th {
  border-bottom: 1px solid #6B4E38;
}
#plans-lower .table1 tr .recommend {
  background-color: #FFF3E0;
  font-weight: bold;
}
#plans-lower .table1 tr td {
  border-bottom: 1px solid #6B4E38;
}
#plans-lower .table2 {
  width: 600px;
  margin-top: 80px;
  margin-inline: auto;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
}
#plans-lower .table2 tr {
  border-bottom: 1px solid #6B4E38;
}
#plans-lower .table2 tr th {
  border-bottom: 1px solid #6B4E38;
}
#plans-lower .table2 tr td {
  border-bottom: 1px solid #6B4E38;
}
#plans-lower .textbox {
  display: flex;
  justify-content: space-between;
  width: 600px;
  margin: 0 auto;
  font-size: 10px;
}
#plans-lower .textbox .left li {
  list-style: none;
}
#plans-lower .textbox .right {
  color: #FA6762;
}

/* ===================================
   Request Page
=================================== */
#request-lower {
  max-width: 980px;
  background: #fff;
  padding: 10px 0;
  margin-inline: auto;
  margin-bottom: 50px;
}
#request-lower h2 {
  margin-left: 30px;
}
#request-lower {
  /* メインボックス */
}
#request-lower .box4 {
  display: flex;
  gap: 40px;
  font-size: 12px;
  margin: 0 auto;
  padding: 30px 40px;
  color: #997860;
}
@media (max-width: 768px) {
  #request-lower .box4 {
    flex-direction: column;
  }
}
#request-lower .box4 {
  /* right */
}
#request-lower .box4 .right {
  width: 40%;
}
@media (max-width: 768px) {
  #request-lower .box4 .right {
    width: 100%;
  }
}
#request-lower .box4 .right .image-container img {
  border-radius: 10px;
  height: 400px;
}
#request-lower .box4 {
  /* left */
}
#request-lower .box4 .left {
  width: 60%;
}
@media (max-width: 768px) {
  #request-lower .box4 .left {
    width: 100%;
  }
}
#request-lower .box4 .left {
  /* name */
}
#request-lower .box4 .left .name {
  display: flex;
  gap: 8px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #request-lower .box4 .left .name {
    flex-direction: column;
  }
}
#request-lower .box4 .left .name input {
  padding: 10px 20px;
  border-radius: 6px;
  background-color: #fff;
}
#request-lower .box4 .left {
  /* information */
}
#request-lower .box4 .left .information dt {
  margin-top: 5px;
  font-weight: bold;
}
#request-lower .box4 .left .information input {
  padding: 10px 150px;
  border-radius: 6px;
  background-color: #fff;
}
#request-lower .box4 .left .information p {
  font-weight: bold;
}
#request-lower .box4 .left {
  /* プラン */
}
#request-lower .box4 .left .plan1,
#request-lower .box4 .left .plan2 {
  display: inline-flex;
  margin-left: 50px;
  border: 2px solid #997860;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 30px;
  align-items: center;
}
#request-lower .box4 .left .plan1 input[type=radio],
#request-lower .box4 .left .plan2 input[type=radio] {
  accent-color: #997860;
}
#request-lower .box4 .left {
  /* textarea */
}
#request-lower .box4 .left #message {
  padding: 50px 150px;
}
#request-lower .box4 .left {
  /* 送信 */
}
#request-lower .box4 .left .submit {
  display: block;
  margin-top: 50px;
  margin-inline: auto;
  background: #997860;
  color: #fff;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.7s;
}
#request-lower .box4 .left .submit:hover {
  opacity: all 0.8;
}

/* ===================================
   Voice Page
=================================== */
.voice-lower {
  background: #fff;
  padding: 30px 16px;
}
.voice-lower h2 {
  font-size: 18px;
  text-align: center;
}
.voice-lower p {
  font-size: 12px;
  margin-bottom: 10px;
  text-align: center;
}
.voice-lower li {
  list-style: none;
}
.voice-lower .user {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .voice-lower .user {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .voice-lower .user {
    grid-template-columns: 1fr;
  }
}
.voice-lower .user .card {
  width: 100%;
}
.voice-lower .user .card .photo {
  overflow: hidden;
  border-radius: 10px;
}
.voice-lower .user .card .photo img {
  width: 100%;
  height: 200px;
}
.voice-lower .user .card .name {
  font-size: 10px;
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.voice-lower .user .card .comment {
  font-size: 12px;
}/*# sourceMappingURL=main.css.map */