.sub-visual {
  display: none;
}
@media (min-width: 901px) {
  .sub-visual {
    display: block;
    position: relative;
    width: 320px;
    height: 400px;
  }
  .sub-visual .fade-in li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: fadein 15s infinite;
  }
  .sub-visual .fade-in li::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset -20px -20px 10px rgb(255, 255, 255);
    border-radius: 0 0 20px 0;
  }
  .sub-visual .fade-in li img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0 0 20px 0;
  }
  .sub-visual .fade-in li:nth-child(1) {
    animation-delay: 0s;
  }
  .sub-visual .fade-in li:nth-child(1) img {
    -o-object-position: 30% 50%;
       object-position: 30% 50%;
  }
  .sub-visual .fade-in li:nth-child(2) {
    animation-delay: 5s;
  }
  .sub-visual .fade-in li:nth-child(3) {
    animation-delay: 10s;
  }
  @keyframes fadein {
    0% {
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    30% {
      opacity: 1;
    }
    45% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
}

#header .header-wrapper {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 10px 4px;
}
@media (min-width: 901px) {
  #header .header-wrapper {
    width: 300px;
    background-color: transparent;
    padding: 10px 16px;
  }
}
#header .header-wrapper .header-contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 901px) {
  #header .header-wrapper .header-contents {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
#header .header-wrapper .header-contents h1 a {
  display: block;
  width: 200px;
}
@media (min-width: 901px) {
  #header .header-wrapper .header-contents h1 a {
    width: 240px;
    margin-top: 20px;
  }
}
#header .header-wrapper .header-contents h1 a img {
  width: 100%;
  height: 60px;
}
@media (min-width: 901px) {
  #header .header-wrapper .header-contents h1 a img {
    width: 100%;
    height: 80px;
  }
}
#header .header-wrapper .header-contents nav {
  position: fixed;
  width: 100%;
  background-color: #f8e1e7;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  transition: all 0.7s;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 901px) {
  #header .header-wrapper .header-contents nav {
    position: static;
    width: 240px;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
  }
}
#header .header-wrapper .header-contents nav ul {
  margin-top: 80px;
}
#header .header-wrapper .header-contents nav ul li {
  margin-bottom: 32px;
}
#header .header-wrapper .header-contents nav ul li li:last-of-type {
  margin-bottom: 0;
}
#header .header-wrapper .header-contents nav ul li a {
  color: #444;
  font-size: 1.25rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  transition: all 0.3s;
}
#header .header-wrapper .header-contents nav ul li a:hover {
  color: #b08ca5;
  filter: drop-shadow(2px 2px 1px rgb(255, 255, 255));
}
@media (min-width: 901px) {
  #header .header-wrapper .header-contents nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.1rem;
    border-radius: 20px;
    color: #e5a9b7;
  }
}
#header .header-wrapper .header-contents .toggle-btn {
  display: block;
  position: absolute;
  top: 8px;
  right: 10px;
  width: 40px;
  height: 40px;
  transition: all 0.7s;
  cursor: pointer;
  z-index: 200;
}
@media (min-width: 901px) {
  #header .header-wrapper .header-contents .toggle-btn {
    display: none;
  }
}
#header .header-wrapper .header-contents .toggle-btn span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background-color: #555;
  border-radius: 4px;
  transform: translate(0, 0);
  transform-origin: right;
  transition: all 0.22s ease 0s;
}
#header .header-wrapper .header-contents .toggle-btn span:hover {
  opacity: 0.6;
}
#header .header-wrapper .header-contents .toggle-btn span:nth-child(1) {
  top: 11px;
  animation: equalizer1 7s infinite;
}
@keyframes equalizer1 {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}
#header .header-wrapper .header-contents .toggle-btn span:nth-child(2) {
  top: 23px;
  animation: equalizer2 5s infinite;
  animation-delay: 0.33s;
}
@keyframes equalizer2 {
  0% {
    width: 50%;
  }
  10% {
    width: 40%;
  }
  30% {
    width: 60%;
  }
  40% {
    width: 40%;
  }
  50% {
    width: 5ch;
  }
  60% {
    width: 40%;
  }
  70% {
    width: 20%;
  }
  80% {
    width: 60%;
  }
  90% {
    width: 30%;
  }
  100% {
    width: 50%;
  }
}
#header .header-wrapper .header-contents .toggle-btn span:nth-child(3) {
  top: 36px;
  animation: equalizer2 5s infinite;
}
@keyframes equalizer2 {
  0% {
    width: 60%;
  }
  10% {
    width: 50%;
  }
  30% {
    width: 70%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 60%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 40%;
  }
  80% {
    width: 70%;
  }
  90% {
    width: 40%;
  }
  100% {
    width: 60%;
  }
}
#header .header-wrapper .freetrial-btn {
  display: inline-block;
  position: absolute;
  top: 16px;
  right: 64px;
  width: 48px;
  height: 48px;
  background-color: #e5a9b7;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  transition: all 0.7s;
}
@media (min-width: 901px) {
  #header .header-wrapper .freetrial-btn {
    display: none;
  }
}
#header .header-wrapper .freetrial-btn:hover {
  background-color: #fff;
  color: #e5a9b7;
  border: 1px solid #e5a9b7;
}
#header .header-wrapper .instagram {
  display: none;
}
@media (min-width: 901px) {
  #header .header-wrapper .instagram {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 80px;
    cursor: pointer;
  }
  #header .header-wrapper .instagram img {
    width: 32px;
    height: 32px;
    transition: transform 0.5s ease;
  }
  #header .header-wrapper .instagram:hover img {
    transform: scale(1.2);
  }
  #header .header-wrapper .instagram a {
    transition: all 0.5s;
  }
  #header .header-wrapper .instagram a:hover {
    color: #e5a9b7;
  }
}
#header .header-wrapper .trial-btn {
  display: none;
}
@media (min-width: 901px) {
  #header .header-wrapper .trial-btn {
    display: inline-block;
    background-color: #8bcfd0;
    padding: 8px 12px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    outline: 1px solid #8bcfd0;
    outline-offset: 0px;
    margin-top: 40px;
    transition: all 0.3s;
  }
}
#header .header-wrapper .trial-btn:hover {
  animation: light 0.8s infinite;
  border-radius: 20px;
}
@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}

