@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-wimidium) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoomidiumg: 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-wimidium, :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: #ffd3fc;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  color: #454545;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  font-family: "Noto Sans JP", "Zen Maru Gothic", "Open Sans", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", sans-serif;
}

:root {
  color-scheme: light;
}

img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 961px) {
  header {
    position: sticky;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  header {
    position: sticky;
    top: 0;
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

.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クラスが付与されたら元の位置に */
}

@media screen and (min-width: 961px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

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

.fluffy {
  animation: fluffy 2.7s infinite;
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(-8px);
  }
}
.fluffy01 {
  animation: fluffy02 2.7s infinite;
}

.fluffy02 {
  animation: fluffy02 2s infinite;
}

@keyframes fluffy02 {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 要素にアニメーションを適用 */
.blink {
  animation: blinking 1.5s ease-in-out infinite alternate;
}

.blink02 {
  animation: blinking02 1.2s ease-in-out infinite alternate;
}

.l-main {
  background-color: #f2e6ff;
}

.l-footer__top {
  background-color: #FFFFFF;
}
@media screen and (min-width: 961px) {
  .l-footer__top {
    padding: 70px 0 90px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__top {
    padding: 15.2vw 0 19.5vw;
  }
}
.l-footer__ttl01 {
  background-image: url("../img/ttl_partner.png");
  background-repeat: no-repeat;
  background-size: contain;
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .l-footer__ttl01 {
    width: 362px;
    height: 31px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__ttl01 {
    width: 78.7vw;
    height: 6.7vw;
  }
}
.l-footer__ttl02 {
  background-image: url("../img/ttl_partner02.png");
  background-repeat: no-repeat;
  background-size: contain;
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .l-footer__ttl02 {
    width: 362px;
    height: 31px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__ttl02 {
    width: 78.7vw;
    height: 6.7vw;
  }
}
.l-footer__ttl03 {
  background-image: url("../img/ttl_partner03.png");
  background-repeat: no-repeat;
  background-size: contain;
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .l-footer__ttl03 {
    width: 271px;
    height: 73px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__ttl03 {
    width: 59vw;
    height: 15.7vw;
  }
}
@media screen and (min-width: 961px) {
  .l-footer__subttl {
    margin: 13px auto 26px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__subttl {
    margin: 2.82vw auto 5.65vw;
  }
}
.l-footer__logo01 {
  display: block;
}
@media screen and (min-width: 961px) {
  .l-footer__logo01 {
    width: 216px;
    margin: 0 auto 58px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__logo01 {
    width: 47vw;
    margin: 0 auto 12.6vw;
  }
}
.l-footer__flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 961px) {
  .l-footer__flx {
    width: 360px;
    margin: 0 auto 68px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__flx {
    width: 78.2vw;
    margin: 0 auto 14.8vw;
  }
}
@media screen and (min-width: 961px) {
  .l-footer__logo-tsubasa {
    width: 130px;
    height: 77px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__logo-tsubasa {
    width: 28.2vw;
    height: 16.8vw;
  }
}
@media screen and (min-width: 961px) {
  .l-footer__logo-showroom {
    width: 199px;
    height: 29px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__logo-showroom {
    width: 43.2vw;
    height: 6.3vw;
  }
}
.l-footer__logo-tp {
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 961px) {
  .l-footer__logo-tp {
    width: 260px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__logo-tp {
    width: 56.5vw;
  }
}
.l-footer__btm {
  background-image: url("../img/bg_footer.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 961px) {
  .l-footer__btm {
    padding: 58px 0 72px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__btm {
    padding: 12.6vw 0 15.6vw;
  }
}
@media screen and (min-width: 961px) {
  .l-footer__logo {
    width: 360px;
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__logo {
    width: 78.2vw;
    margin: 0 auto 3.3vw;
  }
}
.l-footer__logo a {
  display: block;
}
.l-footer__x {
  display: block;
}
@media screen and (min-width: 961px) {
  .l-footer__x {
    width: 40px;
    margin: 30px auto 25px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__x {
    width: 8.7vw;
    margin: 5vw auto 5.4vw;
  }
}
.l-footer__x img {
  width: 100%;
  height: auto;
}
.l-footer__btn {
  opacity: 1;
  transition: opacity 0.7s ease, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s;
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 118px;
  z-index: 10;
}
.l-footer__btn img {
  width: 100%;
  height: auto;
}
.l-footer__btn.is-hidden {
  opacity: 0;
}

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

@media screen and (min-width: 961px) {
  .l-container__main {
    width: 460px;
    min-width: 460px;
    max-width: 460px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    top: 70px;
  }
}
@media screen and (max-width: 960px) {
  .l-container__main {
    width: 100%;
  }
}
@media screen and (min-width: 961px) {
  .l-container__right {
    width: calc(50vw - 230px);
    height: calc(100vh - 70px);
    position: fixed;
    right: 0;
    top: 70px;
    background-image: url("../img/bg_pc.png");
    background-repeat: repeat-x;
    background-size: contain;
  }
}
@media screen and (max-width: 960px) {
  .l-container__right {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .l-container__left {
    width: calc(50vw - 230px);
    height: calc(100vh - 70px);
    position: fixed;
    display: block;
    left: 0;
    top: 70px;
    background-image: url("../img/bg_pc.png");
    background-repeat: repeat-x;
    background-size: contain;
  }
}
@media screen and (max-width: 960px) {
  .l-container__left {
    display: none;
  }
}
.l-container__left--dateblc {
  position: relative;
  width: 276px;
  margin: 0 auto 19px;
}
.l-container__left--dateblc img {
  width: 100%;
  height: auto;
}
.l-container__left--dateblc-fukidashi {
  width: 106px;
  position: absolute;
  top: -2px;
  right: -25px;
}
.l-container__left--entry {
  width: 280px;
  margin: 0 auto;
}
.l-container__sideinner {
  width: 100%;
  height: calc(100vh - 70px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-container__left--videoblc {
  position: relative;
  width: 348px;
  height: 285px;
  margin: 0 auto 42px;
}
.l-container__left--video01 {
  position: absolute;
  width: 210px;
  transform: rotate(9deg);
  top: 0;
  left: 48px;
}
.l-container__left--video02 {
  position: absolute;
  width: 210px;
  transform: rotate(-10deg);
  top: 146px;
  right: 34px;
}
.l-container__left--heart {
  padding-top: 63px;
}
.l-container__left--heart02 {
  top: 63px;
  position: absolute;
  width: 348px;
  left: 0;
}

.l-nav {
  position: fixed;
  width: 100%;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  top: 60px;
  right: 0;
  background: linear-gradient(to right, #fda3ff, #ffd3fc);
  overflow-y: scroll;
  transition: all 400ms;
  animation: fadeout 0.4s;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
@media screen and (min-width: 961px) {
  .l-nav {
    display: none;
  }
}
.l-nav.is-checked {
  opacity: 1;
  animation: fadein 0.4s;
  visibility: visible;
  z-index: 100;
}
.l-nav__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.l-nav__fukidashi--wrap {
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .l-nav__fukidashi--wrap {
    width: 216px;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 960px) {
  .l-nav__fukidashi--wrap {
    max-width: 240px;
    width: 54.5vw;
    margin: 0 auto 32px;
  }
}
.l-nav__fukidashik--right {
  overflow: hidden;
}
.l-nav__fukidashik--right a {
  float: right;
}
.l-nav__fukidashi--btn {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 961px) {
  .l-nav__fukidashi--btn.big {
    width: 186px;
  }
}
@media screen and (max-width: 960px) {
  .l-nav__fukidashi--btn.big {
    max-width: 205px;
    width: 46.6vw;
  }
}
@media screen and (min-width: 961px) {
  .l-nav__fukidashi--btn.small {
    width: 162px;
  }
}
@media screen and (max-width: 960px) {
  .l-nav__fukidashi--btn.small {
    max-width: 179px;
    width: 40.6vw;
  }
}
.l-nav__fukidashi--btn img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .l-nav__btm--blc {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 961px) {
  .l-nav__btm--right {
    margin: 0 0 14px;
  }
}
@media screen and (max-width: 960px) {
  .l-nav__btm--right {
    width: 120px;
  }
}
@media screen and (min-width: 961px) {
  .l-nav__btm--left {
    margin: 0 0 14px;
  }
}
@media screen and (max-width: 960px) {
  .l-nav__btm--left {
    width: 161px;
  }
}
.l-nav__btn {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 118px;
}
.l-nav__btn img {
  width: 100%;
  height: auto;
}

.l-wrapper {
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-wrapper {
    padding-top: 70px;
  }
}
@media screen and (max-width: 960px) {
  .l-wrapper {
    padding-top: 60px;
  }
}

.l-headnav {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 4;
  top: 0;
  left: 0;
  background-image: url("../img/bg_head.jpg");
  background-repeat: repeat-x;
  background-size: contain;
}
@media screen and (min-width: 961px) {
  .l-headnav {
    height: 70px;
  }
}
@media screen and (max-width: 960px) {
  .l-headnav {
    height: 60px;
  }
}
.l-headnav__fluid--list {
  display: flex;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 961px) {
  .l-headnav__fluid--list {
    animation: fluid 18s linear infinite;
  }
}
@media screen and (max-width: 960px) {
  .l-headnav__fluid--list {
    animation: fluid 14s linear infinite;
  }
}
.l-headnav__fluid--contents {
  width: 100%;
  display: block;
}
.l-headnav__fluid--wrapper {
  display: flex;
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .l-headnav__fluid--item01 {
    width: 342px;
    height: auto;
  }
}
@media screen and (max-width: 960px) {
  .l-headnav__fluid--item01 {
    width: 293px;
    height: auto;
  }
}
.l-headnav__fluid--item01 img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 961px) {
  .l-headnav__fluid--item02 {
    width: 38px;
    height: auto;
  }
}
@media screen and (max-width: 960px) {
  .l-headnav__fluid--item02 {
    width: 33px;
    height: auto;
  }
}
.l-headnav__fluid--item02 img {
  width: 100%;
  height: auto;
}
.l-headnav__menu {
  z-index: 5;
  position: fixed;
  right: 0;
  top: 0;
}
@media screen and (min-width: 961px) {
  .l-headnav__menu {
    height: 70px;
  }
}
@media screen and (max-width: 960px) {
  .l-headnav__menu {
    height: 60px;
  }
}
.l-headnav__menu--inner {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 961px) {
  .l-headnav__menu--navbtn {
    display: none;
  }
}
.l-headnav__navbtn {
  position: relative;
  width: 50px;
  height: 44px;
  cursor: pointer;
  background-color: #b46eff;
}
@keyframes fluid {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.c-button__totop {
  background-color: #ff0da2;
  display: block;
  background-image: url("../img/icon_totop.svg");
  background-repeat: no-repeat;
  background-position: center center;
  white-space: nowrap;
  text-indent: -9999px;
}
@media screen and (min-width: 961px) {
  .c-button__totop {
    background-size: 31px 27px;
    width: 120px;
    height: 70px;
  }
}
@media screen and (max-width: 960px) {
  .c-button__totop {
    background-size: 28px 25px;
    width: 70px;
    height: 60px;
  }
}
.c-button__navbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b46eff;
  height: 60px;
  width: 70px;
}
.c-button__navbtn span:nth-of-type(1) {
  -webkit-animation: btn07-bar01 0.75s forwards;
  animation: btn07-bar01 0.75s forwards;
}
.c-button__navbtn span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.c-button__navbtn span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 0.75s forwards;
  animation: btn07-bar03 0.75s forwards;
}
.c-button__navbtn.is-checked span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 0.75s forwards;
  animation: active-btn07-bar01 0.75s forwards;
}
.c-button__navbtn.is-checked span:nth-of-type(2) {
  opacity: 0;
}
.c-button__navbtn.is-checked span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 0.75s forwards;
  animation: active-btn07-bar03 0.75s forwards;
}
.c-button__navbtn--inner {
  position: relative;
  width: 28px;
  height: 23px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.c-button__navbtn--inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.c-button__navbtn--inner span:nth-child(1) {
  top: 0;
}
.c-button__navbtn--inner span:nth-child(2) {
  top: 10px;
}
.c-button__navbtn--inner span:nth-child(3) {
  bottom: 0;
}
.c-button__nav--caution {
  white-space: nowrap;
  text-indent: -9999px;
  background-image: url("../img/txt_nav01.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 64px;
  height: 15px;
  display: block;
}
.c-button__nav--inquiery {
  white-space: nowrap;
  text-indent: -9999px;
  background-image: url("../img/txt_nav02.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 15px;
  display: block;
}
.c-button__nav--faq {
  white-space: nowrap;
  text-indent: -9999px;
  background-image: url("../img/txt_nav03.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 95px;
  height: 15px;
  display: block;
}
.c-button__nav--policy {
  white-space: nowrap;
  text-indent: -9999px;
  background-image: url("../img/txt_nav04.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 161px;
  height: 15px;
  display: block;
}
.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 screen and (min-width: 961px) {
  .c-button__mail {
    width: 400px;
    height: 120px;
  }
}
@media screen and (max-width: 960px) {
  .c-button__mail {
    width: 87vw;
    height: 26vw;
  }
}
.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 screen and (min-width: 961px) {
  .c-button__tel {
    width: 400px;
    height: 120px;
  }
}
@media screen and (max-width: 960px) {
  .c-button__tel {
    width: 87vw;
    height: 26vw;
  }
}
.c-button__snsicon {
  display: block;
  width: 40px;
}

@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.p-first-view {
  background-image: url("../img/bg_fv.jpg");
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.p-first-view__top {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-first-view__top {
    height: 400px;
  }
}
@media screen and (max-width: 960px) {
  .p-first-view__top {
    height: 67vw;
  }
}
.p-first-view__ttl {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 961px) {
  .p-first-view__ttl {
    width: 504px;
    top: 45px;
  }
}
@media screen and (max-width: 960px) {
  .p-first-view__ttl {
    width: 87vw;
    top: 8.6vw;
  }
}
.p-first-view__heart01 {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-first-view__heart01 {
    width: 72px;
    right: -46px;
    top: 25px;
  }
}
@media screen and (max-width: 960px) {
  .p-first-view__heart01 {
    width: 10.65vw;
    left: 4.56vw;
    top: 3vw;
  }
}
.p-first-view__heart02 {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-first-view__heart02 {
    width: 72px;
    left: -46px;
    bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-first-view__heart02 {
    width: 10.65vw;
    right: 4.56vw;
    top: 47.4vw;
  }
}
.p-first-view__awa01 {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-first-view__awa01 {
    width: 68px;
    right: -102px;
    top: 162px;
  }
}
@media screen and (max-width: 960px) {
  .p-first-view__awa01 {
    width: 13vw;
    right: 2vw;
    top: 6vw;
  }
}
.p-first-view__awa01 img {
  width: 100%;
  height: auto;
}
.p-first-view__awa02 {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-first-view__awa02 {
    width: 68px;
    left: -106px;
    top: 46px;
  }
}
@media screen and (max-width: 960px) {
  .p-first-view__awa02 {
    width: 13vw;
    left: 2vw;
    top: 33vw;
  }
}
.p-first-view__awa02 img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 961px) {
  .p-first-view__featuretxt {
    width: 280px;
    margin: 0 auto 28px;
  }
}
@media screen and (max-width: 960px) {
  .p-first-view__featuretxt {
    width: 60.8vw;
    margin: 0 auto 7vw;
  }
}
@media screen and (min-width: 961px) {
  .p-first-view__txtwrap {
    padding: 0 30px 48px;
  }
}
@media screen and (max-width: 960px) {
  .p-first-view__txtwrap {
    padding: 0 6.52vw 10.4vw;
  }
}
.p-first-view__video {
  margin: 0 auto;
  width: 92vw;
  height: 33.2vw;
  position: relative;
}
.p-first-view__video--heart {
  position: absolute;
  top: 0;
  left: 0;
}
.p-first-view__video--item01 {
  width: 37.5vw;
  position: absolute;
  top: 0;
  left: 10.13vw;
  transform: rotate(-10deg);
}
.p-first-view__video--item01 img {
  width: 100%;
  height: auto;
}
.p-first-view__video--item02 {
  width: 37.5vw;
  position: absolute;
  top: 4.56vw;
  left: 44.3vw;
  transform: rotate(-10deg);
}
.p-first-view__video--item02 img {
  width: 100%;
  height: auto;
}
.p-first-view__date {
  position: relative;
}
.p-first-view__date--item {
  width: 73vw;
  margin: 4.34vw auto 7vw;
  position: relative;
}
.p-first-view__date--item img {
  width: 100%;
  height: auto;
}
.p-first-view__fukidashi {
  position: absolute;
  width: 28vw;
  top: 3px;
  right: 6.1vw;
}

.p-home__ambassador {
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador {
    padding: 120px 30px 72px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador {
    padding: 26vw 6.5vw 15.6vw;
  }
}
.p-home__ambassador--ttl {
  position: absolute;
  transform: rotate(-6deg);
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--ttl {
    width: 333px;
    left: -22px;
    top: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--ttl {
    width: 72.4vw;
    left: -4.8vw;
    top: 0;
  }
}
.p-home__ambassador--lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--item {
    width: 194px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--item {
    width: 42vw;
  }
}
.p-home__ambassador--item-gazo {
  margin: 0 auto 10px;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--item-gazo {
    width: 180px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--item-gazo {
    width: 39.1vw;
  }
}
.p-home__ambassador--item-img {
  position: relative;
}
.p-home__ambassador--kira01 {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--kira01 {
    width: 37px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--kira01 {
    width: 8vw;
  }
}
.p-home__ambassador--kira02 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--kira02 {
    width: 37px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--kira02 {
    width: 8vw;
  }
}
.p-home__ambassador--kira03 {
  position: absolute;
  top: -9px;
  right: 0;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--kira03 {
    width: 37px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--kira03 {
    width: 8vw;
  }
}
.p-home__ambassador--snswrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--snswrap {
    margin: 14px 0 38px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--snswrap {
    margin: 3vw 0 8.3vw;
  }
}
.p-home__ambassador--snswrap a {
  margin: 0 5px;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--youtube-ttl {
    width: 296px;
    margin: 12px auto 16px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--youtube-ttl {
    width: 64.3vw;
    margin: 2.6vw auto 3.5vw;
  }
}
.p-home__ambassador--videowrap {
  background: linear-gradient(to right, #ff38a7, #b46eff);
  padding: 10px;
  position: relative;
}
.p-home__ambassador--videowarp-in {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.p-home__ambassador--videowarp-in iframe {
  width: 100%;
  height: 100%;
}
.p-home__ambassador--yuki {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--yuki {
    width: 103px;
    right: -20px;
    top: 122px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--yuki {
    width: 22.4vw;
    right: -4.34vw;
    top: 26vw;
  }
}
.p-home__ambassador--harumi {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-home__ambassador--harumi {
    width: 103px;
    left: -20px;
    top: 122px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__ambassador--harumi {
    width: 22.4vw;
    left: -4.34vw;
    top: 26vw;
  }
}
.p-home__schedule {
  background-color: #ff63c3;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-home__schedule {
    padding: 73px 30px 37px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__schedule {
    padding: 15.86vw 6.5vw 8vw;
  }
}
.p-home__news {
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-home__news {
    padding: 120px 30px 72px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__news {
    padding: 26vw 6.5vw 15.6vw;
  }
}
.p-home__news--ttl {
  position: absolute;
  transform: rotate(6deg);
}
@media screen and (min-width: 961px) {
  .p-home__news--ttl {
    width: 292px;
    right: 34px;
    top: 0px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__news--ttl {
    right: 7.64vw;
    width: 63.4vw;
    top: 0;
  }
}
.p-home__news--heart {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-home__news--heart {
    width: 86px;
    left: 30px;
    top: 48px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__news--heart {
    width: 18.7vw;
    left: 6.5vw;
    top: 10.43vw;
  }
}
.p-home__news--item {
  background-image: url("../img/bg_news-top.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-home__news--item + .p-home__news--item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__news--item + .p-home__news--item {
    margin-top: 4.34vw;
  }
}
.p-home__news--item-btm {
  background-image: url("../img/bg_news-btm.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 bottom;
}
@media screen and (min-width: 961px) {
  .p-home__news--item-btm {
    padding-bottom: 19px;
    padding: 30px 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__news--item-btm {
    padding-bottom: 4vw;
    padding: 6.5vw 9.1vw;
  }
}
.p-home__news--date {
  display: flex;
  align-items: flex-end;
  margin-bottom: 11px;
}
.p-home__news--date-img {
  width: 18px;
  display: inline-block;
  margin-right: 7px;
}
.p-home__award {
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-home__award {
    padding: 76px 30px 57px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__award {
    padding: 16.5vw 6.5vw 12.4vw;
  }
}
.p-home__award--ttl {
  position: absolute;
  transform: rotate(-6deg);
}
@media screen and (min-width: 961px) {
  .p-home__award--ttl {
    width: 292px;
    left: -16px;
    top: 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__award--ttl {
    left: -3.47vw;
    width: 63.4vw;
    top: 6.5vw;
  }
}
.p-home__award--heart {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-home__award--heart {
    width: 86px;
    right: 30px;
    top: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-home__award--heart {
    right: 6.5vw;
    width: 18.7vw;
    top: 0;
  }
}
.p-home__award--box {
  background-image: url("../img/bg_award-top.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
}
.p-home__award--box-in {
  background-image: url("../img/bg_award-btm.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 bottom;
}
@media screen and (min-width: 961px) {
  .p-home__award--box-in {
    padding-bottom: 19px;
    padding: 87px 45px 66px;
    margin: 0 0 28px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__award--box-in {
    padding-bottom: 4vw;
    padding: 19vw 9.7vw 14.3vw;
    margin: 0 0 6vw;
  }
}
.p-home__award--item {
  display: flex;
}
.p-home__award--item + .p-home__award--item {
  margin-top: 30px;
}
.p-home__award--num {
  width: 38px;
  min-width: 38px;
  margin: 0 16px 0 0;
}
.p-home__schedule--txtblc {
  margin: 0 auto 30px;
}
.p-home__schedule--ttl {
  position: absolute;
  right: 20px;
  transform: rotate(6deg);
}
@media screen and (min-width: 961px) {
  .p-home__schedule--ttl {
    width: 333px;
    right: 26px;
    top: -43px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__schedule--ttl {
    width: 72.4vw;
    right: 5.65vw;
    top: -9.34vw;
  }
}
.p-home__condition {
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-home__condition {
    padding: 70px 30px 22px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__condition {
    padding: 15.2vw 6.5vw 4.8vw;
  }
}
.p-home__condition--ttl {
  position: absolute;
  transform: rotate(6deg);
}
@media screen and (min-width: 961px) {
  .p-home__condition--ttl {
    width: 292px;
    right: 30px;
    top: 26px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__condition--ttl {
    right: 6.5vw;
    width: 63.4vw;
    top: 5.6vw;
  }
}
.p-home__condition--kira {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-home__condition--kira {
    width: 50px;
    left: 40px;
    top: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-home__condition--kira {
    left: 8.7vw;
    width: 10.8vw;
    top: 0;
  }
}
.p-home__condition--box {
  background-image: url("../img/bg_condition-top.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
}
.p-home__condition--box-in {
  background-image: url("../img/bg_condition-btm.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 bottom;
}
@media screen and (min-width: 961px) {
  .p-home__condition--box-in {
    padding-bottom: 19px;
    padding: 66px 45px 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__condition--box-in {
    padding-bottom: 4vw;
    padding: 14.3vw 9.7vw 8.7vw;
  }
}
.p-home__condition--item {
  display: flex;
}
.p-home__condition--pochi {
  width: 18px;
  min-width: 18px;
  margin: 8px 16px 0 0;
}
.p-home__howto {
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-home__howto {
    padding: 70px 30px 134px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__howto {
    padding: 15.2vw 6.5vw 29.1vw;
  }
}
.p-home__howto--ttl {
  position: absolute;
  transform: rotate(-6deg);
}
@media screen and (min-width: 961px) {
  .p-home__howto--ttl {
    width: 292px;
    left: 27px;
    top: 24px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__howto--ttl {
    left: 5.9vw;
    width: 63.4vw;
    top: 5.2vw;
  }
}
.p-home__howto--kira {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-home__howto--kira {
    width: 50px;
    right: 40px;
    top: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-home__howto--kira {
    right: 8.7vw;
    width: 10.8vw;
    top: 0;
  }
}
.p-home__howto--box {
  background-image: url("../img/bg_howto-top.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
}
.p-home__howto--box-in {
  background-image: url("../img/bg_howto-btm.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 bottom;
}
@media screen and (min-width: 961px) {
  .p-home__howto--box-in {
    padding-bottom: 19px;
    padding: 80px 36px 40px 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__howto--box-in {
    padding-bottom: 4vw;
    padding: 17.4vw 9.7vw 8.7vw;
  }
}
.p-home__howto--item {
  display: flex;
}
.p-home__howto--item + .p-home__howto--item {
  margin-top: 14px;
}
.p-home__howto--pochi {
  width: 18px;
  min-width: 18px;
  margin: 5px 16px 0 0;
}
@media screen and (min-width: 961px) {
  .p-home__howto--entry {
    width: 284px;
    margin: 28px auto 0;
  }
}
@media screen and (max-width: 960px) {
  .p-home__howto--entry {
    width: 61.7vw;
    margin: 6vw auto 0;
  }
}
.p-home__schedule--period {
  background-color: #FFFFFF;
  border: solid 2px #000000;
  display: inline-block;
  padding: 10px 20px;
}
.p-home__schedule--period.black {
  background-color: #000000;
}
.p-home__schedule--period02 {
  background-color: #FFFFFF;
  border-right: solid 2px #000000;
  border-top: solid 2px #000000;
  border-bottom: solid 2px #000000;
  display: inline-block;
  padding: 8px 20px;
}
.p-home__schedule--item {
  margin: 0 0 30px;
}
.p-home__schedule--blcttl {
  margin: 0 0 12px;
  display: flex;
}
.p-home__schedule--btm {
  background-image: url("../img/bg_schedule02.jpg");
  width: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 961px) {
  .p-home__schedule--btm {
    height: 466px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__schedule--btm {
    height: 101.3vw;
  }
}
@media screen and (min-width: 961px) {
  .p-home__schedule--img {
    width: 402px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__schedule--img {
    width: 87.4vw;
  }
}
.p-home__partner {
  position: relative;
  background-color: #FFFFFF;
}
@media screen and (min-width: 961px) {
  .p-home__partner {
    padding: 106px 30px 50px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner {
    padding: 23vw 6.5vw 10.8vw;
  }
}
.p-home__partner--feture {
  transform: rotate(-6deg);
  position: absolute;
}
@media screen and (min-width: 961px) {
  .p-home__partner--feture {
    width: 292px;
    left: 30px;
    top: -34px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--feture {
    width: 63.4vw;
    left: 6.52vw;
    top: -7.4vw;
  }
}
@media screen and (min-width: 961px) {
  .p-home__partner--logo {
    width: 207px;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--logo {
    width: 45vw;
    margin: 0 auto 4.34vw;
  }
}
.p-home__partner--swipe {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 40px;
}
@media screen and (min-width: 961px) {
  .p-home__partner--swipe .swiper-button-prev,
  .p-home__partner--swipe .swiper-button-next {
    height: 48px;
    width: 48px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--swipe .swiper-button-prev,
  .p-home__partner--swipe .swiper-button-next {
    width: 10.4vw;
    height: 10.4vw;
  }
}
.p-home__partner--swipe {
  /* 前へ次への矢印カスタマイズ */
}
.p-home__partner--swipe .swiper-button-prev::after,
.p-home__partner--swipe .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
}
@media screen and (min-width: 961px) {
  .p-home__partner--swipe .swiper-button-prev::after,
  .p-home__partner--swipe .swiper-button-next::after {
    height: 48px;
    width: 48px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--swipe .swiper-button-prev::after,
  .p-home__partner--swipe .swiper-button-next::after {
    width: 10.4vw;
    height: 10.4vw;
  }
}
.p-home__partner--swipe {
  /* 前への矢印カスタマイズ */
}
.p-home__partner--swipe .swiper-button-prev::after {
  background-image: url("../img/arrow-prev.png");
}
.p-home__partner--swipe {
  /* 次への矢印カスタマイズ */
}
.p-home__partner--swipe .swiper-button-next::after {
  background-image: url("../img/arrow-next.png");
}
.p-home__partner--swipe {
  /* 前への矢印 */
}
@media screen and (min-width: 961px) {
  .p-home__partner--swipe .swiper-button-prev {
    top: 156px;
    left: -24px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--swipe .swiper-button-prev {
    top: 38%;
    left: -5.12vw;
  }
}
.p-home__partner--swipe {
  /* 次への矢印 */
}
@media screen and (min-width: 961px) {
  .p-home__partner--swipe .swiper-button-next {
    top: 156px;
    right: -24px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--swipe .swiper-button-next {
    top: 38%;
    right: -5.12vw;
  }
}
.p-home__partner--swipe {
  /* 画像サイズ調整 */
}
.p-home__partner--swipe .swiper-slide img {
  height: auto;
  width: 100%;
}
.p-home__partner--swipe .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 16px;
}
.p-home__partner--swipe .swiper-pagination-bullet {
  background-color: #ef9e7b;
  opacity: 1;
  width: 14px;
  height: 14px;
  margin: 0 8px !important;
}
.p-home__partner--swipe .swiper-pagination-bullet-active {
  background-color: #de0716;
  opacity: 1;
}
.p-home__partner--swipeimg {
  display: block;
}
@media screen and (min-width: 961px) {
  .p-home__partner--swipeimg {
    margin: 0 auto 14px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--swipeimg {
    margin: 0 auto 3vw;
  }
}
@media screen and (min-width: 961px) {
  .p-home__partner--txtwrap {
    margin: 0 auto 6px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--txtwrap {
    margin: 0 auto 1vw;
  }
}
.p-home__partner--sns a {
  text-decoration: none;
}
@media screen and (min-width: 961px) {
  .p-home__partner--subttl {
    width: 314px;
    margin: 34px auto 18px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--subttl {
    width: 68.2vw;
    margin: 7.3vw auto 4vw;
  }
}
@media screen and (min-width: 961px) {
  .p-home__partner--subttl02 {
    width: 237px;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--subttl02 {
    width: 51.5vw;
    margin: 0 auto 6.52vw;
  }
}
@media screen and (min-width: 961px) {
  .p-home__partner--imgblc {
    margin: 25px 0 0;
  }
}
@media screen and (max-width: 960px) {
  .p-home__partner--imgblc {
    margin: 5.4vw 0 0;
  }
}
@media screen and (min-width: 961px) {
  .p-home__precaution {
    padding: 56px 30px 0;
  }
}
@media screen and (max-width: 960px) {
  .p-home__precaution {
    padding: 12.1vw 6.5vw 0;
  }
}
@media screen and (min-width: 961px) {
  .p-home__precaution--ttlwrap {
    width: 292px;
    margin: 0 auto 28px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__precaution--ttlwrap {
    width: 63.4vw;
    margin: 0 auto 6vw;
  }
}
.p-home__precaution--noteblc {
  margin: 0 auto 60px;
}
@media screen and (min-width: 961px) {
  .p-home__contact {
    padding: 0 30px 80px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__contact {
    padding: 0 6.5vw 17.4vw;
  }
}
@media screen and (min-width: 961px) {
  .p-home__contact--btnblc {
    margin: 25px auto 16px;
  }
}
@media screen and (max-width: 960px) {
  .p-home__contact--btnblc {
    margin: 5.43vw auto 3.5vw;
  }
}
.p-faq {
  width: 100%;
}
@media screen and (min-width: 961px) {
  .p-faq {
    padding: 20px 50px 80px;
  }
}
@media screen and (max-width: 960px) {
  .p-faq {
    padding: 4.3vw 10.87vw 17.4vw;
  }
}
@media screen and (min-width: 961px) {
  .p-faq__icon {
    width: 72px;
    margin: 0 auto 18px;
  }
}
@media screen and (max-width: 960px) {
  .p-faq__icon {
    width: 15.6vw;
    margin: 0 auto 3.9vw;
  }
}
@media screen and (min-width: 961px) {
  .p-faq__ttlwrap {
    width: 292px;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-faq__ttlwrap {
    width: 63.4vw;
    margin: 0 auto 6.5vw;
  }
}
.p-faq__question {
  width: 40px;
  min-width: 40px;
  margin-right: 12px;
}
.p-faq__mark {
  width: 22px;
  min-width: 22px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}
.p-faq__answerblc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.p-faq__answerblc--inner {
  margin-bottom: 32px;
}
.p-faq__qblc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #717071;
  padding-bottom: 22px;
  margin: 0 0 32px;
  cursor: pointer;
}
.p-faq__qblc.open .p-faq__mark {
  transform: rotate(180deg);
}
.p-faq__qblc.open .p-faq__answerblc {
  height: auto;
}
.p-faq__qblc--in {
  display: flex;
  align-items: center;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
.p-policy {
  width: 100%;
}
@media screen and (min-width: 961px) {
  .p-policy {
    padding: 20px 50px 80px;
  }
}
@media screen and (max-width: 960px) {
  .p-policy {
    padding: 4.3vw 10.87vw 17.4vw;
  }
}
@media screen and (min-width: 961px) {
  .p-policy__icon {
    width: 72px;
    margin: 0 auto 18px;
  }
}
@media screen and (max-width: 960px) {
  .p-policy__icon {
    width: 15.6vw;
    margin: 0 auto 3.9vw;
  }
}
@media screen and (min-width: 961px) {
  .p-policy__ttlwrap {
    width: 292px;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-policy__ttlwrap {
    width: 63.4vw;
    margin: 0 auto 6.5vw;
  }
}
.p-policy__txtwrap {
  margin: 42px 0 21px;
}
.p-policy__smlblc {
  padding-left: 1em;
}
@media screen and (min-width: 961px) {
  .p-policy__tpwrap {
    padding: 0 30px 98px;
  }
}
@media screen and (max-width: 960px) {
  .p-policy__tpwrap {
    padding: 0 6.5vw 21.3vw;
  }
}
.p-policy__tp {
  border: solid 1px #828282;
  padding: 25px 24px;
  margin: 0 auto;
}
.nounder {
  text-decoration: none;
}

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

.underline {
  text-decoration: unerline;
}

.red {
  color: #de0716;
}

.color {
  color: #000000;
}

.purple {
  color: #b46eff;
}

.pink {
  color: #ff0da2;
}

.grey {
  color: #717071;
}

.white {
  color: #FFF;
}

.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;
}

.line-height01 {
  line-height: 1;
}

.line-height02 {
  line-height: 2;
}

.u-text__noto {
  font-family: "Noto Sans JP", sans-serif;
}
.u-text__fvtxt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.9;
}
.u-text__font12 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
}
.u-text__font13 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
.u-text__font14 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
.u-text__font15 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
}
.u-text__font16 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
}
.u-text__font17 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
}
.u-text__font18 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}
.u-text__font25 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
}
.u-text__zen14 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
.u-text__zen15 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
}

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