/* Header */
header {
  background: #F6BFBC;
  height: 56px;
  width: 100%;
  max-width: 500px;
  position: fixed;
  box-shadow: 0 4px 4px #F6BFBC;
  z-index: 20;
}
@media (min-width: 980px) {
  header {
    background: transparent;
    box-shadow: none;
  }
}
header .header-icon {
  display: flex;
  justify-content: end;
  position: fixed;
  width: 100%;
  max-width: 500px;
  z-index: 30;
}
@media (min-width: 980px) {
  header .header-icon {
    display: none;
  }
}
header .header-icon li {
  width: 63px;
  height: 55px;
  background-image: url(../img/nav-deco.png);
  background-size: contain;
  cursor: pointer;
  position: relative;
}
header .header-icon li:active {
  transform: translateY(2px);
  transition: all 0.3s;
}
header .header-icon li img {
  position: absolute;
  width: 35px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}
header .header-icon li span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #1D2520;
  opacity: 0.7;
  transition: all 0.5s;
  position: absolute;
  left: 16px;
}
header .header-icon li span:nth-of-type(1) {
  top: 12px;
}
header .header-icon li span:nth-of-type(2) {
  top: 23px;
}
header .header-icon li span:nth-of-type(3) {
  top: 34px;
}

@keyframes bar01 {
  0% {
    transform: translateY(11px) rotate(45deg);
  }
  50% {
    transform: translateY(11px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes bar03 {
  0% {
    transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(11px) rotate(45deg);
  }
}
@keyframes active-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(-11px) rotate(-45deg);
  }
}
nav {
  position: fixed;
  top: 0;
  left: -100%;
  opacity: 0;
  width: 250px;
  height: 100vh;
  background: #F6BFBC;
  padding: 50px 24px;
  font-size: 20px;
  z-index: 20;
  transition: all 0.5s;
}
@media (min-width: 980px) {
  nav {
    top: 10%;
    left: 5%;
    background-color: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    padding: 0 32px;
    border-right: 1px solid #1D2520;
    border-bottom: 1px solid #1D2520;
  }
}
nav li {
  margin-bottom: 33px;
}
nav li a {
  position: relative;
}
@media (min-width: 980px) {
  nav li a .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 16px;
    background: #1D2520;
    opacity: 0;
    transition: all 0.5s;
  }
  nav li a.active .dot {
    opacity: 1;
  }
  nav li a::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1D2520;
    left: 0px;
    top: 5px;
    opacity: 0;
    transition: all 0.5s;
  }
  nav li a:hover::after {
    opacity: 1;
  }
}

.mask {
  width: 100%;
  max-width: 500px;
  height: 100vh;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
  display: none;
  transition: all 0.5s;
}

.open .header-icon li:first-child {
  display: none;
}
.open .header-icon li {
  background-image: none;
}
.open .header-icon li span:nth-of-type(1) {
  animation: active-bar01 0.75s forwards;
  background-color: #ffffff;
}
.open .header-icon li span:nth-of-type(2) {
  opacity: 0;
}
.open .header-icon li span:nth-of-type(3) {
  animation: active-bar03 0.75s forwards;
  background-color: #ffffff;
}
.open nav {
  display: block;
  left: 0;
  opacity: 1;
}
@media (min-width: 980px) {
  .open nav {
    left: 50%;
    transform: translateX(-100%);
  }
}
.open .mask {
  display: block;
}

body {
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  color: #1D2520;
  font-size: 0.875rem;
  line-height: 140%;
  background-image: linear-gradient(0deg, rgba(250, 214, 212, 0.8) 10%, rgba(245, 182, 181, 0.8) 40%, rgba(243, 168, 171, 0.8) 68%, rgba(240, 145, 153, 0.6) 90%);
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #1D2520;
  display: inline-block;
}

.sp-container {
  background-color: #FAF5F6;
  max-width: 500px;
  min-width: 320px;
  margin: 0 auto;
  box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.25);
}

.inner {
  padding: 0 24px 40px;
}

.center {
  text-align: center;
}

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