#header.open .header-wrapper .header-contents nav {
  opacity: 1;
  visibility: visible;
}
#header.open .header-wrapper .header-contents .toggle-btn span:nth-child(1) {
  top: 22px;
  left: 0;
  transform-origin: center;
  transform: rotate(-315deg);
  animation: none;
}
#header.open .header-wrapper .header-contents .toggle-btn span:nth-child(2) {
  opacity: 0;
}
#header.open .header-wrapper .header-contents .toggle-btn span:nth-child(3) {
  top: 22px;
  left: 0;
  transform-origin: center;
  transform: rotate(315deg);
  animation: none;
}

.mainvisual {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  margin-top: 20px;
}
.mainvisual::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 20px 20px rgb(255, 255, 255);
}
@media (min-width: 901px) {
  .mainvisual {
    height: 100vh;
    margin-top: 0;
  }
}
.mainvisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30% 50%;
     object-position: 30% 50%;
}
@media (min-width: 901px) {
  .mainvisual img {
    -o-object-position: 5% 50%;
       object-position: 5% 50%;
  }
}

.catchphrase {
  position: absolute;
  bottom: 24%;
  left: 4%;
}
@media (min-width: 901px) {
  .catchphrase {
    position: absolute;
  }
}
.catchphrase .en {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  color: #444;
  filter: drop-shadow(2px 2px 1px rgb(255, 255, 255));
}
.catchphrase .ja {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  color: #444;
  filter: drop-shadow(2px 2px 1px rgb(255, 255, 255));
}

section {
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 252, 253, 0.6) 0%, rgb(255, 252, 253) 30%, rgb(255, 252, 253) 70%, rgba(255, 252, 253, 0.6) 100%);
  padding: 40px 0;
  margin-top: 60px;
}
@media (min-width: 901px) {
  section {
    margin-top: 100px;
  }
}
section .section-inner {
  max-width: 360px;
  margin: 0 auto;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

#studio p {
  line-height: 2rem;
  font-size: 1.125rem;
  margin-top: 40px;
}
#studio .btn {
  text-align: center;
}
#studio .btn a {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  height: 48px;
  border: 1px solid #e5a9b7;
  border-radius: 20px;
  background-color: #fff;
  line-height: 48px;
  color: #e5a9b7;
  margin: 60px auto 0 auto;
  transition: all 0.7s;
}
#studio .btn a:hover {
  background-color: #e5a9b7;
  color: #fff;
  border: 1px solid #e5a9b7;
}

