@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;700;800;900&family=Noto+Sans+JP:wght@700&display=swap");
*, *::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

span {
  color: inherit;
  font-weight: inherit;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333;
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

img[src$=".svg"] {
  width: 100%;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, select {
  vertical-align: middle;
}

.m-plus {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

body {
  background-color: #D0F1FC;
  color: #242424;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.display--sp {
  display: none;
}
@media screen and (max-width: 576px) {
  .display--pc {
    display: none;
  }
  .display--sp {
    display: block;
  }
}

/*
 * 可視範囲に入るとフェードイン
 */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s, transform 1s;
}
.fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
@media screen and (max-width: 576px) {
  .fade-up.is-inview {
    transition-delay: 0.2s;
  }
}

.fence {
  position: absolute;
  z-index: -1;
  width: 528px;
}
@media screen and (max-width: 576px) {
  .fence {
    width: 240px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 100%;
  padding-top: 30px;
}
.header::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 202px;
  background: #D0F1FC;
  background: linear-gradient(180deg, rgb(208, 241, 252) 0%, rgb(208, 241, 252) 75%, rgba(208, 241, 252, 0) 100%);
  content: "";
}
.header__inner {
  display: flex;
  align-items: center;
  position: relative;
  width: 95.7%;
  height: 114px;
  margin: auto;
  padding-left: 58px;
  padding-right: 65px;
  border-radius: 57px;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}
.header__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__name {
  text-align: center;
}
.header__name--ja {
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.header__name--en {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.header__list {
  display: flex;
  align-items: center;
  margin-right: 25px;
  margin-left: auto;
}
.header__item:not(:last-of-type) {
  margin-right: 23px;
}
.header__item img, .header__item span {
  vertical-align: middle;
}
.header__item img {
  width: 31px;
  margin-right: 5px;
}
.header__item span {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.05em;
}
.header__sns {
  display: flex;
  align-items: center;
}
.header__sns--sp {
  display: none;
}
.header__sns--instagram {
  width: 28px;
  margin-right: 15px;
}
.header__sns--tiktok {
  width: 25px;
}
.header__button {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding-right: 130px;
  }
  .header__list {
    display: none;
  }
  .header__button {
    display: block;
    position: fixed;
    top: 45px;
    right: 4.8%;
    z-index: 100;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: #4F94DB;
  }
  .header__button.active .header__line--top {
    transform: translate(-50%, 7px) rotate(30deg);
  }
  .header__button.active .header__line--middle {
    opacity: 0;
  }
  .header__button.active .header__line--bottom {
    transform: translate(-50%, -7px) rotate(-30deg);
  }
  .header__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 27px;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    transition: 0.4s;
  }
  .header__line--top {
    top: 20px;
  }
  .header__line--middle {
    top: 27px;
  }
  .header__line--bottom {
    top: 34px;
  }
  .header__text {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 576px) {
  .header {
    left: 0;
    transform: translateX(100%);
    height: 100%;
    padding: 0;
    background-color: #fff;
    transition: 0.4s;
  }
  .header.active {
    transform: none;
  }
  .header::before {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100%;
  }
  .header__inner {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 22px;
    border-radius: 0;
    box-shadow: none;
  }
  .header__contents {
    display: block;
  }
  .header__name {
    margin-bottom: 50px;
    padding-top: 30px;
    text-align: left;
  }
  .header__list {
    display: block;
    margin: 0 0 30px;
  }
  .header__item a {
    display: block;
    position: relative;
    padding: 18px 0;
  }
  .header__item a::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: "→";
  }
  .header__item:not(:last-of-type) {
    margin: 0;
    border-bottom: 1px solid #ddd;
  }
  .header__sns--pc {
    display: none;
  }
  .header__sns--sp {
    display: block;
  }
  .header__sns--instagram, .header__sns--tiktok {
    width: 100%;
  }
  .header__sns--instagram a, .header__sns--tiktok a {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 80px;
    padding-left: 25px;
    border-radius: 15px;
  }
  .header__sns--instagram a::after, .header__sns--tiktok a::after {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    content: "→";
  }
  .header__sns--instagram span, .header__sns--tiktok span {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
  }
  .header__sns--instagram {
    margin-bottom: 15px;
  }
  .header__sns--instagram a {
    background: #D300C5;
    background: linear-gradient(77deg, rgb(255, 214, 0) 0%, rgb(255, 122, 0) 18%, rgb(255, 0, 105) 45%, rgb(211, 0, 197) 72%, rgb(115, 56, 250) 100%);
  }
  .header__sns--instagram a::after {
    color: #9329e9;
  }
  .header__sns--instagram img {
    width: 28px;
    margin-right: 10px;
  }
  .header__sns--tiktok a {
    background-color: #000;
  }
  .header__sns--tiktok a::after {
    color: #000;
  }
  .header__sns--tiktok img {
    width: 24px;
    margin-right: 14px;
  }
  .header__button {
    top: 10px;
    right: 10px;
  }
}

.footer {
  padding: 90px 42px 37px;
  background-color: #FF86BA;
  color: #fff;
}
.footer__name {
  margin-bottom: 100px;
  text-align: center;
}
.footer__name--ja {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 68px;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.footer__name--en {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.footer__nav {
  margin-bottom: 35px;
}
.footer__nav li:not(:last-of-type) {
  margin-bottom: 16px;
}
.footer__nav a img, .footer__nav a span {
  vertical-align: middle;
}
.footer__nav a img {
  width: 29px;
  margin-right: 6px;
}
.footer__nav a span {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.footer__sns {
  display: flex;
  align-items: center;
  margin-bottom: 133px;
}
.footer__sns--instagram {
  width: 20px;
  margin-right: 20px;
}
.footer__sns--tiktok {
  width: 29px;
}
.footer__sns--tiktok a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 29px;
  border-radius: 50%;
  background-color: #fff;
}
.footer__sns--tiktok a img {
  width: 16px;
}
.footer__credit {
  font-size: 12px;
  letter-spacing: 0.025em;
  text-align: center;
  text-indent: 0.025em;
  white-space: nowrap;
}

.inquiry {
  margin-top: -150px;
  padding-top: 210px;
  padding-bottom: 110px;
  background-color: #FFE49D;
}
.inquiry__inner {
  padding: 0 22px;
}
.inquiry__lead {
  position: relative;
  width: 328px;
  height: 259px;
  margin: 0 auto 35px;
  background-image: url(../images/inquiry_lead_background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.inquiry__lead span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -45%);
  color: #F4654D;
  font-weight: 800;
  font-size: 29px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-align: center;
  text-indent: 0.025em;
  white-space: nowrap;
}
.inquiry__heading {
  margin-bottom: 47px;
  color: #F4654D;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .inquiry {
    margin-top: 0;
    padding-top: 60px;
  }
}

.form__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.form__head {
  margin-bottom: 10px;
  padding-left: 10px;
}
.form__head label {
  color: #F4654D;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.025em;
}
.form__data input[type=text],
.form__data textarea {
  display: block;
  width: 100%;
  padding: 23px 15px;
  border: 2px solid transparent;
  border-radius: 5px;
  background-color: #FFF2D1;
  color: #242424;
  font-weight: 500;
  font-size: 18px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  outline: none;
}
.form__data textarea {
  min-height: 440px;
  resize: none;
}
.form__submit {
  margin-top: 40px;
}
.form__submit button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 319px;
  height: 80px;
  margin: auto;
  border: none;
  border-radius: 40px;
  background-color: #F4654D;
  color: #FFF2D1;
  font-weight: 900;
  font-size: 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  outline: none;
}

.heading--en {
  font-weight: 900;
  font-size: 55px;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
  white-space: nowrap;
}

.link a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 342px;
  height: 90px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 45px;
}
.link--orn a {
  background-color: #F4654D;
}
.link--orn .link__text {
  color: #fff;
}
.link--orn .link__arrow {
  background-color: #fff;
}
.link--pnk a {
  background-color: #fff;
}
.link--pnk .link__text {
  color: #FF86BA;
}
.link--pnk .link__arrow {
  background-color: #FF86BA;
}
.link__text {
  transform: translateX(-23px);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.link__arrow {
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.link__arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
}

.layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.layer svg {
  width: 100%;
  height: 100%;
}
.layer__catch {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(calc(-100% - 300px));
  font-weight: 700;
  font-size: 35px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.layer__catch span {
  display: inline-block;
}
.layer__catch span:first-of-type {
  letter-spacing: -0.5em;
  text-indent: -0.1em;
}
@media screen and (max-width: 1200px) {
  .layer__catch {
    display: none;
  }
}

#ship {
  transform-origin: center center;
  transform-box: fill-box;
  animation: shiping 5s ease-in-out infinite alternate;
}

@keyframes shiping {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(15px);
  }
}
#fishing-boy {
  transform: translate(416.205px, 392.231px) rotate(-20deg);
  transform-origin: center center;
  transform-box: fill-box;
  animation: fishing 3s ease-in-out infinite alternate;
}

