@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  user-select: none !important;
}

/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
body {
  background-color: #FFFFFF;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  color: #3e3a39;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

:root {
  color-scheme: light;
}

main {
  flex-grow: 1;
}

.pc {
  display: block;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pc {
    display: block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.scrollSet, .scrollSet01, .scrollSet02, .scrollSet03, .scrollSet04, .scrollSet05, .scrollSet06 {
  opacity: 0;
  filter: blur(20px);
  will-change: filter;
  transition: opacity 0.7s ease, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.scrollSet.blurIn, .scrollSet01.blurIn, .scrollSet02.blurIn, .scrollSet03.blurIn, .scrollSet04.blurIn, .scrollSet05.blurIn, .scrollSet06.blurIn {
  opacity: 1;
  filter: blur(0);
}

.js-scroll-element {
  opacity: 0; /* 初期状態では非表示 */
  transform: translateY(20px); /* 初期状態では少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーションの設定 */
}
.js-scroll-element.active {
  opacity: 1; /* inviewクラスが付与されたら表示 */
  transform: translateY(0); /* inviewクラスが付与されたら元の位置に */
}

.js-scroll-element-fv {
  opacity: 0; /* 初期状態では非表示 */
  transform: translateY(20px); /* 初期状態では少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーションの設定 */
}
.js-scroll-element-fv.active {
  opacity: 1; /* inviewクラスが付与されたら表示 */
  transform: translateY(0); /* inviewクラスが付与されたら元の位置に */
}

.l-header__modal {
  width: 100%;
  display: block;
  position: fixed;
  transition: all 400ms;
  right: 0;
  opacity: 0;
  top: 0 !important;
  z-index: 100;
  animation: fadeout 0.4s;
  visibility: hidden;
}
@media (min-width: 769px) {
  .l-header__modal {
    height: 100vh;
    height: 100dvh;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/bg_nav-pc.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .l-header__modal {
    height: 100vh;
    height: 100dvh;
    top: 0;
    background-image: url("../img/bg_nav-pc.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.l-header__modal.is-checked {
  overflow-y: scroll;
  opacity: 1;
  animation: fadein 0.4s;
  visibility: visible;
}
@media (min-width: 769px) {
  .l-header__modal--inner {
    width: 700px;
    margin: 0 auto;
    display: flex;
  }
}
@media (max-width: 768px) {
  .l-header__modal--inner {
    display: block;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    padding: 15.2vw 6.5vw;
  }
}
@media (min-width: 769px) {
  .l-header__modal--nav {
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.l-header__modal--item {
  margin: 0 0 16px;
  display: block;
  text-decoration: none;
}
@media (min-width: 769px) {
  .l-header__modal--navinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 769px) {
  .l-header__modal--jpwrap {
    padding-left: 38px;
  }
}
@media (max-width: 768px) {
  .l-header__modal--jpwrap {
    padding-left: 34px;
  }
}
.l-header__modal--star.purple {
  background-image: url("../img/star-apply.png");
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: left center;
  color: #b0849b;
}
.l-header__modal--star.pink {
  background-image: url("../img/star-apply.png");
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: left center;
  color: #ff8cf2;
}
@media (min-width: 769px) {
  .l-header__modal--star {
    padding-left: 38px;
  }
}
@media (max-width: 768px) {
  .l-header__modal--star {
    padding-left: 34px;
  }
}

body {
  width: 100%;
  background-image: url("../img/bg_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  z-index: -1;
}

.l-wrapper {
  position: relative;
}

.l-footer {
  background-color: #FFFFFF;
  padding: 56px 0 80px;
}
p .l-footer__logowrap {
  margin: 0 auto 7.83vw;
}
@media (min-width: 769px) {
  p .l-footer__logowrap {
    margin: 0 auto 36px;
  }
}
.l-footer__logo {
  background-image: url("../img/logo.png");
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  width: 78.26vw;
  height: 29.35vw;
}
@media (min-width: 769px) {
  .l-footer__logo {
    width: 360px;
    height: 135px;
  }
}
.l-footer__snswrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 7.83vw auto 4.13vw;
}
@media (min-width: 769px) {
  .l-footer__snswrap {
    margin: 36px auto 19px;
  }
}
.l-footer__links {
  background-image: url("../img/footer_deco.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 86.96vw 4.57vw;
  padding-top: 8.48vw;
}
@media (min-width: 769px) {
  .l-footer__links {
    background-size: 400px 21px;
    padding-top: 39px;
  }
}
.l-footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10.87vw;
}
@media (min-width: 769px) {
  .l-footer__link {
    margin: 0 auto 50px;
  }
}
.l-footer__snswrap--item {
  margin: 0 1.96vw;
}
@media (min-width: 769px) {
  .l-footer__snswrap--item {
    margin: 0 9px;
  }
}
.l-footer__snswrap--item.youtube {
  margin: 0 1.74vw 0 2.61vw;
}
@media (min-width: 769px) {
  .l-footer__snswrap--item.youtube {
    margin: 0 8px 0 12px;
  }
}

@media (max-width: 768px) {
  body#home .l-container__main {
    margin: 0 auto;
    position: absolute;
    left: 0;
    z-index: 3;
    top: 100%;
    width: 100%;
  }
}

.l-container__main {
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  .l-container__main {
    width: 460px;
    min-width: 460px;
    max-width: 460px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }
}
@media (max-width: 768px) {
  .l-container__main {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .l-container__right {
    width: calc(50vw - 230px);
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
  }
}
@media (max-width: 768px) {
  .l-container__right {
    display: none;
  }
}
@media (min-width: 769px) {
  .l-container__left {
    width: calc(50vw - 230px);
    height: 100vh;
    position: fixed;
    display: block;
    left: 0;
    top: 0;
  }
}
@media (max-width: 768px) {
  .l-container__left {
    display: none;
  }
}
.l-container__sideinner {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-container__sideinner--partners {
  max-width: 268px;
  width: 19.14vw;
  margin: 0 auto;
  padding: 40px 0;
  border: solid #FFFFFF 1px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .l-container__sideinner--partners {
    width: 17.5vw;
  }
}
.l-container__side--tgc {
  width: 138px;
  margin: 28px auto 34px;
}
.l-container__side--nrc {
  width: 208px;
  margin: 35px auto 0;
}
.l-container__side--showr {
  width: 195px;
  margin: 26px auto 45px;
}
.l-container__btn {
  width: 90vw;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5vw;
  z-index: 10;
}
.l-container__ttlwrap--top {
  display: block;
  margin: 0 auto 20px;
}
.l-container__left--logo {
  display: block;
  margin: 0 auto 40px;
}
@media (min-width: 769px) {
  .l-container__left--logo {
    max-width: 316px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .l-container__left--logo {
    width: 20.6vw;
  }
}

.l-fv {
  width: 100%;
  z-index: 1;
  position: relative;
}
.l-fv__contents {
  width: 100%;
  font-size: 0;
  line-height: 0;
  position: absolute;
}
@media (min-width: 769px) {
  .l-fv__contents {
    padding-top: 177.8%;
  }
}
@media (max-width: 768px) {
  .l-fv__contents {
    padding-top: 56.25%;
  }
}
.l-fv__inner {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 bottom;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .l-fv__inner {
    background-image: url("../img/bg-btm.png");
  }
}
@media (max-width: 768px) {
  .l-fv__inner {
    background-image: url("../img/bg_sp-btm.png");
  }
}
.l-fv__video {
  width: 100%;
}
.l-fv__video video {
  width: 100%;
}
.l-fv__prevent {
  width: 100%;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 769px) {
  .l-fv__prevent {
    padding-top: 56.25%;
  }
}
@media (max-width: 768px) {
  .l-fv__prevent {
    padding-top: 177.8%;
  }
}
@media (min-width: 769px) {
  .l-fv__ttlwrap {
    position: absolute;
    z-index: 1;
    left: calc(50% - 80px);
    top: calc(50% - 75px);
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .l-fv__ttlwrap {
    display: none;
  }
}
.l-fv__btn {
  width: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.7s ease, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.l-fv__btn.is-hidden {
  opacity: 0;
}
@media (min-width: 769px) {
  .l-fv__btn {
    padding: 24px 0 30px;
    background-image: url("../img/bg-btm.png");
    background-position: center center;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .l-fv__btn {
    background-image: url("../img/bg_sp-btm.png");
    background-position: center center;
    background-size: cover;
    padding: 4.6vw 0;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}
.l-fv__btn--wrap {
  text-decoration: none;
}
@media (min-width: 769px) {
  .l-fv__btn--wrap {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .l-fv__btn--wrap {
    margin-top: 10px;
  }
}

.l-nav__logo {
  background-image: url("../img/pc_logo.png");
  background-size: contain;
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .l-nav__logo {
    max-width: 316px;
    max-height: 119px;
    width: 22.5vw;
    height: 8.5vw;
  }
}
@media (max-width: 768px) {
  .l-nav__btnblc--wrapper {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 9.1vw;
  }
}
@media (max-width: 768px) {
  .l-nav__linkblc--wrapper {
    display: flex;
    align-items: center;
    margin: 16px 0 34px 0;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .l-nav__btnwrap {
    margin: 26px 0 24px;
  }
}
@media (min-width: 769px) {
  .l-nav__snsblc {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .l-nav__snsblc {
    position: absolute;
    right: 28px;
    top: 128px;
    width: 30px;
  }
}
@media (min-width: 769px) {
  .l-nav__snsblc--item {
    margin: 0 9px;
  }
  .l-nav__snsblc--item.youtube {
    margin: 0 8px 0 12px;
  }
}
@media (max-width: 768px) {
  .l-nav__snsblc--item {
    margin: 0 auto 23px;
  }
}

.l-partner {
  padding: 25vw 6.52vw 34.78vw;
  background-color: #fffff2;
}
@media (min-width: 769px) {
  .l-partner {
    padding: 115px 30px 160px;
  }
}
.l-partner__line {
  display: block;
  background-image: url("../img/line.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 15.87vw 0 0;
  margin: 13.48vw 0 0;
}
@media (min-width: 769px) {
  .l-partner__line {
    margin: 62px 0 0;
    padding: 73px 0 0;
  }
}
.l-partner__ttlblc {
  margin: 1.09vw 0 8.7vw;
}
@media (min-width: 769px) {
  .l-partner__ttlblc {
    margin: 5px 0 40px;
  }
}
.l-partner__tgc {
  margin: 0 auto;
  width: 46.52vw;
}
@media (min-width: 769px) {
  .l-partner__tgc {
    width: 214px;
  }
}
.l-partner__liveplanet {
  width: 262px;
  margin: 0 auto 73px;
}
.l-partner__showroom {
  width: 56.52vw;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .l-partner__showroom {
    width: 260px;
  }
}
.l-partner__txtblc {
  margin: 0 auto 20px;
}
.l-partner__liveplanet02 {
  width: 70.43vw;
  margin: 0 auto 17.83vw;
}
@media (min-width: 769px) {
  .l-partner__liveplanet02 {
    width: 324px;
    margin: 0 auto 82px;
  }
}
.l-partner__liveplanet02 img {
  width: 100%;
  height: auto;
}
.l-partner__twinplanet {
  margin: 0 auto;
  width: 56.52vw;
}
@media (min-width: 769px) {
  .l-partner__twinplanet {
    width: 260px;
  }
}

.c-button__header--wrap {
  position: fixed;
  z-index: 200;
  width: 64px;
  height: 64px;
}
@media (min-width: 769px) {
  .c-button__header--wrap {
    right: 150px;
    top: 55px;
  }
}
@media (max-width: 768px) {
  .c-button__header--wrap {
    right: 15px;
    top: 15px;
    display: block;
  }
}
.c-button__header-sp {
  background-image: url("../img/menu_btn-close.png");
  background-size: contain;
  width: 64px;
  height: 64px;
  display: block !important;
}
.c-button__header-sp.is-checked {
  background-image: url("../img/menu_btn-open.png");
}
.c-button__target--entry {
  background-color: #b0849b;
  text-decoration: none;
  display: block;
  border-radius: 6px;
  margin: 0 auto;
  max-width: 360px;
  width: 78.2vw;
  animation: flash 1s infinite;
  padding: 3.91vw 0;
}
@media (min-width: 769px) {
  .c-button__target--entry {
    padding: 18px 0;
  }
}
.c-button__link--top {
  animation: flash 1s infinite;
  background-color: #b0849b;
  text-decoration: none;
  display: block;
  padding: 16px 0;
  border-radius: 6px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .c-button__link--top {
    max-width: 316px;
    width: 22.5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button__link--top {
    width: 20.6vw;
  }
}
.c-button__mail {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/btn_mail.png");
}
@media (min-width: 769px) {
  .c-button__mail {
    width: 400px;
    height: 112px;
  }
}
@media (max-width: 768px) {
  .c-button__mail {
    width: 87vw;
    height: 24.4vw;
  }
}
.c-button__tel {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/btn_tel.png");
}
@media (min-width: 769px) {
  .c-button__tel {
    width: 400px;
    height: 112px;
  }
}
@media (max-width: 768px) {
  .c-button__tel {
    width: 87vw;
    height: 24.4vw;
  }
}

@keyframes flash {
  0%, 100% {
    /* 明るく光るよう影を重ねる */
    box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #b0849b, 0 0 20px #b0849b, 0 0 35px #b0849b, 0 0 40px #b0849b, 0 0 50px #b0849b, 0 0 75px #b0849b;
  }
  50% {
    /* 淡く光るよう影を重ねる */
    box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #b0849b;
  }
}
.c-paragraph__ttl {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .c-paragraph__ttl {
    background-image: url("../img/txt_fv-pc02.png");
    width: 640px;
    height: 338px;
  }
}
@media (max-width: 768px) {
  .c-paragraph__ttl {
    display: none;
  }
}
.c-paragraph__date {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .c-paragraph__date {
    background-image: url("../img/fv_date02.png");
    width: 443px;
    height: 82px;
  }
}
@media (max-width: 768px) {
  .c-paragraph__date {
    background-image: url("../img/fv_date-sp02.png");
    max-width: 400px;
    max-height: 39px;
    width: 87vw;
    height: 8.6vw;
  }
}
.c-paragraph__entry {
  color: #FFF;
  animation: flashtext 1s infinite;
}
.c-paragraph__logo--pc {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/pc_logo.png");
}
@media (min-width: 769px) {
  .c-paragraph__logo--pc {
    max-width: 314px;
    max-height: 119px;
    width: 22.5vw;
    height: 8.5vw;
  }
}
@media (max-width: 768px) {
  .c-paragraph__logo--pc {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-paragraph__logo--pc {
    display: block;
    width: 20.6vw;
    height: 7.8vw;
  }
}
.c-paragraph__date--pc {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/pc_date02.png");
}
@media (min-width: 769px) {
  .c-paragraph__date--pc {
    max-width: 320px;
    max-height: 76px;
    width: 22.5vw;
    height: 6.5vw;
  }
}
@media (max-width: 768px) {
  .c-paragraph__date--pc {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-paragraph__date--pc {
    display: block;
    width: 20.6vw;
    height: 5.96vw;
  }
}
.c-paragraph__linktop {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/fv_entry.png");
  max-width: 177px;
  max-height: 35px;
}
@media (min-width: 769px) {
  .c-paragraph__linktop {
    width: 12.62vw;
    height: 2.5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-paragraph__linktop {
    width: 12.62vw;
    height: 2.5vw;
  }
}
@media (max-width: 768px) {
  .c-paragraph__linktop {
    width: 39vw;
    height: 7.6vw;
  }
}
.c-paragraph__targetentry {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/fv-entry.png");
  max-width: 202px;
  max-height: 40px;
}
@media (min-width: 769px) {
  .c-paragraph__targetentry {
    width: 202px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .c-paragraph__targetentry {
    width: 44vw;
    height: 8.7vw;
  }
}
.c-paragraph__nrc {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/logo_nrc.svg");
  width: 80.22vw;
  height: 6.52vw;
}
@media (min-width: 769px) {
  .c-paragraph__nrc {
    width: 369px;
    height: 30px;
  }
}
.c-paragraph__footerlink {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .c-paragraph__footerlink {
    margin: 0 12px;
  }
}
@media (min-width: 769px) {
  .c-paragraph__footerlink.center {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .c-paragraph__footerlink--wrap {
    margin: 0 0 0 24px;
  }
}
@media (min-width: 769px) {
  .c-paragraph__footerlink--wrap.top {
    margin: 16px 0 30px;
  }
}
.c-paragraph__footerlink--arrow {
  width: 14px;
  height: 14px;
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/arrow_purple.png");
}
.c-paragraph__footerlink--arrow.purple {
  background-image: url("../img/arrow_purple.png");
}
@media (min-width: 769px) {
  .c-paragraph__footerlink--arrow {
    margin-left: 6px;
  }
}
@media (max-width: 768px) {
  .c-paragraph__footerlink--arrow {
    margin-left: 11px;
  }
}
.c-paragraph__ambassador--x {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icon_x-purple.png");
  width: 6.52vw;
  height: 6.52vw;
}
@media (min-width: 769px) {
  .c-paragraph__ambassador--x {
    width: 30px;
    height: 30px;
    margin: 0 11px;
  }
}
.c-paragraph__ambassador--insta {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icon_insta-purple.png");
  width: 6.52vw;
  height: 6.52vw;
  margin: 0 2.39vw;
}
@media (min-width: 769px) {
  .c-paragraph__ambassador--insta {
    width: 30px;
    height: 30px;
    margin: 0 11px;
  }
}
.c-paragraph__ambassador--tiktok {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icon_tiktok-purple.png");
  width: 6.52vw;
  height: 6.52vw;
}
@media (min-width: 769px) {
  .c-paragraph__ambassador--tiktok {
    width: 30px;
    height: 30px;
    margin: 0 11px;
  }
}
.c-paragraph__subttl {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/subttl.png");
  width: 29.35vw;
  height: 9.35vw;
  min-width: 29.35vw;
  min-height: 9.35vw;
}
.c-paragraph__subttl.white {
  background-image: url("../img/subttl-white.png");
}
@media (min-width: 769px) {
  .c-paragraph__subttl {
    width: 135px;
    height: 43px;
    min-width: 135px;
    min-height: 43px;
  }
}
.c-paragraph__star {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-paragraph__star::before {
  content: "";
  background-image: url("../img/star.svg");
  padding-left: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 3px;
}
.c-paragraph__star::after {
  content: "";
  background-image: url("../img/star.svg");
  padding-right: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 3px;
}

@keyframes flashtext {
  0%, 100% {
    /* 明るく光るよう影を重ねる */
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff, 0 0 35px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 75px #fff;
  }
  50% {
    /* 淡く光るよう影を重ねる */
    text-shadow: 0 0 0 #fff, 0 0 0 #fff, 0 0 15px #fff, 0 0 20px #fff;
  }
}
.c-icon__x {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/icon_x.png");
  width: 6.52vw;
  height: 5.22vw;
}
.c-icon__x.white {
  background-image: url("../img/icon_x-white.png");
}
@media (min-width: 769px) {
  .c-icon__x {
    width: 30px;
    height: 24px;
  }
}
.c-icon__insta {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/icon_insta.png");
  width: 6.52vw;
  height: 5.22vw;
}
.c-icon__insta.white {
  background-image: url("../img/icon_insta-white.png");
}
@media (min-width: 769px) {
  .c-icon__insta {
    width: 30px;
    height: 24px;
  }
}
.c-icon__youtube {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/icon_youtube.png");
  width: 6.52vw;
  height: 5.22vw;
}
.c-icon__youtube.white {
  background-image: url("../img/icon_youtube-white.png");
}
@media (min-width: 769px) {
  .c-icon__youtube {
    width: 30px;
    height: 24px;
  }
}
.c-icon__fb {
  display: block;
  white-space: nowrap;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  background-image: url("../img/icon_facebook.png");
  width: 6.52vw;
  height: 5.22vw;
}
.c-icon__fb.white {
  background-image: url("../img/icon_facebook-white.png");
}
@media (min-width: 769px) {
  .c-icon__fb {
    width: 30px;
    height: 24px;
  }
}

.p-home__ambassador--ttlwrap {
  margin: 0 auto 6.09vw;
}
@media (min-width: 769px) {
  .p-home__ambassador--ttlwrap {
    margin: 0 auto 28px;
  }
}
.p-home__ambassador--peoplewrap {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0 auto 30px;
}
@media (min-width: 769px) {
  .p-home__ambassador--item {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .p-home__ambassador--item {
    width: 34.7vw;
  }
}
.p-home__ambassador--name {
  margin: 2.61vw auto 0;
}
@media (min-width: 769px) {
  .p-home__ambassador--name {
    margin: 12px auto 0;
  }
}
.p-home__ambassador--sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.83vw auto 0;
}
@media (min-width: 769px) {
  .p-home__ambassador--sns {
    margin: 13px auto 0;
  }
}
.p-home__maintop {
  background-color: #fffff2;
  padding: 5vw 6.52vw;
}
@media (min-width: 769px) {
  .p-home__maintop {
    padding: 23px 30px;
  }
}
.p-home__about {
  padding: 9.78vw 0 0;
  background-image: url("../img/line.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .p-home__about {
    padding: 45px 0 0;
  }
}
.p-home__about--feature {
  margin: 0 0 1.09vw;
}
.p-home__about--feature p {
  text-indent: -0.5em;
  display: inline-block;
  background-color: #b0849b;
  padding: 0 16px;
  margin: 0 0 5px;
}
@media (min-width: 769px) {
  .p-home__about--feature {
    margin: 0 0 5px;
  }
}
.p-home__about--feature-txt {
  margin: 18px 0 0;
}
.p-home__ttlwrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto 7.61vw;
}
@media (min-width: 769px) {
  .p-home__ttlwrap {
    margin: 0 auto 35px;
  }
}
.p-home__benefit {
  background-color: #000000;
}
@media (min-width: 769px) {
  .p-home__benefit {
    padding: 80px 30px 50px;
  }
}
@media (max-width: 768px) {
  .p-home__benefit {
    padding: 17.4vw 6.5vw 50px;
  }
}
.p-home__benefit--box {
  border: solid 1px #FFFFFF;
  position: relative;
  padding: 8.7vw 7.83vw;
  margin: 0 auto 4.35vw;
}
@media (min-width: 769px) {
  .p-home__benefit--box {
    padding: 40px 36px;
    margin: 0 auto 20px;
  }
}
.p-home__benefit--h3 {
  position: absolute;
  background-color: #000000;
  display: inline-block;
  padding: 0 2.17vw;
  top: -3.04vw;
  left: 5.87vw;
}
.p-home__benefit--h3 p {
  display: inline-block;
}
@media (min-width: 769px) {
  .p-home__benefit--h3 {
    padding: 0 10px;
    top: -14px;
    left: 27px;
  }
}
.p-home__benefit--item {
  display: flex;
  align-items: flex-start;
  margin: 0 0 8.26vw;
}
@media (min-width: 769px) {
  .p-home__benefit--item {
    margin: 0 0 38px;
  }
}
.p-home__benefit--num {
  width: 13.7vw;
  max-width: 13.7vw;
  min-width: 13.7vw;
  margin-right: 3.7vw;
}
@media (min-width: 769px) {
  .p-home__benefit--num {
    width: 63px;
    min-width: 63px;
    max-width: 63px;
    margin-right: 17px;
  }
}
.p-home__benefit--special {
  display: inline-block;
  border: solid 1px #FFFFFF;
  padding: 0.65vw 2.17vw;
  margin-bottom: 2.61vw;
}
.p-home__benefit--special p {
  display: inline-block;
  line-height: 1;
}
@media (min-width: 769px) {
  .p-home__benefit--special {
    padding: 2px 10px 4px;
    margin-bottom: 12px;
  }
}
.p-home__schedule {
  background-color: #fffff2;
  padding: 16.52vw 10.87vw 6.52vw;
}
@media (min-width: 769px) {
  .p-home__schedule {
    padding: 76px 50px 30px;
  }
}
.p-home__schedule--txtblc {
  margin: 2.39vw auto 2.83vw;
}
@media (min-width: 769px) {
  .p-home__schedule--txtblc {
    margin: 11px auto 13px;
  }
}
.p-home__schedule--txtblc02 {
  margin: 5.87vw auto;
}
@media (min-width: 769px) {
  .p-home__schedule--txtblc02 {
    margin: 27px auto;
  }
}
.p-home__schedule--item {
  margin: 0 0 6.52vw;
}
@media (min-width: 769px) {
  .p-home__schedule--item {
    margin: 0 0 30px;
  }
}
.p-home__schedule--blcttl {
  display: flex;
  margin: 0 0 2.61vw;
}
@media (min-width: 769px) {
  .p-home__schedule--blcttl {
    margin: 0 0 12px;
  }
}
.p-home__schedule--period {
  background-color: #FFFFFF;
  border: solid 1px #b0849b;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 2.17vw;
}
.p-home__schedule--period.black {
  background-color: #b0849b;
  border: solid 1px #000000;
}
@media (min-width: 769px) {
  .p-home__schedule--period {
    padding: 10px;
  }
}
.p-home__schedule--period01 {
  background-color: #FFFFFF;
  border: solid 1px #b0849b;
  display: flex;
  width: 35.5%;
  align-items: center;
  justify-content: center;
  padding: 2.17vw;
}
.p-home__schedule--period01.black {
  background-color: #b0849b;
  border: solid 1px #000000;
}
@media (min-width: 769px) {
  .p-home__schedule--period01 {
    padding: 10px;
  }
}
.p-home__schedule--period02 {
  width: 63.5%;
  background-color: #FFFFFF;
  border-right: solid 1px #b0849b;
  border-top: solid 1px #b0849b;
  border-bottom: solid 1px #b0849b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px 5px;
}
.p-home__applywrap {
  background-color: #fffff2;
  padding: 18.26vw 0 12.39vw;
}
@media (min-width: 769px) {
  .p-home__applywrap {
    padding: 84px 0 57px;
  }
}
@media (min-width: 769px) {
  .p-home__target {
    padding: 0 0 1px;
  }
}
@media (max-width: 768px) {
  .p-home__target {
    padding: 0 0 1px;
  }
}
.p-home__kakko--top {
  background-image: url("../img/top_kakko.png");
  background-repeat: no-repeat;
  padding-top: 6.53%;
  background-size: 100% auto;
}
.p-home__kakko--btm {
  background-image: url("../img/btm_kakko.png");
  background-repeat: no-repeat;
  padding-bottom: 6.53%;
  background-size: 100% auto;
  background-position: 0 bottom;
}
.p-home__ttlabsolute {
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-home__ttlwraprelative {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto 7.61vw;
}
@media (min-width: 769px) {
  .p-home__ttlwraprelative {
    margin: 0 auto 35px;
  }
}
@media (min-width: 769px) {
  .p-home__kakko--content {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .p-home__kakko--content {
    padding: 0 6.5vw;
  }
}
.p-home__target--txtblc {
  display: flex;
  align-items: center;
  align-items: flex-start;
  margin: 0 0 2.61vw;
}
@media (min-width: 769px) {
  .p-home__target--txtblc {
    margin: 0 0 12px;
  }
}
.p-home__target--star {
  display: block;
  background-image: url("../img/star-apply.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 19px;
  min-width: 19px;
  height: 19px;
  margin-right: 15px;
  margin-top: 4px;
}
.p-home__target--indent {
  padding-left: 24px;
}
.p-home__target--indent02 {
  padding-left: 34px;
}
.p-home__target--head {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.7vw;
}
@media (min-width: 769px) {
  .p-home__target--head {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-home__target--entry {
  margin: 6.09vw 0 4.35vw;
}
@media (min-width: 769px) {
  .p-home__target--entry {
    margin: 28px auto 20px;
  }
}
@media (min-width: 769px) {
  .p-home__apply {
    padding: 85px 0 1px;
  }
}
@media (max-width: 768px) {
  .p-home__apply {
    padding: 18.4vw 0 1px;
  }
}
.p-home__nrc {
  padding: 13.04vw 10.87vw 17.39vw;
}
@media (min-width: 769px) {
  .p-home__nrc {
    padding: 60px 50px 80px;
  }
}
.p-home__nrc--txtwrap {
  padding: 10.87vw 0 8.7vw;
}
@media (min-width: 769px) {
  .p-home__nrc--txtwrap {
    padding: 50px 0 40px;
  }
}
.p-home__nrc--subttl-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home__nrc--subttl {
  background-color: #b0849b;
  display: inline-block;
  align-items: center;
  padding: 2.17vw 6.52vw;
  border-radius: 6.52vw;
}
@media (min-width: 769px) {
  .p-home__nrc--subttl {
    padding: 10px 30px;
    border-radius: 30px;
  }
}
.p-home__swiper--container-blue {
  position: relative;
  padding-bottom: 10.87vw;
  margin-bottom: 8.7vw;
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 前への矢印 */
  /* 次への矢印 */
  /* 画像サイズ調整 */
}
@media (min-width: 769px) {
  .p-home__swiper--container-blue {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
}
.p-home__swiper--container-blue .swiper-button-prev,
.p-home__swiper--container-blue .swiper-button-next {
  height: 10.87vw;
  width: 10.87vw;
}
@media (min-width: 769px) {
  .p-home__swiper--container-blue .swiper-button-prev,
  .p-home__swiper--container-blue .swiper-button-next {
    height: 50px;
    width: 50px;
  }
}
.p-home__swiper--container-blue .swiper-button-prev::after,
.p-home__swiper--container-blue .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
  height: 10.87vw;
  width: 10.87vw;
}
@media (min-width: 769px) {
  .p-home__swiper--container-blue .swiper-button-prev::after,
  .p-home__swiper--container-blue .swiper-button-next::after {
    height: 50px;
    width: 50px;
  }
}
.p-home__swiper--container-blue .swiper-button-prev::after {
  background-image: url("../img/arrow-prev.png");
}
.p-home__swiper--container-blue .swiper-button-next::after {
  background-image: url("../img/arrow-next.png");
}
@media (min-width: 769px) {
  .p-home__swiper--container-blue .swiper-button-prev {
    top: 130px;
    left: -50px;
  }
}
@media (max-width: 768px) {
  .p-home__swiper--container-blue .swiper-button-prev {
    top: 33%;
    left: -10.87vw;
  }
}
@media (min-width: 769px) {
  .p-home__swiper--container-blue .swiper-button-next {
    top: 130px;
    right: -50px;
  }
}
@media (max-width: 768px) {
  .p-home__swiper--container-blue .swiper-button-next {
    top: 33%;
    right: -10.87vw;
  }
}
.p-home__swiper--container-blue .swiper-slide img {
  height: auto;
  width: 100%;
}
.p-home__swiper--container-blue .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -1px;
}
.p-home__swiper--container-blue .swiper-pagination-bullet {
  background-color: #b0849b;
  width: 14px;
  height: 14px;
  margin: 0 8px !important;
}
.p-home__place--swipeimg {
  display: block;
  margin: 3.26vw 0;
}
@media (min-width: 769px) {
  .p-home__place--swipeimg {
    margin: 15px 0;
  }
}
.p-home__swiper--container {
  position: relative;
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 前への矢印 */
  /* 次への矢印 */
  /* 画像サイズ調整 */
}
.p-home__swiper--container .swiper-button-prev,
.p-home__swiper--container .swiper-button-next {
  width: 12.17vw;
  height: 12.17vw;
}
@media (min-width: 769px) {
  .p-home__swiper--container .swiper-button-prev,
  .p-home__swiper--container .swiper-button-next {
    width: 56px;
    height: 56px;
  }
}
.p-home__swiper--container .swiper-button-prev::after,
.p-home__swiper--container .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
  width: 12.17vw;
  height: 12.17vw;
}
@media (min-width: 769px) {
  .p-home__swiper--container .swiper-button-prev::after,
  .p-home__swiper--container .swiper-button-next::after {
    width: 56px;
    height: 56px;
  }
}
.p-home__swiper--container .swiper-button-prev::after {
  background-image: url("../img/arrow-prev.png");
}
.p-home__swiper--container .swiper-button-next::after {
  background-image: url("../img/arrow-next.png");
}
@media (min-width: 769px) {
  .p-home__swiper--container .swiper-button-prev {
    top: 120px;
    left: -56px;
  }
}
@media (max-width: 768px) {
  .p-home__swiper--container .swiper-button-prev {
    top: 40%;
    left: -12.17vw;
  }
}
@media (min-width: 769px) {
  .p-home__swiper--container .swiper-button-next {
    top: 120px;
    right: -56px;
  }
}
@media (max-width: 768px) {
  .p-home__swiper--container .swiper-button-next {
    top: 40%;
    right: -12.17vw;
  }
}
.p-home__swiper--container .swiper-slide img {
  height: auto;
  width: 100%;
}
.p-home__swiper--container .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -9.13vw;
}
@media (min-width: 769px) {
  .p-home__swiper--container .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -42px;
  }
}
.p-home__swiper--container .swiper-pagination-bullet {
  background-color: #ff8cf2;
  margin: 0 1.74vw;
  width: 3.04vw;
  height: 3.04vw;
}
@media (min-width: 769px) {
  .p-home__swiper--container .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 8px !important;
  }
}
.p-home__details {
  background-color: #000000;
  padding: 6.52vw;
}
@media (min-width: 769px) {
  .p-home__details {
    padding: 30px;
  }
}
.p-home__details--imgblc img {
  width: 100%;
  height: auto;
}
.p-home__details--txtblc {
  margin: 4.35vw 0 6.52vw;
}
@media (min-width: 769px) {
  .p-home__details--txtblc {
    margin: 20px 0 30px;
  }
}
.p-home__precaution {
  background-color: #fffff2;
  padding: 17.39vw 6.52vw 21.74vw;
}
@media (min-width: 769px) {
  .p-home__precaution {
    padding: 80px 30px 100px;
  }
}
.p-home__precaution--ttlwrap {
  margin: 2.83vw auto 0;
}
@media (min-width: 769px) {
  .p-home__precaution--ttlwrap {
    margin: 13px auto 0;
  }
}
.p-home__precaution--noteblc {
  margin: 6.09vw auto 3.91vw;
}
@media (min-width: 769px) {
  .p-home__precaution--noteblc {
    margin: 28px auto 18px;
  }
}
.p-home__contact {
  padding: 17.39vw 6.52vw 21.74vw;
}
@media (min-width: 769px) {
  .p-home__contact {
    padding: 80px 30px 100px;
  }
}
.p-home__contact--btnblc {
  margin: 0 0 4.78vw;
}
@media (min-width: 769px) {
  .p-home__contact--btnblc {
    margin: 0 0 22px;
  }
}

.nounder {
  text-decoration: none;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.underline {
  text-decoration: unerline;
}

.l-grey {
  color: #828282;
}

.red {
  color: #e8528d;
}

.color {
  color: #000000;
}

.purple {
  color: #b0849b;
}

.pink {
  color: #ff8cf2;
}

.blue {
  color: #80aaff;
}

.white {
  color: #FFF;
}

.grey {
  color: #717071;
}

.center {
  text-align: center;
}

.thin {
  font-weight: 100;
}

.exlight {
  font-weight: 200;
}

.italic {
  font-style: italic;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.midium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.exbold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.letter075 {
  letter-spacing: 0.075em;
}

.letter50 {
  letter-spacing: 0.05em;
}

.letterminus {
  letter-spacing: -0.025em !important;
}

.lh11 {
  line-height: 1.1;
}

.whitespace {
  white-space: nowrap;
}

.u-text__noto {
  font-family: "Noto Sans JP", sans-serif;
}
.u-text__fv-entry {
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 0.8;
}
@media (min-width: 769px) {
  .u-text__fv-entry {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
@media (max-width: 768px) {
  .u-text__fv-entry {
    font-size: 10.87vw;
  }
}
.u-text__mid--en {
  font-family: "acumin-pro-wide", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .u-text__mid--en {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .u-text__mid--en {
    font-size: 3.48vw;
  }
}
.u-text__midsmall {
  font-family: "acumin-pro-wide", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .u-text__midsmall {
    font-size: 3.91vw;
  }
}
.u-text__footlink {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .u-text__footlink {
    font-size: 3.04vw;
  }
}
.u-text__nav--jp {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 100;
}
@media (min-width: 769px) {
  .u-text__nav--jp {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media (max-width: 768px) {
  .u-text__nav--jp {
    font-size: 2.61vw;
  }
}
.u-text__nav--en {
  font-family: "acumin-pro-wide", sans-serif;
  letter-spacing: 0.05em;
}
@media (min-width: 769px) {
  .u-text__nav--en {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media (max-width: 768px) {
  .u-text__nav--en {
    font-size: 4.57vw;
  }
}
.u-text__h2 {
  font-family: "acumin-pro-wide", sans-serif;
}
@media (min-width: 769px) {
  .u-text__h2 {
    font-size: 51px;
    font-size: 3.1875rem;
  }
}
@media (max-width: 768px) {
  .u-text__h2 {
    font-size: clamp(10vw, 10vw, 51px);
    font-size: 11.09vw;
  }
}
.u-text__h2-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 44px;
  font-size: 2.75rem;
}
@media (max-width: 768px) {
  .u-text__h2-jp {
    font-size: 9.57vw;
  }
}
.u-text__h3 {
  font-family: "acumin-pro-wide", sans-serif;
}
@media (min-width: 769px) {
  .u-text__h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .u-text__h3 {
    font-size: clamp(5.6vw, 5.6vw, 24px);
    font-size: 5.22vw;
  }
}
.u-text__acumin14 {
  font-family: "acumin-pro-wide", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .u-text__acumin14 {
    font-size: 3.04vw;
  }
}
.u-text__acumin16 {
  font-family: "acumin-pro-wide", sans-serif;
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .u-text__acumin16 {
    font-size: 3.48vw;
  }
}
.u-text__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .u-text__name {
    font-size: 3.26vw;
  }
}
.u-text__name-small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .u-text__name-small {
    font-size: 3.04vw;
  }
}
.u-text__name-small02 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .u-text__name-small02 {
    font-size: 2.83vw;
  }
}
.u-text__noto25 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 768px) {
  .u-text__noto25 {
    font-size: 5.43vw;
  }
}
.u-text__noto14 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .u-text__noto14 {
    font-size: 3.04vw;
  }
}
.u-text__noto15 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .u-text__noto15 {
    font-size: 3.26vw;
  }
}
.u-text__noto17 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media (max-width: 768px) {
  .u-text__noto17 {
    font-size: 3.7vw;
  }
}
.u-text__noto18 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .u-text__noto18 {
    font-size: 3.91vw;
  }
}
.u-text__feature-big {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .u-text__feature-big {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
@media (max-width: 768px) {
  .u-text__feature-big {
    font-size: 7.83vw;
  }
}
.u-text__feature {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .u-text__feature {
    font-size: 3.91vw;
  }
}
.u-text__about-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.01;
}
@media (max-width: 768px) {
  .u-text__about-txt {
    font-size: 3.48vw;
  }
}
.u-text__benefit--space {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .u-text__benefit--space {
    font-size: 3.26vw;
  }
}
.u-text__benefit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .u-text__benefit {
    font-size: 3.7vw;
  }
}
.u-text__main-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media (max-width: 768px) {
  .u-text__main-jp {
    font-size: 5.43vw;
  }
}
.u-text__partner {
  font-family: "acumin-pro-wide", sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .u-text__partner {
    font-size: 8.26vw;
  }
}
.u-text__acumin52 {
  font-family: "acumin-pro-wide", sans-serif;
  font-size: 52px;
  font-size: 3.25rem;
}
@media (max-width: 768px) {
  .u-text__acumin52 {
    font-size: 11.3vw;
  }
}

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