#lesson .section-inner .lesson-inner li {
  width: 320px;
  height: 420px;
  border: 2px solid #f8e1e7;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  margin: 40px auto 0 auto;
}
#lesson .section-inner .lesson-inner li .lesson-img {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}
#lesson .section-inner .lesson-inner li .lesson-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 10px 20px rgb(255, 255, 255);
  border-radius: 10px;
}
#lesson .section-inner .lesson-inner li .lesson-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30% 50%;
     object-position: 30% 50%;
}
#lesson .section-inner .lesson-inner li p {
  margin-top: 8px;
}
#lesson .section-inner .lesson-inner li a {
  display: inline-block;
  width: 120px;
  height: 30px;
  border: 2px solid #f8e1e7;
  border-radius: 20px;
  font-size: 14px;
  margin-top: 16px;
  transition: all 0.7s;
}
#lesson .section-inner .lesson-inner li a:hover {
  border: 5px solid #f8e1e7;
}
#lesson .section-inner .btn {
  text-align: center;
}
#lesson .section-inner .btn a {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  height: 48px;
  border: 1px solid #e5a9b7;
  border-radius: 20px;
  background-color: #fff;
  line-height: 48px;
  color: #e5a9b7;
  margin: 60px auto 0 auto;
  transition: all 0.7s;
}
#lesson .section-inner .btn a:hover {
  background-color: #e5a9b7;
  color: #fff;
  border: 1px solid #e5a9b7;
}

#childcare .section-inner p {
  margin-top: 20px;
}
#childcare .section-inner .childcare-price {
  font-size: 0.875rem;
  text-align: end;
  margin-top: 8px;
}
#childcare .section-inner .btn {
  text-align: center;
}
#childcare .section-inner .btn a {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  height: 48px;
  border: 1px solid #e5a9b7;
  border-radius: 20px;
  background-color: #fff;
  line-height: 48px;
  color: #e5a9b7;
  margin: 60px auto 0 auto;
  transition: all 0.7s;
}
#childcare .section-inner .btn a:hover {
  background-color: #e5a9b7;
  color: #fff;
  border: 1px solid #e5a9b7;
}

.img-left,
.img-right {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.img-left::after,
.img-right::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 8px 8px rgb(255, 255, 255);
  border-radius: 50%;
}
.img-left img,
.img-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-left {
  width: 160px;
  height: 160px;
  margin-top: 20px;
  margin-left: 20px;
}
.img-left img {
  -o-object-position: 90% 50%;
     object-position: 90% 50%;
}

.img-right {
  width: 240px;
  height: 240px;
  margin-left: 90px;
  margin-top: -60px;
  z-index: 1;
}

@media (min-width: 901px) {
  #CV {
    display: none;
  }
}
#CV .section-inner {
  text-align: center;
}
#CV .section-inner p {
  font-size: 14px;
}
#CV .CV {
  margin-bottom: 8px;
}
#CV .CVbtn {
  text-align: center;
}
#CV .CVbtn a {
  display: inline-block;
  width: 360px;
  height: 48px;
  border-radius: 20px;
  background-color: #8bcfd0;
  line-height: 48px;
  color: #fff;
  text-align: center;
  outline: 1px solid #8bcfd0;
  outline-offset: 0px;
  transition: all 0.3s;
}
#CV a:hover {
  animation: light 0.8s infinite;
  border-radius: 20px;
}
@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}

#voice {
  width: 100%;
}
#voice .slide-items {
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
}
#voice .slide-items li {
  width: 300px;
  height: 400px;
  border: 1px solid #f8e1e7;
  border-radius: 10px;
  background-color: #fff;
  margin: 20px 16px;
  transition: all 0.3s;
}
#voice .slide-items li:hover {
  transform: scale(1.1);
}
#voice .slide-items li .slide-items-img {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto 0 auto;
}
#voice .slide-items li .slide-items-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 8px 8px rgb(255, 255, 255);
  border-radius: 50%;
}
#voice .slide-items li .slide-items-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#voice .slide-items li .person {
  margin-top: 20px;
}
#voice .slide-items li .comment {
  text-align: start;
  width: 240px;
  margin: 40px auto 0 auto;
  line-height: 1.6;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
  filter: grayscale(1);
  margin: 40px auto 0 auto;
}

.info {
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto 0 auto;
}
.info dt {
  width: 20%;
  text-align: center;
}
.info dt img {
  width: 20px;
  height: 20px;
}
.info dd {
  width: 80%;
  font-size: 0.875rem;
}

#contact .maintext {
  margin-top: 40px;
}
#contact .subtext {
  font-size: 0.875rem;
  margin-top: 24px;
}
#contact form {
  max-width: 320px;
  font-size: 0.875rem;
  margin: 40px auto 0 auto;
}
#contact form label {
  display: block;
  margin-bottom: 4px;
}
#contact form input {
  display: block;
  width: 100%;
  line-height: 2rem;
  border: 1px solid #f8e1e7;
  border-radius: 10px;
  padding: 0 8px;
  margin-bottom: 32px;
}
#contact form select {
  width: 100%;
  line-height: 2rem;
  border: 1px solid #f8e1e7;
  border-radius: 10px;
  color: #555;
  font-size: 0.875rem;
  -webkit-appearance: menulist;
     -moz-appearance: menulist;
          appearance: menulist;
  padding-left: 8px;
  margin-bottom: 32px;
}
#contact form textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #f8e1e7;
  border-radius: 10px;
  padding: 0 8px;
}
#contact form .submit {
  width: 120px;
  line-height: 48px;
  border-radius: 20px;
  background-color: #8bcfd0;
  color: #fff;
  margin: 40px auto 0 auto;
  outline: 1px solid #8bcfd0;
  outline-offset: -1px;
  transition: all 0.3s;
}
#contact form .submit:hover {
  animation: light 0.8s infinite;
  border-radius: 20px;
}
@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}

#footer {
  width: 100%;
  padding-top: 20px;
}

.footer-navarea {
  margin: 20px auto;
}
.footer-navarea a {
  display: block;
  width: 160px;
  margin: 0 auto;
}
.footer-navarea a img {
  width: 100%;
}
.footer-navarea .footer-nav {
  display: flex;
  flex-wrap: wrap;
  width: 320px;
  font-size: 0.75rem;
  margin: 10px auto;
}
.footer-navarea .footer-nav li {
  text-align: center;
  padding: 8px 0;
}
@media (min-width: 901px) {
  .footer-navarea {
    display: none;
  }
}

.footer {
  width: 100%;
  background: linear-gradient(to bottom, rgba(248, 225, 231, 0) 0%, rgba(248, 225, 231, 0.7) 20%, rgb(248, 225, 231) 50%);
  text-align: center;
  padding: 20px 0 10px 0;
}
.footer .instagram {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 280px;
  font-size: 0.875rem;
  margin: 0 auto 40px;
  cursor: pointer;
}
.footer .instagram img {
  width: 32px;
  height: 32px;
  transition: transform 0.6s ease;
}
.footer .instagram:hover img {
  transform: scale(1.2);
}
.footer .instagram a {
  transition: all 0.5s;
}
.footer .instagram a:hover {
  color: #e5a9b7;
}

.copyright {
  font-size: 0.625rem;
}

.sub-page #header {
  position: fixed;
  width: 100%;
  height: 100px;
  display: block;
}
.sub-page #header .sub-visual,
.sub-page #header .instagram,
.sub-page #header .trial-btn {
  display: none;
}
.sub-page #header .header-wrapper {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 10px 4px;
}
.sub-page #header .header-wrapper .header-contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 901px) {
  .sub-page #header .header-wrapper .header-contents {
    width: 100%;
    margin: 0;
  }
}
.sub-page #header .header-wrapper .header-contents h1 a {
  width: 200px;
}
@media (min-width: 901px) {
  .sub-page #header .header-wrapper .header-contents h1 a {
    width: 240px;
    margin-top: 0;
  }
}
@media (min-width: 901px) {
  .sub-page #header .header-wrapper .header-contents nav {
    position: fixed;
    width: 100%;
    background-color: #f8e1e7;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    transition: all 0.5s;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
  }
}
.sub-page #header .header-wrapper .header-contents .toggle-btn {
  display: block;
  position: fixed;
  top: 19px;
  right: 16px;
}
@media (min-width: 901px) {
  .sub-page #header .header-wrapper .header-contents .toggle-btn {
    display: block;
  }
}
.sub-page #header .header-wrapper .freetrial-btn {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 64px;
  width: 48px;
  height: 48px;
  background-color: #e5a9b7;
  border-radius: 10px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  padding: 4px;
}
.sub-page #header .header-wrapper .freetrial-btn:hover {
  background-color: #fff;
  color: #e5a9b7;
  border: 1px solid #e5a9b7;
}
@media (min-width: 901px) {
  .sub-page #header.open .header-wrapper .header-contents nav {
    opacity: 1;
    visibility: visible;
  }
}

