@charset "UTF-8";
/* ベース定義 */
body,
div,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

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

html {
  font-size: 1px;
  font-feature-settings: "palt";
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  box-sizing: border-box;
  font-size: clamp(13rem, calc(100vw / 26.7857), 16rem);
  letter-spacing: 0.075em;
  color: #333333;
  font-weight: 400;
}
@media only screen and (min-width: 768px), print {
  body {
    font-size: clamp(14rem, calc(100vw / 90), 18rem);
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

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

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

a,
button {
  outline: none;
  color: #f96c85;
}

ul {
  list-style: none;
}

b {
  font-weight: 600;
}

/* Critical path */
.breadcrumb {
  color: #737373;
  margin-bottom: 1em;
  font-size: 13px;
  font-size: 0.8125em;
  position: relative;
}
.breadcrumb__container {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
.breadcrumb span {
  display: inline-block;
}
.breadcrumb a {
  color: #f96c85;
  transition: opacity 0.2s;
}
.breadcrumb a:hover {
  opacity: 0.85;
}
.breadcrumb a span {
  text-decoration: underline !important;
}

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3rem);
  -webkit-backdrop-filter: blur(3rem);
}
.header.UpMove {
  animation: UpAnime 0.2s forwards;
}
.header.DownMove {
  animation: DownAnime 0.2s forwards;
}
.header__lft {
  display: flex;
  align-items: center;
}
@media (max-width: 968px) {
  .header__lft {
    width: 100%;
  }
}
.header__logo {
  transition: opacity 0.2s;
}
.header__logo:hover {
  opacity: 0.85;
}
.header__logo {
  display: block;
  width: 9em;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .header__logo {
    width: 12.8125em;
  }
}
.header__grid {
  display: flex;
  justify-content: space-between;
  padding: 1em 16rem;
  position: relative;
  z-index: 11;
  flex-direction: column;
  height: 4em;
  justify-content: center;
}
.header__nav {
  display: flex;
}
.header #primary-menu {
  position: absolute;
  transition: 0.2s cubic-bezier(0.46, 0.16, 0.24, 0.77);
  right: 200vw;
  display: block;
  background: linear-gradient(154deg, #ffcc9e 11.4%, #e87486 97.14%);
  z-index: 20;
  top: 0;
  width: 100%;
  padding: 4em 16rem;
  font-weight: 600;
  height: 100vh;
}
.is-drawer-active .header #primary-menu {
  right: 0;
}

