@charset "UTF-8";
/*----------------- 共通 -------------------*/
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

#alttext-container {
  display: none !important;
}

/*-----------------------------------------

全体指定

----------------------------------------*/
.inner {
  width: 1040px;
  margin: 0 auto;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  background: #fff;
  color: #707070;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
li {
  list-style: none;
}

dt, dd {
  margin: 0;
}

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

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

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 220px;
  height: 50px;
  line-height: 50px;
  background: #BD5E34;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .btn {
    width: 300px;
  }
}
.btn:hover {
  opacity: 0.6;
}
.btn .img {
  margin-right: 5px;
  width: 26px;
  line-height: 1;
}
.btn__mail {
  background: #B9A85B;
  font-size: 16px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  background: transparent;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding-left: clamp(2rem, 4vw, 5.6rem);
  padding-right: clamp(2rem, 4vw, 5.6rem);
  z-index: 10;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .header .btns {
    display: none;
  }
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1.7rem;
  right: 2.1rem;
  padding: 3px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  display: none;
}
@media (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active.scrolled {
  background: transparent;
}
.drawer__icon.is-active.scrolled span {
  background: #707070 !important;
}
.drawer__icon.is-active span:nth-child(1) {
  background: #707070;
  transform: rotate(-35deg) translateX(-50%);
}
.drawer__icon.is-active span:nth-child(2) {
  display: none;
}
.drawer__icon.is-active span:nth-child(3) {
  background: #707070;
  transform: rotate(35deg) translateX(-50%);
}

.drawer__bars {
  width: 3rem;
  height: 3rem;
  position: relative;
  cursor: pointer;
}
.drawer__bars span {
  width: 100%;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__bars span:nth-child(1) {
  top: 0.5rem;
}
.drawer__bars span:nth-child(2) {
  top: 1.4rem;
}
.drawer__bars span:nth-child(3) {
  top: 2.3rem;
}

.drawer__icon.scrolled {
  background: #fff;
}

.drawer__icon.scrolled .drawer__bars span {
  background: #B9A85B;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #F4F1E4;
  box-shadow: 0 0 3 rgba(0, 0, 0, 0.16);
  z-index: 99;
  display: none;
}
.drawer__content--inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 0 2rem;
}
.drawer__content--inner .btns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-direction: column;
}

.drawer__logo-area {
  text-align: center;
}

.drawer__logo {
  font-size: 32px;
  line-height: 1.4;
}
.drawer__logo span {
  display: block;
  line-height: 1;
  font-size: 12px;
}

.drawer__addr {
  margin-top: 10px;
  font-size: 14px;
}

.footer {
  background: #B9A85B;
  padding: 6rem 2rem 4rem;
}
@media (max-width: 767px) {
  .footer__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer__title {
  text-align: center;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  color: #fff;
}
.footer .access {
  margin-top: 15px;
}
.footer .access__addr {
  text-align: center;
  color: #fff;
  font-size: clamp(14px, 1.3vw, 16px);
}
.footer .access__text {
  margin-top: 25px;
  text-align: center;
  color: #fff;
  font-size: clamp(14px, 1.3vw, 16px);
}
.footer__logo-area {
  margin-top: 40px;
  text-align: center;
  color: #fff;
}
.footer__logo {
  font-size: clamp(28px, 2.3vw, 32px);
  line-height: 1.4;
}
.footer__logo span {
  display: block;
  line-height: 1;
  font-size: 12px;
}

/*----------------- topページ -------------------*/
/*-----------------------------------------
    mv
-----------------------------------------*/
.mv {
  width: 100%;
  height: 65vh;
  max-height: 520px;
}
@media (max-width: 767px) {
  .mv {
    height: auto;
    max-height: none;
  }
}
.mv .pc-video {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .mv .pc-video {
    display: none;
  }
}
.mv .sp-video {
  display: none;
}
@media (max-width: 767px) {
  .mv .sp-video {
    width: 100%;
    display: block;
  }
}

/*-----------------------------------------
    message
-----------------------------------------*/
.message {
  padding-top: 125px;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .message {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .message__inner {
    padding: 0;
  }
}
.message__head {
  text-align: left;
  margin-left: 20px;
  position: relative;
}
.message__head::after {
  content: "";
  position: absolute;
  top: -25%;
  left: -3%;
  width: clamp(148px, 18vw, 248px);
  height: clamp(100.8px, 12vw, 169px);
  background: url(../img/title-deco.webp) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .message__head::after {
    left: -1%;
  }
}
.message__title {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
  position: relative;
  padding-left: 30px;
  padding-right: 50px;
  color: #000;
}
@media (max-width: 767px) {
  .message__title {
    font-size: clamp(18px, 3vw, 22px);
  }
}
.message__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: #000;
}
.message__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: #000;
}
.message__lead {
  margin-top: clamp(10px, 2.8vw, 40px);
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .message__lead {
    margin-top: 10px;
    font-size: clamp(16px, 2.7vw, 20px);
  }
}
.message__content {
  margin-top: 45px;
}
.message__content .flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8rem;
}
@media (max-width: 767px) {
  .message__content .flex {
    gap: 3rem;
    flex-direction: column;
  }
}
.message__content .flex .left {
  max-width: 520px;
  width: 50%;
}
@media (max-width: 767px) {
  .message__content .flex .left {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.message__content .flex .left p {
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.8;
}
.message__content .flex .left p span {
  font-weight: 600;
  color: #030000;
}
.message__content .flex .right {
  max-width: 440px;
  width: 43%;
}
@media (max-width: 767px) {
  .message__content .flex .right {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*-----------------------------------------
    about
-----------------------------------------*/
.about {
  padding-top: 12rem;
}
@media (max-width: 767px) {
  .about {
    padding-top: 4rem;
  }
}
.about .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12rem;
  flex-direction: column;
}
@media (max-width: 767px) {
  .about__inner {
    padding: 0;
  }
}
.about__head {
  text-align: center;
  position: relative;
}
.about__head::after {
  content: "";
  position: absolute;
  top: -58%;
  left: 46%;
  transform: translateX(-50%);
  width: clamp(214px, 22vw, 314px);
  height: clamp(136px, 14vw, 200px);
  background: url(../img/title-deco02.webp) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .about__head::after {
    top: -46%;
    width: clamp(164px, 28vw, 214px);
    height: clamp(104px, 18vw, 136px);
  }
}
.about__title {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  color: #707070;
}
@media (max-width: 767px) {
  .about__title {
    font-size: clamp(16px, 3vw, 22px);
  }
}
.about__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: #707070;
}
.about__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: #707070;
}
.about__lead {
  margin-top: 1rem;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .about__lead {
    margin-top: 0;
    font-size: clamp(16px, 3vw, 22px);
  }
}
.about .lead {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .about .lead {
    margin-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.about .lead p {
  font-size: clamp(13px, 1.3vw, 16px);
  text-align: center;
  line-height: 1.8;
}
.about .lead strong {
  font-size: clamp(18px, 2vw, 26px);
  color: #B9A85B;
  font-weight: 500;
  text-align: center;
  display: block;
  margin-top: 15px;
}
.about__content {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .about__content {
    margin-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.about__content h3 {
  text-align: center;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
}
.about__content ul {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 2rem;
}
@media (max-width: 767px) {
  .about__content ul {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
.about__content ul li {
  background: #B9A85B;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  padding: 9px;
  font-size: clamp(12px, 1.4vw, 18px);
  border-radius: 3px;
}
@media (max-width: 767px) {
  .about__content ul li {
    font-size: clamp(12px, 2.4vw, 14px);
  }
}

/*-----------------------------------------
    reason
-----------------------------------------*/
.reason {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .reason {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .reason__inner {
    padding: 0;
  }
}
.reason__head {
  text-align: center;
  position: relative;
}
.reason__head::after {
  content: "";
  position: absolute;
  top: -58%;
  left: 46%;
  transform: translateX(-50%);
  width: clamp(213px, 22vw, 313px);
  height: clamp(123px, 13vw, 181px);
  background: url(../img/title-deco03.webp) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .reason__head::after {
    top: -50%;
    width: clamp(163px, 28vw, 213px);
    height: clamp(94px, 16.5vw, 123px);
  }
}
.reason__title {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
  position: relative;
  padding-left: 70px;
  padding-right: 70px;
  color: #707070;
}
@media (max-width: 767px) {
  .reason__title {
    font-size: clamp(16px, 3vw, 22px);
  }
}
.reason__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: #707070;
}
.reason__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: #707070;
}
.reason__lead {
  margin-top: 1rem;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .reason__lead {
    font-size: clamp(16px, 3vw, 22px);
  }
}
.reason__content {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .reason__content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.reason__content .img {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
@media (max-width: 767px) {
  .reason__content .img {
    width: 100%;
  }
}
.reason__contentLead {
  margin-top: 3rem;
}
.reason__contentLead p {
  font-size: clamp(13px, 1.3vw, 16px);
  text-align: center;
  line-height: 1.8;
}
.reason__contentLead p span {
  color: #B9A85B;
  font-weight: 600;
}
@media (max-width: 767px) {
  .reason__contentLead p.sp-margin {
    margin-top: 20px;
  }
}
.reason__items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
@media (max-width: 767px) {
  .reason__items {
    margin-top: 30px;
    gap: 3rem;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .reason__item {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.reason__item .img {
  vertical-align: bottom;
  line-height: 1em;
  width: 100%;
}
@media (max-width: 767px) {
  .reason__item .img img {
    height: 17rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.reason__item .body {
  margin-top: 10px;
}
.reason__item .body h3 {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
}
.reason__item .body h3 span {
  display: block;
  padding-top: 6px;
  margin-right: 5px;
}
.reason__item .body p {
  margin-top: 10px;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 500;
}

/*-----------------------------------------
    service
-----------------------------------------*/
.service {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .service {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 767px) {
  .service__inner {
    padding: 0;
  }
}
.service__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.service__head::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 44%;
  transform: translateX(-50%);
  width: clamp(213px, 22vw, 313px);
  height: clamp(123px, 13vw, 181px);
  background: url(../img/title-deco04.webp) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .service__head::after {
    top: -50%;
    width: clamp(163px, 28vw, 213px);
    height: clamp(94px, 16.5vw, 123px);
  }
}
.service__head--why:after {
  top: -52%;
  left: 50%;
  background: url(../img/title-deco05.webp) no-repeat center center/contain;
}
.service__head--history:after {
  top: -130%;
  left: 50%;
  background: url(../img/title-deco05.webp) no-repeat center center/contain;
}
.service__title {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
  position: relative;
  padding-left: 70px;
  padding-right: 70px;
}
@media (max-width: 767px) {
  .service__title {
    padding-left: 50px;
    padding-right: 50px;
    font-size: clamp(18px, 3vw, 22px);
  }
}
.service__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: #707070;
}
@media (max-width: 767px) {
  .service__title::before {
    width: 40px;
  }
}
.service__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: #707070;
}
@media (max-width: 767px) {
  .service__title::after {
    width: 40px;
  }
}
.service__title--why:before {
  display: none;
}
.service__title--why:after {
  display: none;
}
.service__title--history:before {
  display: none;
}
.service__title--history:after {
  display: none;
}
.service__lead {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .service__lead {
    font-size: clamp(16px, 2.4vw, 18px);
  }
}
.service__item:not(:first-child) {
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .service__item:not(:first-child) {
    margin-top: 6rem;
  }
}
@media (max-width: 767px) {
  .service__item:nth-child(2) .flex {
    flex-direction: column-reverse;
  }
}
.service__item:nth-child(3) .flex {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .service__item:nth-child(3) .flex {
    flex-direction: column-reverse;
  }
}
.service__content {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service__content {
    margin-top: 40px;
  }
}
.service__content .flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8rem;
}
@media (max-width: 767px) {
  .service__content .flex {
    gap: 3rem;
    flex-direction: column;
  }
}
.service__content .flex .left {
  max-width: 440px;
  width: 43%;
}
@media (max-width: 767px) {
  .service__content .flex .left {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.service__content .flex .left img {
  vertical-align: bottom;
  line-height: 1em;
}
.service__content .flex .right {
  max-width: 520px;
  width: 50%;
}
@media (max-width: 767px) {
  .service__content .flex .right {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.service__content .flex .right h3 {
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.02rem;
  font-weight: 600;
  color: #66A786;
}
@media (max-width: 767px) {
  .service__content .flex .right h3 {
    text-align: center;
    line-height: 1.8;
  }
}
.service__content .flex .right p {
  margin-top: 30px;
  font-size: clamp(14px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .service__content .flex .right p {
    line-height: 2;
  }
}
.service__content--pet {
  padding-bottom: 4rem;
  border-bottom: 1px solid #707070;
}
@media (max-width: 767px) {
  .service__content--pet {
    border: none;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .service__content--pet .flex .right {
    padding-bottom: 2rem;
    border-bottom: 1px solid #707070;
  }
}
.service__content--why .flex .left, .service__content--history .flex .left {
  max-width: 520px;
  width: 50%;
}
@media (max-width: 767px) {
  .service__content--why .flex .left, .service__content--history .flex .left {
    max-width: 700px;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.service__content--why .flex .left h3, .service__content--history .flex .left h3 {
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.02rem;
  font-weight: 600;
}
.service__content--why .flex .left p, .service__content--history .flex .left p {
  margin-top: 30px;
  font-size: clamp(13px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .service__content--why .flex .left p, .service__content--history .flex .left p {
    margin-top: 0;
  }
}
.service__content--why .flex .left p strong, .service__content--history .flex .left p strong {
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 600;
  color: #B9A85B;
}
.service__content--why .flex .left ul, .service__content--history .flex .left ul {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.service__content--why .flex .left ul li, .service__content--history .flex .left ul li {
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 600;
  color: #B9A85B;
}
.service__content--why .flex .left ul li:not(:first-child), .service__content--history .flex .left ul li:not(:first-child) {
  margin-top: 5px;
}
.service__content--why .flex .right, .service__content--history .flex .right {
  max-width: 440px;
  width: 43%;
}
@media (max-width: 767px) {
  .service__content--why .flex .right, .service__content--history .flex .right {
    max-width: 700px;
    width: 100%;
  }
}
.service__content--why .flex .right img, .service__content--history .flex .right img {
  vertical-align: bottom;
  line-height: 1em;
}
.service__content--history .flex .right {
  padding-left: 2rem;
  padding-right: 2rem;
}

/*-----------------------------------------
    plan
-----------------------------------------*/
.plan {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .plan {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.plan__head {
  text-align: center;
}
.plan__title {
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
}
.plan__content {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .plan__content {
    margin-top: 5rem;
  }
}
.plan__item:not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .plan__item:not(:first-child) {
    margin-top: 50px;
  }
}
.plan__item h3 {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  color: #000;
}
@media (max-width: 767px) {
  .plan__item h3 {
    font-size: clamp(16px, 2.4vw, 18px);
  }
}
.plan__item .table__wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .plan__item .table__wrap {
    overflow: scroll;
    margin-top: 15px;
  }
}
.plan__item .table__wrap .table-plan {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .plan__item .table__wrap .table-plan {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.plan__item .table__wrap .table-plan tbody th,
.plan__item .table__wrap .table-plan tbody td {
  padding: 5px;
  text-align: center;
  height: 50px;
}
.plan__item .table__wrap .table-plan tbody th {
  background: #B9A85B;
  font-weight: 500;
  width: 20%;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: clamp(14px, 1.3vw, 16px);
  color: #fff;
  letter-spacing: 0.02rem;
}
.plan__item .table__wrap .table-plan tbody td {
  background-color: #fff;
  border-left: 1px solid #A7A7A7;
  border-right: 1px solid #A7A7A7;
  border-bottom: 1px solid #A7A7A7;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: 0.02rem;
}
.plan__item .table__wrap .table-plan tbody td.plan-name {
  background: #F2F2F2;
  color: #000;
  letter-spacing: 0.05rem;
}
.plan__item .table__wrap .table-situation {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .plan__item .table__wrap .table-situation {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.plan__item .table__wrap .table-situation tbody th,
.plan__item .table__wrap .table-situation tbody td {
  padding: 5px;
  text-align: center;
  height: 50px;
}
.plan__item .table__wrap .table-situation tbody th {
  background: #fff;
  font-weight: 500;
  border-top: 1px solid #A7A7A7;
  border-bottom: 1px solid #A7A7A7;
  border-left: 1px solid #A7A7A7;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.02rem;
}
.plan__item .table__wrap .table-situation tbody td {
  background-color: #fff;
  border-top: 1px solid #A7A7A7;
  border-bottom: 1px solid #A7A7A7;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02rem;
}
.plan__item .table__wrap .table-situation tbody td.arrow {
  font-size: clamp(22px, 2.9vw, 30px);
}
.plan__item .table__wrap .table-situation tbody td.plan-name {
  background: #F2F2F2;
  color: #000;
  letter-spacing: 0.05rem;
}
.plan__item .table__wrap .table-situation tbody:last-child {
  border-right: 1px solid #A7A7A7;
}
.plan__item .table__wrap .table-pet {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .plan__item .table__wrap .table-pet {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.plan__item .table__wrap .table-pet tbody th,
.plan__item .table__wrap .table-pet tbody td {
  padding: 5px;
  text-align: center;
  height: 50px;
  width: 50%;
}
.plan__item .table__wrap .table-pet tbody th {
  background: #F2F2F2;
  font-weight: 500;
  border: 1px solid #DEDEDE;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.02rem;
}
.plan__item .table__wrap .table-pet tbody td {
  background-color: #fff;
  border: 1px solid #A7A7A7;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02rem;
}

/*-----------------------------------------
    voice
-----------------------------------------*/
.voice {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.voice__head {
  text-align: center;
}
.voice__title {
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
}
@media (max-width: 767px) {
  .voice__title {
    font-size: clamp(18px, 3vw, 22px);
  }
}
.voice__content {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .voice__content {
    margin-top: 4rem;
  }
}
.voice__item:not(:first-child) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .voice__item:not(:first-child) {
    margin-top: 40px;
  }
}
.voice__item .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 767px) {
  .voice__item .flex {
    flex-direction: column;
    gap: 2rem;
  }
}
.voice__item .flex .left {
  max-width: 380px;
  width: 37%;
}
@media (max-width: 767px) {
  .voice__item .flex .left {
    width: 100%;
  }
}
.voice__item .flex .left img {
  vertical-align: bottom;
  line-height: 1em;
}
.voice__item .flex .right {
  width: 59%;
  max-width: 610px;
}
@media (max-width: 767px) {
  .voice__item .flex .right {
    width: 100%;
  }
}
.voice__item .flex .right h3 {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
}
.voice__item .flex .right .text {
  margin-top: 15px;
  font-size: clamp(13px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .voice__item .flex .right .text {
    margin-top: 5px;
  }
}
.voice__item .flex .right .name {
  margin-top: 20px;
  text-align: right;
  font-size: clamp(12px, 1.2vw, 14px);
}
@media (max-width: 767px) {
  .voice__item .flex .right .name {
    margin-top: 10px;
    text-align: left;
  }
}

/*-----------------------------------------
    flow
-----------------------------------------*/
.flow {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.flow__head {
  text-align: center;
}
@media (max-width: 767px) {
  .flow__head {
    text-align: left;
  }
}
.flow__title {
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
}
@media (max-width: 767px) {
  .flow__title {
    font-size: clamp(18px, 3vw, 22px);
  }
}
.flow__content {
  margin-top: 7rem;
  width: 610px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .flow__content {
    max-width: 610px;
    width: 100%;
    margin-top: 3rem;
  }
}
.flow__item:not(:first-child) {
  margin-top: 5rem;
}
.flow__item h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
}
.flow__item p {
  margin-top: 15px;
  font-size: clamp(14px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .flow__item p {
    margin-top: 5px;
    padding-left: 2rem;
    font-size: clamp(13px, 1.3vw, 16px);
  }
}

/*-----------------------------------------
    contact
-----------------------------------------*/
.contact {
  padding-top: 6rem;
  padding-bottom: 6rem;
  /*----------------- お問い合わせフォーム -------------------*/
  /*----------------- label -------------------*/
  /*----------------- input -------------------*/
  /*----------------- ボタン -------------------*/
}
.contact__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.contact__head::after {
  content: "";
  position: absolute;
  top: -70%;
  left: 53%;
  transform: translateX(-50%);
  width: clamp(213px, 22vw, 313px);
  height: clamp(123px, 13vw, 181px);
  background: url(../img/title-deco06.webp) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact__head::after {
    top: -50%;
    width: clamp(163px, 28vw, 213px);
    height: clamp(94px, 16.5vw, 123px);
  }
}
.contact__title {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
}
@media (max-width: 767px) {
  .contact__title {
    font-size: clamp(18px, 3vw, 22px);
  }
}
.contact__content {
  margin-top: 60px;
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .contact__content {
    margin-top: 20px;
    max-width: 100%;
  }
}
.contact .contact-form__dl {
  margin: 0;
}
.contact .contact-form__row {
  display: flex;
  align-items: center;
  justify-content: start;
}
@media (max-width: 767px) {
  .contact .contact-form__row {
    flex-direction: column;
  }
}
.contact .contact-form__row:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contact .contact-form__row:not(:first-child) {
    margin-top: 25px;
  }
}
.contact .contact-form__row--inner {
  width: calc(100% - 210px);
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .contact .contact-form__row--inner {
    width: 100%;
  }
}
.contact .contact-form__row--input-flex {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.contact .contact-form__row--input-flex #zip-button {
  display: inline-block;
  width: 95px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  background: #E5E5E5;
  border: 1px solid #80817F;
  color: #707070;
  cursor: pointer;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .contact .contact-form__row--input-flex #zip-button {
    width: 66px;
  }
}
.contact .contact-form__row--radio {
  display: flex;
  align-items: start;
  justify-content: center;
}
.contact .contact-form__row--textarea {
  display: flex;
  align-items: start;
  justify-content: center;
}
.contact .contact-form__label {
  width: 200px;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .contact .contact-form__label {
    width: 100%;
  }
}
.contact .contact-form__label label.is-required {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}
.contact .contact-form__label label.is-required::after {
  content: "※";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 500;
  color: #D1637A;
}
.contact .contact-form__input {
  width: calc(100% - 200px);
  font-size: 14px;
}
@media (max-width: 767px) {
  .contact .contact-form__input {
    width: 100%;
  }
}
.contact .contact-form__input [type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #80817F;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact .contact-form__input [type=text]::-moz-placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=text]::placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=text]:focus, .contact .contact-form__input [type=text]:hover {
  border-color: #B9A85B;
}
.contact .contact-form__input [type=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #80817F;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact .contact-form__input [type=tel]::-moz-placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=tel]::placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=tel]:focus, .contact .contact-form__input [type=tel]:hover {
  border-color: #B9A85B;
}
.contact .contact-form__input [type=email] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #80817F;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact .contact-form__input [type=email]::-moz-placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=email]::placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=email]:focus, .contact .contact-form__input [type=email]:hover {
  border-color: #B9A85B;
}
.contact .contact-form__input textarea {
  margin-top: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: vertical;
  box-shadow: none;
  border: 1px solid #80817F;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  height: 180px;
  padding: 10px 16px;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact .contact-form__input textarea::-moz-placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input textarea::placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input textarea:focus, .contact .contact-form__input textarea:hover {
  border-color: #B9A85B;
}
.contact .contact__button {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact .contact__button {
    display: block;
    margin-top: 20px;
  }
}
.contact .contact__btn {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  width: 200px;
  max-width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 1px;
  font-size: clamp(16px, 1.5vw, 18px);
  background: #B9A85B;
}

/*-----------------------------------------
    confirm
-----------------------------------------*/
.form_area {
  height: 100vh;
  padding-top: 9rem;
}
.form_area .-w-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* タイトル部分 */
.form_area .-w-general.-w-font_title1 {
  font-size: 20px;
  line-height: 1.8;
}

.form_area .-w-ttl_wrap {
  text-align: center;
}

.form_area .-w-ttl-en {
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
}

.form_area h2.-w-general {
  margin: 0 30px;
}

.form_area h3.-w-general {
  margin: 30px 0;
  text-align: center;
}

.form_area h4.-w-general {
  text-align: center;
  margin-bottom: 30px;
}

/* 本文テキスト部分 */
.form_area .-w-text {
  margin: 30px 30px;
  font-weight: normal;
  line-height: 1.8;
  font-size: 16px;
}

/* フォーム全体のラッパ */
.form_area .-w-form_wrap {
  margin-top: 3rem;
  padding: 0 2% 2%;
}

/* 注意やエラーメッセージ */
.form_area .alert {
  font-weight: bold;
  color: #ff0000;
}

.form_area .alert_rules {
  display: block;
  margin-top: 10px;
}

/* 必須マーク */
.form_area .-w-require {
  border-radius: 2px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: normal;
  padding: 5px 0;
  color: #fff;
  color: rgb(255, 255, 255);
}

.form_area .require {
  border-radius: 2px;
  margin-left: 6px;
  font-size: 14px;
  font-weight: normal;
  padding: 5px 8px;
  background: #CE0000;
  color: #fff;
}

.form_area .confirm_title {
  margin-top: 16px;
  font-size: 20px;
}

.form_area .error_messe {
  margin-top: 16px;
  font-size: 16px;
}

.form_area .top-text {
  font-size: 16px;
}

.-w-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.form_area .-w-form-btn .submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05rem;
  appearance: none;
  border: none;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  width: 200px;
  max-width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 1px;
  font-size: clamp(16px, 1.5vw, 18px);
  background: #BD5E34;
}

.form_area .-w-back-btn a {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  width: 200px;
  max-width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 1px;
  font-size: clamp(16px, 1.5vw, 18px);
  background: #B9A85B;
}

.formTable tr:not(:first-child) {
  margin-top: 10px;
}
.formTable th,
.formTable td {
  font-size: 16px;
  text-align: left;
  width: 50%;
}

/*-----------------------------------------
    map
-----------------------------------------*/
.map {
  padding-top: 60px;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .map {
    padding-bottom: 6rem;
  }
}
.map__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.map__head::after {
  content: "";
  position: absolute;
  top: -70%;
  left: 53%;
  transform: translateX(-50%);
  width: clamp(213px, 22vw, 313px);
  height: clamp(123px, 13vw, 181px);
  background: url(../img/title-deco06.webp) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .map__head::after {
    top: -50%;
    width: clamp(163px, 28vw, 213px);
    height: clamp(94px, 16.5vw, 123px);
  }
}
.map__title {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
}
@media (max-width: 767px) {
  .map__title {
    font-size: clamp(18px, 3vw, 22px);
  }
}
.map__content {
  margin-top: 60px;
  width: 600px;
  height: 350px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .map__content {
    margin-top: 30px;
    max-width: 600px;
    width: 100%;
  }
}
.map__content .iframe-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.map__content .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */