@charset "UTF-8";
/* 
Theme Name: リムの郷
Author: tokka
Author URI: https://tokka.co.jp/
Version: 1.0
*/
/* CSS Document */
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}
@media (max-width: 1200px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  width: 100%;
  height: 100%;
  font-size: 1.6em;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  font-size: clamp(1.6rem, 1.267rem + 0.28vw, 1.8rem);
  font-weight: 500;
  overflow-x: hidden;
}

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

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.fw600 {
  font-weight: 600;
}

.fwB {
  font-weight: bold;
}

.space {
  margin-top: 128px;
}

.iB {
  display: inline-block;
}

/* ------------------------------------- /
/   inner
/* ------------------------------------- */
.inner {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 min(6%, 100px);
}

@media screen and (max-width: 600px) {
  .inner {
    padding: 0 4%;
  }
}
/* ------------------------------------- /
/   pc-none、sp-none
/* ------------------------------------- */
.pc-none {
  display: none;
}

.pc-none768 {
  display: none;
}

.pc-none__inline {
  display: none;
}

.pc-none__inline768 {
  display: none;
}

.pc-none__inline1200 {
  display: none;
}

@media screen and (max-width: 1200px) {
  .pc-none__inline1200 {
    display: inline;
  }
  .sp-none1200 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc-none768 {
    display: block;
  }
  .pc-none__inline768 {
    display: inline;
  }
  .sp-none768 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .pc-none {
    display: block;
  }
  .pc-none__inline {
    display: inline;
  }
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
:root {
  --color-black: #2E2E2E;
  --color-orange: #B7624D;
}

body {
  font-family: "Zen Maru Gothic", serif;
  background-color: #ffffff;
  color: var(--color-black);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  text-decoration: none;
}

h2 {
  font-size: clamp(3rem, 2.167rem + 0.69vw, 3.5rem);
  font-weight: 700;
}
@media (max-width: 1200px) {
  h2 {
    font-size: clamp(2.4rem, 2.127rem + 0.73vw, 3rem);
  }
}

.contact-tel {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.42;
}
@media (max-width: 768px) {
  .contact-tel {
    font-size: 1.8rem;
  }
}

.title-wrapper {
  color: var(--color-orange);
  text-align: center;
}
.title-wrapper .title-ja {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .title-wrapper .title-ja {
    font-size: 2.8rem;
  }
}
.title-wrapper .title-en {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.7;
  letter-spacing: 0.25rem;
}
@media (max-width: 768px) {
  .title-wrapper .title-en {
    font-size: 1.4rem;
  }
}

.btn {
  margin: 7rem 0 0;
  width: min(46.7%, 280px);
}
@media (max-width: 768px) {
  .btn {
    width: 60%;
    margin: 4rem auto 0;
  }
}
.btn a {
  background-color: #E86740;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  text-align: center;
  padding: 2.2rem 0;
}
@media (max-width: 768px) {
  .btn a {
    border-radius: 10px;
    font-size: 1.4rem;
    padding: 1.8rem 0;
  }
}
.btn a:hover {
  background-color: #3959A2;
}

/* animation */
/* zoom in */
.zoomin {
  opacity: 0;
}

.zoomin.animate {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* fade up */
.fade-up {
  opacity: 0;
}

.fade-up.animate {
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* text animation */
.textanimation span span.animate {
  display: inline-block;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeUp 0.5s ease-out forwards;
}

/* left kakukaku */
@keyframes kakukaku {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
/* right kakukaku */
@keyframes kakukaku02 {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0px 20px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 30px;
  left: 50%;
  z-index: 999999;
  transform: translate(-50%, 0);
  height: 100px;
  padding: 0 min(4.2%, 79px) 0 min(3.2%, 60px);
  width: min(94%, 1800px);
}
header .header-logo {
  width: 220px;
}
header .header-logo .header-sitename a {
  color: #3959A2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.55;
  letter-spacing: 0;
}
header .header-logo .header-sitename a .small-text {
  font-size: 1.7rem;
}
header .header-logo .header-sitename a:hover {
  color: var(--color-orange);
}
header .header-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 220px);
}
header .header-menu .header-menu__inner {
  color: var(--color-orange);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  gap: 2%;
}
header .header-menu .header-menu__inner li a:hover {
  color: #3959A2;
}
@media (max-width: 1300px) {
  header {
    padding: 0 25px;
  }
}
@media (max-width: 1200px) {
  header {
    top: 10px;
    left: 20px;
    right: 20px;
    transform: unset;
    height: 70px;
    width: auto;
  }
  header .header-menu {
    width: min(100%, 400px);
    height: 100vh;
    background-color: #fff;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    transition-duration: 0.8s;
    transition-delay: 0.4s;
    transform: translateX(100%);
  }
  header .header-menu.active {
    transform: translateX(0);
    z-index: 100;
    transition-delay: 0s;
  }
  header .header-menu .header-menu__inner {
    flex-direction: column;
    justify-content: center;
  }
  header .header-menu .header-menu__inner li {
    width: 80%;
  }
  header .header-menu .header-menu__inner li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vh 0;
    margin: 0 auto;
  }
  header .header-menu .header-menu__inner li:not(:last-child) {
    border-bottom: 1px solid #3959A2;
  }
}
@media (max-width: 1200px) {
  header .header-logo {
    width: fit-content;
  }
  header .header-logo .header-sitename a {
    font-size: 2.5vw;
  }
  header .header-logo .header-sitename a .small-text {
    font-size: 1.25vw;
  }
}
@media (max-width: 768px) {
  header .header-logo {
    width: fit-content;
  }
  header .header-logo .header-sitename a {
    font-size: 2.2rem;
  }
  header .header-logo .header-sitename a .small-text {
    font-size: 1.1rem;
  }
  header .header-menu .header-menu__inner {
    font-size: 1.4rem;
  }
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
  display: none;
  width: 40px;
  height: 24px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100001;
}

.menu-trigger span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  left: calc(50% - 15px);
  transition-duration: 0.6s;
}

.menu-trigger span:nth-of-type(1) {
  top: calc(50% - 8px);
}