.sub-page #main {
  max-width: 600px;
  width: 100%;
  padding: 0 16px;
  margin: 120px auto 0 auto;
}
.sub-page #main section {
  background: transparent;
  padding: 20px 0;
  margin-top: 40px;
}
@media (min-width: 901px) {
  .sub-page #main section {
    margin-top: 60px;
  }
}
.sub-page #main #instructor .lead, .sub-page #main #nurseryteacher .lead {
  text-align: center;
  line-height: 2rem;
  margin-top: 20px;
}
@media (min-width: 901px) {
  .sub-page #main #instructor .lead, .sub-page #main #nurseryteacher .lead {
    margin-top: 40px;
  }
}
.sub-page #main #instructor .introduction, .sub-page #main #nurseryteacher .introduction {
  max-width: 400px;
  border: 2px solid #f8e1e7;
  border-radius: 10px;
  background-color: #fff;
  margin: 40px auto 0 auto;
}
@media (min-width: 901px) {
  .sub-page #main #instructor .introduction, .sub-page #main #nurseryteacher .introduction {
    max-width: 540px;
    margin: 60px auto 0 auto;
  }
}
.sub-page #main #instructor .introduction img, .sub-page #main #nurseryteacher .introduction img {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 20px auto 0 auto;
}
@media (min-width: 901px) {
  .sub-page #main #instructor .introduction img, .sub-page #main #nurseryteacher .introduction img {
    width: 240px;
    height: 240px;
  }
}
.sub-page #main #instructor .introduction .name, .sub-page #main #nurseryteacher .introduction .name {
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
}
.sub-page #main #instructor .introduction dl, .sub-page #main #nurseryteacher .introduction dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 8%;
  margin: 20px;
}
@media (min-width: 901px) {
  .sub-page #main #instructor .introduction dl, .sub-page #main #nurseryteacher .introduction dl {
    padding: 0 12%;
    margin-top: 36px;
  }
}
.sub-page #main #instructor .introduction dl dt, .sub-page #main #nurseryteacher .introduction dl dt {
  width: 20%;
  margin-bottom: 30px;
}
.sub-page #main #instructor .introduction dl dt img, .sub-page #main #nurseryteacher .introduction dl dt img {
  width: 20px;
  height: 20px;
  border-radius: 0%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 901px) {
  .sub-page #main #instructor .introduction dl dt img, .sub-page #main #nurseryteacher .introduction dl dt img {
    width: 30px;
    height: 30px;
  }
}
.sub-page #main #instructor .introduction dl dd, .sub-page #main #nurseryteacher .introduction dl dd {
  width: 80%;
}
.sub-page #main #instructor .introduction dl dd ul, .sub-page #main #nurseryteacher .introduction dl dd ul {
  padding-left: 20px;
}
.sub-page #main #instructor .introduction dl dd ul li, .sub-page #main #nurseryteacher .introduction dl dd ul li {
  list-style: disc;
}
.sub-page #main #cvbtn .CVbtn {
  text-align: center;
}
.sub-page #main #cvbtn .CVbtn a {
  display: inline-block;
  width: 360px;
  height: 48px;
  border-radius: 20px;
  background-color: #8bcfd0;
  line-height: 48px;
  color: #fff;
  text-align: center;
  outline: 1px solid #8bcfd0;
  outline-offset: 0px;
  transition: all 0.3s;
}
.sub-page #main #cvbtn a:hover {
  animation: light 0.8s infinite;
  border-radius: 20px;
}
@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}
.sub-page #footer {
  position: relative;
  z-index: 20;
  margin-top: 40px;
}