.pc-back {
  display: none;
}
@media (min-width: 980px) {
  .pc-back {
    display: block;
    background-image: linear-gradient(180deg, rgba(250, 214, 212, 0.8) 10%, rgba(245, 182, 181, 0.8) 40%, rgba(243, 168, 171, 0.8) 68%, rgba(240, 145, 153, 0.6) 90%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .pc-back::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    background-color: #BADCAD;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 980px) {
  .pc-logo {
    width: 20%;
    position: absolute;
    left: 40px;
    bottom: 47px;
  }
  .rose {
    width: 40%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .down {
    font-family: "Aboreto", system-ui;
    writing-mode: vertical-rl;
    font-size: 20px;
    position: absolute;
    right: 5%;
    top: 38%;
  }
  .down::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 200px;
    background-color: #1D2520;
    left: -10px;
  }
  .down::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #1D2520;
    bottom: -36px;
    left: -19px;
    transform: rotate(-70deg);
  }
}
.contact-btn {
  display: none;
}
@media (min-width: 980px) {
  .contact-btn {
    display: block;
    position: fixed;
    top: 10%;
    right: 4%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 10;
  }
  .contact-btn li:hover {
    transform: scale(1.2);
  }
}

.mainvs {
  padding-block: 100px 40px;
  position: relative;
}
@media (min-width: 980px) {
  .mainvs {
    padding-block: 40px;
  }
}
.mainvs .logo {
  width: 170px;
  height: 150px;
  background-image: url(../img/logo-deco.png);
  background-size: contain;
  padding: 45px 10px 0;
  position: absolute;
  z-index: 5;
  top: 166px;
  left: 24px;
}
.mainvs .logo .ja {
  display: flex;
  overflow: hidden;
}
.mainvs .logo .ja span {
  font-size: 11px;
  opacity: 0;
  animation: textanimation 1s forwards;
}
.mainvs .logo .ja span:nth-child(1) {
  animation-delay: 0.2s;
}
.mainvs .logo .ja span:nth-child(2) {
  animation-delay: 0.3s;
}
.mainvs .logo .ja span:nth-child(3) {
  animation-delay: 0.4s;
}
.mainvs .logo .ja span:nth-child(4) {
  animation-delay: 0.5s;
}
.mainvs .logo .ja span:nth-child(5) {
  animation-delay: 0.6s;
}
.mainvs .logo .ja span:nth-child(6) {
  animation-delay: 0.7s;
}
.mainvs .logo .ja span:nth-child(7) {
  animation-delay: 0.8s;
}
.mainvs .logo .ja span:nth-child(8) {
  animation-delay: 0.9s;
}
.mainvs .logo .ja span:nth-child(9) {
  animation-delay: 1s;
}
.mainvs .logo h1 {
  font-family: "WindSong", cursive;
  font-weight: 500;
  font-size: 36px;
  padding-top: 10px;
  padding-left: 35px;
  color: rgba(29, 37, 32, 0.8);
}
.mainvs .logo h1 span {
  animation: textanimation 1s forwards;
  opacity: 0;
  color: rgba(29, 37, 32, 0.8);
}
.mainvs .logo h1 span:nth-child(1) {
  animation-delay: 1.4s;
}
.mainvs .logo h1 span:nth-child(2) {
  animation-delay: 1.6s;
}
.mainvs .logo h1 span:nth-child(3) {
  animation-delay: 1.8s;
}
.mainvs .logo h1 span:nth-child(4) {
  animation-delay: 2s;
}
.mainvs .logo h1 span:nth-child(5) {
  animation-delay: 2.2s;
}
.mainvs .logo h1 span:nth-child(6) {
  animation-delay: 2.4s;
}
@keyframes textanimation {
  0% {
    transform: translateX(2em);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.mainvs .main_img {
  text-align: right;
}
.mainvs .main_img img {
  width: 80%;
}
.mainvs .top_message {
  text-align: justify;
}

.sec_title {
  position: relative;
  padding-block: 70px 40px;
  text-align: center;
}
.sec_title h2 {
  font-weight: normal;
  letter-spacing: 1px;
}
.sec_title h2::before {
  position: absolute;
  content: "";
  width: 106px;
  height: 30px;
  background-image: url(../img/green-deco.png);
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.flex-img {
  display: flex;
  align-items: flex-start;
  padding-inline: 16px;
  justify-content: space-between;
}
.flex-img img {
  width: 47%;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  text-align: center;
  line-height: 47px;
}
table th,
table td {
  border: 1px solid #1D2520;
}
table th {
  background: rgba(186, 220, 173, 0.6);
  font-weight: normal;
}
table td:first-of-type {
  line-height: 26px;
  padding-block: 10px;
}

.home_tercher {
  background-image: url(../img/backimage1.png);
  background-size: contain;
  width: 100%;
  height: 100%;
  padding-top: 120px;
  position: relative;
}
.home_tercher .sec_deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 258px;
}
.home_tercher .inner {
  padding-inline: 33px;
}
.home_tercher .inner th:first-child {
  width: 25%;
}
.home_tercher .inner th:nth-child(2) {
  width: 30%;
}
.home_tercher .flex-img img {
  width: 47%;
  border-left: 5px solid #F6BFBC;
  border-bottom: 5px solid #F6BFBC;
}
.home_tercher .flex-img img:nth-child(2) {
  margin-top: 80px;
}

.gakken {
  padding-top: 40px;
}
.gakken .inner {
  padding-inline: 33px;
}
.gakken .table {
  padding-inline: 24px;
  margin-bottom: 40px;
}
.gakken .table tbody tr:first-child td:last-of-type {
  line-height: 36px;
}
.gakken .table tbody th {
  line-height: 26px;
  padding-block: 10px;
}
.gakken .btn {
  text-align: center;
}
.gakken .btn p {
  font-size: 12px;
  color: rgba(29, 37, 32, 0.8);
  padding-block: 8px;
}
.gakken .btn p img {
  width: 14px;
  vertical-align: text-top;
  margin-left: 2px;
}
.gakken .btn a {
  display: inline-block;
  height: 46px;
  padding: 13px 50px;
  color: #ffffff;
  background: linear-gradient(135deg, transparent 8px, #F6BFBC 0) top left, linear-gradient(-135deg, transparent 8px, #F6BFBC 0) top right, linear-gradient(-45deg, transparent 8px, #F6BFBC 0) bottom right, linear-gradient(45deg, transparent 8px, #F6BFBC 0) bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
}
.gakken .btn a:hover {
  transform: translateY(5px);
  transition: all 0.3s;
  filter: none;
}
.gakken .flex-img {
  margin-bottom: 56px;
}
.gakken .flex-img img:first-child {
  margin-top: 80px;
}

#sec4 {
  padding-top: 58px;
}
#sec4 .contact {
  background: #F6BFBC;
  padding: 32px 24px;
  position: relative;
}
#sec4 .contact::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 123px;
  background-image: url(../img/bara-right.png);
  background-size: cover;
  z-index: 5;
  top: 0;
  right: 0;
}
#sec4 .contact .inner {
  background-color: #ffffff;
  padding: 0 0 32px;
}
#sec4 .contact .inner .center {
  padding-inline: 24px;
}
#sec4 .contact .inner .contact-icon {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin-block: 24px 32px;
}
#sec4 .contact .inner .contact-icon img {
  width: 50px;
}
#sec4 .contact .inner .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#sec4 .contact .inner .flex img {
  width: 45%;
  margin-left: -10px;
}
#sec4 .contact .inner .flex .text {
  width: 54%;
  padding-right: 10px;
}
#sec4 .contact .inner .flex .text p:first-child {
  text-align: center;
  padding-right: 5px;
  border-bottom: 1px solid #A7AEA6;
  border-right: 1px solid #A7AEA6;
  margin-bottom: 16px;
}
#sec4 .contact .inner .flex .text span {
  font-size: 0.75rem;
}
#sec4 .contact .inner .flex .text p:last-child {
  text-align: justify;
}

.to-top {
  width: 73px;
  height: 72px;
  background-image: url(../img/to-top.png);
  background-size: contain;
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 10;
}
@media (min-width: 980px) {
  .to-top {
    bottom: 10px;
  }
}

#sec5 {
  background-image: url(../img/background-grey.png);
  background-size: cover;
}
#sec5 .wrapper {
  max-width: 336px;
  margin: 0 auto 40px;
}
#sec5 .wrapper p {
  margin-bottom: 16px;
}
#sec5 .wrapper iframe {
  width: 100%;
}
#sec5 .copy_wraite {
  height: 91px;
  background-image: url(../img/backimage2.png);
  background-size: cover;
  padding-top: 60px;
}/*# sourceMappingURL=style.css.map */