@keyframes fishing {
  from {
    transform: translate(416.205px, 392.231px) rotate(-20deg);
  }
  to {
    transform: translate(416.205px, 392.231px) rotate(5deg);
  }
}
#grand-mother {
  transform-origin: center center;
  transform-box: fill-box;
  animation: grand-mother 2s ease-in-out infinite alternate;
}

@keyframes grand-mother {
  from {
    transform: rotate(-20deg);
  }
  to {
    transform: otate(5deg);
  }
}
#lady {
  transform-origin: center center;
  transform-box: fill-box;
  animation: lady 2s ease-in-out infinite alternate;
}

@keyframes lady {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(15deg);
  }
}
#bird01 {
  transform-origin: center center;
  transform-box: fill-box;
  animation: bird01 17s linear infinite;
}

#bird02 {
  transform-origin: center center;
  transform-box: fill-box;
  animation: bird01 17s linear infinite;
}

@keyframes bird01 {
  from {
    transform: translateX(1000px);
  }
  to {
    transform: translateX(-1000px);
  }
}
#girl-hand {
  transform-origin: bottom left;
  transform-box: fill-box;
  animation: girl-hand 2s ease-in-out infinite alternate;
}

@keyframes girl-hand {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(25deg);
  }
}
#mother {
  transform-origin: center center;
  transform-box: fill-box;
  animation: grand-mother 2s ease-in-out infinite alternate;
}

@keyframes mother {
  from {
    transform: rotate(-10deg);
  }
  to {
    transform: otate(10deg);
  }
}
#car {
  transform-origin: center center;
  transform-box: fill-box;
  animation: car 20s linear infinite;
}

@keyframes car {
  from {
    transform: translateX(-1200px);
  }
  to {
    transform: translateX(1000px);
  }
}
.container {
  position: relative;
  max-width: 408px;
  margin: auto;
}
.container::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0px 0px;
  background: #000;
  opacity: 0.25;
  filter: blur(14.8px);
  content: "";
}
@media screen and (max-width: 576px) {
  .container {
    width: 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */