@charset "UTF-8";
/* Universal box-sizing reset */
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  zoom: 1;
  min-height: auto;
}

/* Set default styles for html */
html {
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
a,
figure,
blockquote,
dl,
dd,
input,
textarea,
label {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size-adjust: 0.5;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
}

strong {
  font-style: normal;
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  outline: none;
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.lg-none {
  display: none;
}
@media (min-width: 992px) {
  .lg-none {
    display: block;
  }
}

.lg-bk {
  display: block;
}
@media (min-width: 992px) {
  .lg-bk {
    display: none;
  }
}

.sp-br > br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br > br {
    display: none;
  }
}

.tab-br > br {
  display: block;
}
@media (min-width: 992px) {
  .tab-br > br {
    display: none;
  }
}

.xl-br > br {
  display: block;
}
@media (min-width: 1200px) {
  .xl-br > br {
    display: none;
  }
}

.reverse-x {
  transform: scale(-1, 1);
}

.reverse-y {
  transform: scale(1, -1);
}

.reverse-xy {
  transform: scale(-1, -1);
}

html.is-resizing *,
html.is-resizing *::before,
html.is-resizing *::after {
  transition: none !important;
}

a {
  transition: all 0.3s ease;
  display: inline-block;
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
}

.is-scroll-lock {
  overflow: hidden;
}

.js-stagger > * {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-stagger.is-show > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
          animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.js-typein {
  opacity: 0;
}
.js-typein > * {
  opacity: 0;
}

.js-tab-panel {
  display: none;
  opacity: 0;
}
.js-tab-panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.scroll-mask,
.js-scroll-mask,
.scroll-mask-vertical,
.js-scroll-mask-vertical {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.scroll-mask,
.js-scroll-mask {
  aspect-ratio: 4/3;
}

.scroll-mask-vertical,
.js-scroll-mask-vertical {
  aspect-ratio: 3/4;
}

.scroll-mask img,
.js-scroll-mask img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition-duration: 0.8s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-mask-image: url(/system_panel/uploads/images/mask.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
  -webkit-mask-position: center bottom;
  mask-image: url(/system_panel/uploads/images/mask.svg);
  mask-mode: alpha;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: auto 200%;
  opacity: 0;
}

.scroll-mask-vertical img,
.js-scroll-mask-vertical img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition-duration: 0.8s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-mask-image: url(/system_panel/uploads/images/mask-vertical.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
  -webkit-mask-position: center bottom;
  mask-image: url(/system_panel/uploads/images/mask-vertical.svg);
  mask-mode: alpha;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: auto 200%;
  opacity: 0;
}

.scroll-mask.is-visible img,
.js-scroll-mask.is-visible img,
.scroll-mask-vertical.is-visible img,
.js-scroll-mask-vertical.is-visible img {
  -webkit-animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
  animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
}

@-webkit-keyframes mask-animation {
  0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1;
  }
}
@keyframes mask-animation {
  0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1;
  }
}
:root {
  --shippori:
    “Shippori Mincho”, “Hiragino Mincho ProN”, “Hiragino Mincho Pro”,
    “Yu Mincho”, “YuMincho”, “Noto Serif JP”, “MS PMincho”, serif;
  --hiragino:
    “Hiragino Kaku Gothic ProN”, “Hiragino Sans”, “Yu Gothic”, “YuGothic”,
    “Noto Sans JP”, “Meiryo”, sans-serif;
  --ten:
    ten-mincho-text, “Hiragino Mincho ProN”, “Hiragino Mincho Pro”, “Yu Mincho”,
    “YuMincho”, “Noto Serif JP”, “MS PMincho”, serif;
  --brown: #584527;
  --white: #ffffff;
  --green-main: #a2c776;
  --ivory: #f7f9f2;
  --green-soft: #dfe7cd;
  --green-light: #b9e189;
  --green-dark: #88a367;
  --cream: #ecf4dc;
}

a:hover {
  color: var(--green-dark);
}

body {
  margin-top: var(--header-top) !important;
  color: var(--brown);
}

.shippori {
  font-family: var(--shippori) !important;
}

.hiragino {
  font-family: var(--hiragino) !important;
}

.ten {
  font-family: var(--ten) !important;
}

.c-br {
  color: var(--brown) !important;
}

.c-w {
  color: var(--white) !important;
}

.c-g {
  color: var(--green-main) !important;
}

.c-iv {
  color: var(--ivory) !important;
}

.c-g-soft {
  color: var(--green-soft) !important;
}

.c-g-light {
  color: var(--green-light) !important;
}

.c-g-dark {
  color: var(--green-dark) !important;
}

.c-cr {
  color: var(--cream) !important;
}

.bg-br {
  background-color: var(--brown) !important;
}

.bg-w {
  background-color: var(--white) !important;
}

.bg-g {
  background-color: var(--green-main) !important;
}

.bg-iv {
  background-color: var(--ivory) !important;
}

.bg-g-soft {
  background-color: var(--green-soft) !important;
}

.bg-g-light {
  background-color: var(--green-light) !important;
}

.bg-g-dark {
  background-color: var(--green-dark) !important;
}

.bg-cr {
  background-color: var(--cream) !important;
}

.b-1-gr {
  border: solid 1px var(--green-main);
}

.br-20 {
  border-radius: 20px;
  overflow: hidden;
}

.btn-wrap a {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  background: #a2c776;
  width: 194px;
  height: 59px;
  justify-content: center;
  align-items: center;
  padding: clamp(12px, 1.5vw, 18px) clamp(20px, 2vw, 32px);
  gap: clamp(8px, 1vw, 15px);
}
.btn-wrap a .button-p1,
.btn-wrap a .button-img {
  display: flex;
  align-items: center;
}
.btn-wrap a .button-img img {
  transition: all 0.3s ease;
}
.btn-wrap a:hover .button-img img {
  transform: translateX(5px);
}

.section-title h2,
.section-title h3 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-family: var(--ten);
  line-height: normal;
}

