@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Zen Maru Gothic","Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
  line-height: 1.75;
  color: #484848;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

a {
  transition: all .3s;
  text-decoration: none;
}

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

* {
  box-sizing: border-box;
}

.oswald {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

.zen {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  background: #FFF6F2;
  position: relative;
}

header {
  position: relative;
  z-index: 101;
  width: 100%;
  height: 70px;
}
header .header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  header .header {
    padding-left: 15px;
    padding-right: 75px;
    position: fixed;
    top: 0;
    left: 0;
	background: rgba(255, 255, 255, 0.7);
  }
}
header .header .logo {
  width: 357px;
  height: 57px;
  display: block;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  header .header .logo {
    width: 134px;
    height: 55px;
  }
}
header .header .common_btn {
  background: #F19DB5;
  border: 1px solid #F19DB5;
  color: #FFF;
  width: 124px;
  height: 38px;
  font-size: 15px;
  font-weight: bold;
  display: none;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  header .header .common_btn {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 12px;
    display: flex;
  }
}
@media (any-hover: hover) {
  header .header .common_btn:hover {
    background: #FFF;
    color: #484848;
  }
}
header .header .navi {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  header .header .navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: #FFF;
    z-index: 100;
    flex-direction: column;
    translate: 0 -115vh;
    transition: all .3s;
	gap: 50px;
  }
}
header .header .navi .global_navi {
  display: flex;
  align-items: center;
  gap: 34px;
}
@media screen and (max-width: 767px) {
  header .header .navi .global_navi {
    flex-wrap:wrap;
    width: 100%;
    padding: 0 15px;
    padding-top: 144px;
    gap: 34px 0;
  }
}
@media screen and (max-width: 767px) {
  header .header .navi .global_navi .list {
    width: 50%;
  }
  header .header .navi .global_navi .list:first-of-type{
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  header .header .navi .global_navi .list.sp{
    display:none;
}
}
header .header .navi .global_navi .list .btn {
  font-size: 15px;
  font-weight: bold;
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  header .header .navi .global_navi .list .btn {
    justify-content: center;
    width: 100%;
  }
}
header .header .navi .global_navi .list .btn:after {
  content: "";
  position: absolute;
  display: block;
  top: -5px;
  left: 50%;
  translate: -50% 0;
  width: 29px;
  height: 28px;
  background: url(../img/common/footprints.svg) no-repeat left top;
  background-size: cover;
  opacity: 0;
  transition: all .3s;
}
@media (any-hover: hover) {
  header .header .navi .global_navi .list .btn:hover:after {
    opacity: 1;
  }
}
header .header .navi .global_navi .list .btn.common_btn {
  background: #F19DB5;
  border: 1px solid #F19DB5;
  color: #FFF;
  width: 124px;
  height: 38px;
  font-size: 15px;
  font-weight: bold;
  display: flex;
}
header .header .navi .global_navi .list .btn.common_btn:after {
  display: none;
}
@media screen and (max-width: 767px) {
  header .header .navi .global_navi .list .btn.common_btn {
    width: 100%;
    height: 60px;
    border-radius: 45px;
  }
}
@media (any-hover: hover) {
  header .header .navi .global_navi .list .btn.common_btn:hover {
    background: #FFF;
    color: #484848;
  }
}

.menu_open header .header .navi {
  translate: 0 0;
}

.sns_navi {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sns_navi .list .btn {
  width: 50px;
  height: 50px;
  display: block;
}
@media (any-hover: hover) {
  .sns_navi .list .btn:hover {
    opacity: 0.85;
  }
}

footer {
  margin-top: 105px;
  position: relative;
  padding-bottom: 20px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  footer {
    height: 414px;
  }
}
footer .footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  footer .footer {
    flex-direction: column;
    padding: 20px 15px 0;
  }
}
footer .footer .logo {
  width: 357px;
  height: 57px;
  display: block;
}
@media screen and (max-width: 767px) {
  footer .footer .logo {
    width: 134px;
    height: 55px;
  }
}
footer .footer .navi {
  display: flex;
  flex-direction: column;
  gap:20px;
}
@media screen and (max-width: 767px) {
  footer .footer .navi {
    width: 100%;
  }
}
footer .footer .navi .global_navi {
  order: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  footer .footer .navi .global_navi {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-top: 40px;
    gap: 20px 24px;
  }
}
footer .footer .navi .global_navi .list {
  display: flex;
}
footer .footer .navi .global_navi .list.relative{
  position:relative;
}
footer .footer .navi .global_navi .list.relative span{
  position:absolute;
  top:25px;
  left:0;
  font-size: 0.5em;
}
footer .footer .navi .global_navi .list:nth-of-type(5) {
  grid-column: 2/3;
}
@media screen and (max-width: 768px) {
  footer .footer .navi .global_navi .list:nth-of-type(5) {
    grid-column: initial;
  }
}
footer .footer .navi .global_navi .list:nth-of-type(6) {
  grid-column: 3/4;
}
@media screen and (max-width: 768px) {
  footer .footer .navi .global_navi .list:nth-of-type(6) {
    grid-column: initial;
  }
}
footer .footer .navi .global_navi .list:nth-of-type(7) {
  grid-column: 4/5;
  text-align: right;
}
@media screen and (max-width: 768px) {
  footer .footer .navi .global_navi .list:nth-of-type(7) {
    grid-column: initial;
    text-align: left;
  }
}
footer .footer .navi .sns_navi {
  order: 1;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  footer .footer .navi .sns_navi {
    margin-inline: auto;
    margin-top: 20px;
  }
}
footer .copy {
  padding-left: 40px;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  footer .copy {
    text-align: center;
    padding-left: 0;
  }
}

.common_btn {
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.common_btn.item_btn {
  background: #F19DB5;
  border: 1px solid #F19DB5;
  color: #FFF;
  width: 320px;
  height: 66px;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  margin-inline: auto;
  position: relative;
}
.common_btn.item_btn:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: -13px;
  width: 13px;
  height: 14px;
  background: url(../img/common/common_btn_deco_left.svg) no-repeat left top;
  background-size: cover;
}
.common_btn.item_btn:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: -13px;
  width: 13px;
  height: 14px;
  background: url(../img/common/common_btn_deco_right.svg) no-repeat left top;
  background-size: cover;
}
@media (any-hover: hover) {
  .common_btn.item_btn:hover {
    background: #FFF;
    color: #484848;
  }
}

.wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 150px;
  z-index: -1;
}
.wave-svg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1400/286;
  display: block;
}

section .container {
  padding-left: calc(50vw - 513px);
  padding-right: calc(50vw - 513px);
}
@media screen and (max-width: 767px) {
  section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.wave_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  aspect-ratio: 1400/245;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .wave_bottom {
    bottom: 414px;
  }
}
.wave_bottom img {
  width: 100%;
  height: auto;
  aspect-ratio: 1400/245;
  display: block;
}

.menu--item {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 15px;
  background: #FFF;
  border: 1px solid #EBE3E6;
  display: none;
  z-index: 101;
  cursor: pointer;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .menu--item {
    display: block;
  }
}
.menu--item .bar {
  width: 17px;
  height: 2px;
  position: absolute;
  border-radius: 2px;
  left: 0;
  right: 0;
  margin: auto;
  background: #484848;
  transition: all .3s;
}
.menu--item .bar:nth-of-type(1) {
  top: 17px;
}
.menu--item .bar:nth-of-type(2) {
  top: 24px;
}
.menu--item .bar:nth-of-type(3) {
  bottom: 15px;
}

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

.text {
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: clamp(14px, 1.0981vw, 15px);
  }
}
.text:has(.icon) {
  position: relative;
  padding-left: 15px;
}
.text:has(.icon) .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

main {
  position: relative;
  z-index: 1;
}

.deco_frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 80vh;
  overflow: hidden;
}

.deco-wrap {
  display: flex;
  flex-direction: column;
}
.deco-wrap + .deco-wrap {
  align-items: flex-end;
}

.common_deco01 {
  width: 400px;
  translate: -100px 0;
  animation: uniuni-move 8.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco02 {
  width: 230px;
  translate: -80px 0;
  margin-top: 80vh;
  animation: uniuni-move 5.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco03 {
  width: 340px;
  translate: -100px 0;
  margin-top: 90vh;
  animation: uniuni-move 7.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco04 {
  width: 400px;
  translate: -100px 0;
  margin-top: 150vh;
  animation: uniuni-move 9.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco05 {
  width: 316px;
  translate: -100px 0;
  margin-top: 320vh;
  animation: uniuni-move 8.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco06 {
  width: 346px;
  translate: -100px 0;
  margin-top: 50vh;
  animation: uniuni-move 10.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco07 {
  width: 346px;
  translate: -100px 0;
  margin-top: 50vh;
  animation: uniuni-move 10.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco08 {
  width: 573px;
  translate: 200px 0;
  margin-top: 0;
  animation: uniuni-move 10.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco09 {
  width: 346px;
  translate: 200px 0;
  margin-top: 70vh;
  animation: uniuni-move 10.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco10 {
  width: 213px;
  translate: 50px 0;
  margin-top: 40vh;
  animation: uniuni-move 9.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco11 {
  width: 346px;
  translate: 100px 0;
  margin-top: 260vh;
  animation: uniuni-move 10.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco12 {
  width: 346px;
  translate: 100px 0;
  margin-top: 260vh;
  animation: uniuni-move 10.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco13 {
  width: 321px;
  translate: 100px 0;
  margin-top: 20vh;
  animation: uniuni-move 10.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

.common_deco14 {
  width: 181px;
  translate: 0 0;
  margin-top: -20vh;
  animation: uniuni-move 9.5s infinite cubic-bezier(0.44, 0, 0.56, 1) alternate;
}

@keyframes uniuni-move {
  0% {
    transform: scale(1, 1) skewX(0deg) skewY(0deg) rotate(0deg);
    filter: blur(0px);
  }
  15% {
    transform: scale(1.07, 0.95) skewX(2deg) skewY(-2deg) rotate(-2deg);
    filter: blur(1px);
  }
  30% {
    transform: scale(0.97, 1.06) skewX(-2deg) skewY(3deg) rotate(2deg);
    filter: blur(0.5px);
  }
  45% {
    transform: scale(1.09, 0.92) skewX(1deg) skewY(-2deg) rotate(-1deg);
    filter: blur(0.5px);
  }
  60% {
    transform: scale(0.95, 1.1) skewX(-3deg) skewY(1deg) rotate(1deg);
    filter: blur(1px);
  }
  75% {
    transform: scale(1.08, 0.96) skewX(3deg) skewY(-2deg) rotate(-2deg);
    filter: blur(0.5px);
  }
  100% {
    transform: scale(1, 1) skewX(0deg) skewY(0deg) rotate(0deg);
    filter: blur(0px);
  }
}
.this_anime {
  opacity: 0;
  translate: 0 20px;
}
.this_anime.start {
  animation: popup .5s ease-in-out 0.2s forwards;
}

@keyframes popup {
  0% {
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

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