.inview {
  opacity: 0;
  transition: 0.6s;
}
.inview.-fadein {
  opacity: 1;
}
.inview.-blur {
  filter: blur(0.75em);
}
.inview.-blur.-fadein {
  filter: blur(0);
}
.inview.-blur2 {
  filter: blur(0.25em);
}
.inview.-blur2.-fadein {
  filter: blur(0);
}
.inview.-inviewUp {
  transform: translate(0, 24rem);
  -webkit-transform: translate(0, 24rem);
}
.inview.-inviewUp.-fadein {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.inview.-inviewDelay01 {
  transition-delay: 0.2s;
}
.inview.-inviewDelay01_5 {
  transition-delay: 0.3s;
}
.inview.-inviewDelay02 {
  transition-delay: 0.4s;
}
.inview.-inviewDelay02_5 {
  transition-delay: 0.5s;
}
.inview.-inviewDelay03 {
  transition-delay: 0.6s;
}
.inview.-inviewDelay03_5 {
  transition-delay: 0.7s;
}
.inview.-inviewDelayonline {
  transition-delay: 1.2s;
}
.inview.-inviewLeft {
  transform: translate(-0.75em, 0);
  -webkit-transform: translate(-0.75em, 0);
}
.inview.-inviewLeft.-fadein {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.inview.-inviewRight {
  transform: translate(2rem, 0);
  -webkit-transform: translate(2rem, 0);
}
.inview.-inviewRight.-fadein {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.inview.-inv-txtcolor {
  color: #777777;
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
}
.inview.-inv-txtcolor.-fadein {
  animation: txtcolor 0.5s 0.5s both;
  -webkit-animation: txtcolor 0.5s 0.5s both;
  transform: translate(0, 0);
}
@keyframes txtcolor {
  100% {
    color: #333333;
  }
}
.inview.-inv-menus {
  transform: scale(0.6);
  transition-duration: 0.5s;
}
.inview.-inv-menus.-fadein {
  transform: scale(1);
}

.kv {
  padding-top: calc(79.2px + 1em);
}
@media only screen and (min-width: 768px), print {
  .kv {
    padding-top: calc(90px + 1.5em);
  }
}
.kv__wave {
  top: 9.5em;
}
@media only screen and (min-width: 768px), print {
  .kv__grid {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 2fr 1fr;
    grid-template-columns: 1fr 24em;
  }
}
.kv__h {
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding-top: 1em;
  margin-bottom: 3em;
}
@media only screen and (min-width: 768px), print {
  .kv__h {
    padding-top: 3em;
  }
}
.kv__jp {
  font-size: 1.125em;
}
@media only screen and (min-width: 768px), print {
  .kv__jp {
    font-size: 1.25em;
  }
}
.kv__en {
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 2em;
}
.kv__en.-blur {
  filter: blur(0.25em);
}
@media only screen and (min-width: 768px), print {
  .kv__en {
    font-size: 4em;
  }
}
.kv__en.-sm {
  font-size: 3em;
}
@media only screen and (max-width: 767px) {
  .kv__en.-sm {
    font-size: 2em;
  }
}
.kv__lgtxt {
  font-weight: 600;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px), print {
  .kv__lgtxt {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 768px), print {
  .kv__txt {
    font-size: 15px;
    font-size: 0.9375em;
    line-height: 2;
  }
}
.kv__rgt {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .kv__rgt {
    position: absolute;
    right: 16rem;
    top: -2em;
  }
}
.kv__msk {
  width: 8em;
  mask-repeat: no-repeat;
  mask-position: 50% 0%;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 0%;
  -webkit-mask-size: 100% auto;
}
@media only screen and (min-width: 768px), print {
  .kv__msk {
    width: 20em;
  }
}

@media only screen and (min-width: 768px), print {
  .nav {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125em;
  }
}
.nav a {
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav a:hover {
  opacity: 0.85;
}
.nav > li {
  font-size: 1.25em;
  text-align: center;
}
.nav > li > a {
  display: block;
  border-bottom: 1px solid #fff;
  padding: 0.75em 0;
}
.nav__cld {
  font-size: 0.85em;
  padding: 1em 0;
}
.nav__cld a {
  display: inline-block;
  padding: 0.25em 0;
}

.s-kv__grid {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}
.s-kv__ttl {
  font-size: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1em;
  line-height: 1.3;
}
@media only screen and (min-width: 768px), print {
  .s-kv__ttl {
    font-size: 1.75em;
  }
}
.s-kv__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.sp-menu {
  background: rgba(0, 0, 0, 0);
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 0;
  margin: 0;
  width: 4em;
  height: 4em;
}
@media only screen and (min-width: 768px), print {
  .sp-menu {
    transform-origin: 100% 0;
    transform: scale(1.5);
  }
}
.sp-menu__line {
  height: 1.2857142857em;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 1.7142857143em;
}
.sp-menu__line:before {
  background: #333333;
  content: "";
  height: 0.75px;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 1.7142857143em;
}
.is-drawer-active .sp-menu__line:before {
  opacity: 0;
}
.sp-menu__line-in {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
}
.sp-menu__line-in:before, .sp-menu__line-in:after {
  transition: 0.2s cubic-bezier(0.46, 0.16, 0.24, 0.77);
  -webkit-transition-property: all;
  background: #333333;
  content: "";
  height: 0.75px;
  left: 50%;
  position: absolute;
  transition-property: all;
  transition-property: all;
  translate: -50% 0;
  width: 1.7142857143em;
}
.sp-menu__line-in:before {
  top: 0;
}
.is-drawer-active .sp-menu__line-in:before {
  rotate: 45deg;
  top: 0.5em;
  background: #fff;
}
.sp-menu__line-in:after {
  top: 1.1428571429em;
}
.is-drawer-active .sp-menu__line-in:after {
  rotate: -45deg;
  top: 0.5em;
  background: #fff;
}

.tab-a {
  display: flex;
  align-items: center;
  gap: 1em;
  align-items: stretch;
  margin-bottom: 4em;
}
@media only screen and (max-width: 767px) {
  .tab-a {
    overflow-x: scroll;
    padding: 1em 1em;
    margin-left: -16rem;
    width: calc(100% + 32rem);
    font-size: 0.75em;
  }
}
.tab-a__li {
  position: relative;
  border-radius: 6.25em;
  border: 1px solid #ededed;
  background: #fff;
  box-shadow: 0 0.5em 0.75em 0 rgba(51, 51, 51, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 19.5em;
  transition: 0.2s;
  flex-shrink: 0;
}
.tab-a__li.-all {
  width: 10.93em;
}
.tab-a__li.-active {
  pointer-events: none;
  background: linear-gradient(92deg, #3f3f3f 1.6%, #333333 97.13%);
}
.tab-a__li.-active:after {
  position: absolute;
  content: "";
  top: -0.5em;
  right: 1em;
  width: 1.625em;
  height: 1.625em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2226%22%20height%3D%2227%22%20viewBox%3D%220%200%2026%2027%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2213%22%20cy%3D%2213.3502%22%20r%3D%2212%22%20fill%3D%22white%22%20stroke%3D%22%231D1D1D%22%20stroke-width%3D%222%22%2F%3E%3Cpath%20d%3D%22M18.1838%209L12.5442%2014.4741L8.81622%2010.8557L7%2012.6184L10.728%2016.237L12.5442%2018L14.3602%2016.237L20%2010.763L18.1838%209Z%22%20fill%3D%22%231D1D1D%22%2F%3E%3C%2Fsvg%3E") 50%/100% auto no-repeat;
}
.tab-a__li.-active .tab-a__ttl,
.tab-a__li.-active .tab-a__txt {
  color: #fff;
}
.tab-a__li:hover {
  background: #333333;
}
.tab-a__li:hover .tab-a__ttl,
.tab-a__li:hover .tab-a__txt {
  transition: 0.2s;
  color: #fff;
}
.tab-a__li a {
  display: flex;
  text-decoration: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.tab-a__cont {
  padding: 0.75em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.tab-a__txt {
  color: rgba(63, 63, 63, 0.7);
  text-align: center;
  font-size: 0.6875em;
  font-weight: 700;
  line-height: 140%; /* 0.9625rem */
}
.tab-a__txt span + span:before {
  content: "／";
}
.tab-a__ttl {
  color: rgba(63, 63, 63, 0.7);
  font-size: 1.125em;
  font-weight: 700;
  line-height: 140%; /* 1.575rem */
  letter-spacing: 0.0225em;
}

.wave {
  position: absolute;
  width: 100%;
  height: auto;
  transform-origin: 50%;
  opacity: 1 !important;
  transform-origin: 50%;
  transform: scale(1, 1.75);
  transition-delay: 0.25s;
}
.wave.-fadein {
  transform: scale(1);
}