.menu-trigger.opend span:nth-of-type(1) {
  animation-name: menu-close_01;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.menu-trigger.active span:nth-of-type(1) {
  animation-name: menu-open_01;
}

@keyframes menu-open_01 {
  0% {
    top: calc(50% - 8px);
    transform: rotate(0deg);
  }
  33.3333% {
    top: calc(50% - 0px);
    transform: rotate(0deg);
  }
  66.6666% {
    top: calc(50% - 0px);
    transform: rotate(0deg);
  }
  100% {
    top: calc(50% - 0px);
    transform: rotate(45deg);
  }
}
@keyframes menu-close_01 {
  0% {
    top: calc(50% - 0px);
    transform: rotate(45deg);
  }
  33.3333% {
    top: calc(50% - 0px);
    transform: rotate(0deg);
  }
  66.6666% {
    top: calc(50% - 0px);
    transform: rotate(0deg);
  }
  100% {
    top: calc(50% - 8px);
    transform: rotate(0deg);
  }
}
.menu-trigger span:nth-of-type(3) {
  top: 50%;
}

.menu-trigger.opend span:nth-of-type(3) {
  animation-name: menu-close_03;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.menu-trigger.active span:nth-of-type(3) {
  animation-name: menu-open_03;
}

@keyframes menu-open_03 {
  0% {
    width: 30px;
    left: calc(50% - 15px);
  }
  66.6666% {
    width: 30px;
    left: calc(50% - 15px);
  }
  70% {
    width: 0;
    left: calc(50% - 0px);
  }
  100% {
    width: 0;
    left: calc(50% - 0px);
  }
}
@keyframes menu-close_03 {
  0% {
    width: 0;
    left: calc(50% - 0px);
  }
  66.6666% {
    width: 30px;
    left: calc(50% - 15px);
  }
  70% {
    width: 30px;
    left: calc(50% - 15px);
  }
  100% {
    width: 30px;
    left: calc(50% - 15px);
  }
}
.menu-trigger span:nth-of-type(2) {
  top: calc(50% + 8px);
}

.menu-trigger.opend span:nth-of-type(2) {
  animation-name: menu-close_02;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.menu-trigger.active span:nth-of-type(2) {
  animation-name: menu-open_02;
}

@keyframes menu-open_02 {
  0% {
    top: calc(50% + 8px);
    transform: rotate(0deg);
  }
  33.3333% {
    top: calc(50% + 0px);
    transform: rotate(0deg);
  }
  66.6666% {
    top: calc(50% + 0px);
    transform: rotate(0deg);
  }
  100% {
    top: calc(50% + 0px);
    transform: rotate(-45deg);
  }
}
@keyframes menu-close_02 {
  0% {
    top: calc(50% + 0px);
    transform: rotate(-45deg);
  }
  33.3333% {
    top: calc(50% + 0px);
    transform: rotate(0deg);
  }
  66.6666% {
    top: calc(50% + 0px);
    transform: rotate(0deg);
  }
  100% {
    top: calc(50% + 8px);
    transform: rotate(0deg);
  }
}
@media (max-width: 1200px) {
  .menu-trigger {
    display: block;
  }
}
footer {
  background-image: url(../img/footer_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
  color: #FFFFFF;
  margin-top: -15rem;
  position: relative;
  z-index: 2;
}
@supports (background-image: url("image.webp")) {
  footer {
    background-image: url("../img/footer_bg.webp");
  }
}
@media (max-width: 1200px) {
  footer {
    margin-top: -8rem;
  }
}
@media (max-width: 768px) {
  footer {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  footer {
    background-position: 22% 0;
  }
}
footer .inner {
  position: relative;
}
footer .inner::before {
  content: "";
  display: block;
  background-image: url(../img/footer_flower.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(6.4%, 89px);
  height: min(23.8%, 105px);
  position: absolute;
  top: 66%;
  left: 9%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  footer .inner::before {
    top: 26%;
  }
}
@media (max-width: 768px) {
  footer .inner::before {
    top: 21%;
    left: 11%;
  }
}
@media (max-width: 600px) {
  footer .inner::before {
    width: min(9%, 89px);
    height: min(12%, 105px);
    top: 12%;
  }
}
@media (max-width: 450px) {
  footer .inner::before {
    width: min(12%, 89px);
  }
}
footer .inner::after {
  content: "";
  display: block;
  background-image: url(../img/footer_grass.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(6.2%, 86px);
  height: min(17%, 75px);
  position: absolute;
  top: 91%;
  right: 6%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 768px) {
  footer .inner::after {
    top: 100%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  footer .inner::after {
    width: min(9%, 86px);
    height: min(20%, 75px);
  }
}
@media (max-width: 450px) {
  footer .inner::after {
    width: min(14%, 86px);
    height: min(10%, 75px);
  }
}
footer .inner .footer-btnbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  width: min(100%, 630px);
}
@media (max-width: 600px) {
  footer .inner .footer-btnbox {
    flex-wrap: wrap;
    width: 100%;
  }
}
footer .inner .footer-btnbox li {
  width: 48%;
}
@media (max-width: 600px) {
  footer .inner .footer-btnbox li {
    width: 100%;
  }
}
footer .inner .footer-btnbox li a {
  border-radius: 10px;
  background-color: #fff;
  color: #6DA857;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  padding: 2.2rem 0;
}
@media (max-width: 600px) {
  footer .inner .footer-btnbox li a {
    font-size: 1.4rem;
    padding: 1.8rem;
  }
}
footer .inner .footer-btnbox li a:hover {
  background-color: #B7624D;
  color: #fff;
}
footer .inner .footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 43px;
  margin: 0 auto;
  width: min(100%, 452px);
}
@media (max-width: 600px) {
  footer .inner .footer-menu {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 600px) {
  footer .inner .footer-menu li {
    text-align: center;
    width: 100%;
  }
}
footer .inner .footer-menu li a {
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
}
@media (max-width: 600px) {
  footer .inner .footer-menu li a {
    font-size: 1.4rem;
  }
}
footer .inner .footer-menu li a:hover {
  color: #B7624D;
}
footer .copyright {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 600px) {
  footer .copyright {
    font-size: 1.3rem;
  }
}
footer .copyright a:hover {
  color: #B7624D;
}

/* ------------------------------------- /
/  front-page
/* ------------------------------------- */
.home main {
  /* メインビジュアル */
  /* 園について */
  /* お知らせ */
  /* 園の一日 */
  /* 年間行事予定 */
  /* アクセス */
}
.home main .main-visual {
  padding-top: 252px;
  position: relative;
}
@media (max-width: 1200px) {
  .home main .main-visual {
    padding-top: 170px;
  }
}
@media (max-width: 768px) {
  .home main .main-visual {
    padding-top: 121px;
  }
}
.home main .main-visual::before {
  content: "";
  display: block;
  background-image: url(../img/mv_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 27%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@supports (background-image: url("image.webp")) {
  .home main .main-visual::before {
    background-image: url("../img/mv_bg.webp");
  }
}
.home main .main-visual::after {
  content: "";
  display: block;
  background-image: url(../img/mv_butterfly.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(4.2vw, 79px);
  height: min(5vw, 95px);
  position: absolute;
  bottom: -13%;
  right: 13.7%;
  transform: translate(0, 10%);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .main-visual::after {
    width: 6.2vw;
    height: 7vw;
  }
}
@media (max-width: 600px) {
  .home main .main-visual::after {
    width: 7.2vw;
    height: 8.8vw;
  }
}
@media (max-width: 450px) {
  .home main .main-visual::after {
    height: 12vw;
    width: 10.2vw;
    bottom: -19%;
    right: 18%;
  }
}
.home main .main-visual .wrapper {
  position: relative;
}
.home main .main-visual .wrapper::before {
  content: "";
  display: block;
  background-image: url(../img/mv_grass01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(11.2%, 134px);
  height: min(15%, 84px);
  position: absolute;
  top: 1.5%;
  left: -2.5%;
  transform: translate(10%, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1440px) {
  .home main .main-visual .wrapper::before {
    top: -7%;
    left: 5%;
  }
}
@media (max-width: 1200px) {
  .home main .main-visual .wrapper::before {
    top: -10%;
    left: 7%;
  }
}
@media (max-width: 450px) {
  .home main .main-visual .wrapper::before {
    height: 17%;
    width: 13%;
    top: -11%;
    left: 7%;
  }
}
.home main .main-visual .wrapper::after {
  content: "";
  display: block;
  background-image: url(../img/mv_grass02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(9%, 108px);
  height: min(22.3%, 125px);
  position: absolute;
  bottom: 0;
  right: 7%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .main-visual .wrapper::after {
    bottom: 10%;
    right: 7%;
  }
}
.home main .main-visual .wrapper .img {
  margin: 0 auto;
  width: min(85%, 1000px);
}
.home main .main-visual .wrapper .catch-phrase {
  color: #406DAF;
  font-size: 4rem;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0;
  position: absolute;
  bottom: 1vw;
  left: -3.8vw;
  overflow: hidden;
  visibility: hidden;
  transform: translate(10%, 0);
}
@media (max-width: 1440px) {
  .home main .main-visual .wrapper .catch-phrase {
    left: 2vw;
  }
}
@media (max-width: 1200px) {
  .home main .main-visual .wrapper .catch-phrase {
    bottom: 8%;
    left: 5%;
  }
}
@media (max-width: 1080px) {
  .home main .main-visual .wrapper .catch-phrase {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .home main .main-visual .wrapper .catch-phrase {
    font-size: 2rem;
    bottom: -2%;
    left: 4%;
  }
}
@media (max-width: 600px) {
  .home main .main-visual .wrapper .catch-phrase {
    bottom: -13%;
  }
}
.home main .main-visual .wrapper .catch-phrase > span {
  display: inline-block;
  position: relative;
  width: 100%;
}
@media (max-width: 1440px) {
  .home main .main-visual .wrapper .catch-phrase > span {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.home main .main-visual .wrapper .catch-phrase > span::after {
  content: "";
  display: block;
  background-image: url(../img/mv_border.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home main .main-visual .wrapper .catch-phrase.ready {
  visibility: visible;
}
.home main .about {
  padding: 230px 0 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .home main .about {
    padding: 115px 0 25px;
  }
}
.home main .about::after {
  content: "";
  display: block;
  background-image: url(../img/about_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  width: 100vw;
  padding-top: 10%;
  position: absolute;
  left: 0;
  bottom: -80px;
  z-index: -1;
}
@supports (background-image: url("image.webp")) {
  .home main .about::after {
    background-image: url("../img/about_bg.webp");
  }
}
@media (max-width: 768px) {
  .home main .about::after {
    bottom: -7vw;
  }
}
.home main .about .wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.home main .about .wrapper::after {
  content: "";
  display: block;
  background-image: url(../img/about_snails.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  width: min(6.9%, 96px);
  height: min(13.8%, 86px);
  position: absolute;
  left: -5.3%;
  top: -14%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1600px) {
  .home main .about .wrapper::after {
    left: 9%;
    top: -23%;
  }
}
@media (max-width: 1200px) {
  .home main .about .wrapper::after {
    height: min(10.9%, 86px);
    width: min(7.9%, 96px);
    left: 16%;
    top: -14%;
  }
}
@media (max-width: 768px) {
  .home main .about .wrapper::after {
    height: 7vw;
    width: 8vw;
    left: 29vw;
    top: -6vw;
  }
}
@media (max-width: 600px) {
  .home main .about .wrapper::after {
    height: 8.5vw;
    width: 10vw;
    left: 22vw;
    top: -11vw;
  }
}
.home main .about .wrapper .left {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .home main .about .wrapper .left {
    width: 100%;
  }
}
.home main .about .wrapper .left .title__en {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.24rem;
}
@media (max-width: 768px) {
  .home main .about .wrapper .left .title__en {
    font-size: 1.6rem;
  }
}
.home main .about .wrapper .left .ttl {
  color: var(--color-orange);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
  margin: 4rem 0 4rem;
}
@media (max-width: 768px) {
  .home main .about .wrapper .left .ttl {
    font-size: 2.8rem;
    margin: 2rem 0 2.5rem;
  }
}
@media (max-width: 768px) {
  .home main .about .wrapper .left .img img {
    border-radius: 2rem;
  }
}
.home main .about .wrapper .left .txt {
  color: #454545;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.35;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .home main .about .wrapper .left .txt {
    font-size: 1.4rem;
    margin: 2.5rem 0 0;
  }
}
@media (max-width: 600px) {
  .home main .about .wrapper .left .txt {
    line-height: 1.75;
  }
}
.home main .about .wrapper .left::after {
  content: "";
  display: block;
  background-image: url(../img/about_flower.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(17.5%, 105px);
  width: min(14.9%, 89px);
  position: absolute;
  top: -4%;
  left: 56%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .about .wrapper .left::after {
    height: 7.5vw;
    width: 6.5vw;
    top: 3vw;
    left: 36vw;
  }
}
@media (max-width: 768px) {
  .home main .about .wrapper .left::after {
    left: 55vw;
  }
}
@media (max-width: 450px) {
  .home main .about .wrapper .left::after {
    height: 10.9vw;
    width: 9.5vw;
    top: 11vw;
    left: 64vw;
  }
}
.home main .about .wrapper .right {
  position: relative;
  top: -6rem;
  width: 44.5%;
}
.home main .about .wrapper .right .img img {
  border-radius: 4rem;
}
.home main .about .wrapper .right .img::before {
  content: "";
  display: block;
  background-image: url(../img/about_tulip.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(16.9%, 90px);
  height: min(15.5%, 97px);
  position: absolute;
  left: 46%;
  top: 25vw;
  transform: translate(0, 0);
  z-index: 1;
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1440px) {
  .home main .about .wrapper .right .img::before {
    top: 24vw;
  }
}
@media (max-width: 1200px) {
  .home main .about .wrapper .right .img::before {
    width: 7.6vw;
    height: 8vw;
    left: 4vw;
    top: 52vw;
  }
}
@media (max-width: 1000px) {
  .home main .about .wrapper .right .img::before {
    top: 66vw;
  }
}
@media (max-width: 850px) {
  .home main .about .wrapper .right .img::before {
    top: 85vw;
  }
}
.home main .about .wrapper .right .img::after {
  content: "";
  display: block;
  background-image: url(../img/about_img02.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4rem;
  padding-top: min(14.5vw, 278px);
  width: min(18.5vw, 354px);
  position: absolute;
  left: 56%;
  top: 15vw;
  transform: translate(0, 0);
}
@supports (background-image: url("image.webp")) {
  .home main .about .wrapper .right .img::after {
    background-image: url("../img/about_img02.webp");
  }
}
@media (max-width: 1200px) {
  .home main .about .wrapper .right .img::after {
    padding-top: 20.4vw;
    width: 26vw;
    left: 15.5vw;
    top: 25.5vw;
  }
}
@media (max-width: 1000px) {
  .home main .about .wrapper .right .img::after {
    padding-top: 26.7vw;
    width: 34vw;
    left: 8.5vw;
    top: 38.5vw;
  }
}
.home main .news {
  background-color: #F3FBF4;
  padding: 240px 0 150px;
}
@media (max-width: 768px) {
  .home main .news {
    padding: 120px 0 75px;
  }
}
.news__wrapper {
  margin: 0 auto;
  position: relative;
  width: min(90%, 920px);
}
.news__wrapper .title-wrapper {
  margin: 0 auto 5rem;
}
@media (max-width: 768px) {
  .news__wrapper .title-wrapper {
    margin: 0 auto 3rem;
  }
}
.news__wrapper .news__box .item a {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .news__wrapper .news__box .item a {
    display: block;
  }
}
.news__wrapper .news__box .item a .left {
  width: 29.4%;
}
@media (max-width: 600px) {
  .news__wrapper .news__box .item a .left {
    margin: 0 auto 2rem;
    width: 100%;
  }
}
.news__wrapper .news__box .item a .left div {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem;
  padding-top: 66.9%;
}
@media (max-width: 768px) {
  .news__wrapper .news__box .item a .left div {
    border-radius: 1rem;
  }
}
.news__wrapper .news__box .item a .right {
  width: 65.3%;
}
@media (max-width: 600px) {
  .news__wrapper .news__box .item a .right {
    width: 100%;
  }
}
.news__wrapper .news__box .item a .right .ttl {
  color: #2E2E2E;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: 0;
  width: 88%;
}
@media (max-width: 768px) {
  .news__wrapper .news__box .item a .right .ttl {
    font-size: 1.8rem;
  }
}
.news__wrapper .news__box .item a .right .content {
  color: #707070;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0;
  margin: 1.8rem 0 2rem;
}
@media (max-width: 768px) {
  .news__wrapper .news__box .item a .right .content {
    font-size: 1.3rem;
    margin: 1.2rem 0 1.4rem;
  }
}
.news__wrapper .news__box .item a .right .time {
  color: #2E2E2E;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.15rem;
}
@media (max-width: 768px) {
  .news__wrapper .news__box .item a .right .time {
    font-size: 1.3rem;
  }
}
.news__wrapper .news__box .item:last-of-type {
  margin-top: 4.6rem;
  padding-top: 5rem;
  position: relative;
}
@media (max-width: 768px) {
  .news__wrapper .news__box .item:last-of-type {
    margin-top: 3.3rem;
    padding-top: 3rem;
  }
}
.news__wrapper .news__box .item:last-of-type::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #707070 0px, #707070 3px, transparent 3px, transparent 11px);
  position: absolute;
  top: 0;
  left: 0;
}
.news__wrapper .btn {
  margin: 8.15rem auto 0;
}
@media (max-width: 768px) {
  .news__wrapper .btn {
    margin: 4rem auto 0;
  }
}
.top.news__wrapper::before {
  content: "";
  display: block;
  background-image: url(../img/news_grass01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(6.9vw, 131px);
  height: min(4.9vw, 93px);
  position: absolute;
  top: 1.7vw;
  left: -9.3vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .top.news__wrapper::before {
    top: -4.3vw;
    left: -2.3vw;
  }
}
@media (max-width: 768px) {
  .top.news__wrapper::before {
    height: 7vw;
    width: 10vw;
    top: -0.3vw;
    left: 5.3vw;
  }
}
@media (max-width: 450px) {
  .top.news__wrapper::before {
    height: 10vw;
    width: 14vw;
    top: -4.5vw;
  }
}
.top.news__wrapper::after {
  content: "";
  display: block;
  background-image: url(../img/news_grass02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(7.8vw, 148px);
  height: min(5.7vw, 108px);
  position: absolute;
  bottom: 3vw;
  right: -8.9vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .top.news__wrapper::after {
    bottom: 0vw;
    right: -3.2vw;
  }
}
@media (max-width: 768px) {
  .top.news__wrapper::after {
    height: 7.3vw;
    width: 10vw;
    bottom: -2vw;
    right: 0.8vw;
  }
}
@media (max-width: 450px) {
  .top.news__wrapper::after {
    height: 9.3vw;
    width: 13vw;
    bottom: -8vw;
  }
}
.home main .schedule {
  padding: 150px 0 100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home main .schedule {
    padding: 75px 0 50px;
  }
}
.home main .schedule .wrapper {
  width: min(100%, 1565px);
  margin: 0 auto;
  padding: 0 min(6%, 100px);
  /* tab */
}
@media screen and (max-width: 600px) {
  .home main .schedule .wrapper {
    padding: 0 4%;
  }
}
.home main .schedule .wrapper .tab__content {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
  gap: 4rem;
  margin: 7.5rem auto 0;
  /* 0-2歳児 */
  /* 3-5歳児 */
  /* 0-2歳児 */
  /* 3-5歳児 */
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content {
    gap: 2rem;
    margin: 4rem auto 0;
  }
}
.home main .schedule .wrapper .tab__content > label {
  background-color: #E86740;
  border-radius: 3rem;
  color: #fff;
  display: block;
  order: -1;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.42;
  text-align: center;
  padding: 2.8rem 0;
  width: min(43.8%, 280px);
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content > label {
    font-size: 1.5rem;
    padding: 2rem 0;
  }
}
.home main .schedule .wrapper .tab__content > label:hover, .home main .schedule .wrapper .tab__content label:has(:checked) {
  background-color: #3959A2;
}
.home main .schedule .wrapper .tab__content input {
  display: none;
}
.home main .schedule .wrapper .tab__content > div {
  display: none;
  width: 100%;
  margin: 7rem auto 6rem;
  padding: 8.2rem 27rem 13.1rem;
}
@media (max-width: 1200px) {
  .home main .schedule .wrapper .tab__content > div {
    padding: 12vw 17vw 14vw;
  }
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content > div {
    padding: 12vw 14.5vw 14vw;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content > div {
    padding: 5rem 4rem 5rem;
  }
}
.home main .schedule .wrapper .tab__content label:has(:checked) + .schedule__box {
  background-image: url(../img/schedule_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@supports (background-image: url("image.webp")) {
  .home main .schedule .wrapper .tab__content label:has(:checked) + .schedule__box {
    background-image: url("../img/schedule_bg.webp");
  }
}
.home main .schedule .wrapper .tab__content label:has(:checked) + .schedule__box02 {
  background-image: url(../img/schedule_bg02.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@supports (background-image: url("image.webp")) {
  .home main .schedule .wrapper .tab__content label:has(:checked) + .schedule__box02 {
    background-image: url("../img/schedule_bg02.webp");
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box {
    background-color: #F4FAF9;
    border-radius: 40px;
    margin: 1rem auto 3.5rem;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .left, .home main .schedule .wrapper .tab__content .schedule__box .right {
  width: 37.4%;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box .left, .home main .schedule .wrapper .tab__content .schedule__box .right {
    width: 40%;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul .img, .home main .schedule .wrapper .tab__content .schedule__box .right ul .img {
  margin: 0 auto;
  width: 91%;
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul .img img, .home main .schedule .wrapper .tab__content .schedule__box .right ul .img img {
  border-radius: 2rem;
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul .ttl, .home main .schedule .wrapper .tab__content .schedule__box .right ul .ttl {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 2.5rem 0 0;
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul .txt, .home main .schedule .wrapper .tab__content .schedule__box .right ul .txt {
  color: var(--color-orange);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 1rem 0 0;
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(2) {
  margin: 7.6rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(2)::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(6.5vw, 124px);
  height: min(7.9vw, 151px);
  position: absolute;
  top: -5.2vw;
  left: -8vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(2)::after {
    width: 8vw;
    height: 10vw;
    top: -8.2vw;
    left: -9vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(3) {
  margin: 7.6rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(3)::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_flower.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(4.4vw, 83px);
  height: min(5.2vw, 98px);
  position: absolute;
  top: 3.9vw;
  left: -7.9vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(3)::after {
    width: 7vw;
    height: 7.9vw;
    top: 6vw;
    left: -9vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(4) {
  margin: 6rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(4)::before {
  content: "";
  display: block;
  background-image: url(../img/schedule01_circle03.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 102%;
  aspect-ratio: 286.13 / 285;
  position: absolute;
  bottom: 60px;
  left: -30.3%;
  transform: translateX(-100%);
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box .left ul:nth-of-type(4)::before {
    width: 80%;
    left: 0;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .right {
  margin-top: 11.6rem;
}
.home main .schedule .wrapper .tab__content .schedule__box .right ul:first-of-type {
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box .right ul:first-of-type::before {
  content: "";
  display: block;
  background-image: url(../img/schedule01_circle01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 102%;
  aspect-ratio: 286.13 / 285;
  position: absolute;
  bottom: -183px;
  right: -87.4px;
  transform: translateX(100%) translateY(-50%);
  }
.home main .schedule .wrapper .tab__content .schedule__box .right ul:first-of-type::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_butterfly.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(3.5vw, 67px);
  height: min(4.2vw, 80px);
  position: absolute;
  top: -8.1vw;
  right: 2.3vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right ul:first-of-type::before {
    width: 80%;
    right: 0;
  }
  .home main .schedule .wrapper .tab__content .schedule__box .right ul:first-of-type::after {
    width: 5.5vw;
    height: 6.5vw;
    top: -10.1vw;
    right: 5.3vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(2) {
  margin: 9.2rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(2)::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_sleep.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(6.4vw, 121px);
  height: min(6vw, 114px);
  position: absolute;
  top: -2.1vw;
  right: -4.4vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(2)::after {
    width: 9vw;
    height: 8.5vw;
    top: -4.1vw;
    right: -3.4vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(3) {
  margin: 8rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(3)::before {
  content: "";
  display: block;
  background-image: url(../img/schedule01_circle02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 102%;
  aspect-ratio: 286.13 / 285;
  position: absolute;
  bottom: -183px;
  right: -87.4px;
  transform: translateX(100%) translateY(-50%);
}
.home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(3)::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_snack.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(5.9vw, 113px);
  height: min(6.9vw, 131px);
  position: absolute;
  bottom: -2.1vw;
  right: -1.1vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(3)::after {
    bottom: 2.8vw;
  }
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(3)::before {
    width: 80%;
    right: 0;
    bottom: -130px;
  }
  .home main .schedule .wrapper .tab__content .schedule__box .right ul:nth-of-type(3)::after {
    width: 7.5vw;
    height: 9vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center {
  width: 12.5%;
}
@media (max-width: 1200px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center {
    width: 14.5%;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center {
    width: 20%;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .txt {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .txt {
    font-size: 1.6rem;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .txt:first-of-type {
  margin-bottom: 1.8rem;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .txt:first-of-type {
    margin-bottom: 1rem;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .txt:last-of-type {
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .txt:last-of-type {
    margin-top: 1rem;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time {
  border-radius: 2.6rem;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.08;
  letter-spacing: 0;
  padding: 0.6rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time {
    border-radius: 1.8rem;
    font-size: 1.8rem;
    padding: 0.6rem 0;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(3) {
  margin-top: 7.3vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(3) {
    margin-top: 40.5vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(3) {
    margin-top: 43.5vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(3)::after {
  height: min(4.3vw, 81px);
  top: -5.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(3)::after {
    height: 24vw;
    top: -34vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4) {
  margin-top: 4.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4) {
    margin-top: 42vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4) {
    margin-top: 43vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4) {
    margin-top: 45vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4)::after {
  height: min(2.7vw, 51px);
  top: -3.7vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4)::after {
    height: 26vw;
    top: -36vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4)::after {
    top: -36vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(5) {
  margin-top: 4.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(5) {
    margin-top: 40vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(5) {
    margin-top: 43vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(5)::after {
  height: min(2.7vw, 51px);
  top: -3.7vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(5)::after {
    height: 24vw;
    top: -33vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(5)::after {
    top: -35vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6) {
  margin-top: 4.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6) {
    margin-top: 41vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6) {
    margin-top: 43.5vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6) {
    margin-top: 45vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6)::after {
  height: min(2.7vw, 51px);
  top: -3.7vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6)::after {
    height: 26vw;
    top: -34vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6)::after {
    top: -36vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6)::after {
    top: -34vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7) {
  margin-top: 4.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7) {
    margin-top: 40.5vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7) {
    margin-top: 43.5vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7) {
    margin-top: 43vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7)::after {
  height: min(2.7vw, 51px);
  top: -3.7vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7)::after {
    height: 26vw;
    top: -34vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7)::after {
    top: -36vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(8) {
  margin-top: 7.3vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(8) {
    margin-top: 40vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(8) {
    margin-top: 42vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(8) {
    margin-top: 44vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(8)::after {
  height: min(4.3vw, 81px);
  top: -5.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(8)::after {
    height: 26vw;
    top: -34vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 3px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time::after {
    width: 0.9vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4)::after, .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(5)::after, .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6)::after, .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7)::after {
  background-image: url(../img/schedule_dot02.svg);
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(4)::after, .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(5)::after, .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(6)::after, .home main .schedule .wrapper .tab__content .schedule__box .center .time:nth-of-type(7)::after {
    background-image: url(../img/schedule_dot.svg);
  }
}
.home main .schedule .wrapper .tab__content .schedule__box .center .am {
  background-color: #FFCD6F;
}
.home main .schedule .wrapper .tab__content .schedule__box .center .pm {
  background-color: #A7BAE6;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 {
    padding-top: 4rem;
    width: 68%;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul {
    position: relative;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul .img img {
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul:first-of-type::after {
    content: "";
    display: block;
    background-image: url(../img/schedule_play.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 10vw;
    height: 11.8vw;
    position: absolute;
    bottom: 1vw;
    left: -11vw;
    transform: translate(0, 0);
    transform-origin: center center;
    animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul:first-of-type::after {
    width: 13vw;
    height: 15.8vw;
    bottom: 1vw;
    left: -13vw;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul:nth-of-type(4)::after {
    content: "";
    display: block;
    background-image: url(../img/schedule_sleep.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 14.8vw;
    height: 13.8vw;
    position: absolute;
    bottom: 2vw;
    right: -4vw;
    transform: translate(0, 0);
    transform-origin: center center;
    animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul:nth-of-type(4)::after {
    width: 17.8vw;
    height: 16.8vw;
    bottom: 1vw;
    right: -7vw;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul:nth-of-type(6)::after {
    content: "";
    display: block;
    background-image: url(../img/schedule_snack.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13vw;
    height: 14.6vw;
    position: absolute;
    top: 24vw;
    left: -8vw;
    transform: translate(0, 0);
    transform-origin: center center;
    animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul:nth-of-type(6)::after {
    width: 14vw;
    height: 16.6vw;
    top: 21vw;
    left: -9vw;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul .ttl {
    color: var(--color-orange);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 1rem 0 0;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul .txt {
    color: var(--color-orange);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 1rem 0 0;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box .right02 ul:not(:last-of-type) {
    margin: 0 0 6.5rem;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 {
    background-color: #FFFAFA;
    border-radius: 40px;
    margin: 1rem auto 3.5rem;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left, .home main .schedule .wrapper .tab__content .schedule__box02 .right {
  width: 37.4%;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .left, .home main .schedule .wrapper .tab__content .schedule__box02 .right {
    width: 40%;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul .img, .home main .schedule .wrapper .tab__content .schedule__box02 .right ul .img {
  margin: 0 auto;
  width: 91%;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul .img img, .home main .schedule .wrapper .tab__content .schedule__box02 .right ul .img img {
  border-radius: 2rem;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul .ttl, .home main .schedule .wrapper .tab__content .schedule__box02 .right ul .ttl {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 2.5rem 0 0;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul .txt, .home main .schedule .wrapper .tab__content .schedule__box02 .right ul .txt {
  color: var(--color-orange);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 1rem 0 0;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:first-of-type {
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:first-of-type::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_tulip.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(4vw, 75px);
  height: min(4.3vw, 81px);
  position: absolute;
  top: -0.3vw;
  left: -6.4vw;
  transform: translate(0, 5%);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .left ul:first-of-type::after {
    width: 7vw;
    height: 7vw;
    bottom: 0.7vw;
    left: -7.4vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(2) {
  margin: 7.6rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(2)::before {
    content: "";
  display: block;
  background-image: url(../img/schedule02_circle01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 102%;
  aspect-ratio: 286.13 / 285;
  position: absolute;
  bottom: 60px;
  left: -84.9px;
  transform: translateX(-100%);
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(2)::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_lunch.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(7.9vw, 151px);
  height: min(5.6vw, 107px);
  position: absolute;
  bottom: 1.1vw;
  left: -5vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(2)::before {
    width: 80%;
    right: 0;
  }
  .home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(2)::after {
    width: 11vw;
    height: 8vw;
    position: absolute;
    bottom: 3.1vw;
    left: -6vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(3), .home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(4) {
  margin: 4.6rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(3)::before {
  content: "";
  display: block;
  background-image: url(../img/schedule_play02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(8.2vw, 156px);
  height: min(5.5vw, 105px);
  position: absolute;
  bottom: 5.5vw;
  left: -8.6vw;
  transform: translate(0, 5%);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(3)::before {
    width: 11vw;
    height: 7.6vw;
    bottom: 10vw;
    left: -10vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(3)::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_beetle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(31%, 86px);
  height: min(31.5%, 92px);
  position: absolute;
  top: -11%;
  right: 8%;
  transform: translate(50%, 5%);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(3)::after {
    width: 7vw;
    height: 7vw;
    position: absolute;
    top: -4vw;
    right: 1.5vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(4)::after {
    content: "";
    display: block;
    background-image: url(../img/schedule02_circle02.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 102%;
    aspect-ratio: 286.13 / 285;
    position: absolute;
    bottom: -230px;
    right: -123%;
    transform: translateX(100%);
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .left ul:nth-of-type(4)::after {
    width: 80%;
    right: -120px;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right {
  margin-top: 6rem;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right ul:first-of-type {
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right ul:first-of-type::before {
  content: "";
  display: block;
  background-image: url(../img/schedule_song.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(9.4vw, 180px);
  height: min(6.1vw, 116px);
  position: absolute;
  top: -5.3vw;
  left: 0.3vw;
  transform: translate(0, 0);
  z-index: 1;
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right ul:first-of-type::before {
    width: 12vw;
    height: 8vw;
    top: -6.3vw;
    left: 0.9vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right ul:first-of-type::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_survey.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(8.2vw, 157px);
  height: min(6.8vw, 130px);
  position: absolute;
  bottom: 3vw;
  right: -10.1vw;
  transform: translate(0, 5%);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right ul:first-of-type::after {
    width: 11vw;
    height: 9vw;
    bottom: -6vw;
    right: -11.1vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(2) {
  margin: 5rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(2)::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_drawing.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(11.1vw, 212px);
  height: min(5.2vw, 98px);
  position: absolute;
  bottom: 4vw;
  right: -11.6vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(2)::after {
    width: 13vw;
    height: 6vw;
    bottom: 8vw;
    right: -13.6vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(3) {
  margin: 6rem 0 0;
  position: relative;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(3)::before {
  content: "";
  display: block;
  background-image: url(../img/schedule_flower02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(4.4vw, 83px);
  height: min(5.2vw, 98px);
  position: absolute;
  bottom: -8vw;
  left: 2.4vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(3)::before {
    width: 6.1vw;
    height: 7vw;
    bottom: -9vw;
    left: -2vw;
  }
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(3)::before {
    width: 8vw;
    height: 9vw;
    bottom: -10vw;
    left: -4vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(3)::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_snack02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(7.5vw, 143px);
  height: min(5.9vw, 113px);
  position: absolute;
  bottom: 0.8vw;
  right: -6vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(3)::after {
    bottom: 2.8vw;
  }
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right ul:nth-of-type(3)::after {
    width: 11vw;
    height: 9vw;
    right: -5vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center {
  width: 12.5%;
}
@media (max-width: 1200px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center {
    width: 14.5%;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center {
    width: 20%;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .txt {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .txt {
    font-size: 1.6rem;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .txt:first-of-type {
  margin-bottom: 1.8rem;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .txt:first-of-type {
    margin-bottom: 1rem;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .txt:last-of-type {
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .txt:last-of-type {
    margin-top: 1rem;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time {
  border-radius: 2.6rem;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.08;
  letter-spacing: 0;
  padding: 0.6rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time {
    border-radius: 1.8rem;
    font-size: 1.8rem;
    padding: 0.6rem 0;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(3) {
  margin-top: 7.3vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(3) {
    margin-top: 40.5vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(3) {
    margin-top: 43.5vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(3)::after {
  height: min(4.3vw, 81px);
  top: -5.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(3)::after {
    height: 24vw;
    top: -34vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4) {
  margin-top: 4.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4) {
    margin-top: 50vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4) {
    margin-top: 56vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4) {
    margin-top: 59vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4)::after {
  height: min(2.7vw, 51px);
  top: -3.7vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4)::after {
    height: 26vw;
    top: -39vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4)::after {
    top: -42vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(5) {
  margin-top: 4.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(5) {
    margin-top: 40.5vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(5) {
    margin-top: 43vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(5)::after {
  height: min(2.7vw, 51px);
  top: -3.7vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(5)::after {
    height: 24vw;
    top: -33vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(5)::after {
    top: -35vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6) {
  margin-top: 4.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6) {
    margin-top: 56vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6) {
    margin-top: 60.5vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6) {
    margin-top: 68.5vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6)::after {
  height: min(2.7vw, 51px);
  top: -3.7vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6)::after {
    height: 26vw;
    top: -42vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6)::after {
    top: -44vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6)::after {
    top: -48vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7) {
  margin-top: 4.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7) {
    margin-top: 48.5vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7) {
    margin-top: 54.5vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7) {
    margin-top: 60vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7)::after {
  height: min(2.7vw, 51px);
  top: -3.7vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7)::after {
    height: 26vw;
    top: -38vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7)::after {
    top: -42vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(8) {
  margin-top: 7.3vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(8) {
    margin-top: 40vw;
  }
}
@media (max-width: 600px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(8) {
    margin-top: 42.5vw;
  }
}
@media (max-width: 450px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(8) {
    margin-top: 44vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(8)::after {
  height: min(4.3vw, 81px);
  top: -5.5vw;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(8)::after {
    height: 26vw;
    top: -34vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time::after {
  content: "";
  display: block;
  background-image: url(../img/schedule_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 3px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time::after {
    width: 0.9vw;
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4)::after, .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(5)::after, .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6)::after, .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7)::after {
  background-image: url(../img/schedule_dot02.svg);
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(4)::after, .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(5)::after, .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(6)::after, .home main .schedule .wrapper .tab__content .schedule__box02 .center .time:nth-of-type(7)::after {
    background-image: url(../img/schedule_dot.svg);
  }
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .am {
  background-color: #FFCD6F;
}
.home main .schedule .wrapper .tab__content .schedule__box02 .center .pm {
  background-color: #A7BAE6;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 {
    padding-top: 4rem;
    width: 68%;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 ul {
    position: relative;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 ul .img img {
    border-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 ul:first-of-type::after {
    content: "";
    display: block;
    background-image: url(../img/schedule_tulip.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 10vw;
    height: 9.6vw;
    position: absolute;
    bottom: 11%;
    left: -35%;
    transform: translate(50%, 5%);
    transform-origin: center center;
    animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 ul:nth-of-type(3)::after {
    content: "";
    display: block;
    background-image: url(../img/schedule_lunch.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 19vw;
    height: 13.8vw;
    position: absolute;
    bottom: 10%;
    left: -44%;
    transform: translate(50%, 5%);
    transform-origin: center center;
    animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 ul:nth-of-type(6)::after {
    content: "";
    display: block;
    background-image: url(../img/schedule_snack02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 17vw;
    height: 13.6vw;
    position: absolute;
    bottom: -1%;
    right: 6%;
    transform: translate(50%, 5%);
    transform-origin: center center;
    animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 ul .ttl {
    color: var(--color-orange);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 1rem 0 0;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 ul .txt {
    color: var(--color-orange);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 1rem 0 0;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .tab__content .schedule__box02 .right02 ul:not(:last-of-type) {
    margin: 0 0 6.5rem;
  }
}
.home main .schedule .wrapper .txt__wrapper {
  margin: 0 auto;
  width: min(80%, 735px);
}
.home main .schedule .wrapper .txt__wrapper dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.home main .schedule .wrapper .txt__wrapper dl dt, .home main .schedule .wrapper .txt__wrapper dl dd {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  width: fit-content;
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .txt__wrapper dl dt, .home main .schedule .wrapper .txt__wrapper dl dd {
    font-size: 1.4rem;
  }
}
.home main .schedule .wrapper .txt__wrapper dl dt {
  width: 80px;
}
.home main .schedule .wrapper .txt__wrapper dl dd {
  margin-left: 3rem;
  width: 84%;
}
@media (max-width: 1000px) {
  .home main .schedule .wrapper .txt__wrapper dl dd {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .home main .schedule .wrapper .txt__wrapper dl:last-of-type {
    margin-top: 1.5rem;
  }
}
.home main .event {
  background-image: url(../img/event_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 140px 0 170px;
  overflow-x: clip;
}
@supports (background-image: url("image.webp")) {
  .home main .event {
    background-image: url("../img/event_bg.webp");
  }
}
@media (max-width: 768px) {
  .home main .event {
    padding: 70px 0 85px;
  }
}
@media (max-width: 600px) {
  .home main .event {
    background-position: 36%;
  }
}
.home main .event::before {
  content: "";
  display: block;
  background-image: url(../img/event_bg02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: 9%;
  width: 100%;
  position: absolute;
  bottom: -6%;
  left: 0;
}
@supports (background-image: url("image.webp")) {
  .home main .event::before {
    background-image: url("../img/event_bg02.webp");
  }
}
@media (max-width: 1200px) {
  .home main .event::before {
    padding-top: 14%;
  }
}
@media (max-width: 768px) {
  .home main .event::before {
    bottom: -4vw;
    padding-top: 10%;
  }
}
.home main .event::after {
  content: "";
  display: block;
  background-image: url(../img/event_teacher.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(5.2vw, 99px);
  height: min(14.4vw, 276px);
  position: absolute;
  bottom: -1%;
  right: 16.2%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event::after {
    width: 6%;
    height: 14%;
    bottom: -2%;
    right: 7%;
  }
}
@media (max-width: 1000px) {
  .home main .event::after {
    width: 8.5vw;
    height: 23vw;
    bottom: -2vw;
    right: 4vw;
  }
}
@media (max-width: 768px) {
  .home main .event::after {
    width: 7vw;
    height: 20vw;
    bottom: -4vw;
    right: 7vw;
  }
}
@media (max-width: 450px) {
  .home main .event::after {
    width: 10vw;
    height: 28vw;
  }
}
.home main .event .wrapper {
  margin: 0 auto;
  width: min(90%, 960px);
}
.home main .event .wrapper .event__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 7.5rem auto 0;
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box {
    margin: 4rem auto 0;
  }
}
.home main .event .wrapper .event__box li {
  background-color: #FFFFFF;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 4rem 0;
  position: relative;
  width: 31.3%;
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li {
    min-height: 140px;
    padding: 2rem 0;
    width: 46%;
  }
}
.home main .event .wrapper .event__box li .month {
  color: var(--color-orange);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li .month {
    font-size: 2.8rem;
    top: -24px;
  }
}
.home main .event .wrapper .event__box li .month span {
  font-size: 2rem;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li .month span {
    font-size: 1.4rem;
  }
}
.home main .event .wrapper .event__box li .event__detail {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li .event__detail {
    font-size: 1.4rem;
  }
}
.home main .event .wrapper .event__box li:not(:nth-last-of-type(-n+3)) {
  margin: 0 0 9rem;
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:not(:nth-last-of-type(-n+3)) {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:not(:nth-last-of-type(-n+2)) {
    margin: 0 0 5rem;
  }
}
.home main .event .wrapper .event__box li:nth-child(n+4):nth-child(-n+6) .month, .home main .event .wrapper .event__box li:nth-child(n+10):nth-child(-n+12) .month {
  color: #3959A2;
}
.home main .event .wrapper .event__box li:nth-child(n+4):nth-child(-n+6) .event__detail, .home main .event .wrapper .event__box li:nth-child(n+10):nth-child(-n+12) .event__detail {
  color: #3959A2;
}
.home main .event .wrapper .event__box li:first-of-type::before {
  content: "";
  display: block;
  background-image: url(../img/event_april01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(54.8%, 164px);
  height: min(90%, 178px);
  position: absolute;
  top: -18%;
  left: -29%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event .wrapper .event__box li:first-of-type::before {
    width: 45%;
    height: 76%;
    top: -48%;
    left: -12%;
  }
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:first-of-type::before {
    width: 15vw;
    height: 16vw;
    top: -8vw;
    left: -4vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:first-of-type::before {
    width: 14vw;
    height: 14vw;
    top: -8vw;
    left: 1vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:first-of-type::before {
    width: 18vw;
    height: 19vw;
    top: -8vw;
    left: -3vw;
  }
}
.home main .event .wrapper .event__box li:first-of-type::after {
  content: "";
  display: block;
  background-image: url(../img/event_april02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(34%, 102px);
  height: min(40.5%, 80px);
  position: absolute;
  bottom: -9%;
  right: -4%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:first-of-type::after {
    width: 11vw;
    height: 8.5vw;
    bottom: -2vw;
    right: -1vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:first-of-type::after {
    width: 10vw;
    height: 8vw;
    bottom: 0;
    right: 1vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:first-of-type::after {
    width: 13vw;
    height: 10vw;
    right: 0;
  }
}
.home main .event .wrapper .event__box li:nth-of-type(2)::after {
  content: "";
  display: block;
  background-image: url(../img/event_may.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(5.2vw, 99px);
  height: min(2.5vw, 48px);
  position: absolute;
  top: -13%;
  right: -3%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(2)::after {
    width: 10vw;
    height: 5vw;
    top: -2vw;
    right: -0.5vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(2)::after {
    width: 12.2vw;
    height: 5.9vw;
    top: -2vw;
    right: 2vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(2)::after {
    width: 17.2vw;
    height: 8.9vw;
    top: 0vw;
    right: -2vw;
  }
}
.home main .event .wrapper .event__box li:nth-of-type(3)::after {
  content: "";
  display: block;
  background-image: url(../img/event_june.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(32.7%, 98px);
  height: min(43.5%, 86px);
  position: absolute;
  bottom: 2%;
  right: -17%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(3)::after {
    width: 10vw;
    height: 9vw;
    bottom: -2vw;
    right: -4vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(3)::after {
    width: 9vw;
    height: 8vw;
    bottom: -1vw;
    right: -2vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(3)::after {
    width: 16vw;
    height: 14vw;
    bottom: -6vw;
    right: -2vw;
  }
}
.home main .event .wrapper .event__box li:nth-of-type(4)::after {
  content: "";
  display: block;
  background-image: url(../img/event_july.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(39.8%, 119px);
  height: min(51.5%, 101px);
  position: absolute;
  top: 2%;
  left: -35%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event .wrapper .event__box li:nth-of-type(4)::after {
    width: 35%;
    height: 47%;
    top: -26%;
    left: -7%;
  }
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(4)::after {
    width: 12vw;
    height: 11vw;
    top: -7vw;
    left: -2vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(4)::after {
    width: 12vw;
    height: 10vw;
    top: -3vw;
    left: -1vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(4)::after {
    width: 17vw;
    height: 14vw;
    top: -8vw;
    left: -4vw;
  }
}
.home main .event .wrapper .event__box li:nth-of-type(5)::after {
  content: "";
  display: block;
  background-image: url(../img/event_august.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(42%, 126px);
  height: min(49.5%, 89px);
  position: absolute;
  bottom: -20%;
  right: 0;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(5)::after {
    width: 14vw;
    height: 10vw;
    /* bottom: -1vw;
    left: -9vw; */
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(5)::after {
    width: 12vw;
    height: 8.2vw;
    bottom: 0.5vw;
    left: -1vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(5)::after {
    width: 19vw;
    height: 13.2vw;
    bottom: -3.5vw;
    left: -3vw;
  }
}
.home main .event .wrapper .event__box li:nth-of-type(6)::after {
  content: "";
  display: block;
  background-image: url(../img/event_september.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(19.7%, 59px);
  height: min(56%, 110px);
  position: absolute;
  bottom: 3%;
  right: -4%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(6)::after {
    width: 7vw;
    height: 13vw;
    bottom: -1vw;
    right: -2vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(6)::after {
    width: 6vw;
    height: 11.1vw;
    bottom: 0vw;
    right: 2.5vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(6)::after {
    width: 9.5vw;
    height: 17.6vw;
    bottom: -5.5vw;
    right: -2.5vw;
  }
}

.home main .event .wrapper .event__box li:nth-of-type(7) {
    z-index: 9999;
}
.home main .event .wrapper .event__box li:nth-of-type(7) .event__photo:first-of-type {
  content: "";
  display: block;
  background-image: url(../img/events_01.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  width: 54%;
  aspect-ratio: 162 / 119;
  position: absolute;
  bottom: -16.9%;
  left: -33%;
  transform: translate(0, 0) rotate(-13deg);
  transform-origin: center center;
}
.home main .event .wrapper .event__box li:nth-of-type(7) .event__photo:nth-of-type(2) {
  content: "";
  display: block;
  background-image: url(../img/events_02.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  width: 54%;
  aspect-ratio: 162 / 119;
  position: absolute;
  top: -37%;
  right: -27%;
  transform: translate(0, 0) rotate(14deg);
  transform-origin: center center;
}
.home main .event .wrapper .event__box li:nth-of-type(7)::before {
  content: "";
  display: block;
  background-image: url(../img/event_october.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44.5%, 133px);
  height: min(47.5%, 94px);
  position: absolute;
  top: -16%;
  left: -13%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event .wrapper .event__box li:nth-of-type(7)::before {
    left: -4%;
  }
  .home main .event .wrapper .event__box li:nth-of-type(7) .event__photo:first-of-type {
    width: max(80px, 35%);
    bottom: -23.9%;
    left: -8%;
  }
  .home main .event .wrapper .event__box li:nth-of-type(7) .event__photo:nth-of-type(2) {
    width: max(80px, 35%);
    top: -23%;
    right: -20%;
  }
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(7)::before {
    width: 13vw;
    height: 10vw;
    top: -5vw;
    left: -3vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(7)::before {
    width: 11vw;
    height: 7.3vw;
    top: 1vw;
    left: 2vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(7)::before {
    width: 16vw;
    height: 11.3vw;
    top: -1vw;
    left: -1vw;
  }
}
.home main .event .wrapper .event__box li:nth-of-type(7)::after {
  content: "";
  display: block;
  background-image: url(../img/event_october.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44.5%, 133px);
  height: min(47.5%, 94px);
  position: absolute;
  top: -16%;
  left: -13%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event .wrapper .event__box li:nth-of-type(7)::after {
    left: -4%;
  }
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(7)::after {
    width: 13vw;
    height: 10vw;
    top: -5vw;
    left: -3vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(7)::after {
    width: 11vw;
    height: 7.3vw;
    top: 1vw;
    left: 2vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(7)::after {
    width: 16vw;
    height: 11.3vw;
    top: -1vw;
    left: -1vw;
  }
}

.home main .event .wrapper .event__box li:nth-of-type(8) {
    z-index: 999;
}
.home main .event .wrapper .event__box li:nth-of-type(8) .event__photo:first-of-type {
  content: "";
  display: block;
  background-image: url(../img/events_03.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  width: 54%;
  aspect-ratio: 162 / 119;
  position: absolute;
  bottom: -29.5%;
  right: -27.5%;
  transform: translate(0, 0) rotate(14deg);
  transform-origin: center center;
  z-index: 99;
}

.home main .event .wrapper .event__box li:nth-of-type(8)::before {
  content: "";
  display: block;
  background-image: url(../img/event_november01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(28%, 84px);
  height: min(56.2%, 101px);
  position: absolute;
  bottom: -3%;
  left: -2%;
  transform: translate(0, 0);
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event .wrapper .event__box li:nth-of-type(8) .event__photo:first-of-type {
    width: max(80px, 35%);
    bottom: -19.5%;
    right: -8.5%;
  }
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(8)::before {
    width: 10vw;
    height: 12vw;
    bottom: -0.5vw;
    left: -1vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(8)::before {
    width: 9vw;
    height: 11vw;
    bottom: 0vw;
    left: -1vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(8)::before {
    width: 13vw;
    height: 16vw;
    bottom: -1vw;
    left: -1vw;
  }
}
.home main .event .wrapper .event__box li:nth-of-type(8)::after {
  content: "";
  display: block;
  background-image: url(../img/event_november02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(27.8%, 83px);
  height: min(37%, 73px);
  position: absolute;
  top: -11%;
  right: -5%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(8)::after {
    width: 10vw;
    height: 9vw;
    top: -4vw;
    right: -2vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(8)::after {
    width: 9vw;
    height: 8vw;
    top: -1vw;
    right: -1vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(8)::after {
    width: 12vw;
    height: 11vw;
    top: -1vw;
    right: -1vw;
  }
}

.home main .event .wrapper .event__box li:nth-of-type(9) .event__photo:first-of-type {
  content: "";
  display: block;
  background-image: url(../img/events_04.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  width: 54%;
  aspect-ratio: 162 / 119;
  position: absolute;
  top: -25.38%;
  right: -36.23%;
  transform: translate(0, 0) rotate(14deg);
  transform-origin: center center;
  z-index: 99;
}

.home main .event .wrapper .event__box li:nth-of-type(9)::after {
  content: "";
  display: block;
  background-image: url(../img/event_december.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(61.6%, 185px);
  height: min(57.5%, 113px);
  position: absolute;
  bottom: -5%;
  right: -35%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event .wrapper .event__box li:nth-of-type(9)::after {
    bottom: -18%;
    right: -18%;
  }
  .home main .event .wrapper .event__box li:nth-of-type(9) .event__photo:first-of-type {
    width: max(80px, 35%);
    top: -16.38%;
    right: -16.23%;
  }
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(9)::after {
    width: 17vw;
    height: 10vw;
    bottom: -4vw;
    right: -3.5vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(9)::after {
    bottom: -1vw;
    right: -3vw;
    width: 16vw;
    height: 10.2vw;
  }
  .home main .event .wrapper .event__box li:nth-of-type(9) {
    z-index: 99999;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(9)::after {
    bottom: -4vw;
    right: -3vw;
    width: 21vw;
    height: 12.8vw;
  }
}
.home main .event .wrapper .event__box li:nth-of-type(10)::after {
  content: "";
  display: block;
  background-image: url(../img/event_january.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(27.5%, 82px);
  height: min(63.9%, 115px);
  position: absolute;
  bottom: -12%;
  left: -24%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event .wrapper .event__box li:nth-of-type(10)::after {
    left: -10%;
  }
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(10)::after {
    width: 10vw;
    height: 14vw;
    bottom: -2vw;
    left: -2vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(10)::after {
    width: 8vw;
    height: 11vw;
    left: 1vw;
    bottom: -1vw;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(10)::after {
    width: 12vw;
    height: 16vw;
    left: -1vw;
    bottom: 1vw;
  }
}

.home main .event .wrapper .event__box li:nth-of-type(11) .event__photo:first-of-type {
  content: "";
  display: block;
  background-image: url(../img/events_05.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  width: 54%;
  aspect-ratio: 162 / 119;
  position: absolute;
  bottom: -38.94%;
  left: -19%;
  transform: translate(0, 0) rotate(14deg);
  transform-origin: center center;
  z-index: 99;
}

.home main .event .wrapper .event__box li:nth-of-type(11)::after {
  content: "";
  display: block;
  background-image: url(../img/event_february.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(35.5%, 106px);
  height: min(46.2%, 83px);
  position: absolute;
  bottom: -16%;
  right: -4%;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .home main .event .wrapper .event__box li:nth-of-type(11) .event__photo:first-of-type {
    width: max(80px, 35%);
    bottom: -6.94%;
    left: -10%;
  }
}
@media (max-width: 1000px) {
  .home main .event .wrapper .event__box li:nth-of-type(11)::after {
    width: 13vw;
    height: 10vw;
    bottom: -5vw;
    right: -1vw;
  }
}
@media (max-width: 768px) {
  .home main .event .wrapper .event__box li:nth-of-type(11)::after {
    width: 10vw;
    height: 8vw;
    bottom: -8%;
  }
}
@media (max-width: 450px) {
  .home main .event .wrapper .event__box li:nth-of-type(11)::after {
    width: 17vw;
    height: 13vw;
    right: -2vw;
    bottom: -5vw;
  }
}
.access {
  padding: 100px 0 0;
  position: relative;
}
@media (max-width: 768px) {
  .access {
    padding: 50px 0 60px;
  }
}
.access .wrapper {
  position: relative;
  z-index: 3;
}
.access .wrapper .access__box {
  display: flex;
  justify-content: space-between;
  margin: 8rem auto 0;
}
@media (max-width: 768px) {
  .access .wrapper .access__box {
    display: block;
    margin: 4rem auto 0;
  }
}
.access .wrapper .access__box .left {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 40%;
  width: min(56.7%, 680px);
}
@media (max-width: 768px) {
  .access .wrapper .access__box .left {
    padding-top: 70%;
    width: 100%;
  }
}
.access .wrapper .access__box .left iframe {
  border-radius: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .access .wrapper .access__box .left iframe {
    border-radius: 1.5rem;
  }
}
.access .wrapper .access__box .right {
  padding: 4.5rem 0 0;
  width: min(35%, 420px);
}
@media (max-width: 768px) {
  .access .wrapper .access__box .right {
    padding: 3rem 0 0;
    width: 100%;
  }
}
.access .wrapper .access__box .right .ttl {
  color: var(--color-orange);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  margin: 0 0 2rem;
}
@media (max-width: 768px) {
  .access .wrapper .access__box .right .ttl {
    font-size: 2.8rem;
    margin: 0 0 1rem;
  }
}
.access .wrapper .access__box .right dl {
  color: var(--color-orange);
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 2.2;
  margin: 0 0 1.5rem;
  padding: 0 0 1.8rem;
  position: relative;
}
@media (max-width: 768px) {
  .access .wrapper .access__box .right dl {
    font-size: 1.6rem;
    margin: 0 0 0.7rem;
    padding: 0 0 1rem;
  }
}
.access .wrapper .access__box .right dl::after {
  content: "";
  display: block;
  background-image: url(../img/access_dot.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.access .wrapper .access__box .right dl dt {
  font-weight: 700;
}
.access .wrapper .access__box .right dl dd {
  font-weight: 500;
}

/* ------------------------------------- /
/  下層ページ 共通
/* ------------------------------------- */
.lower__ttl {
  background-image: url(../img/pagetitle_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  color: #B7624D;
  padding: 260px 0 160px;
  text-align: center;
  position: relative;
}
@supports (background-image: url("image.webp")) {
  .lower__ttl {
    background-image: url("../img/pagetitle_bg.webp");
  }
}
@media (max-width: 768px) {
  .lower__ttl {
    padding: 120px 0 100px;
  }
}
.lower__ttl .wrapper .ttl {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.45;
  position: relative;
  margin: 0 auto;
  width: fit-content;
}
@media (max-width: 768px) {
  .lower__ttl .wrapper .ttl {
    font-size: 3.6rem;
  }
}
.lower__ttl .wrapper .ttl::before {
  content: "";
  display: block;
  background-image: url(../img/pagetitle_tulip.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(5.2vw, 98px);
  height: min(5.6vw, 106px);
  position: absolute;
  bottom: -4.2vw;
  left: -11.7vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .lower__ttl .wrapper .ttl::before {
    width: 8vw;
    height: 8.8vw;
    bottom: -8.2vw;
    left: -15.7vw;
  }
}
@media (max-width: 768px) {
  .lower__ttl .wrapper .ttl::before {
    width: 10vw;
    height: 10.8vw;
    bottom: -70px;
    left: -100px;
  }
}
@media (max-width: 600px) {
  .lower__ttl .wrapper .ttl::before {
    left: -70px;
  }
}
.lower__ttl .wrapper .ttl::after {
  content: "";
  display: block;
  background-image: url(../img/pagetitle_butterfly.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(4.2vw, 79px);
  height: min(5vw, 95px);
  position: absolute;
  top: -1.7vw;
  right: -10.2vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .lower__ttl .wrapper .ttl::after {
    width: 7vw;
    height: 8.4vw;
    top: -7vw;
    right: -15.2vw;
  }
}
@media (max-width: 768px) {
  .lower__ttl .wrapper .ttl::after {
    width: 8vw;
    height: 9.8vw;
    top: -10px;
    right: -100px;
  }
}
@media (max-width: 600px) {
  .lower__ttl .wrapper .ttl::after {
    right: -70px;
  }
}
.lower__ttl .wrapper .sub-ttl {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
  margin: 4px 0 0;
}
@media (max-width: 768px) {
  .lower__ttl .wrapper .sub-ttl {
    font-size: 1.8rem;
    margin: 2px 0 0;
  }
}
.lower__ttl::before {
  content: "";
  display: block;
  background-image: url(../img/pagetitle_grass01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(7.8vw, 148px);
  height: min(4.9vw, 93px);
  position: absolute;
  top: 13.2vw;
  left: 18.9vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .lower__ttl::before {
    width: 10vw;
    height: 6.6vw;
    top: 13.2vw;
    left: 12vw;
  }
}
@media (max-width: 768px) {
  .lower__ttl::before {
    width: 14vw;
    height: 9.2vw;
    top: 100px;
    left: 60px;
  }
}
@media (max-width: 600px) {
  .lower__ttl::before {
    left: 30px;
  }
}
.lower__ttl::after {
  content: "";
  display: block;
  background-image: url(../img/pagetitle_grass02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(5.7vw, 108px);
  height: min(6.6vw, 125px);
  position: absolute;
  bottom: 4.9vw;
  right: 22vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  .lower__ttl::after {
    width: 8.9vw;
    height: 10vw;
    bottom: 4.9vw;
    right: 9vw;
  }
}
@media (max-width: 768px) {
  .lower__ttl::after {
    width: 11vw;
    height: 12vw;
    bottom: 30px;
    right: 50px;
  }
}
@media (max-width: 600px) {
  .lower__ttl::after {
    right: 30px;
  }
}

/* アクセス(footer) */
.footer-access {
  padding: 180px 0 0;
  position: relative;
}
@media (max-width: 768px) {
  .footer-access {
    padding: 90px 0 60px;
  }
}
.footer-access::after {
  content: "";
  display: block;
  background-image: url(../img/pageaccess_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 924px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
body.home .footer-access::after {
  display: none;
  content: none;
}
@supports (background-image: url("image.webp")) {
  .footer-access::after {
    background-image: url("../img/pageaccess_bg.webp");
  }
}
@media (max-width: 768px) {
  .footer-access::after {
    background-position: 60%;
    height: 165vw;
  }
}
@media (max-width: 600px) {
  .footer-access::after {
    height: 250vw;
  }
}
.footer-access .wrapper {
  position: relative;
  z-index: 3;
}
.footer-access .wrapper .access__box {
  display: flex;
  justify-content: space-between;
  margin: 8rem auto 0;
}
@media (max-width: 768px) {
  .footer-access .wrapper .access__box {
    display: block;
    margin: 4rem auto 0;
  }
}
.footer-access .wrapper .access__box .left {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 40%;
  width: min(56.7%, 680px);
}
@media (max-width: 768px) {
  .footer-access .wrapper .access__box .left {
    padding-top: 70%;
    width: 100%;
  }
}
.footer-access .wrapper .access__box .left iframe {
  border-radius: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .footer-access .wrapper .access__box .left iframe {
    border-radius: 1.5rem;
  }
}
.footer-access .wrapper .access__box .right {
  padding: 4.5rem 0 0;
  width: min(35%, 420px);
}
@media (max-width: 768px) {
  .footer-access .wrapper .access__box .right {
    padding: 3rem 0 0;
    width: 100%;
  }
}
.footer-access .wrapper .access__box .right .ttl {
  color: var(--color-orange);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  margin: 0 0 2rem;
}
@media (max-width: 768px) {
  .footer-access .wrapper .access__box .right .ttl {
    font-size: 2.8rem;
    margin: 0 0 1rem;
  }
}
.footer-access .wrapper .access__box .right dl {
  color: var(--color-orange);
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 2.2;
  margin: 0 0 1.5rem;
  padding: 0 0 1.8rem;
  position: relative;
}
@media (max-width: 768px) {
  .footer-access .wrapper .access__box .right dl {
    font-size: 1.6rem;
    margin: 0 0 0.7rem;
    padding: 0 0 1rem;
  }
}
.footer-access .wrapper .access__box .right dl::after {
  content: "";
  display: block;
  background-image: url(../img/access_dot.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer-access .wrapper .access__box .right dl dt {
  font-weight: 700;
}
.footer-access .wrapper .access__box .right dl dd {
  font-weight: 500;
}

/* ------------------------------------- /
/  news
/* ------------------------------------- */
.post-type-archive-news main .contents {
  padding: 100px 0 110px;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents {
    padding: 50px 0 65px;
  }
}
.post-type-archive-news main .contents .wrapper {
  margin: 0 auto;
  position: relative;
  width: min(90%, 920px);
}
.post-type-archive-news main .contents .wrapper .title-wrapper {
  margin: 0 auto 5rem;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .title-wrapper {
    margin: 0 auto 3rem;
  }
}
.post-type-archive-news main .contents .wrapper .news__box {
  /* pagenation */
}
.post-type-archive-news main .contents .wrapper .news__box .item {
  position: relative;
}
.post-type-archive-news main .contents .wrapper .news__box .item a {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .post-type-archive-news main .contents .wrapper .news__box .item a {
    display: block;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .item a .left {
  width: 29.4%;
}
@media (max-width: 600px) {
  .post-type-archive-news main .contents .wrapper .news__box .item a .left {
    margin: 0 auto 2rem;
    width: 100%;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .item a .left div {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem;
  padding-top: 66.9%;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .item a .left div {
    border-radius: 1rem;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .item a .right {
  width: 65.3%;
}
@media (max-width: 600px) {
  .post-type-archive-news main .contents .wrapper .news__box .item a .right {
    width: 100%;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .item a .right .ttl {
  color: #2E2E2E;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: 0;
  width: 88%;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .item a .right .ttl {
    font-size: 1.8rem;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .item a .right .content {
  color: #707070;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0;
  margin: 1.8rem 0 2rem;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .item a .right .content {
    font-size: 1.3rem;
    margin: 1.2rem 0 1.4rem;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .item a .right .time {
  color: #2E2E2E;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.15rem;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .item a .right .time {
    font-size: 1.3rem;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .item:not(:first-of-type) {
  margin-top: 4.9rem;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .item:not(:first-of-type) {
    margin-top: 3.3rem;
    padding-top: 3rem;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .item:not(:first-of-type)::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #707070 0px, #707070 3px, transparent 3px, transparent 11px);
  position: absolute;
  top: 0;
  left: 0;
}
.post-type-archive-news main .contents .wrapper .news__box .pagination {
  color: #B7624D;
  font-size: 21px;
  font-weight: 700;
  margin: 170px auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .pagination {
    font-size: 17px;
    margin: 75px 0 0;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .pagination .first-page {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .pagination .first-page {
    margin-right: 20px;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .pagination .prev-page {
  margin-right: 47px;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .pagination .prev-page {
    margin-right: 32px;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .pagination .page-numbers {
  background-color: #FFFAFA;
  border-radius: 2rem;
  padding: 15px 26px;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .pagination .page-numbers {
    border-radius: 1rem;
    padding: 5px 13px;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .pagination .page-numbers:not(:first-of-type) {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .pagination .page-numbers:not(:first-of-type) {
    margin-left: 5px;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .pagination .current {
  background-color: #E86740;
  color: #fff;
}
.post-type-archive-news main .contents .wrapper .news__box .pagination .last-page {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .pagination .last-page {
    margin-left: 32px;
  }
}
.post-type-archive-news main .contents .wrapper .news__box .pagination .next-page {
  margin-left: 47px;
}
@media (max-width: 768px) {
  .post-type-archive-news main .contents .wrapper .news__box .pagination .next-page {
    margin-left: 32px;
  }
}

/* ------------------------------------- /
/  news 詳細
/* ------------------------------------- */
 /* .single {
  padding: 95px 0 100px;
} */
@media (max-width: 768px) {
   .single-news {
    padding: 48px 0 50px;
  }
}
 .single-news .wrapper {
  margin: 0 auto;
  width: min(90%, 800px);
  /* 前後の記事 */
}
 .single-news .wrapper .ttl {
  color: #B7624D;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.76;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
   .single-news .wrapper .ttl {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }
}
 .single-news .wrapper .time {
  color: #B7624D;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.33;
}
@media (max-width: 768px) {
   .single-news .wrapper .time {
    font-size: 1.4rem;
  }
}
 .single-news .wrapper .thumb {
  margin: 6.7rem auto 0;
}
@media (max-width: 768px) {
   .single-news .wrapper .thumb {
    margin: 3.3rem auto 0;
  }
}
 .single-news .wrapper .thumb div {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem;
  padding-top: 66.7%;
}
@media (max-width: 768px) {
   .single-news .wrapper .thumb div {
    border-radius: 1rem;
  }
}
 .single-news .wrapper .content {
  color: #454545;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
   .single-news .wrapper .content {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
  }
}
 .single-news .wrapper .ttl02 {
  color: #B7624D;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.58;
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1.8rem;
}
@media (max-width: 768px) {
   .single-news .wrapper .ttl02 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}
 .single-news .wrapper .ttl02::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #707070 0px, #707070 4px, transparent 3px, transparent 8px);
  position: absolute;
  bottom: 0;
  left: 0;
}
 .single-news .wrapper .post-link {
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
   .single-news .wrapper .post-link {
    margin: 40px auto 0;
  }
}
 .single-news .wrapper .post-link .left,  .single-news .wrapper .post-link .right {
  color: #B7624D;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
}
@media (max-width: 768px) {
   .single-news .wrapper .post-link .left,  .single-news .wrapper .post-link .right {
    font-size: 1.4rem;
  }
}
 .single-news .wrapper .post-link .left a:hover,  .single-news .wrapper .post-link .right a:hover {
  color: #3959A2;
}
 .single-news .wrapper .post-link .center {
  width: min(46.7%, 200px);
}
@media (max-width: 768px) {
   .single-news .wrapper .post-link .center {
    width: min(40%, 200px);
  }
}
 .single-news .wrapper .post-link .center a {
  background-color: #E86740;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  text-align: center;
  padding: 1.7rem 0;
}
@media (max-width: 768px) {
   .single-news .wrapper .post-link .center a {
    border-radius: 10px;
    font-size: 1.4rem;
    padding: 1.3rem 0;
  }
}
 .single-news .wrapper .post-link .center a:hover {
  background-color: #3959A2;
}

.single-news .wrapper .content p {
    margin: 60px auto 70px;
}
@media (max-width: 768px) {
    .single-news .wrapper .content p {
        margin: 30px auto 35px;
    }
}
h2.wp-block-heading {
    font-size: clamp(2.0rem, 2vw, 2.4rem);
    font-weight: 700;
    color: #B7624D;
    padding-bottom: 20px;
    position: relative;
}
h2.wp-block-heading:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, #707070 0px, #707070 3px, transparent 3px, transparent 11px);
    position: absolute;
    bottom: 0;
}

/* ------------------------------------- /
/  about
/* ------------------------------------- */
main .philosophy {
  padding: 160px 0 140px;
}
@media (max-width: 768px) {
  main .philosophy {
    padding: 80px 0 70px;
  }
}
main .philosophy .wrapper {
  margin: 0 auto;
  width: min(90%, 1200px);
}
@media (max-width: 768px) {
  main .philosophy .wrapper {
    width: 80%;
  }
}
main .philosophy .wrapper .ttl {
  color: #B7624D;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  main .philosophy .wrapper .ttl {
    font-size: 2.8rem;
  }
}
main .philosophy .wrapper .ttl::after {
  content: "";
  display: block;
  background-image: url(../img/about/sprout.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 46px;
  width: 49px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  main .philosophy .wrapper .ttl::after {
    height: 28px;
    width: 30px;
    top: -30px;
  }
}
main .philosophy .wrapper > .txt {
  color: #454545;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  margin: 71px auto 90px;
  width: min(70%, 800px);
}
@media (max-width: 768px) {
  main .philosophy .wrapper > .txt {
    font-size: 1.3rem;
    margin: 35px auto 45px;
  }
}
main .philosophy .wrapper .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
main .philosophy .wrapper .box li {
  background-color: #F4FAF9;
  border-radius: 3rem;
  padding: 30px 20px 52px;
  position: relative;
  text-align: center;
  width: 47%;
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li {
    border-radius: 1.5rem;
    padding: 15px 20px 26px;
    min-height: 182px;
    width: 100%;
  }
}
main .philosophy .wrapper .box li .number {
  color: #3959A2;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.44;
  position: relative;
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li .number {
    font-size: 2.8rem;
  }
}
main .philosophy .wrapper .box li .number::after {
  content: "";
  display: block;
  border-radius: 50px;
  background-color: #3959A2;
  height: 5px;
  width: 60px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li .number::after {
    height: 3px;
    width: 40px;
  }
}
main .philosophy .wrapper .box li .txt {
  color: #454545;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li .txt {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li:first-of-type {
    margin: 0 0 40px;
  }
}
main .philosophy .wrapper .box li:first-of-type .txt {
  margin-top: 38px;
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li:first-of-type .txt {
    margin-top: 16px;
  }
}
main .philosophy .wrapper .box li:first-of-type::after {
  content: "";
  display: block;
  background-image: url(../img/about/philosophy_survey.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(7.1vw, 136px);
  width: min(8.6vw, 165px);
  position: absolute;
  top: -3.1vw;
  left: -2.4vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .philosophy .wrapper .box li:first-of-type::after {
    height: 8.6vw;
    width: 10vw;
    top: -5.1vw;
    left: -0.4vw;
  }
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li:first-of-type::after {
    height: 11vw;
    width: 13vw;
    top: -6.1vw;
    left: -2.4vw;
  }
}
@media (max-width: 450px) {
  main .philosophy .wrapper .box li:first-of-type::after {
    height: 14vw;
    width: 17vw;
    top: -8.1vw;
    left: -2.4vw;
  }
}
main .philosophy .wrapper .box li:last-of-type .txt {
  margin-top: 57px;
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li:last-of-type .txt {
    margin-top: 29px;
  }
}
main .philosophy .wrapper .box li:last-of-type::after {
  content: "";
  display: block;
  background-image: url(../img/about/philosophy_teacher.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(15.2vw, 291px);
  width: min(8.6vw, 165px);
  position: absolute;
  bottom: -8vw;
  right: -3vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .philosophy .wrapper .box li:last-of-type::after {
    height: 15vw;
    width: 9vw;
    bottom: -11vw;
    right: 2vw;
  }
}
@media (max-width: 768px) {
  main .philosophy .wrapper .box li:last-of-type::after {
    height: 19vw;
    width: 11vw;
    bottom: -9vw;
    right: -3vw;
  }
}
@media (max-width: 450px) {
  main .philosophy .wrapper .box li:last-of-type::after {
    height: 24vw;
    width: 14vw;
    bottom: -16vw;
    right: -3vw;
  }
}
main .goal {
  padding: 0 0 140px;
}
@media (max-width: 768px) {
  main .goal {
    padding: 0 0 70px;
  }
}
main .goal .wrapper {
  margin: 0 auto;
  width: min(90%, 800px);
}
@media (max-width: 768px) {
  main .goal .wrapper {
    width: 80%;
  }
}
main .goal .wrapper .ttl {
  color: #3959A2;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 768px) {
  main .goal .wrapper .ttl {
    font-size: 2.4rem;
  }
}
main .goal .wrapper .subttl {
  color: #3959A2;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin: 10px auto 0;
}
@media (max-width: 768px) {
  main .goal .wrapper .subttl {
    font-size: 1.7rem;
    margin: 5px auto 0;
  }
}
main .goal .wrapper .catch {
  color: #454545;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0;
  text-align: center;
  margin: 70px auto 0;
}
@media (max-width: 768px) {
  main .goal .wrapper .catch {
    font-size: 2rem;
    margin: 35px auto 0;
  }
}
main .goal .wrapper .box {
  margin: 80px auto 140px;
}
@media (max-width: 768px) {
  main .goal .wrapper .box {
    margin: 40px auto 70px;
  }
}
main .goal .wrapper .box > li {
  padding-bottom: 60px;
  position: relative;
}
@media (max-width: 768px) {
  main .goal .wrapper .box > li {
    padding-bottom: 30px;
  }
}
main .goal .wrapper .box > li .ttl02 {
  color: #454545;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0;
  margin: 0 0 30px;
}
@media (max-width: 768px) {
  main .goal .wrapper .box > li .ttl02 {
    font-size: 2rem;
    margin: 0 0 15px;
  }
}
main .goal .wrapper .box > li .list-box {
  padding-left: 20px;
}
main .goal .wrapper .box > li .list-box li {
  color: #454545;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0;
  list-style: disc;
}
@media (max-width: 768px) {
  main .goal .wrapper .box > li .list-box li {
    font-size: 1.3rem;
  }
}
main .goal .wrapper .box > li:not(:last-of-type) {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  main .goal .wrapper .box > li:not(:last-of-type) {
    margin-bottom: 25px;
  }
}
main .goal .wrapper .box > li:first-of-type, main .goal .wrapper .box > li:last-of-type {
  padding-bottom: 30px;
}
main .goal .wrapper .box > li::after {
  content: "";
  display: block;
  background-image: url(../img/about/goal_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0, 0);
}
main .goal .wrapper .box > li:nth-of-type(2)::before {
  content: "";
  display: block;
  background-image: url(../img/about/goal_sport.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(5.6vw, 107px);
  width: min(7.9vw, 151px);
  position: absolute;
  top: -6vw;
  left: -10vw;
  transform: translate(0, 0);
  z-index: 1;
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .goal .wrapper .box > li:nth-of-type(2)::before {
    height: 8vw;
    width: 11vw;
    top: -8vw;
    left: -9vw;
  }
}
@media (max-width: 1000px) {
  main .goal .wrapper .box > li:nth-of-type(2)::before {
    left: 1vw;
  }
}
@media (max-width: 768px) {
  main .goal .wrapper .box > li:nth-of-type(2)::before {
    height: 7vw;
    width: 10vw;
    top: -7vw;
    left: -7vw;
  }
}
@media (max-width: 600px) {
  main .goal .wrapper .box > li:nth-of-type(2)::before {
    height: 9vw;
    width: 13vw;
    top: -9vw;
    left: -5vw;
  }
}
@media (max-width: 450px) {
  main .goal .wrapper .box > li:nth-of-type(2)::before {
    height: 13vw;
    width: 18.5vw;
    top: -12.5vw;
    left: -5vw;
  }
}
main .goal .wrapper .box > li:nth-of-type(3)::before {
  content: "";
  display: block;
  background-image: url(../img/about/goal_song.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(6.1vw, 116px);
  width: min(9.4vw, 180px);
  position: absolute;
  top: -6vw;
  right: -12vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .goal .wrapper .box > li:nth-of-type(3)::before {
    height: 9vw;
    width: 13vw;
    top: -8vw;
    right: -7vw;
  }
}
@media (max-width: 1000px) {
  main .goal .wrapper .box > li:nth-of-type(3)::before {
    top: -3vw;
    right: -2vw;
  }
}
@media (max-width: 768px) {
  main .goal .wrapper .box > li:nth-of-type(3)::before {
    height: 7vw;
    width: 11vw;
    top: -6vw;
    right: -5vw;
  }
}
@media (max-width: 600px) {
  main .goal .wrapper .box > li:nth-of-type(3)::before {
    height: 9vw;
    width: 14vw;
    top: -10vw;
    right: -2vw;
  }
}
@media (max-width: 450px) {
  main .goal .wrapper .box > li:nth-of-type(3)::before {
    height: 12vw;
    width: 18vw;
    top: -12vw;
    right: -3vw;
  }
}
main .goal .wrapper .box > li:nth-of-type(4)::before {
  content: "";
  display: block;
  background-image: url(../img/about/goal_play01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(5.5vw, 105px);
  width: min(8.2vw, 156px);
  position: absolute;
  top: -6vw;
  left: -10.3vw;
  transform: translate(0, 0);
  z-index: 1;
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .goal .wrapper .box > li:nth-of-type(4)::before {
    height: 8vw;
    width: 12vw;
    top: -9vw;
    left: -8vw;
  }
}
@media (max-width: 1000px) {
  main .goal .wrapper .box > li:nth-of-type(4)::before {
    top: -9vw;
    left: 2vw;
  }
}
@media (max-width: 768px) {
  main .goal .wrapper .box > li:nth-of-type(4)::before {
    height: 6.5vw;
    width: 10vw;
    top: auto;
    left: -4vw;
    bottom: -3vw;
  }
}
@media (max-width: 600px) {
  main .goal .wrapper .box > li:nth-of-type(4)::before {
    height: 8.5vw;
    width: 12.5vw;
    top: auto;
    left: -4vw;
    bottom: -4vw;
  }
}
@media (max-width: 450px) {
  main .goal .wrapper .box > li:nth-of-type(4)::before {
    height: 11.5vw;
    width: 17.5vw;
    left: -4vw;
    bottom: -6vw;
  }
}
main .goal .wrapper .box > li:last-of-type::before {
  content: "";
  display: block;
  background-image: url(../img/about/goal_play02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(7.3vw, 140px);
  width: min(6vw, 115px);
  position: absolute;
  bottom: -1.3vw;
  right: -9vw;
  transform: translate(0, 0);
  z-index: 1;
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .goal .wrapper .box > li:last-of-type::before {
    height: 10vw;
    width: 8.5vw;
    bottom: -6.3vw;
    right: -6vw;
  }
}
@media (max-width: 1000px) {
  main .goal .wrapper .box > li:last-of-type::before {
    right: 1vw;
  }
}
@media (max-width: 768px) {
  main .goal .wrapper .box > li:last-of-type::before {
    bottom: -10.3vw;
    right: -1vw;
  }
}
@media (max-width: 600px) {
  main .goal .wrapper .box > li:last-of-type::before {
    height: 12vw;
    width: 10vw;
    bottom: -9vw;
    right: 0;
  }
}
@media (max-width: 450px) {
  main .goal .wrapper .box > li:last-of-type::before {
    height: 17vw;
    width: 14vw;
    bottom: -11vw;
    right: -2vw;
  }
}
main .goal .wrapper > .list-box {
  padding-left: 20px;
  margin: 70px 0 121px;
}
@media (max-width: 768px) {
  main .goal .wrapper > .list-box {
    margin: 35px 0 60px;
  }
}
main .goal .wrapper > .list-box li {
  color: #454545;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0;
  list-style: disc;
}
@media (max-width: 768px) {
  main .goal .wrapper > .list-box li {
    font-size: 1.3rem;
  }
}
main .goal .wrapper > .txt {
  color: #454545;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0;
  margin-top: 70px;
}
@media (max-width: 768px) {
  main .goal .wrapper > .txt {
    font-size: 1.3rem;
    margin-top: 35px;
  }
}
main .feature {
  padding: 220px 0 120px;
  position: relative;
}
@media (max-width: 768px) {
  main .feature {
    padding: 110px 0 100px;
  }
}
main .feature::before {
  content: "";
  display: block;
  background-image: url(../img/about/feature_snails.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(3.9vw, 74px);
  width: min(4.4vw, 83px);
  position: absolute;
  bottom: -1vw;
  right: 21vw;
  transform: translate(0, 0);
  z-index: 0;
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .feature::before {
    height: 7.5vw;
    width: 8.5vw;
    bottom: -6vw;
    right: 30vw;
  }
}
@media (max-width: 1000px) {
  main .feature::before {
    right: 38vw;
  }
}
@media (max-width: 450px) {
  main .feature::before {
    height: 11.5vw;
    width: 13.5vw;
    bottom: -8vw;
    right: 41vw;
  }
}
main .feature::after {
  content: "";
  display: block;
  background-image: url(../img/about/feature_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130vw;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@supports (background-image: url("image.webp")) {
  main .feature::after {
    background-image: url("../img/about/feature_bg.webp");
  }
}
@media (max-width: 1200px) {
  main .feature::after {
    padding-top: 150vw;
  }
}
@media (max-width: 1000px) {
  main .feature::after {
    padding-top: 200vw;
  }
}
@media (max-width: 768px) {
  main .feature::after {
    padding-top: 200vh;
  }
}
main .feature .wrapper {
  margin: 0 auto;
  position: relative;
  width: min(90%, 800px);
}
@media (max-width: 768px) {
  main .feature .wrapper {
    width: 80%;
  }
}
main .feature .wrapper::before {
  content: "";
  display: block;
  background-image: url(../img/about/feature_grass01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(4.9vw, 93px);
  width: min(6.9vw, 131px);
  position: absolute;
  top: 3.2vw;
  left: -12.3vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .feature .wrapper::before {
    height: 9vw;
    width: 12vw;
    top: -4.8vw;
    left: -6.3vw;
  }
}
@media (max-width: 1000px) {
  main .feature .wrapper::before {
    left: 1vw;
  }
}
@media (max-width: 768px) {
  main .feature .wrapper::before {
    height: 8vw;
    width: 11vw;
    top: -2vw;
    left: -3vw;
  }
}
@media (max-width: 450px) {
  main .feature .wrapper::before {
    height: 11vw;
    width: 15vw;
  }
}
main .feature .wrapper::after {
  content: "";
  display: block;
  background-image: url(../img/about/feature_grass02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(5.7vw, 108px);
  width: min(7.8vw, 148px);
  position: absolute;
  bottom: 4.6vw;
  right: -14.3vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .feature .wrapper::after {
    height: 8vw;
    width: 11vw;
    bottom: -9.4vw;
    right: -5.3vw;
  }
}
@media (max-width: 1000px) {
  main .feature .wrapper::after {
    bottom: -11.4vw;
    right: 1vw;
  }
}
@media (max-width: 768px) {
  main .feature .wrapper::after {
    height: 7vw;
    width: 9.5vw;
    bottom: -10vw;
    right: -3vw;
  }
}
@media (max-width: 450px) {
  main .feature .wrapper::after {
    height: 11vw;
    width: 14.5vw;
    bottom: -18vw;
    right: -1vw;
  }
}
main .feature .wrapper .ttl {
  color: #B7624D;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  main .feature .wrapper .ttl {
    font-size: 2.8rem;
  }
}
main .feature .wrapper .ttl::after {
  content: "";
  display: block;
  background-image: url(../img/about/sprout.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 46px;
  width: 49px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  main .feature .wrapper .ttl::after {
    height: 28px;
    width: 30px;
    top: -30px;
  }
}
main .feature .wrapper .box {
  margin: 40px auto 0;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 768px) {
  main .feature .wrapper .box {
    margin: 20px auto 0;
    padding-bottom: 25px;
  }
}
main .feature .wrapper .box .ttl02 {
  color: #454545;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0;
  margin: 0 0 30px;
}
@media (max-width: 768px) {
  main .feature .wrapper .box .ttl02 {
    font-size: 2rem;
    margin: 0 0 15px;
  }
}
main .feature .wrapper .box .txt {
  color: #454545;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  main .feature .wrapper .box .txt {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}
main .feature .wrapper .box dl {
  display: flex;
  flex-wrap: wrap;
  color: #454545;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.76;
}
@media (max-width: 768px) {
  main .feature .wrapper .box dl {
    font-size: 1.3rem;
  }
}
main .feature .wrapper .box:first-of-type {
  margin: 60px auto 0;
}
@media (max-width: 768px) {
  main .feature .wrapper .box:first-of-type {
    margin: 30px auto 0;
  }
}
main .feature .wrapper .box:first-of-type dl dt {
  letter-spacing: 0;
  width: 15%;
}
@media (max-width: 600px) {
  main .feature .wrapper .box:first-of-type dl dt {
    width: 100%;
  }
}
main .feature .wrapper .box:first-of-type dl dd {
  letter-spacing: 0;
  width: 85%;
}
@media (max-width: 600px) {
  main .feature .wrapper .box:first-of-type dl:not(:last-of-type) {
    margin: 0 0 15px;
  }
}
main .feature .wrapper .box:first-of-type::before {
  content: "";
  display: block;
  background-image: url(../img/about/feature_sleep.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(6vw, 114px);
  width: min(6.4vw, 121px);
  position: absolute;
  bottom: -1vw;
  right: -2vw;
  transform: translate(0, 0);
  z-index: 1;
  transform-origin: center center;
  animation: kakukaku02 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .feature .wrapper .box:first-of-type::before {
    height: 10vw;
    width: 11vw;
    bottom: -4vw;
    right: -4vw;
  }
}
@media (max-width: 1000px) {
  main .feature .wrapper .box:first-of-type::before {
    right: 2vw;
  }
}
@media (max-width: 768px) {
  main .feature .wrapper .box:first-of-type::before {
    bottom: -5vw;
    right: -6vw;
  }
}
@media (max-width: 450px) {
  main .feature .wrapper .box:first-of-type::before {
    height: 15vw;
    width: 16vw;
  }
}
main .feature .wrapper .box:last-of-type dl dt {
  width: 20px;
}
main .feature .wrapper .box:last-of-type::before {
  content: "";
  display: block;
  background-image: url(../img/about/feature_drawing.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: min(5.2vw, 98px);
  width: min(11.1vw, 212px);
  position: absolute;
  bottom: 3.7vw;
  right: -0.4vw;
  transform: translate(0, 0);
  transform-origin: center center;
  animation: kakukaku 1.5s infinite steps(1, end) alternate-reverse;
}
@media (max-width: 1200px) {
  main .feature .wrapper .box:last-of-type::before {
    height: 8vw;
    width: 16vw;
    bottom: 4vw;
    right: 5vw;
  }
}
@media (max-width: 768px) {
  main .feature .wrapper .box:last-of-type::before {
    right: -1vw;
  }
}
@media (max-width: 450px) {
  main .feature .wrapper .box:last-of-type::before {
    height: 11vw;
    width: 23vw;
    bottom: 6vw;
  }
}
main .feature .wrapper .box::after {
  content: "";
  display: block;
  background-image: url(../img/about/goal_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0, 0);
}

.page-template-page-company .contents table {
  max-width: 1000px;
  margin: 0 auto;
}
.page-template-page-company .contents table tr {
  font-weight: 500;
  border-bottom: 1px solid gray;
}
.page-template-page-company .contents table tr th, .page-template-page-company .contents table tr td {
  padding: 20px 0;
}
.page-template-page-company .contents table tr th {
  color: var(--color-green);
  font-weight: inherit;
  width: 150px;
}
@media (max-width: 768px) {
  .page-template-page-company .contents table tr th, .page-template-page-company .contents table tr td {
    padding: 10px 0;
  }
  .page-template-page-company .contents table tr th {
    width: 100px;
  }
}
.page-template-page-company .contact {
  background: white;
}
.page-template-page-company .contact .wrapper {
  border-radius: 0 100px 0 0;
}
@media (max-width: 1200px) {
  .page-template-page-company .contact .wrapper {
    border-radius: 0 80px 0 0;
  }
}
@media (max-width: 768px) {
  .page-template-page-company .contact .wrapper {
    border-radius: 0 60px 0 0;
  }
}

.page-template-page-price .price .inner .inner__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-template-page-price .price .inner .inner__inner .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 6%;
}
.page-template-page-price .price .inner .inner__inner .wrapper .img {
  width: 55%;
}
.page-template-page-price .price .inner .inner__inner .wrapper .img img {
  border-radius: 30px;
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt {
  width: 39%;
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt .name {
  font-size: clamp(3rem, 2.167rem + 0.69vw, 3.5rem);
  font-weight: 700;
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt table {
  width: 80%;
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt table tr {
  border-bottom: 1px solid var(--color-orange);
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt table tr th, .page-template-page-price .price .inner .inner__inner .wrapper .txt table tr td {
  font-weight: 500;
  padding: 10px 0;
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt table tr th {
  color: var(--color-orange);
  width: 100px;
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt table tr td .sm {
  font-weight: 400;
  font-size: 90%;
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt .tag__box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  row-gap: 5px;
}
.page-template-page-price .price .inner .inner__inner .wrapper .txt .tag__box span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: var(--color-orange);
  border-radius: 5px;
  padding: 0 10px;
}
.page-template-page-price .price .inner .inner__inner .img__box {
  display: flex;
  gap: 5%;
}
.page-template-page-price .price .inner .inner__inner .img__box img {
  width: 30%;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .page-template-page-price .price .inner .inner__inner .wrapper .img img {
    border-radius: 10px;
  }
  .page-template-page-price .price .inner .inner__inner .wrapper .txt .name {
    font-size: clamp(2.4rem, 2.127rem + 0.73vw, 3rem);
  }
}
@media (max-width: 768px) {
  .page-template-page-price .price .inner .inner__inner .wrapper {
    flex-direction: column;
    row-gap: 40px;
  }
  .page-template-page-price .price .inner .inner__inner .wrapper .img,
  .page-template-page-price .price .inner .inner__inner .wrapper .txt {
    width: 100%;
  }
  .page-template-page-price .price .inner .inner__inner .img__box img {
    border-radius: 10px;
  }
}
@media (max-width: 500px) {
  .page-template-page-price .price .inner .inner__inner .img__box {
    flex-direction: column;
    row-gap: 20px;
  }
  .page-template-page-price .price .inner .inner__inner .img__box img {
    width: 100%;
  }
}
.page-template-page-price .flow .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-template-page-price .flow .inner .flow,
.page-template-page-price .flow .inner .move {
  width: 47%;
  border: 2px solid var(--color-green);
  border-radius: 20px;
  background: white;
  padding: 80px 60px;
}
.page-template-page-price .flow .inner .flow .contents dl {
  max-width: 350px;
  margin: 100px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: 500;
}
.page-template-page-price .flow .inner .flow .contents dl dt {
  width: 60px;
  padding: 0.5em 1em 0.5em 0;
  color: var(--color-green);
  position: relative;
}
.page-template-page-price .flow .inner .flow .contents dl dt::after {
  content: "";
  position: absolute;
  right: -15px;
  width: 30px;
  height: 30px;
  top: 12px;
  background: url(../img/circle.png) 100%/100%;
  z-index: 1;
}
.page-template-page-price .flow .inner .flow .contents dl dd {
  width: calc(100% - 60px);
  padding: 0.5em 1em 1em;
  position: relative;
}
.page-template-page-price .flow .inner .flow .contents dl dd::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--color-green);
  top: 0;
  left: 0;
}
.page-template-page-price .flow .inner .flow .contents dl dd:first-of-type::before {
  height: 50%;
  top: 50%;
}
.page-template-page-price .flow .inner .flow .contents dl dd:last-of-type::before {
  height: 50%;
}
.page-template-page-price .flow .inner .move .flow__box {
  margin: 40px 0;
  display: flex;
  align-items: center;
}
.page-template-page-price .flow .inner .move .flow__box .num {
  width: 80px;
  height: 80px;
  border-right: 1px solid #aaaaaa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  color: var(--color-green);
  font-weight: 700;
}
.page-template-page-price .flow .inner .move .flow__box img {
  margin: 0 20px;
  width: 50px;
}
.page-template-page-price .flow .inner .move .flow__box .txt {
  width: calc(100% - 80px - 50px);
}
.page-template-page-price .flow .inner .move .flow__box .txt .ttl {
  font-weight: 500;
  color: var(--color-green);
}
@media (max-width: 1000px) {
  .page-template-page-price .flow .inner {
    flex-direction: column;
    row-gap: 40px;
  }
  .page-template-page-price .flow .inner .flow, .page-template-page-price .flow .inner .move {
    width: 100%;
    padding: 40px 30px;
  }
  .page-template-page-price .flow .inner .flow .contents dl {
    margin: 40px auto;
  }
  .page-template-page-price .flow .inner .move .flow__box {
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  .page-template-page-price .flow .inner .flow, .page-template-page-price .flow .inner .move {
    padding: 20px 5%;
  }
  .page-template-page-price .flow .inner .flow .contents dl {
    margin: 20px auto;
  }
  .page-template-page-price .flow .inner .move .flow__box .num {
    width: 60px;
    font-size: 2.8rem;
  }
  .page-template-page-price .flow .inner .move .flow__box img {
    width: 40px;
  }
  .page-template-page-price .flow .inner .move .flow__box .txt {
    width: calc(100% - 20px - 40px);
  }
}
.page-template-page-price .residents .inner .inner__inner {
  background: var(--color-cyan);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 6%;
  padding: 0 5%;
}
.page-template-page-price .residents .inner .inner__inner .list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 650px;
}
.page-template-page-price .residents .inner .inner__inner .list dl dt {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: var(--color-green);
  color: white;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.page-template-page-price .residents .inner .inner__inner .list dl dd {
  width: calc(100% - 40px - 20px);
}
@media (max-width: 768px) {
  .page-template-page-price .residents .inner .inner__inner {
    flex-direction: column;
  }
}
.page-template-page-price .contact {
  background: white;
}
.page-template-page-price .contact .wrapper {
  border-radius: 0 100px 0 0;
}
@media (max-width: 1200px) {
  .page-template-page-price .contact .wrapper {
    border-radius: 0 80px 0 0;
  }
}
@media (max-width: 768px) {
  .page-template-page-price .contact .wrapper {
    border-radius: 0 60px 0 0;
  }
}

/*# sourceMappingURL=style.css.map */