body {
  margin-top: var(--header-top);
  font-family: var(--hiragino);
  background-color: #f7f9f2;
}

.gjs-dashed .header__nav {
  visibility: visible !important;
  opacity: 1 !important;
}
.gjs-dashed * {
  -webkit-animation: none !important;
          animation: none !important;
  transition: none !important;
}
.gjs-dashed .scroll-mask img,
.gjs-dashed .js-scroll-mask img,
.gjs-dashed .scroll-mask-vertical img,
.gjs-dashed .js-scroll-mask-vertical img {
  opacity: 1 !important;
  -webkit-mask-image: none !important;
          mask-image: none !important;
}
.gjs-dashed .p-concept .sec02 .box-txt p {
  color: white !important;
}
.gjs-dashed .js-typein {
  opacity: 1 !important;
}
.gjs-dashed .js-typein > * {
  opacity: 1 !important;
}
.gjs-dashed .page-hr img {
  display: block !important;
}

a:hover {
  color: var(--green-dark);
}

.bg-w {
  background-color: white !important;
}

.p-top-fv {
  position: relative;
  height: 670px;
}
@media (max-width: 991px) {
  .p-top-fv {
    background-position: 80% center !important;
  }
}
.p-top-fv::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .p-top-fv::before {
    display: none;
  }
}
.p-top-fv .deco {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 834px;
}
.p-top-fv__title {
  position: relative;
  z-index: 2;
  padding-top: 240px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .p-top-fv__title {
    padding-top: 240px;
    padding-left: 50px;
  }
}
@media (min-width: 992px) {
  .p-top-fv__title {
    padding-top: 220px;
    padding-left: 90px;
  }
}
@media (min-width: 1200px) {
  .p-top-fv__title {
    padding-top: 200px;
    padding-left: 240px;
  }
}
.p-top-fv__title h1 {
  color: #584527;
  font-family: var(--ten);
  font-size: clamp(1.563rem, 3vw, 2.938rem);
  font-style: normal;
  font-weight: 400;
}
.p-top-fv__title > p {
  color: #584527;
  font-family: var(--hiragino);
  font-size: clamp(0.625rem, 0.49rem + 0.59vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.p-top-sec1 {
  background: #f7f9f2;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .p-top-sec1 {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .p-top-sec1 {
    padding-top: 160px;
  }
}
.p-top-sec1 .section-title h2 {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
}
.p-top-sec1-container {
  display: flex;
  flex-direction: column;
  gap: 40px clamp(30px, 6vw, 60px);
}
@media (min-width: 992px) {
  .p-top-sec1-container {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .p-top-sec1-container {
    gap: 40px clamp(30px, 7vw, 100px);
  }
}
.p-top-sec1-container-img {
  max-width: 233px;
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .p-top-sec1-container-img {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .p-top-sec1-container-img {
    max-width: 100%;
    width: 40%;
    margin-inline: 0;
  }
}
.p-top-sec1-container-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
@media (min-width: 992px) {
  .p-top-sec1-container-text {
    text-align: left;
    align-items: flex-start;
  }
}
.p-top-sec2-container {
  background-color: #f7f9f2;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top-sec2-container > p {
  color: #a2c776;
  text-align: center;
  font-family: var(--ten);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}
.p-top-sec2-container-box {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 992px) {
  .p-top-sec2-container-box {
    margin-top: 40px;
    max-width: 920px;
    flex-direction: row;
    align-items: stretch;
    gap: 30px clamp(15px, 3vw, 40px);
  }
}
@media (min-width: 1200px) {
  .p-top-sec2-container-box {
    max-width: 1100px;
  }
}
.p-top-sec2-container-box-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #fff;
  border: #a2c776 1px solid;
  border-radius: clamp(20px, 4vw, 50px);
  color: #a2c776;
  text-align: center;
  font-family: var(--hiragino);
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  font-weight: 300;
  line-height: normal;
  margin-inline: auto;
  width: 100%;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .p-top-sec2-container-box-card {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .p-top-sec2-container-box-card {
    width: calc(33.3333333333% - clamp(5px, 2vw, 27px));
    margin-inline: 0;
  }
}
@media (min-width: 1200px) {
  .p-top-sec2-container-box-card {
    padding: 55px clamp(15px, 3.5vw, 40px);
  }
}
.p-top-sec2-container-box-card-top {
  padding-bottom: 16px;
  margin-bottom: 16px;
  text-align: center;
  border-bottom: #a2c776 1px solid;
  color: #a2c776;
  font-family: var(--ten);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  font-weight: 400;
  line-height: normal;
}
.p-top-sec3-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-family: var(--ten);
  font-size: clamp(1.375rem, 1.092rem + 1.23vw, 2.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.p-top-sec3-container-box {
  display: flex;
  flex-direction: column;
  gap: 24px clamp(24px, 3vw, 40px);
}
@media (min-width: 768px) {
  .p-top-sec3-container-box {
    display: flex;
    flex-direction: row;
  }
}
.p-top-sec3-container-box-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #f7f9f2;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
  padding: 10px 20px 40px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .p-top-sec3-container-box-card {
    flex: 1;
    margin-inline: 0px;
    padding: 80px 20px 40px;
  }
}
@media (min-width: 992px) {
  .p-top-sec3-container-box-card {
    padding: 40px clamp(20px, 7vw, 90px);
  }
}
.p-top-sec3-container-box-card-number {
  color: #b9e189;
  text-align: center;
  font-family: var(--ten);
  font-size: 40px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-top-sec3-container-box-card-number {
    position: absolute;
    top: 0;
    left: 3%;
    font-size: clamp(3rem, 2.028rem + 4.2vw, 6rem);
  }
}
.p-top-sec3-container-box-card-img {
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-sec3-container-box-card > h3 {
  text-align: center;
  font-family: var(--ten);
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.p-top-sec3-container-box-card > p {
  text-align: left;
  color: var(--brown);
  font-family: var(--hiragino);
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  font-weight: 300;
}
.p-top-sec3__bottom {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-top-sec3__bottom > img {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.p-top-sec4 {
  background-color: #f7f9f2;
}
.p-top-sec4-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}
.p-top-sec4-container > p {
  width: 310px;
  text-align: left;
  color: #584527;
  text-align: center;
  font-family: var(--hiragino);
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 150% */
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .p-top-sec4-container > p {
    width: 460px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .p-top-sec4-container > p {
    width: 600px;
    padding-bottom: 80px;
  }
}
.p-top-sec4-container-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px clamp(20px, 3vw, 40px);
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-sec4-container-box {
    gap: 0px clamp(20px, 3vw, 40px);
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.p-top-sec4-container-box-card {
  aspect-ratio: 1;
  border-radius: 1000px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 370px;
  width: 75%;
}
@media (min-width: 768px) {
  .p-top-sec4-container-box-card {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .p-top-sec4-container-box-card {
    max-width: 100%;
    flex: 1;
  }
}
.p-top-sec4-container-box-card-img {
  width: clamp(100px, 13vw, 166px);
  margin-inline: auto;
  aspect-ratio: 1;
  margin-bottom: 20px;
}
.p-top-sec4-container-box-card > h3 {
  color: var(--brown);
  font-family: var(--ten);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.p-top-sec4-container-box-card a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #a2c776;
  font-family: var(--hiragino);
}
.p-top-sec4-container-box-card a-img {
  width: 30%;
}
.p-top-sec4-container-card2 {
  max-width: 1000px;
  width: 100%;
  margin-top: 75px;
  padding: 30px 20px;
  margin-inline: auto;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-top-sec4-container-card2 > h4 {
  color: var(--brown);
  font-family: var(--ten);
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  margin-bottom: 15px;
}
.p-top-sec4-container-card2 > p {
  text-align: center;
  color: var(--brown);
  font-family: var(--hiragino);
  font-size: clamp(0.75rem, 0.588rem + 0.7vw, 1.25rem);
}
.p-top-sec5-container-box {
  display: flex;
  flex-direction: column;
  gap: 45px clamp(20px, 7vw, 100px);
}
@media (min-width: 992px) {
  .p-top-sec5-container-box {
    display: flex;
    flex-direction: row;
  }
}
.p-top-sec5-container-box-img {
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .p-top-sec5-container-box-img {
    width: 48%;
    max-width: 100%;
    margin-inline: 0px;
  }
}
.p-top-sec5-container-box-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}
@media (min-width: 992px) {
  .p-top-sec5-container-box-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-top-sec6 {
  background: #f7f9f2;
  padding-block: clamp(40px, 5vw, 60px) clamp(80px, 12vw, 150px);
}
@media (min-width: 1200px) {
  .p-top-sec6 .container {
    max-width: 1300px;
  }
}
.p-top-sec6-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-top-sec6-container-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-sec6-container-box {
    flex-direction: row;
    align-items: stretch;
    gap: 10px 0px;
  }
}
@media (min-width: 992px) {
  .p-top-sec6-container-box {
    gap: clamp(20px, 4vw, 50px);
  }
}
.p-top-sec6-container-box-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 60px 20px;
  border-radius: 20px;
  background: #fff;
  display: grid;
  grid-template-rows: 170px 40px auto;
  justify-items: center;
  align-items: start;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top-sec6-container-box-card {
    max-width: 330px;
  }
}
@media (min-width: 992px) {
  .p-top-sec6-container-box-card {
    max-width: 400px;
    flex: 1;
    margin-inline: 0;
    padding: 80px 20px clamp(20px, 5vw, 60px);
  }
}
.p-top-sec6-container-box-card > p {
  color: #584527;
  text-align: center;
  font-family: var(--hiragino);
  font-size: clamp(0.688rem, 0.587rem + 0.44vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 280px;
}
@media (min-width: 992px) {
  .p-top-sec6-container-box-card > p {
    width: 260px;
  }
}
@media (min-width: 1200px) {
  .p-top-sec6-container-box-card > p {
    width: 280px;
  }
}
.p-top-sec6-container-box-card > h3 {
  color: #584527;
  font-family: var(--hiragino);
  font-size: clamp(0.813rem, 0.59rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (min-width: 992px) {
  .p-top-sec7 .container {
    max-width: 1000px;
  }
}
.p-top-sec7 .scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue-main);
  font-weight: bold;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (min-width: 768px) {
  .p-top-sec7 .scroll-hint {
    display: none;
  }
}
.p-top-sec7 .scroll-hint-icon {
  width: 60px;
  height: 60px;
  -webkit-animation: swipeLoop 2s ease-in-out infinite;
          animation: swipeLoop 2s ease-in-out infinite;
}
.p-top-sec7 .scroll-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@-webkit-keyframes swipeLoop {
  0% {
    transform: translateX(-15px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    transform: translateX(15px);
    opacity: 1;
  }
  80%, 100% {
    transform: translateX(15px);
    opacity: 0;
  }
}
@keyframes swipeLoop {
  0% {
    transform: translateX(-15px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    transform: translateX(15px);
    opacity: 1;
  }
  80%, 100% {
    transform: translateX(15px);
    opacity: 0;
  }
}
.p-top-sec7 .table-contents {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .p-top-sec7 .table-contents {
    padding-bottom: 0px;
  }
}
.p-top-sec7 .table-wrap {
  border-radius: 20px;
  border: solid 1px #dfe7cd;
  overflow: hidden;
  min-width: 650px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.p-top-sec7 .table-wrap.table01 {
  min-width: auto;
}
@media (max-width: 767px) {
  .p-top-sec7 .table-wrap.table01 .table-tr > .table-td:first-child,
.p-top-sec7 .table-wrap.table01 .table-tr > .table-th:first-child {
    width: 150px;
    min-width: 150px;
  }
}
@media (max-width: 767px) {
  .p-top-sec7 .table-wrap.table02 .table-tr > .table-td:first-child,
.p-top-sec7 .table-wrap.table02 .table-tr > .table-th:first-child {
    width: 150px;
    min-width: 150px;
  }
}
.p-top-sec7 .table-td {
  background-color: white;
}
.p-top-sec7 .table-th {
  background-color: #ecf4dc;
}
.p-top-sec7 .table-tr {
  display: flex;
  text-align: center;
}
.p-top-sec7 .table-tr:not(:last-child) {
  border-bottom: solid 1px #dfe7cd;
}
.p-top-sec7 .table-tr > .table-td:first-child, .p-top-sec7 .table-tr > .table-th:first-child {
  width: 300px;
  min-width: 300px;
  background-color: #ecf4dc;
}
.p-top-sec7 .table-th, .p-top-sec7 .table-td {
  display: table-cell;
  padding: 15px clamp(8px, 0.6vw, 15px);
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-top-sec7 .table-th:not(:first-child), .p-top-sec7 .table-td:not(:first-child) {
  flex: 1;
}
.p-top-sec7 .table-th:not(:last-child), .p-top-sec7 .table-td:not(:last-child) {
  border-right: solid 1px #dfe7cd;
}
.p-top-sec7 .table-th > p, .p-top-sec7 .table-td > p {
  margin: 0;
  white-space: nowrap;
}
.p-top-sec7 .treatment-time {
  display: flex;
  flex-direction: column;
  gap: 30px 0px;
  max-width: 600px;
  margin-inline: auto;
}
.p-top-sec7 .treatment-time-wrap {
  padding: 45px 20px;
}
@media (min-width: 992px) {
  .p-top-sec7 .treatment-time-wrap {
    padding: 50px clamp(20px, 9vw, 100px);
  }
}
.p-top-sec7 .treatment-time__list {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2.5vw, 34px);
}
@media (min-width: 992px) {
  .p-top-sec7 .treatment-time__list {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }
}
.p-top-sec7 .treatment-time .head {
  min-width: 170px;
  border-radius: 20px;
  border: solid 1px var(--green-main);
  color: var(--green-main);
  padding: 7px 10px;
  text-align: center;
  min-height: clamp(38px, 4vw, 48px);
  letter-spacing: normal;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-top-sec7 .treatment-time .text {
  flex: 1;
}
.p-top-table {
  max-width: 980px;
  width: 100%;
}
.p-top-table *:not(p) {
  padding-inline: 15px;
}
.p-top-sec8 {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-top-sec8 .webgene-blog,
.p-top-sec8 .webgene-item {
  width: 100%;
}
.p-top-sec8 .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
}
.p-top-sec8-box {
  margin: 5px 0;
  padding: 15px 20px;
  width: 100%;
  border-radius: 20px;
  background: #f7f9f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--hiragino);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  text-align: center;
  font-weight: 300;
  gap: 8px 50px;
  width: 100%;
}
@media (min-width: 992px) {
  .p-top-sec8-box {
    flex-direction: row;
    text-align: left;
    padding: 28px clamp(20px, 4vw, 50px);
  }
}
@media (min-width: 768px) {
  .p-top-sec8-box-left {
    width: 160px;
  }
}
.p-top-sec8-box-right {
  flex: 1;
}

.p-top-sec7-container-tittle02-center-left01-raund {
  border-radius: 0 0 0 20px;
}

.p-top-sec4-container-box-card-img-2 {
  width: 42%;
}

.p-top-sec7-container-tittle02-center-right02-raund {
  border-radius: 0 0 20px 0;
}

.p-top-sec4-text-btn-img {
  display: flex;
  align-items: center;
  width: 30%;
}

.wave {
  line-height: 0;
}
.wave img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top .button {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  background: #a2c776;
  width: 194px;
  height: 59px;
  justify-content: center;
  align-items: center;
  padding: clamp(12px, 1.5vw, 18px) clamp(20px, 2vw, 32px);
  gap: clamp(8px, 1vw, 15px);
}
.p-top .button-p1 {
  display: flex;
  align-items: center;
}
.p-top .button p {
  color: #fff;
  font-family: var(--hiragino);
  font-size: clamp(14px, 1.2vw, 20px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.p-top .button-img {
  display: flex;
  align-items: center;
}

.botton-text {
  color: #fff;
  font-family: var(--hiragino);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.sec8-btn {
  margin-top: 65px;
}

.p-news-fv {
  min-height: 670px;
  background-image: url(../images/news-fv.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.p-news-text > p {
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: var(--ten);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 71px; /* 147.917% */
}

.fv-object {
  position: absolute;
  top: -35px;
  right: 0;
}

.fv-object02 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.slide-gallery {
  overflow: hidden;
  width: 100%;
}

.slide-gallery .swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
}

.slide-gallery .swiper-slide {
  flex-shrink: 0;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.p-news-fv {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 670px !important;
  background: url("https://satoseitai.com/system_panel/uploads/images/news-fv.png") center/cover no-repeat !important;
  position: relative;
}
.p-news-fv-text > p {
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: var(--ten);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 71px; /* 147.917% */
}

.p-news-box {
  padding-top: 135px;
  background-color: #f7f9f2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-news-box .webgene-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 985px;
  width: 100%;
  border-radius: 20px;
  background: #fff;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .p-news-box .webgene-item {
    justify-content: flex-start;
    padding: 35px 0;
  }
}
.p-news-box .webgene-item > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .p-news-box .webgene-item > a {
    flex-direction: row;
    text-align: left;
  }
}
.p-news-box .webgene-item > a > p {
  width: 100%;
  color: #584527;
  font-family: var(--hiragino);
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .p-news-box .webgene-item > a > p {
    margin-bottom: 0px;
    margin-left: 50px;
    width: 150px;
  }
}
.p-news-box .webgene-item > a > h2 {
  flex: 1;
  color: #584527;
  font-family: var(--hiragino);
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.p-news-detail {
  padding: 100px 0;
}
@media (min-width: 992px) {
  .p-news-detail {
    padding: 150px 0;
  }
}

.newsdetail-contents__meta {
  color: #5d5a53;
  font-family: var(--ten);
  font-size: clamp(0.625rem, 0.423rem + 0.88vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  padding-top: 50px;
}
@media (min-width: 992px) {
  .newsdetail-contents__meta {
    padding-top: 90px;
  }
}

.newsdetail-contents__title {
  color: #5d5a53;
  font-family: var(--ten);
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  padding-top: 15px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .newsdetail-contents__title {
    padding-bottom: 70px;
  }
}

.newsdetail-contents__date {
  color: #5d5a53;
  font-family: var(--ten);
  font-size: clamp(0.688rem, 0.424rem + 1.14vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
}

.webgene-blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.webgene-pagination {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px 45px;
  justify-content: center;
  max-width: 400px;
  margin-inline: auto;
}
.webgene-pagination > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 992px) {
  .webgene-pagination > ul {
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
}
.webgene-pagination > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 164px;
  width: 100%;
  margin-inline: auto;
}

.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-back > a {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  background: #a2c776;
  max-width: 164px;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1vw, 15px);
  color: #fff;
  font-family: var(--hiragino);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 5px 60px;
}
@media (min-width: 992px) {
  .btn-back > a {
    padding: 15px 64px;
  }
}

.prev > a {
  color: #fff;
  font-family: var(--hiragino);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-radius: 20px;
  background: #a2c776;
  max-width: 164px;
  width: 100%;
  margin: 0 auto;
  padding: 5px 60px;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1vw, 15px);
  display: flex;
}
@media (min-width: 992px) {
  .prev > a {
    padding: 15px 64px;
  }
}

.next > a {
  color: #fff;
  font-family: var(--hiragino);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-radius: 20px;
  background: #a2c776;
  max-width: 164px;
  width: 100%;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1vw, 15px);
  display: flex;
}
@media (min-width: 992px) {
  .next > a {
    padding: 15px 64px;
  }
}

.p-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formRow {
  display: flex;
  flex-direction: column;
}

.labelText01 {
  font-family: var(--hiragino);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 31px; /* 155% */
}

.formTh {
  display: flex;
  flex-direction: row;
}

.formBtn {
  margin: 50px 0 0;
}

.requiredText {
  border-radius: 30px;
  background: #a2c776;
  color: #f5f5f5;
  text-align: center;
  font-family: var(--shippori);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px; /* 238.462% */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3px 15px;
}

.p-news .webgene-blog {
  max-width: 910px;
  padding-inline: 20px;
  margin-inline: auto;
}
.p-news .webgene-blog > article a {
  border-bottom: solid 1px var(--blue-main);
  display: flex;
  flex-direction: column;
  gap: 15px clamp(50px, 8vw, 130px);
}
@media (min-width: 768px) {
  .p-news .webgene-blog > article a {
    flex-direction: row;
    align-items: center;
  }
}
.p-news .webgene-blog > article:last-child {
  border-bottom: none;
}
.p-news .webgene-blog > article .date,
.p-news .webgene-blog > article .title {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  color: var(--blue-main);
}
.p-news .webgene-blog > article .title {
  flex: 1;
}
.p-news .webgene-pagination {
  margin-top: clamp(60px, 8vw, 120px);
}
.p-news .blog-item__img {
  position: relative;
  z-index: 1;
  width: 65%;
  margin-inline: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-news .blog-item__img {
    width: 150px;
  }
}
.p-news .blog-item__img img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}
.p-news .blog-item__img > .noImage {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-news .blog-item__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px 15px;
  flex: 1;
}

.p-contact {
  background: #f7f9f2;
}

.p-contact-container {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
}

.formWrap {
  max-width: 900px;
  margin-inline: auto;
}

.formWrap .container {
  max-width: 900px;
}

.formRow {
  align-items: center;
  margin-bottom: 48px;
}

.formTh {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #584527;
}

.labelText01 p {
  margin: 0;
  color: #584527;
  font-family: var(--ten);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1;
}

.requiredText {
  margin: 0;
  padding: 3px 12px;
  border-radius: 999px;
  background: #a2c776;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.formInput {
  width: 100%;
  height: 58px;
  border-radius: 14px;
  background: #fff;
  padding: 0 24px;
  color: #584527;
}

.formInput::-moz-placeholder, .formTextArea::-moz-placeholder {
  color: #c9c9c9;
}

.formInput::placeholder,
.formTextArea::placeholder {
  color: #c9c9c9;
}

.formTextArea {
  width: 100%;
  min-height: 260px;
  border-radius: 14px;
  background: #fff;
  padding: 24px;
  color: #584527;
  resize: vertical;
}

.formCheck {
  width: 20px;
  height: 20px;
  border: 1px solid #bbb;
  background: #fff;
}

.privacyLabel p {
  margin: 0;
  color: #584527;
  font-size: clamp(0.875rem, 0.78rem + 0.4vw, 1.125rem);
}

.formBtnTd {
  text-align: center;
}

.formBtn {
  position: relative;
  width: min(420px, 90%);
  border-radius: 20px;
  border: 1px solid #f5f5f5;
  background: #a2c776;
  color: #fff;
  font-family: var(--ten);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  cursor: pointer;
  padding: 18px 77px 18px 50px;
  line-height: 1.8;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 140px;
}
.formBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background: url(../images/btn-arrow.png) center/contain no-repeat;
  width: 8px;
  height: 12px;
}

.privacypolicy {
  background-color: #88a367;
  padding: 16px 17px;
  border-radius: 13px;
  margin-bottom: 20px;
}
.privacypolicy__inner {
  height: 230px;
  overflow-y: scroll;
  color: #fff;
  font-size: 13px;
}
.privacypolicy__inner::-webkit-scrollbar {
  width: 4px;
}
.privacypolicy__inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.privacypolicy__inner::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: white;
}

.p-contact {
  color: #584527;
  text-align: center;
  font-family: var(--shippori);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin: 150px 0 100px 0;
}

.footer-container {
  padding-top: 90px;
  padding-bottom: 120px;
}
.footer-box {
  gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .footer-box {
    flex-direction: row;
    gap: clamp(20px, 6vw, 70px);
  }
}
.footer-other-links {
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 550px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 40px 20px;
}
@media (min-width: 1200px) {
  .footer-other-links {
    padding: 40px clamp(20px, 6.5vw, 80px);
  }
}
.footer-other-links::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: background 0.4s ease;
}
.footer-other-links:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
}
.footer-other-links__title {
  padding-bottom: 7px;
  margin-bottom: 15px;
  min-width: 300px;
  width: 100%;
  border-bottom: 1px solid white;
  color: #fff;
  text-align: center;
  font-family: var(--ten);
  font-size: clamp(1.563rem, 1.34rem + 0.96vw, 2.25rem);
}
.footer-other-links__text {
  color: #fff;
  text-align: center;
  font-family: var(--ten);
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-other-links.footer-other-links01 {
  background-image: url(../images/footer01.png);
}
.footer-other-links.footer-other-links02 {
  background-image: url(../images/footer02.png);
}

.footer-reservation {
  background-color: #f7f9f2;
  display: flex;
  flex-direction: row;
  padding-block: clamp(80px, 7vw, 130px);
}
.footer-reservation-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 992px) {
  .footer-reservation-box {
    flex-direction: row;
  }
}
.footer-reservation-text {
  width: 100%;
}
@media (min-width: 768px) {
  .footer-reservation-text {
    width: 60%;
  }
}
.footer-reservation-text-title {
  color: #a2c776;
  font-family: var(--ten);
  font-size: clamp(1.563rem, 1.34rem + 0.96vw, 2.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 25px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-reservation-text-title {
    text-align: left;
  }
}
.footer-reservation-text-reed {
  color: #584527;
  font-family: var(--hiragino);
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  max-width: 480px;
  width: 100%;
  padding-bottom: 10px;
  text-align: center;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .footer-reservation-text-reed {
    text-align: left;
    margin-inline: 0;
  }
}
.footer-reservation-text-Main {
  color: #584527;
  font-family: var(--hiragino);
  font-size: clamp(0.625rem, 0.504rem + 0.53vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  max-width: 480px;
  width: 100%;
  text-align: center;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .footer-reservation-text-Main {
    text-align: left;
    margin-inline: 0;
  }
}
.footer-reservation-img {
  flex: 1;
}
.footer-reservation .footer-btn-box .btn-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 20px;
  background: #a2c776;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .footer-reservation .footer-btn-box .btn-wrap {
    margin-inline: 0;
  }
}
.footer-reservation .footer-btn-box a {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  background: #a2c776;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 11px clamp(30px, 3vw, 47px);
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  color: #fff;
  font-family: var(--hiragino);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.footer-reservation .footer-btn-box a > img {
  width: 8px;
  height: 13px;
}
.footer-reservation .footer-btn-box .footer-btn02 a {
  color: var(--green-main);
  background-color: white;
  border: solid 1px var(--green-main);
}
.footer-reservation .footer-btn-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .footer-reservation .footer-btn-box {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  background-color: #dfe7cd;
}
.footer-bottom-logo {
  width: clamp(150px, 26vw, 200px);
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer-bottom-logo {
    width: 150px;
  }
}
.footer-bottom-text01, .footer-bottom-text02 {
  display: none;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom-text01, .footer-bottom-text02 {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 3vw, 40px);
  }
}
.footer-bottom-text03 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom-text03 {
    display: none;
  }
}
.footer-bottom-text01 {
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .footer-bottom-text01 {
    margin-bottom: 25px;
  }
}
.footer-bottom-text01 a {
  font-size: clamp(0.813rem, 0.671rem + 0.61vw, 1.25rem);
  font-weight: 300;
  line-height: normal;
}
.footer-bottom-text02 {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer-bottom-text02 {
    margin-bottom: 75px;
  }
}
.footer-bottom-text02 > a {
  font-size: clamp(0.813rem, 0.671rem + 0.61vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.footer-bottom-address {
  font-family: var(--ten);
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.footer-bottom-tel {
  font-family: var(--ten);
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 75px;
}
.footer-bottom-copyright {
  font-family: var(--ten);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .footer-bottom-copyright {
    font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  }
}

.p-info__sec01 {
  margin: 100px 0;
  gap: 100px 0;
}
.p-info__sec01 .list-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.p-info__sec01 .list-dl {
  display: flex;
  flex-direction: column;
  gap: 8px 40px;
}
@media (min-width: 768px) {
  .p-info__sec01 .list-dl {
    flex-direction: row;
  }
}
.p-info__sec01 .list-dt {
  width: 100%;
}
@media (min-width: 768px) {
  .p-info__sec01 .list-dt {
    width: 160px;
  }
}
.p-info__sec01 .list-dd {
  flex: 1;
}

.p-mente-sec2 {
  padding: 0 15px;
  background-color: #fff;
}
@media (min-width: 992px) {
  .p-mente-sec2 {
    padding: 0;
  }
}
.p-mente-sec2 > h2 {
  font-family: var(--ten);
  margin-bottom: 40px;
}
.p-mente-sec2 > p {
  margin-bottom: 75px;
}
.p-mente-sec2-img {
  max-width: clamp(350px, 37vw, 560px);
  margin: 0 auto;
}

.p-mente-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .p-mente-sec3-box {
    flex-direction: row;
  }
}
.p-mente-sec3-box-text {
  max-width: 620px;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .p-mente-sec3-box-text {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .p-mente-sec3-box-text {
    margin-left: 60px;
    text-align: left;
  }
}
.p-mente-sec3-box-text > h2 {
  font-family: var(--ten);
  margin-bottom: 20px;
}
.p-mente-sec3-box > img {
  flex: 1;
  max-width: 75%;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .p-mente-sec3-box > img {
    max-width: 100%;
    margin-inline: 0;
  }
}

.p-mente-sec4-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 5px 90px;
  background-color: #fff;
}
@media (min-width: 992px) {
  .p-mente-sec4-box {
    flex-direction: row;
  }
}
.p-mente-sec4-box-text {
  max-width: 620px;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .p-mente-sec4-box-text {
    text-align: left;
    margin: 0;
  }
}
.p-mente-sec4-box-text > h2 {
  font-family: var(--ten);
}
.p-mente-sec4-box > img {
  flex: 1;
  max-width: 75%;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .p-mente-sec4-box > img {
    max-width: 100%;
    margin-inline: 0;
  }
}

.footer-top-wave {
  margin-bottom: -1px;
}

.p-top-sec4-wave {
  margin-bottom: -1px;
}

.deco {
  margin-bottom: -1px;
}