.sub-page #main #yoga {
  text-align: center;
}
.sub-page #main #yoga .sub-title {
  font-size: 1.25rem;
  margin-top: 40px;
}
.sub-page #main #yoga .yoga-img {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 10px auto 0 auto;
}
@media (min-width: 901px) {
  .sub-page #main #yoga .yoga-img {
    width: 480px;
    height: 480px;
    margin: 30px auto 0 auto;
  }
}
.sub-page #main #yoga .yoga-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 10px 10px rgb(255, 255, 255);
}
.sub-page #main #yoga .yoga-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-page #main #yoga .text {
  width: 320px;
  text-align: start;
  margin: 20px auto 0 auto;
}
@media (min-width: 901px) {
  .sub-page #main #yoga .text {
    width: 440px;
    margin: 30px auto 0 auto;
  }
}
.sub-page #main #yoga .recommendation {
  position: relative;
  line-height: 1rem;
  margin-top: 40px;
}
.sub-page #main #yoga .recommendation::before, .sub-page #main #yoga .recommendation::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../img/lotus.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: blink 1.5s infinite;
}
.sub-page #main #yoga .recommendation::before {
  margin-right: 0.5rem;
}
.sub-page #main #yoga .recommendation::after {
  margin-left: 0.5rem;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.sub-page #main #yoga ul {
  width: 360px;
  text-align: start;
  padding-left: 40px;
  margin: 10px auto 0 auto;
}
.sub-page #main #yoga ul li {
  list-style: disc;
}
.sub-page #main #yoga .name {
  margin-top: 60px;
  font-weight: bold;
}
.sub-page #main #yoga .instructor {
  display: flex;
  align-items: center;
  width: 300px;
  margin: 12px auto 0 auto;
}
.sub-page #main #yoga .instructor p {
  width: 30%;
  text-align: start;
  line-height: 1rem;
  margin-top: 0;
}
.sub-page #main #yoga .instructor a {
  display: block;
  width: 70%;
  text-align: center;
  border: 2px solid #f8e1e7;
  border-radius: 20px;
  transition: all 0.3s;
}
.sub-page #main #yoga .instructor a:hover {
  border: 2px solid #e5a9b7;
  color: #e5a9b7;
}
.sub-page #main #cvbtn .cvbtn {
  text-align: center;
}
.sub-page #main #cvbtn .cvbtn a {
  display: inline-block;
  width: 360px;
  height: 48px;
  border-radius: 20px;
  background-color: #8bcfd0;
  line-height: 48px;
  color: #fff;
  text-align: center;
  outline: 1px solid #8bcfd0;
  outline-offset: 0px;
  transition: all 0.3s;
}

#pricelist {
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
}
#pricelist h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
#pricelist h3::before, #pricelist h3::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url(../img/lotus.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.5rem;
  vertical-align: middle;
}
#pricelist h3::before {
  margin-right: 1.5rem;
}
#pricelist h3::after {
  margin-left: 1.5rem;
}
#pricelist table {
  max-width: 360px;
  width: 100%;
  margin: 20px auto 80px auto;
}
#pricelist table th, #pricelist table td {
  width: 50%;
  padding: 12px;
  text-align: center;
}
#pricelist table th {
  font-weight: normal;
  border-bottom: 2px solid #b08ca5;
}
#pricelist table td {
  border-bottom: 2px solid #e9d9f2;
}
#pricelist .sign-up {
  font-weight: bold;
  margin-top: 40px;
  margin-right: 10px;
}
#pricelist .sign-up-text {
  font-size: 14px;
  margin: 20px 0 80px 0;
}
#pricelist .childcare-price {
  margin-top: 40px;
}

html {
  font-size: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  color: #555;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

body.no-scroll {
  position: fixed;
  width: 100%;
}

a {
  color: #555;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}
#splash .splash-text {
  text-align: center;
  font-size: 2rem;
  color: #555;
  line-height: 1.8;
}
#splash .splash-text #line1 {
  font-family: "Playfair Display", serif;
}
#splash .splash-text #line2 {
  font-family: "Noto Serif JP", serif;
}

.animated-text {
  visibility: hidden;
}
.animated-text span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.background video, .background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.background video {
  display: none;
}
.background img {
  display: block;
  filter: brightness(1.15);
}
@media (min-width: 901px) {
  .background video {
    display: block;
    filter: brightness(1.06);
  }
  .background img {
    display: none;
  }
}

.container {
  display: block;
}
@media (min-width: 901px) {
  .container {
    display: flex;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media (min-width: 901px) {
  #header {
    display: flex;
    width: calc(100% - 600px);
    height: 100vh;
  }
}

.sp-page {
  margin-top: 80px;
}
@media (min-width: 901px) {
  .sp-page {
    width: 600px;
    margin-top: 0;
    margin-left: calc(100% - 600px);
  }
}

h2 {
  font-size: 24px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #b08ca5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
h2::before, h2::after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #e9d9f2;
}
h2::before {
  margin-right: 1rem;
  background: linear-gradient(-90deg, #e9d9f2, transparent);
}
h2::after {
  margin-left: 1rem;
  background: linear-gradient(90deg, #e9d9f2, transparent);
}

h3 {
  font-size: 1, 25rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #444;
  text-align: center;
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */