@charset "UTF-8";
body {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: rgb(246, 251, 246);
}

main {
  background-color: rgb(246, 251, 246);
}

section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  padding-top: 180px;
  text-align: center;
}
@media (max-width: 900px) {
  section {
    max-width: 400px;
    padding-top: 90px;
  }
}

section::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 150px;
  height: 150px;
  z-index: 0;
  background-color: rgb(114, 170, 255);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
@media (max-width: 900px) {
  section::before {
    width: 75px;
    height: 75px;
    filter: blur(35px);
    opacity: 0.5;
  }
}

section::after {
  content: "";
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 150px;
  height: 150px;
  z-index: 0;
  background-color: rgb(255, 114, 116);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
@media (max-width: 900px) {
  section::after {
    width: 75px;
    height: 75px;
    filter: blur(35px);
    opacity: 0.5;
  }
}

ul {
  list-style: none;
}

ol {
  list-style: none;
}

dl {
  line-height: 1.2;
  font-family: "Zen Maru Gothic", sans-serif;
}

a {
  display: inline-block;
  text-decoration: none;
  color: rgb(246, 251, 246);
  transition: all 0.6s ease;
}

.more_btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 40px;
  border: 2px solid rgb(54, 163, 7);
  border-radius: 30px;
  background-color: rgb(54, 163, 7);
}
.more_btn span {
  margin-left: 8px;
  padding: 7px 10px;
  border: 1px solid rgb(246, 251, 246);
  border-radius: 50%;
}

.more_btn:hover {
  background-color: rgb(246, 251, 246);
  color: rgb(54, 163, 7);
}
.more_btn:hover span {
  border-color: rgb(54, 163, 7);
}

.section_title {
  margin-bottom: 80px;
  line-height: 1.2;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  font-size: 42px;
  font-family: "Yomogi", cursive;
  color: rgb(54, 163, 7);
}
.section_title .section_logo {
  width: 55px;
  height: 51px;
}
.section_title .sub_sectiontitle {
  font-size: 22px;
  color: rgb(51, 51, 51);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
@media (max-width: 900px) {
  .section_title .sub_sectiontitle {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .section_title {
    margin-bottom: 56px;
    font-size: 32px;
  }
}

img {
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

p {
  line-height: 1.8;
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgb(54, 163, 7);
}
@media (max-width: 900px) {
  p {
    font-size: 14px;
  }
}

.fadein {
  width: 100%;
  opacity: 0;
  transition: all 1s ease;
  transform: translateY(40px);
}

.page_mainvisual {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 600px;
  max-width: 1460px;
  margin: 0 auto;
  margin-top: 0;
  background-image: url(/img/room1.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.page_mainvisual .page_title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 600px;
  padding: 30px;
  border-radius: 20px;
  background-color: rgb(246, 251, 246);
  font-size: 56px;
  font-family: "Yomogi", cursive;
  color: rgb(54, 163, 7);
}
@media (max-width: 900px) {
  .page_mainvisual .page_title {
    max-width: 300px;
    padding: 15px;
    font-size: 32px;
  }
}

.page_mainvisual::before {
  display: none;
}

.page_mainvisual::after {
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 90%;
  max-width: 2000px;
  height: 80px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 50px;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(246, 251, 246, 0.8);
  z-index: 100;
}
header h1 {
  padding-top: 10px;
}
header h1 a img {
  width: 65px;
  height: 59px;
}
header nav {
  width: 100%;
  display: block;
}
header nav ul {
  display: flex;
  font-size: 16px;
  justify-content: right;
}
header nav ul li {
  font-family: "Yomogi", cursive;
  margin-right: 20px;
}
header nav ul li a {
  display: inline-block;
  padding: 10px 0;
  color: rgb(54, 163, 7);
}
header nav ul li a:hover {
  color: rgb(51, 51, 51);
}
header nav ul .header_contact_btn {
  margin-right: 0;
}
header nav ul .header_contact_btn a {
  padding: 10px 20px;
  border: 2px solid rgb(255, 209, 102);
  border-radius: 50px;
  background-color: rgb(255, 209, 102);
  color: rgb(246, 251, 246);
}
header nav ul .header_contact_btn a:hover {
  background-color: rgb(246, 251, 246);
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
}
header .toggle_btn {
  display: none;
}
@media (max-width: 900px) {
  header .toggle_btn {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: rgb(255, 209, 102);
    transition: all 0.5s;
    cursor: pointer;
    z-index: 10;
    /*ハンバーガーメニューの線の設定（メニューが閉じている時）*/
  }
  header .toggle_btn span {
    display: block;
    width: 50%;
    height: 2px;
    background-color: rgb(246, 251, 246);
    transition: all 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .toggle_btn {
    /*1本目の線の位置を設定*/
  }
  header .toggle_btn span:nth-child(1) {
    top: 40%;
  }
  header .toggle_btn {
    /*2本目の線の位置を設定*/
  }
  header .toggle_btn span:nth-child(2) {
    top: 60%;
  }
}
header .toggle_btn .toggle_btn:hover {
  opacity: 0.5;
}
@media (max-width: 900px) {
  header {
    width: 95%;
    padding: 0 24px;
  }
  header .mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
    background-color: rgba(246, 251, 246, 0.6);
    z-index: -5;
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 900px) {
  .open {
    background-color: rgba(246, 251, 246, 0);
    transition: all 0.6s;
  }
  .open .close-logo {
    visibility: hidden;
  }
  .open nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    margin: auto;
    margin-top: 200px;
    margin-bottom: 40px;
    text-align: center;
    border: 2px solid rgb(54, 163, 7);
    border-radius: 30px;
    background-color: rgb(246, 251, 246);
    transition: all 0.6s ease;
    visibility: visible;
    opacity: 1;
    color: rgb(54, 163, 7);
    z-index: 10;
  }
  .open nav ul {
    flex-direction: column;
    padding-top: 20px;
    font-size: 14px;
  }
  .open nav ul li {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .open nav ul .header_contact_btn {
    margin-bottom: 30px;
  }
  .open nav ul .header_contact_btn a {
    padding: 10px 72px;
  }
  .open .toggle_btn span {
    left: 13px;
  }
  .open .toggle_btn {
    /*1本目の線を-45度回転
    transformで線のど真ん中の点を中心に動く*/
  }
  .open .toggle_btn span:nth-child(1) {
    transform: rotate(-45deg);
    top: 50%;
  }
  .open .toggle_btn {
    /*2本目の線を45度回転*/
  }
  .open .toggle_btn span:nth-child(2) {
    transform: rotate(45deg);
    top: 50%;
  }
  .open .mask {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.6s ease;
    visibility: visible;
    background-color: rgba(246, 251, 246, 0.6);
    opacity: 1;
    z-index: 5;
  }
}

footer {
  position: relative;
  width: 100%;
  margin-top: 180px;
  padding-top: 32px;
  padding-bottom: 24px;
  text-align: center;
  background-color: rgb(54, 163, 7);
}
footer .footer_wrapper {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  padding: 35px 0;
  align-items: center;
  border-bottom: 1px solid rgb(246, 251, 246);
}
footer .footer_wrapper .footer_logo {
  width: 60px;
  height: 60px;
}
@media (max-width: 900px) {
  footer .footer_wrapper .footer_logo {
    margin-bottom: 24px;
  }
}
footer .footer_wrapper .footer_nav {
  display: flex;
}
footer .footer_wrapper .footer_nav li {
  margin-right: 20px;
}
footer .footer_wrapper .footer_nav li a:hover {
  color: rgb(51, 51, 51);
}
@media (max-width: 900px) {
  footer .footer_wrapper .footer_nav li {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  footer .footer_wrapper .footer_nav {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 320px;
  }
}
@media (max-width: 900px) {
  footer .footer_wrapper {
    flex-direction: column;
    padding: 0;
  }
}
footer .copy {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  padding-top: 20px;
}
footer .copy p, footer .copy .privacypolicy_btn {
  font-size: 10px;
  color: rgb(246, 251, 246);
}

footer::before {
  content: "";
  position: absolute;
  right: 0;
  top: -34%;
  z-index: -10;
  width: 400px;
  height: 100%;
  background-image: url(/img/ロゴマーク_grace.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  footer::before {
    top: -14%;
    width: 190px;
  }
}

.mainvisual {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 1460px;
  padding-top: 0;
}
.mainvisual .catchphrase {
  position: absolute;
  left: 4%;
  bottom: 20%;
  z-index: 50;
  width: 100%;
  max-width: 800px;
  text-align: left;
  font-size: 48px;
  font-family: "Klee One", cursive;
  color: rgb(54, 163, 7);
}
.mainvisual .catchphrase span {
  display: inline;
  background-color: rgb(246, 251, 246);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .mainvisual .catchphrase {
    max-width: 295px;
    font-size: 24px;
  }
}
.mainvisual .slide {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
}
.mainvisual .slide li {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  animation: fade 15s infinite;
}
.mainvisual .slide li img {
  width: 100%;
  height: 580px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.mainvisual .slide li:nth-child(1) {
  animation-delay: 0s;
}
.mainvisual .slide li:nth-child(2) {
  animation-delay: 5s;
}
.mainvisual .slide li:nth-child(3) {
  animation-delay: 10s;
}
.mainvisual .slide li::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0px 0px 20px 16px rgb(255, 255, 255);
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.mainvisual::before {
  display: none;
}

.mainvisual::after {
  display: none;
}

.about {
  position: relative;
}
.about .about_text p {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .about .about_text p {
    font-size: 16px;
  }
}

.about::before {
  top: 10%;
  width: 200px;
  height: 200px;
  background-color: rgb(114, 170, 255);
}
@media (max-width: 900px) {
  .about::before {
    width: 100px;
    height: 100px;
  }
}

.about::after {
  bottom: -60%;
  width: 300px;
  height: 300px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .about::after {
    bottom: 0;
    width: 150px;
    height: 150px;
  }
}

.images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.images img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .images {
    gap: 40px;
  }
}

.images::before {
  display: none;
}

.images::after {
  display: none;
}

.price {
  position: relative;
}
.price .price_text p {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .price .price_text p {
    font-size: 16px;
  }
}

.price::before {
  top: 10%;
  right: 0%;
  left: unset;
  width: 200px;
  height: 200px;
  background-color: rgb(114, 170, 255);
}
@media (max-width: 900px) {
  .price::before {
    width: 100px;
    height: 100px;
  }
}

.price::after {
  left: 0%;
  bottom: -60%;
  width: 200px;
  height: 200px;
  background-color: rgb(255, 114, 116);
}
@media (max-width: 900px) {
  .price::after {
    bottom: 0;
    width: 100px;
    height: 100px;
  }
}

.news article {
  position: relative;
  height: auto;
  min-height: 900px;
  margin: 32px auto;
  padding: 40px 48px;
  border-radius: 30px;
  background-color: #fff;
  text-align: left;
}
.news article img {
  display: block;
  width: 100%;
  max-width: 660px;
  height: auto;
  max-height: 360px;
  margin: auto;
  margin-bottom: 24px;
  border-radius: 30px;
}
.news article .article_title {
  font-size: 32px;
}
@media (max-width: 900px) {
  .news article .article_title {
    font-size: 20px;
  }
}
.news article .article_date {
  font-size: 12px;
}
@media (max-width: 900px) {
  .news article .article_date {
    font-size: 10px;
  }
}
.news article .article_text {
  margin-top: 24px;
}
.news article .article_text p {
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .news article {
    min-height: 680px;
  }
}
.news .news_wrapper {
  max-width: 680px;
  margin: auto;
}
.news .news_wrapper .news_undertext {
  display: inline-block;
  margin: auto;
}
.news .news_wrapper .news_undertext p {
  background-color: rgb(255, 250, 234);
  margin-bottom: 16px;
}
.news .news_wrapper .news_instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: auto;
  margin-top: 32px;
  font-size: 20px;
  color: rgb(51, 51, 51);
}
@media (max-width: 900px) {
  .news .news_wrapper .news_instagram {
    font-size: 14px;
  }
}
.news .news_wrapper .news_instagram .news_instagram_icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}
.news .news_wrapper .news_instagram:hover {
  color: rgb(54, 163, 7);
}

.news::before {
  top: 15%;
  left: -20%;
  width: 300px;
  height: 300px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .news::before {
    width: 200px;
    height: 200px;
  }
}

.news::after {
  bottom: -10%;
  width: 300px;
  height: 300px;
  z-index: -1;
  background-color: rgb(114, 170, 255);
}
@media (max-width: 900px) {
  .news::after {
    bottom: -5%;
    width: 150px;
    height: 150px;
  }
}

.access {
  max-width: 1000px;
}
.access .access_wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 16px 16px;
  align-items: center;
  border-radius: 30px;
  background-color: rgb(54, 163, 7);
}
.access .access_wrapper .map {
  width: 60%;
  margin-right: 48px;
}
.access .access_wrapper .map iframe {
  width: 100%;
  max-width: 470px;
  height: 440px;
  border-radius: 30px;
}
@media (max-width: 900px) {
  .access .access_wrapper .map iframe {
    max-width: none;
    height: 300px;
  }
}
@media (max-width: 900px) {
  .access .access_wrapper .map {
    width: 100%;
    margin-right: 0;
  }
}
.access .access_wrapper .daycare_information {
  width: 35%;
  text-align: left;
  color: rgb(246, 251, 246);
}
.access .access_wrapper .daycare_information .daycare_name {
  font-size: 20px;
  color: rgb(246, 251, 246);
}
@media (max-width: 900px) {
  .access .access_wrapper .daycare_information .daycare_name {
    font-size: rgb(54, 163, 7);
  }
}
.access .access_wrapper .daycare_information dl dt {
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}
.access .access_wrapper .daycare_information dl dt img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.access .access_wrapper .daycare_information dl dt .access_icon4 {
  width: 30px;
}
.access .access_wrapper .daycare_information dl dd {
  padding-left: 32px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgb(246, 251, 246);
}
.access .access_wrapper .daycare_information dl dd:last-child {
  border-bottom: none;
}
@media (max-width: 900px) {
  .access .access_wrapper .daycare_information dl {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .access .access_wrapper .daycare_information {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .access .access_wrapper {
    flex-direction: column-reverse;
  }
}
@media (max-width: 900px) {
  .access {
    max-width: 600px;
  }
}

.access::before {
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background-color: rgb(255, 114, 116);
}
@media (max-width: 900px) {
  .access::before {
    width: 150px;
    height: 150px;
  }
}

.access::after {
  right: 0%;
  bottom: -15%;
  width: 200px;
  height: 200px;
  z-index: -1;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .access::after {
    bottom: -5%;
    width: 100px;
    height: 100px;
  }
}

.contact {
  position: relative;
}
.contact .contact_wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.contact .contact_wrapper a {
  margin-top: 20px;
}
@media (max-width: 900px) {
  .contact .contact_wrapper a {
    font-size: 14px;
  }
}
.contact .contact_wrapper .contact_btn {
  padding: 10px 20px;
  border: 2px solid rgb(255, 209, 102);
  border-radius: 50px;
  background-color: rgb(255, 209, 102);
  color: rgb(246, 251, 246);
}
.contact .contact_wrapper .contact_btn:hover {
  background-color: rgb(246, 251, 246);
  color: rgb(51, 51, 51);
}
.contact .contact_wrapper .contact_line {
  color: rgb(51, 51, 51);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact .contact_wrapper .contact_line .contact_line_icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}
.contact .contact_wrapper .contact_line:hover {
  color: rgb(54, 163, 7);
}
@media (max-width: 900px) {
  .contact .contact_wrapper {
    max-width: 320px;
  }
}

.feature {
  position: relative;
  max-width: 1500px;
}
.feature .feature_contents .feature_content1, .feature .feature_contents .feature_content2 {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  align-items: center;
}
.feature .feature_contents .feature_content1 img, .feature .feature_contents .feature_content2 img {
  width: 45%;
  height: 470px;
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content1 img, .feature .feature_contents .feature_content2 img {
    width: 100%;
    height: 250px;
  }
}
.feature .feature_contents .feature_content1 .feature_content_img1, .feature .feature_contents .feature_content2 .feature_content_img1 {
  margin-right: 40px;
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content1 .feature_content_img1, .feature .feature_contents .feature_content2 .feature_content_img1 {
    margin-right: 0;
  }
}
.feature .feature_contents .feature_content1 .feature_content_wrapper, .feature .feature_contents .feature_content2 .feature_content_wrapper {
  width: 55%;
  padding: 10px;
  text-align: left;
}
.feature .feature_contents .feature_content1 .feature_content_wrapper .feature_content_title, .feature .feature_contents .feature_content2 .feature_content_wrapper .feature_content_title {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content1 .feature_content_wrapper .feature_content_title, .feature .feature_contents .feature_content2 .feature_content_wrapper .feature_content_title {
    line-height: 1.2;
    font-size: 32px;
  }
}
.feature .feature_contents .feature_content1 .feature_content_wrapper .feature_content_text, .feature .feature_contents .feature_content2 .feature_content_wrapper .feature_content_text {
  width: 90%;
}
.feature .feature_contents .feature_content1 .feature_content_wrapper .feature_content_text p, .feature .feature_contents .feature_content2 .feature_content_wrapper .feature_content_text p {
  margin-bottom: 16px;
  font-size: 22px;
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content1 .feature_content_wrapper .feature_content_text p, .feature .feature_contents .feature_content2 .feature_content_wrapper .feature_content_text p {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content1 .feature_content_wrapper .feature_content_text, .feature .feature_contents .feature_content2 .feature_content_wrapper .feature_content_text {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content1 .feature_content_wrapper, .feature .feature_contents .feature_content2 .feature_content_wrapper {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content1, .feature .feature_contents .feature_content2 {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.feature .feature_contents .feature_content2 {
  position: relative;
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content2 {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}
.feature .feature_contents .feature_content2::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 200px;
  height: 200px;
  z-index: 0;
  background-color: rgb(255, 114, 116);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
@media (max-width: 900px) {
  .feature .feature_contents .feature_content2::after {
    bottom: -10%;
    left: -30%;
    width: 130px;
    height: 130px;
    filter: blur(35px);
    opacity: 0.5;
  }
}
@media (max-width: 900px) {
  .feature {
    max-width: 400px;
  }
}

.feature::before {
  top: 10%;
  width: 200px;
  height: 200px;
  background-color: rgb(114, 170, 255);
}
@media (max-width: 900px) {
  .feature::before {
    top: 4%;
    left: -14%;
    width: 100px;
    height: 100px;
  }
}

.feature::after {
  bottom: 35%;
  width: 300px;
  height: 300px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .feature::after {
    bottom: 45%;
    width: 150px;
    height: 150px;
  }
}

.style {
  position: relative;
}
.style .style_text p {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
}

.style::before {
  top: 10%;
  width: 200px;
  height: 200px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .style::before {
    top: 4%;
    left: -14%;
    width: 100px;
    height: 100px;
  }
}

.style::after {
  bottom: -85%;
  width: 200px;
  height: 200px;
  background-color: rgb(114, 170, 255);
}
@media (max-width: 900px) {
  .style::after {
    bottom: -45%;
    width: 150px;
    height: 150px;
  }
}

.staffprofile {
  position: relative;
  max-width: 1500px;
}
.staffprofile .staffs {
  display: flex;
  justify-content: center;
}
.staffprofile .staffs .staff {
  display: flex;
  justify-content: center;
  width: 45%;
  margin-right: 40px;
}
.staffprofile .staffs .staff img {
  width: 200px;
  height: 200px;
  margin-right: 20px;
  border: 2px solid rgb(54, 163, 7);
  border-radius: 50%;
}
@media (max-width: 900px) {
  .staffprofile .staffs .staff img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.staffprofile .staffs .staff .staff_wrapper {
  text-align: left;
}
.staffprofile .staffs .staff .staff_wrapper .name {
  margin-bottom: 20px;
  line-height: 1.2;
}
.staffprofile .staffs .staff .staff_wrapper .name span {
  font-size: 40px;
}
@media (max-width: 900px) {
  .staffprofile .staffs .staff .staff_wrapper .name span {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .staffprofile .staffs .staff .staff_wrapper .name {
    font-size: 12px;
  }
}
.staffprofile .staffs .staff .staff_wrapper .license .license_title {
  font-size: 20px;
  font-weight: 600;
}
.staffprofile .staffs .staff .staff_wrapper .license ul li {
  color: rgb(54, 163, 7);
}
@media (max-width: 900px) {
  .staffprofile .staffs .staff .staff_wrapper .license {
    text-align: left;
  }
}
@media (max-width: 900px) {
  .staffprofile .staffs .staff .staff_wrapper {
    text-align: center;
  }
}
@media (max-width: 900px) {
  .staffprofile .staffs .staff {
    flex-wrap: wrap;
    width: 100%;
    margin-right: 0;
    margin-bottom: 80px;
  }
}
.staffprofile .staffs .staff:last-child {
  margin-right: 0;
}
@media (max-width: 900px) {
  .staffprofile .staffs .staff:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 900px) {
  .staffprofile .staffs {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .staffprofile {
    max-width: 400px;
  }
}

.staffprofile::before {
  top: 10%;
  right: 0;
  left: unset;
  width: 100px;
  height: 100px;
  background-color: rgb(255, 114, 116);
}
@media (max-width: 900px) {
  .staffprofile::before {
    top: 10%;
    width: 80px;
    height: 80px;
  }
}

.staffprofile::after {
  bottom: -45%;
  right: unset;
  left: 12%;
  width: 300px;
  height: 300px;
  background-color: rgb(114, 170, 255);
}
@media (max-width: 900px) {
  .staffprofile::after {
    bottom: 15%;
    width: 150px;
    height: 150px;
  }
}

.about_contact::before {
  display: none;
}

.about_contact::after {
  bottom: -55%;
  right: 25%;
  width: 150px;
  height: 150px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .about_contact::after {
    bottom: -30%;
    width: 80px;
    height: 80px;
  }
}

.page_price {
  position: relative;
  max-width: 1500px;
}
.page_price table {
  max-width: 1000px;
  border: 2px solid rgb(54, 163, 7);
  margin: 32px auto;
  border-radius: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.page_price table tr th {
  height: 70px;
  font-size: 24px;
  color: rgb(246, 251, 246);
}
@media (max-width: 900px) {
  .page_price table tr th {
    font-size: 14px;
    height: 35px;
  }
}
.page_price table tr th:first-child {
  border-radius: 10px 0 0 0;
}
.page_price table tr th:last-child {
  border-radius: 0 10px 0 0;
}
.page_price table tr td {
  width: 20%;
  height: 100px;
  border-right: 2px solid rgb(54, 163, 7);
  border-bottom: 2px solid rgb(54, 163, 7);
  font-size: 18px;
  font-weight: 600;
  color: rgb(54, 163, 7);
}
@media (max-width: 900px) {
  .page_price table tr td {
    height: 50px;
    font-size: 12px;
  }
}
.page_price table tr td:last-child {
  width: 60%;
  padding: 20px;
  border-right: none;
  text-align: left;
  font-weight: 100;
}
@media (max-width: 900px) {
  .page_price table tr td:last-child {
    padding: 10px;
  }
}
.page_price table tr:last-child td {
  border-bottom: none;
}
.page_price .page_price_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: 1050px;
  margin: 32px auto;
  text-align: left;
}
.page_price .page_price_inner .target, .page_price .page_price_inner .paymentmethod, .page_price .page_price_inner .option {
  color: rgb(54, 163, 7);
}
.page_price .page_price_inner .target .inner_title, .page_price .page_price_inner .paymentmethod .inner_title, .page_price .page_price_inner .option .inner_title {
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .page_price .page_price_inner .target .inner_title, .page_price .page_price_inner .paymentmethod .inner_title, .page_price .page_price_inner .option .inner_title {
    font-size: 18px;
  }
}
.page_price .page_price_inner .target, .page_price .page_price_inner .paymentmethod {
  width: 48%;
}
@media (max-width: 900px) {
  .page_price .page_price_inner .target, .page_price .page_price_inner .paymentmethod {
    width: 100%;
  }
}
.page_price .page_price_inner .target ul li {
  margin-bottom: 20px;
  font-size: 18px;
}
.page_price .page_price_inner .target ul li span {
  color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .page_price .page_price_inner .target ul li {
    margin-bottom: 8px;
    font-size: 14px;
  }
}
.page_price .page_price_inner .paymentmethod p {
  font-size: 18px;
}
@media (max-width: 900px) {
  .page_price .page_price_inner .paymentmethod p {
    font-size: 14px;
  }
}
.page_price .page_price_inner .option {
  width: 100%;
}
.page_price .page_price_inner .option .options {
  display: flex;
  justify-content: space-between;
}
.page_price .page_price_inner .option .options .option1, .page_price .page_price_inner .option .options .option2 {
  width: 45%;
}
.page_price .page_price_inner .option .options .option1 .option_title, .page_price .page_price_inner .option .options .option2 .option_title {
  font-size: 20px;
}
@media (max-width: 900px) {
  .page_price .page_price_inner .option .options .option1 .option_title, .page_price .page_price_inner .option .options .option2 .option_title {
    font-size: 16px;
  }
}
.page_price .page_price_inner .option .options .option1 dl, .page_price .page_price_inner .option .options .option2 dl {
  display: flex;
  flex-wrap: wrap;
}
.page_price .page_price_inner .option .options .option1 dl dt, .page_price .page_price_inner .option .options .option2 dl dt {
  width: 80%;
  padding: 20px;
  border-bottom: 2px dashed rgb(54, 163, 7);
}
.page_price .page_price_inner .option .options .option1 dl dt span, .page_price .page_price_inner .option .options .option2 dl dt span {
  color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .page_price .page_price_inner .option .options .option1 dl dt, .page_price .page_price_inner .option .options .option2 dl dt {
    width: 70%;
    padding: 8px;
  }
}
.page_price .page_price_inner .option .options .option1 dl dd, .page_price .page_price_inner .option .options .option2 dl dd {
  width: 20%;
  padding: 20px;
  border-bottom: 2px dashed rgb(54, 163, 7);
}
@media (max-width: 900px) {
  .page_price .page_price_inner .option .options .option1 dl dd, .page_price .page_price_inner .option .options .option2 dl dd {
    width: 30%;
    padding: 8px;
    text-align: right;
  }
}
@media (max-width: 900px) {
  .page_price .page_price_inner .option .options .option1 dl, .page_price .page_price_inner .option .options .option2 dl {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .page_price .page_price_inner .option .options .option1, .page_price .page_price_inner .option .options .option2 {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 900px) {
  .page_price .page_price_inner .option .options {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .page_price .page_price_inner .option {
    text-align: left;
  }
}
@media (max-width: 900px) {
  .page_price .page_price_inner {
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
  }
}
.page_price .option_text {
  width: 100%;
  max-width: 1050px;
  margin: auto;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: rgb(51, 51, 51);
}
.page_price .option_text span {
  display: inline;
  padding: 5px;
  background-color: rgb(255, 250, 234);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 2.4;
}
@media (max-width: 900px) {
  .page_price .option_text span {
    padding: 2px;
  }
}
@media (max-width: 900px) {
  .page_price .option_text {
    text-align: center;
    font-size: 12px;
  }
}
.page_price .page_price_items {
  display: flex;
  overflow-x: auto;
  gap: 32px;
  width: 100%;
  max-width: 1050px;
  margin: auto;
  margin-top: 64px;
}
.page_price .page_price_items .item {
  min-width: 200px;
  height: auto;
  flex-shrink: 0;
}
.page_price .page_price_items .item .item_img {
  width: 400px;
  height: 250px;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .page_price .page_price_items .item .item_img {
    width: 300px;
    height: 180px;
  }
}
.page_price .page_price_items .item .item_name {
  display: flex;
  justify-content: right;
  align-items: center;
  text-align: right;
}
.page_price .page_price_items .item .item_name .item_icon {
  width: 24px;
  height: 29px;
  margin-right: 8px;
}
@media (max-width: 900px) {
  .page_price .page_price_items .item .item_name .item_icon {
    width: 12px;
    height: 14px;
  }
}
.page_price .page_price_items .item .item_name .clothes_icon {
  width: 32px;
  height: 29px;
}
@media (max-width: 900px) {
  .page_price .page_price_items .item .item_name .clothes_icon {
    width: 16px;
    height: 14px;
  }
}
.page_price .page_price_items .item .item_name .item_text {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .page_price .page_price_items .item .item_name .item_text {
    font-size: 12px;
    font-weight: 400;
  }
}
.page_price .page_price_items::-webkit-scrollbar {
  display: none;
}
@media (max-width: 900px) {
  .page_price {
    max-width: 600px;
  }
}

.page_price::before {
  top: 10%;
  width: 200px;
  height: 200px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .page_price::before {
    top: 4%;
    left: 0;
    width: 100px;
    height: 100px;
  }
}

.page_price::after {
  bottom: 42%;
  width: 200px;
  height: 200px;
  background-color: rgb(114, 170, 255);
}
@media (max-width: 900px) {
  .page_price::after {
    bottom: 48%;
    width: 130px;
    height: 130px;
  }
}

.flow {
  position: relative;
  max-width: 1200px;
}
.flow ol {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.flow ol li {
  width: 100%;
  max-width: 287px;
  height: auto;
  padding: 12px;
  border: 2px solid rgb(54, 163, 7);
  border-radius: 30px;
  text-align: left;
}
.flow ol li .flow_steptitle {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .flow ol li {
    height: 200px;
  }
}
@media (max-width: 900px) {
  .flow ol {
    flex-wrap: wrap;
    width: 100%;
    max-width: 320px;
    margin: auto;
  }
}

.flow::before {
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background-color: rgb(255, 114, 116);
}
@media (max-width: 900px) {
  .flow::before {
    top: 5%;
    left: 5%;
    width: 100px;
    height: 100px;
  }
}

.flow::after {
  right: 0%;
  bottom: -45%;
  width: 200px;
  height: 200px;
  z-index: 0;
  background-color: rgb(114, 170, 255);
}
@media (max-width: 900px) {
  .flow::after {
    right: 10%;
    bottom: 35%;
    width: 100px;
    height: 100px;
  }
}

.price_contact::after {
  bottom: -55%;
  right: 25%;
  width: 150px;
  height: 150px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .price_contact::after {
    bottom: -30%;
    width: 80px;
    height: 80px;
  }
}

.tell {
  position: relative;
}
.tell .tell_toptext {
  margin-bottom: 20px;
}
.tell h3 {
  font-size: 48px;
}
.tell h3 img {
  width: 60px;
  height: 65px;
  margin-right: 16px;
}
@media (max-width: 900px) {
  .tell h3 img {
    width: 20px;
    height: 21px;
  }
}
@media (max-width: 900px) {
  .tell h3 {
    font-size: 26px;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
}
.tell .tell_number, .tell .tell_time {
  font-weight: 600;
  color: rgb(51, 51, 51);
}
.tell .tell_number {
  font-size: 40px;
}
@media (max-width: 900px) {
  .tell .tell_number {
    font-size: 20px;
  }
}
.tell .tell_time {
  font-size: 20px;
}
@media (max-width: 900px) {
  .tell .tell_time {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .tell .tell_text {
    font-size: 12px;
  }
}
.tell .tell_line {
  margin-top: 40px;
}
.tell .tell_line .tell_line_text {
  margin-bottom: 20px;
  font-size: 20px;
}
@media (max-width: 900px) {
  .tell .tell_line .tell_line_text {
    font-size: 14px;
  }
}
.tell .tell_line .tell_line_btn {
  display: inline-block;
  padding: 16px 40px;
  padding-top: 12px;
  border: 2px solid rgb(54, 163, 7);
  border-radius: 40px;
  background-color: rgb(54, 163, 7);
  font-size: 20px;
  align-items: center;
}
.tell .tell_line .tell_line_btn img {
  width: 43px;
  height: 33px;
  margin-left: 8px;
}
@media (max-width: 900px) {
  .tell .tell_line .tell_line_btn img {
    width: 38px;
    height: 30px;
  }
}
@media (max-width: 900px) {
  .tell .tell_line .tell_line_btn {
    padding-top: 4px;
    font-size: 16px;
  }
}
.tell .tell_line .tell_line_btn:hover {
  background-color: rgb(246, 251, 246);
  color: rgb(54, 163, 7);
}

@media (max-width: 900px) {
  .contactform h3 {
    font-size: 26px;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
}
.contactform {
  position: relative;
  max-width: 1500px;
}
.contactform form {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 20px 40px;
  border-radius: 50px;
  background-color: rgb(54, 163, 7);
}
.contactform form dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
  padding: 16px;
}
.contactform form dl dt {
  width: 35%;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px dashed rgb(246, 251, 246);
  color: rgb(246, 251, 246);
}
.contactform form dl dt p {
  margin-bottom: 0;
  color: rgb(246, 251, 246);
}
@media (max-width: 900px) {
  .contactform form dl dt {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.contactform form dl dt:last-of-type {
  border-bottom: none;
}
.contactform form dl dd {
  width: 65%;
  margin-bottom: 20px;
  border-bottom: 2px dashed rgb(246, 251, 246);
  line-height: 30px;
}
.contactform form dl dd .text {
  width: 100%;
  height: 3em;
  margin-bottom: 20px;
  padding: 5px;
  border-radius: 10px;
  background-color: rgb(246, 251, 246);
  line-height: 1;
}
.contactform form dl dd .message {
  width: 100%;
  height: 10em;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 10px;
  background-color: rgb(246, 251, 246);
  line-height: 1;
}
@media (max-width: 900px) {
  .contactform form dl dd {
    margin-bottom: 24px;
  }
}
.contactform form dl dd:last-child {
  border-bottom: none;
}
@media (max-width: 900px) {
  .contactform form dl {
    margin-bottom: 0;
  }
}
.contactform form .form-btn {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 16px 40px;
  border: 3px solid rgb(246, 251, 246);
  border-radius: 30px;
  background-color: rgb(246, 251, 246);
  color: rgb(54, 163, 7);
  transition: all 0.3s ease;
}
@media (max-width: 900px) {
  .contactform form .form-btn {
    max-width: 230px;
    padding: 8px 24px;
  }
}
.contactform form .wpcf7-spinner {
  display: none;
}
.contactform form .form-btn:hover {
  background-color: rgb(54, 163, 7);
  color: rgb(246, 251, 246);
}
.contactform form .form-btn:active {
  box-shadow: none;
  transform: translateY(4px);
}
@media (max-width: 900px) {
  .contactform form {
    max-width: 550px;
    padding: 24px 0;
  }
}

.contactform::before {
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .contactform::before {
    width: 150px;
    height: 150px;
  }
}

.contactform::after {
  right: 0%;
  bottom: -15%;
  width: 200px;
  height: 200px;
  background-color: rgb(255, 209, 102);
}
@media (max-width: 900px) {
  .contactform::after {
    width: 150px;
    height: 150px;
  }
}

.information {
  position: relative;
  max-width: 1200px;
}
.information .information_wrapper {
  text-align: left;
}
.information .information_wrapper .information_wrapper_title {
  display: flex;
  justify-content: left;
  margin-bottom: 32px;
  text-align: center;
}
.information .information_wrapper .information_wrapper_title .facilityname_img {
  width: 86px;
  height: 80px;
  margin-right: 20px;
}
@media (max-width: 900px) {
  .information .information_wrapper .information_wrapper_title .facilityname_img {
    width: 44px;
    height: 41px;
    margin-right: 16px;
  }
}
.information .information_wrapper .information_wrapper_title .facilityname {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .information .information_wrapper .information_wrapper_title .facilityname {
    font-size: 20px;
  }
}
.information .information_wrapper .information_inner {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
}
.information .information_wrapper .information_inner dl {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  padding: 16px;
  color: rgb(54, 163, 7);
}
.information .information_wrapper .information_inner dl dt {
  width: 35%;
  height: 20%;
  min-height: 100px;
  padding: 8px;
  border-bottom: 2px dashed rgb(54, 163, 7);
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .information .information_wrapper .information_inner dl dt {
    font-size: 16px;
  }
}
.information .information_wrapper .information_inner dl dt:last-of-type {
  border-bottom: none;
}
.information .information_wrapper .information_inner dl dd {
  width: 65%;
  height: 20%;
  min-height: 100px;
  padding: 8px;
  border-bottom: 2px dashed rgb(54, 163, 7);
}
@media (max-width: 900px) {
  .information .information_wrapper .information_inner dl dd {
    font-size: 14px;
  }
}
.information .information_wrapper .information_inner dl dd:last-child {
  border-bottom: none;
}
@media (max-width: 900px) {
  .information .information_wrapper .information_inner dl {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .information .information_wrapper .information_inner .information1 {
    border-bottom: 2px dashed rgb(54, 163, 7);
  }
}
@media (max-width: 900px) {
  .information .information_wrapper .information_inner {
    flex-direction: column;
  }
}
.information .information_wrapper .map {
  width: 100%;
}
.information .information_wrapper .map iframe {
  width: 100%;
  margin-top: 40px;
  border-radius: 30px;
}

.privacypolicy_text_wrapper {
  max-width: 900px;
  margin: auto;
  padding: 16px;
}
.privacypolicy_text_wrapper .privacypolicy_main_title, .privacypolicy_text_wrapper .text_wrapper_title, .privacypolicy_text_wrapper .privacypolicy_text {
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgb(51, 51, 51);
}
.privacypolicy_text_wrapper .privacypolicy_list li {
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgb(51, 51, 51);
}
.privacypolicy_text_wrapper .privacypolicy_info {
  display: flex;
  flex-wrap: wrap;
}
.privacypolicy_text_wrapper .privacypolicy_info dt {
  width: 25%;
  margin-bottom: 5px;
}
.privacypolicy_text_wrapper .privacypolicy_info dd {
  width: 75%;
  margin-bottom: 8px;
  margin-left: 0;
}

.privacypolicy_text_wrapper:first-child {
  margin-top: 180px;
}/*# sourceMappingURL=style.css.map */