@charset "UTF-8";
/**
* Foundation
* ========================== */
/* 
 ==================================
 変数
 ================================== 
*/
/*  primaryColor  */
/*  lineColor  */
/*  secondryColor  */
/*  tertiaryColor  */
/*  Noto Sans JP  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
/*  Noto serif JP  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP&display=swap");
/*  Mrs Sheppards  */
@import url("https://fonts.googleapis.com/css2?family=Mrs+Sheppards&family=Noto+Sans+JP&display=swap");
/*  Oooh Baby  */
@import url("https://fonts.googleapis.com/css2?family=Mrs+Sheppards&family=Noto+Sans+JP&family=Oooh+Baby&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* 
 ==================================
 mixin
 ================================== 
*/
/* 
 ==================================
 base
 ================================== 
 */
html,
body {
  overflow-x: hidden;
  width: 100%;
  color: #3e3e3e;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  letter-spacing: 0.1em;
  background-color: #ffffff;
  position: relative;
}

p,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: #3e3e3e;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #EC4899;
}

img {
  width: 100%;
  vertical-align: bottom;
}

button {
  cursor: pointer;
}

input:focus {
  outline: 1px #F472B6 solid;
}

input[type=submit] {
  cursor: pointer;
}

/**
* Layout
* ========================== */
.l-header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
}

.c-hamburger__slide {
  left: 100vw;
}

.l-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(68, 68, 68, 0.726);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/
}
@media screen and (max-width: 1000px) {
  .l-nav__menu-wrap {
    max-width: 1000px;
    position: absolute;
    width: 100vw;
    height: 100vh;
    font-size: 24px;
    background-color: rgba(167, 167, 167, 0.877);
    top: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
.l-nav__menu-point {
  text-align: end;
}
.l-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.l-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: bold;
  margin-right: 24px;
}
@media screen and (max-width: 1000px) {
  .l-nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1000px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 80px;
    margin-right: 0;
  }
}
.l-nav__menu-link {
  color: #ffffff;
}
.l-nav__menu-link:hover {
  color: #F472B6;
}
.l-nav__menu-login-sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-nav__menu-login-sp {
    display: block;
  }
}
.l-nav__menu-sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-nav__menu-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-nav__logo {
  width: 180px;
  z-index: 10;
  padding: 12px;
}
@media screen and (max-width: 1000px) {
  .l-nav__logo {
    width: 104px;
    padding: 4px;
  }
}
.l-nav__hamburger {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-nav__hamburger {
    display: block;
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
}
.l-nav__hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #ffffff;
  width: 45%;
}
.l-nav__hamburger span:nth-of-type(1) {
  top: 15px;
}
.l-nav__hamburger span:nth-of-type(2) {
  top: 23px;
}
.l-nav__hamburger span:nth-of-type(3) {
  top: 31px;
}
.l-nav__hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.l-nav__hamburger.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.l-nav__hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*  main---------------------------------------------------------------------------------  */
.l-main {
  /** ★経験者用FV*/
}
.l-main__hero {
  /** テスト環境用BG
    background-image: url(../img/herobaner.png);
   */
  /**  本番環境用BG */
  background-image: url(../img/rounge01.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .l-main__hero {
    /** テスト環境用BG
    // background-image: url(../img/herobanar-sp.ing);
    */
    /**  本番環境用BG */
    background-image: url(../img/rounge01-sp.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.l-main__hero-experienced {
  /** テスト環境用BG
   background-image: url(../img/herobaner.png);
  */
  /**  本番環境用BG */
  background-image: url(.././img/experienced-fv-pc.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .l-main__hero-experienced {
    /** テスト環境用BG
    // background-image: url(../img/herobanar-sp.ing);
    */
    /**  本番環境用BG */
    background-image: url(.././img/experienced-fv-sp.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.l-main__hero-experienced__hero-beginner {
  /** テスト環境用BG
    background-image: url(../img/herobaner.png);
  */
  /**  本番環境用BG */
  background-image: url(.././img/beginner-fv-pc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .l-main__hero-experienced__hero-beginner {
    /** テスト環境用BG
    // background-image: url(../img/herobanar-sp.ing);
    */
    /**  本番環境用BG */
    background-image: url(.././img/beginner-fv-sp.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.l-main__hero-experienced-soft {
  /** テスト環境用BG
  background-image: url(../img/herobaner.png);
  */
  /**  本番環境用BG */
  background-image: url(.././img/experienced-soft-fv-pc.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .l-main__hero-experienced-soft {
    /** テスト環境用BG
    // background-image: url(../img/herobanar-sp.ing);
    */
    /**  本番環境用BG */
    background-image: url(.././img/experienced-soft-fv-sp.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.l-main__banner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 8px;
  padding: 0 4px;
  height: auto;
  width: 42%;
}
@media screen and (max-width: 1000px) {
  .l-main__banner-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 100%;
    width: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.l-main__banner-wrap-experienced {
  width: 45%;
}
.l-main__slogan-experienced {
  padding: 550px 0 20px 30px;
}
@media screen and (max-width: 1000px) {
  .l-main__slogan-experienced {
    padding: 150% 0 20px 30px;
  }
}
@media screen and (max-width: 1000px) {
  .l-main__form {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .l-main__second-wrap {
    width: 80%;
    margin: 0 auto 24px;
  }
}
.l-main__slogan {
  padding: 150px 0 50px 0;
}
@media screen and (max-width: 1000px) {
  .l-main__slogan {
    padding: 80px 0 16px 0;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.l-main__first-text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .l-main__first-text-box {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .l-main__first-text01 {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .l-main__first-text02 {
    display: none;
  }
}
.l-main__three-point-sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-main__three-point-sp {
    display: block;
  }
}
.l-footer {
  padding-bottom: 16px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    font-size: 12px;
    gap: 16px;
  }
}
.l-footer__end {
  padding-bottom: 16px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100vh;
}
@media screen and (max-width: 768px) {
  .l-footer__end {
    font-size: 12px;
    gap: 16px;
  }
}
.l-footer__input {
  position: fixed;
  bottom: 0;
  max-width: 80%;
  width: 100%;
  z-index: 10;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.6549019608);
  padding: 0px 4px;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .l-footer__input {
    font-size: 12px;
    max-width: 100%;
  }
}
.l-footer__logo {
  width: 240px;
  z-index: 10;
  margin: 0 auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 130px;
    padding: 0 16px;
    z-index: 10;
  }
}
.l-footer__menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .l-footer__menu-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
  }
}
.l-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .l-footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 16px;
    gap: 8px;
  }
}
.l-footer__copylight {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-footer__copylight {
    font-size: 8px;
  }
}
.l-footer__rules {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px;
  color: #8f8f8f;
}

/*
Object
* ========================== */
/* Component ------------ */
.p-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*  form--------------------------------------------------------------------------------- */
.p-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-form__container {
  max-width: 400px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 20px;
}
.p-form__btn {
  margin-top: 30px;
}
.p-form__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-form__hero {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 255, 255, 0.6549019608);
}
.p-form__wrap-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-form__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-form__notice-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-form__hero-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  border-radius: 15px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-form__hero-wrap {
    display: none;
  }
}
.p-form__hero-image {
  width: 250px;
}
.p-form__atention {
  text-align: center;
  font-size: 0.6vw;
  letter-spacing: -1px;
}
@media screen and (max-width: 1000px) {
  .p-form__atention {
    font-size: 1.5vw;
  }
}
.p-form__notice-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-form__notice-text {
  font-weight: bold;
  padding-left: 8px;
  color: #DB2777;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  font-size: 40px;
}
@media screen and (max-width: 1000px) {
  .p-form__notice-text {
    font-size: 3vw;
    padding-left: 4px;
  }
}
@media screen and (max-width: 768px) {
  .p-form__notice-text {
    font-size: 7vw;
    padding-left: 4px;
  }
}
.p-form__notice-text-top {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  font-weight: bold;
  padding-left: 8px;
  font-size: 1.5vw;
  white-space: nowrap;
  color: #DB2777;
}
@media screen and (max-width: 1000px) {
  .p-form__notice-text-top {
    font-size: 6.5vw;
    padding-left: 4px;
  }
}
.p-form__img {
  width: 33.3333333333%;
}
.p-form__notice-text-forte {
  font-size: 30px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  color: #DB2777;
  white-space: nowrap;
  padding-left: 4px;
}
.p-form__bank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 16px;
  text-align: center;
}
.p-form__bank-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 16px;
  text-align: center;
  width: 33.3333333333%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .p-form__bank-item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .p-form__bank-item {
    width: 100%;
  }
}
.p-form__bank-name {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .p-form__bank-name {
    font-size: 16px;
  }
}
.p-form__bank-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-form__bank-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-form__center {
  text-align: center;
}
.p-form__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .p-form__message {
    padding-bottom: 16px;
  }
}
.p-form__message-textarea {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
.p-form__message-btn {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.p-form__message-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-form__btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .p-form__btn-container {
    gap: 4px;
  }
}
.p-form__img-label {
  padding: 8px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  background: #EC4899;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-form__img-input {
  display: none;
}

/*  plan--------------------------------------------------------------------------------- */
.p-link {
  margin: 8px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-link__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #C1A859;
  position: relative;
}
.p-link__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-weight: bold;
  font-size: 2vw;
  color: #C1A859;
  padding: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .p-link__item {
    font-size: 3vw;
  }
}
.p-link__item:hover {
  cursor: pointer;
  color: #EC4899;
  text-decoration: none;
}
.p-link__details {
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  overflow: hidden;
  height: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-link__details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  font-weight: bold;
  font-size: 2vw;
  color: #C1A859;
  padding: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
}
@media screen and (max-width: 1000px) {
  .p-link__details-item {
    font-size: 16px;
  }
}

/*  相性　affinity--------------------------------------------------------------------------------- */
.p-affinity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .p-affinity {
    gap: 20px;
  }
}
.p-affinity__features {
  font-weight: bold;
  font-size: 3.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  margin: 80px 0;
}
@media screen and (max-width: 1000px) {
  .p-affinity__features {
    gap: 60px;
    margin: 60px 0;
  }
}
.p-affinity__emphasis {
  font-size: 12vw;
  color: #DB2777;
}
.p-affinity__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-affinity__catch-wrap {
  color: #DB2777;
  font-size: 4vw;
}
.p-affinity__result {
  display: inline;
  font-size: 6vw;
}
.p-affinity__reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0;
  padding-top: 40px;
  background-color: #EC4899;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
@media screen and (max-width: 1000px) {
  .p-affinity__reason {
    font-size: 4vw;
    margin-top: 40px;
    padding-top: 20px;
  }
}
.p-affinity__reason-text {
  background-color: #fff;
  padding: 16px;
  font-weight: bold;
  font-size: 2vw;
}
@media screen and (max-width: 1000px) {
  .p-affinity__reason-text {
    padding: 8px;
  }
}
.p-affinity__reason-emphasis {
  font-family: "Mrs Sheppards", cursive;
  color: #fff;
  font-size: 10vw;
}

/*  なぜ、女性が稼げているのか　lady-focus --------------------------------------------------------------------------------- */
.p-lady-focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: start;
  gap: 36px;
}
@media screen and (max-width: 1000px) {
  .p-lady-focus {
    gap: 16px;
  }
}
.p-lady-focus__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
  font-weight: bold;
  font-size: 3vw;
  margin-left: 23px;
}
@media screen and (max-width: 1000px) {
  .p-lady-focus__features {
    font-size: 6vw;
  }
}
.p-lady-focus__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-lady-focus__emphasis {
  font-size: 11vw;
  color: #DB2777;
  padding-bottom: 20px;
}
.p-lady-focus__reason-text {
  background-color: #fff;
  padding: 16px;
  font-weight: bold;
  font-size: 2vw;
}
@media screen and (max-width: 1000px) {
  .p-lady-focus__reason-text {
    padding: 8px;
  }
}

/*  reason--------------------------------------------------------------------------------- */
.p-reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .p-reason {
    gap: 16px;
  }
}
.p-reason__caption-box {
  position: relative;
  margin-top: 1em;
  padding: 8px;
  border: 0.5vw solid #d600cb;
  -o-border-image: linear-gradient(90deg, rgb(255, 0, 125), rgb(255, 113, 183));
     border-image: -webkit-gradient(linear, left top, right top, from(rgb(255, 0, 125)), to(rgb(255, 113, 183)));
     border-image: linear-gradient(90deg, rgb(255, 0, 125), rgb(255, 113, 183));
  border-image-slice: 1;
}
.p-reason__caption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1em;
  margin: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(255, 0, 125)), to(rgb(255, 113, 183)));
  background-image: linear-gradient(90deg, rgb(255, 0, 125), rgb(255, 113, 183));
  -webkit-transform: translateY(-50%) translateX(1em);
          transform: translateY(-50%) translateX(1em);
  font-size: 2vw;
  font-weight: bold;
  color: #fff;
  text-align: start;
}
@media screen and (max-width: 1000px) {
  .p-reason__caption {
    font-size: 3vw;
  }
}
.p-reason__caption-text {
  font-size: 3.5vw;
  font-weight: bold;
  margin-top: 48px;
}
@media screen and (max-width: 1000px) {
  .p-reason__caption-text {
    margin-top: 24px;
    font-size: 5.5vw;
  }
}
.p-reason__wrap-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 36px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .p-reason__wrap-first {
    gap: 4px;
    margin-bottom: 16px;
  }
}
.p-reason__imgs {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 700px;
}
.p-reason__title-first {
  color: #EC4899;
}
.p-reason__factors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .p-reason__factors {
    gap: 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-reason__title-number {
  position: absolute;
  width: 30%;
}
.p-reason__internal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.p-reason__internal-title {
  font-weight: bold;
  font-size: 8vw;
  text-align: start;
  margin: 80px 0 0 160px;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .p-reason__internal-title {
    margin: 40px 0 0 80px;
    font-size: 8vw;
  }
}
@media screen and (max-width: 375px) {
  .p-reason__internal-title {
    margin: 20px 0 0 40px;
  }
}
.p-reason__subtitle {
  font-weight: bold;
  font-size: 3vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1000px) {
  .p-reason__subtitle {
    font-size: 4vw;
  }
}
.p-reason__external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.p-reason__external-title {
  font-weight: bold;
  font-size: 40px;
  text-align: start;
}
.p-reason__text {
  font-weight: bold;
  font-size: 20px;
  z-index: 10;
}
.p-reason__img-arrow {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .p-reason__img-arrow {
    width: 40%;
  }
}
.p-reason__details {
  border: solid 3px #EC4899;
  border-radius: 10px;
  padding: 8px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.p-reason__before {
  padding-bottom: 80px;
}
.p-reason__analysis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 40px 0;
}
@media screen and (max-width: 1000px) {
  .p-reason__analysis {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}
.p-reason__analysis-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-reason__analysis-title {
    font-size: 32px;
  }
}
.p-reason__analysis-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffd3ea;
  color: #EC4899;
  padding: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1000px) {
  .p-reason__analysis-container {
    width: 100%;
    padding: 4px;
    margin: 0 8px;
  }
}
.p-reason__analysis-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1000px) {
  .p-reason__analysis-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.p-reason__analysis-item {
  font-size: 32px;
  font-weight: bold;
  padding: 4px;
}
@media screen and (max-width: 1000px) {
  .p-reason__analysis-item {
    font-size: 24px;
    padding: 0px;
  }
}
.p-reason__analysis-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.p-reason__analysis-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .p-reason__analysis-sidebar {
    gap: 16px;
    padding: 16px;
  }
}
.p-reason__label {
  background: #EC4899;
  color: #ffffff;
  font-size: 3vw;
  padding: 12px;
  font-weight: bold;
  border-radius: 10px;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .p-reason__label {
    font-size: 20px;
    padding: 8px;
    font-weigh: bold;
    border-radius: 8px;
  }
}
.p-reason__text-emphasis {
  color: #EC4899;
  font-size: 5vw;
}
@media screen and (max-width: 1000px) {
  .p-reason__text-emphasis {
    font-size: 7vw;
  }
}
.p-reason__text-emphasis2 {
  color: #EC4899;
  font-size: 4vw;
}

/*  survey1--------------------------------------------------------------------------------- */
.p-survey1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .p-survey1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-survey1__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .p-survey1__content {
    gap: 8px;
    margin-bottom: 16px;
  }
}
.p-survey1__title {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .p-survey1__title {
    font-size: 5vw;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.p-survey1__title-graph {
  font-size: 2.5vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .p-survey1__title-graph {
    font-size: 2vw;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.p-survey1__explanation {
  font-size: 20px;
  padding-bottom: 24px;
}
.p-survey1__text {
  font-size: 3vw;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .p-survey1__text {
    font-size: 6vw;
  }
}
.p-survey1__text-emphasis {
  font-size: 6vw;
  color: #DB2777;
}
@media screen and (max-width: 1000px) {
  .p-survey1__text-emphasis {
    font-size: 12vw;
  }
}
.p-survey1__text-forte {
  font-weight: bold;
  font-size: 18px;
}

/*  money--------------------------------------------------------------------------------- */
.p-money__explanation {
  text-align: center;
  font-size: 20px;
  padding-bottom: 24px;
}
.p-money__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 60px;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .p-money__content {
    gap: 40px;
  }
}

/*  survey--------------------------------------------------------------------------------- */
.p-survey {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-survey {
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-survey__explanation {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-survey__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-survey__text-emphasis {
  font-size: 6vw;
  color: #DB2777;
}
@media screen and (max-width: 1000px) {
  .p-survey__text-emphasis {
    font-size: 12vw;
  }
}

/*  record--------------------------------------------------------------------------------- */
.p-record {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .p-record {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8px;
  }
}
.p-record__title {
  width: 100%;
  font-size: 4vw;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  text-align: center;
  color: #059669;
  background-color: white;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  margin: 44px auto;
}
@media screen and (max-width: 1000px) {
  .p-record__title {
    margin: 20px auto;
    font-size: 8vw;
    padding-bottom: 8px;
  }
}
.p-record__title-accent {
  font-size: 8vw;
  line-height: 50px;
}
@media screen and (max-width: 1000px) {
  .p-record__title-accent {
    font-size: 12vw;
  }
}
.p-record__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 24px 0;
}
.p-record__comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  margin: 44px auto;
}
@media screen and (max-width: 1000px) {
  .p-record__comments {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8px;
  }
}
.p-record__container {
  padding: 12px;
  background: white;
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .p-record__container {
    margin-bottom: 16px;
  }
}
.p-record__explanation {
  text-align: center;
  font-size: 20px;
  padding-bottom: 24px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .p-record__explanation {
    font-size: 16px;
    padding-bottom: 16px;
  }
}
.p-record__user {
  padding-bottom: 24px;
}
.p-record__user-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-record__user-icon {
  font-size: 3vw;
  color: #C1A859;
  padding-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-record__user-icon {
    font-size: 5vw;
    padding-right: 8px;
  }
}
.p-record__user-name {
  font-size: 3vw;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .p-record__user-name {
    font-size: 5vw;
  }
}
.p-record__user-comment {
  font-size: 2vw;
}
@media screen and (max-width: 1000px) {
  .p-record__user-comment {
    font-size: 4vw;
  }
}
.p-record__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-record__impression {
  font-size: 3vw;
  color: #EC4899;
}
@media screen and (max-width: 1000px) {
  .p-record__impression {
    font-size: 5vw;
  }
}

/*  realised--------------------------------------------------------------------------------- */
.p-realised {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-realised__explanation {
  text-align: center;
  font-size: 20px;
  padding-bottom: 24px;
}
.p-realised__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.p-realised__box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

/*  promotion--------------------------------------------------------------------------------- */
.p-promotion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-promotion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-promotion__text {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .p-promotion__text {
    font-size: 16px;
  }
}
.p-promotion__img {
  margin-bottom: 8px;
}
.p-promotion__img-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1000px) {
  .p-promotion__img-container {
    padding: 8px;
  }
}

/*  admission--------------------------------------------------------------------------------- */
.p-admission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 新しい入会入力部分 */
  /* 新しい入会入力部分 end */
}
@media screen and (max-width: 1000px) {
  .p-admission {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.p-admission__top {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-admission__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-admission__container-form {
  width: 100%;
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-admission__container-advertisement {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-admission__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-admission__text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.p-admission__text-forte {
  font-size: 30px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  color: #db2777;
  white-space: nowrap;
  padding-left: 4px;
}
.p-admission__img {
  margin-bottom: 8px;
  border-radius: 5px;
}
.p-admission__img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.p-admission__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  text-align: center;
  padding: 0 8px;
}
.p-admission__form-contents {
  position: relative;
}
.p-admission__form-wrap {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background: rgba(255, 255, 255, 0.6549019608);
  border-radius: 8px;
  padding: 8px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .p-admission__form-wrap {
    padding: 8px;
    gap: 4px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 90%;
  }
}
.p-admission__form-wrap-top {
  width: 90%;
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.6549019608);
  border-radius: 8px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.p-admission__icon {
  color: #EC4899;
  font-size: 32px;
}

/*  favorite--------------------------------------------------------------------------------- */
.p-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .p-favorite {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-favorite__imgs {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 700px;
}
@media screen and (max-width: 1000px) {
  .p-favorite__imgs {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    height: 550px;
  }
}
.p-favorite__imgs03 {
  position: absolute;
  top: 5%;
  left: 15%;
}
.p-favorite__imgs04 {
  position: absolute;
  top: 25%;
  left: 60%;
}
.p-favorite__imgs01 {
  position: absolute;
  top: 45%;
  left: 10%;
}
.p-favorite__imgs02 {
  position: absolute;
  top: 75%;
  left: 60%;
}

/*  chat--------------------------------------------------------------------------------- */
.p-chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .p-chat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-chat__imgs {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*  request--------------------------------------------------------------------------------- */
.p-request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*  buy it--------------------------------------------------------------------------------- */
.p-buy {
  gap: 16px;
  padding: 0 8px;
}
.p-buy__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6549019608);
}
.p-buy__table {
  width: 100%;
  margin-bottom: 20px;
  table-layout: fixed;
}
.p-buy__plan-name {
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 32px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(255, 108, 180)), to(rgb(255, 0, 126)));
  background: linear-gradient(-90deg, rgb(255, 108, 180) 57%, rgb(255, 0, 126));
  color: white;
}
@media screen and (max-width: 768px) {
  .p-buy__plan-name {
    font-size: 20px;
  }
}
.p-buy__sub-title {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .p-buy__sub-title {
    font-size: 4vw;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.p-buy__recommend-user {
  font-size: 32px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  text-align: center;
  background-color: #C1A859;
  color: white;
}
@media screen and (max-width: 768px) {
  .p-buy__recommend-user {
    font-size: 20px;
  }
}
.p-buy__recommend-border {
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  text-align: center;
  border-bottom: 2px solid #C1A859;
}
@media screen and (max-width: 768px) {
  .p-buy__recommend-border {
    font-size: 14px;
  }
}
.p-buy__recommend-border > th {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding: 10px 0;
}
.p-buy__recommend-border > td {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding: 10px 0;
}
.p-buy__recommend-item {
  color: #C1A859;
}
.p-buy__recommend-item_attention {
  color: #DB2777;
  font-weight: bold;
}

/*  plan--------------------------------------------------------------------------------- */
.p-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 0 8px;
  /* 四宮蘭　専用 */
}
.p-plan__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.p-plan__item-wrap {
  border-radius: 20px;
  width: calc((100% - 4px) / 2);
}
.p-plan__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border: 2px solid #C1A859;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px;
}
.p-plan__sinomiya-item {
  border-top: 4px solid #f7f3cc;
  border-right: 4px solid #cea82c;
  border-bottom: 7px solid #987c1e;
  border-left: 4px solid #ffed8b;
  border-radius: 0;
  background: linear-gradient(135deg, #ffd75b 0%, #fff5a0 11%, #fffabe 28%, #ffffff 47%, #ffffff 65%, #ffffdb 77%, #fff5a0 88%, #fdd456 100%);
}
.p-plan__sinomiya-decolation {
  width: 98%;
  margin: 4px auto;
}
.p-plan__name {
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-plan__name {
    font-size: 16px;
  }
}
.p-plan__chara-img {
  width: 60%;
  margin: 0 auto;
  border-radius: 8px;
}
.p-plan__career {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-plan__career {
    font-size: 10px;
  }
}
.p-plan__table {
  width: 100%;
}
.p-plan__payment {
  padding: 12px;
  margin: 16px;
  border: solid 4px #C1A859;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .p-plan__payment {
    padding-top: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-plan__link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-plan__link-wrap {
    gap: 8px;
    padding-top: 8px;
  }
}
.p-plan__btn {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
}
.p-plan__text {
  font-weight: bold;
}
.p-plan__sub-title {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .p-plan__sub-title {
    font-size: 4vw;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.p-plan__hit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 20px;
}
.p-plan__hit > div {
  width: 100%;
}
.p-plan__hit-img {
  width: 30%;
  margin-bottom: 16px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-plan__hit-img {
    width: 45%;
    margin-bottom: 8px;
  }
}
.p-plan__recommend {
  font-size: 32px;
  font-weight: bold;
  color: #C1A859;
  font-family: "Oooh Baby", cursive;
}
@media screen and (max-width: 768px) {
  .p-plan__recommend {
    font-size: 28px;
  }
}
.p-plan__recommend-item-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  border: 4px solid #C1A859;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
  background-color: #EFEBE1;
}
.p-plan__recommend-claim {
  font-size: 40px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  color: #C1A859;
}
@media screen and (max-width: 768px) {
  .p-plan__recommend-claim {
    font-size: 24px;
  }
}
.p-plan__recommend-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-plan__recommend-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-plan__recommend-img-wrap {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-plan__recommend-img-chara {
  position: absolute;
}
.p-plan__recommend-introduction {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-plan__recommend-introduction-name01 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  color: #EC4899;
}
@media screen and (max-width: 768px) {
  .p-plan__recommend-introduction-name01 {
    font-size: 24px;
  }
}
.p-plan__recommend-introduction-name02 {
  font-size: 24px;
  font-weight: bold;
  font-family: "Oooh Baby", cursive;
  color: #EC4899;
}
@media screen and (max-width: 768px) {
  .p-plan__recommend-introduction-name02 {
    font-size: 12px;
  }
}
.p-plan__recommend-border {
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  text-align: center;
  border-bottom: 2px solid #C1A859;
}
@media screen and (max-width: 768px) {
  .p-plan__recommend-border {
    font-size: 10px;
  }
}
.p-plan__recommend-border > td {
  vertical-align: middle;
}
.p-plan__recommend-user {
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  text-align: center;
  background-color: #C1A859;
  color: white;
}
@media screen and (max-width: 768px) {
  .p-plan__recommend-user {
    font-size: 14px;
  }
}
.p-plan__recommend-item {
  color: #C1A859;
}
.p-plan__recommend-text {
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-plan__recommend-text {
    font-size: 10px;
  }
}
.p-plan__recommend-comments-box {
  position: relative;
}
.p-plan__recommend-comments {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.p-plan__recommend-btn-text-md {
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  color: #ffffff;
}
.p-plan__recommend-btn-text-lg {
  font-size: 56px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  color: #ffffff;
}
.p-plan__soldout {
  font-size: 32px;
  font-weight: bold;
  font-family: "Oooh Baby", cursive;
}
.p-plan__btn-sale-accent {
  display: inline-block;
  width: 100%;
  line-height: 140%;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  padding: 4px;
  margin-bottom: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 40px;
  color: white;
  text-shadow: 2px 2px 1px #C1A859, -2px 2px 1px #C1A859, 2px -2px 1px #C1A859, -2px -2px 1px #C1A859, 2px 0px 1px #C1A859, 0px 2px 1px #C1A859, -2px 0px 1px #C1A859, 0px -2px 1px #C1A859;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(50%, #C1A859));
  background: linear-gradient(transparent 70%, #C1A859 50%);
}
@media screen and (max-width: 768px) {
  .p-plan__btn-sale-accent {
    font-size: 3.5vw;
  }
}
.p-plan__btn-sp-wrap {
  width: 100%;
}
.p-plan__btn-sp {
  width: 100%;
  text-align: center;
  padding: 6px 0px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  font-weight: bold;
  background-image: linear-gradient(142deg, rgb(0, 0, 0), rgb(118, 118, 118) 48%, rgb(0, 0, 0) 90%);
  border-bottom: 1vw solid !important;
  border-top: 1vw solid !important;
  -o-border-image: linear-gradient(to right, #df8020, #fae8c5, #df8020) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#df8020), color-stop(#fae8c5), to(#df8020)) 1;
     border-image: linear-gradient(to right, #df8020, #fae8c5, #df8020) 1;
}
@media screen and (max-width: 768px) {
  .p-plan__btn-sp {
    padding: 3px 0px;
    font-size: 3vw;
  }
}
.p-plan__btn-batch {
  width: 100px;
  height: 100px;
  background-image: linear-gradient(142deg, rgb(0, 0, 0), rgb(118, 118, 118) 48%, rgb(0, 0, 0) 90%);
  font-size: 16px;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  border-radius: 50%;
  border: 5px solid white;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-plan__btn-batch {
    width: 11vw;
    height: 11vw;
    border: 2px solid white;
    background-image: linear-gradient(142deg, rgb(0, 0, 0), rgb(118, 118, 118) 48%, rgb(0, 0, 0) 90%);
    padding: 1px;
    font-size: 2.5vw;
    line-height: 120%;
  }
}
.p-plan__btn-batch-circular {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  display: grid;
  place-self: center;
  padding-top: 1.2vw;
}
.p-plan__btn-batch__num {
  grid-area: 1/1/3/2;
  font-size: 50px;
  line-height: 73%;
}
@media screen and (max-width: 768px) {
  .p-plan__btn-batch__num {
    font-size: 7vw;
  }
}
.p-plan__btn-batch__unit01 {
  grid-area: 1/2/2/3;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-plan__btn-batch__unit01 {
    font-size: 3vw;
  }
}
.p-plan__btn-batch__unit02 {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 768px) {
  .p-plan__btn-batch__unit02 {
    font-size: 1.5vw;
  }
}
.p-plan__btn-batch__todayonly {
  font-size: 12px;
  color: black;
  background-color: white;
  border-radius: 53px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-plan__btn-batch__todayonly {
    font-size: 1.5vw;
    width: 80%;
  }
}

/*  record--------------------------------------------------------------------------------- */
.p-hit-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-hit-track {
    padding: 8px;
  }
}
.p-hit-track__name {
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-hit-track__name {
    font-size: 2.5vw;
  }
}
.p-hit-track__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .p-hit-track__wrap {
    gap: 4px;
  }
}
.p-hit-track__chara-img {
  height: auto;
  border-radius: 8px;
}
.p-hit-track__chara-img-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-hit-track__chara-img-box {
    width: 20%;
  }
}
.p-hit-track__ticket-box {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-hit-track__ticket-box {
    width: 80%;
  }
}
.p-hit-track__ticket {
  background-image: url(.././img/ticket-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-hit-track__ticket {
    width: 62vw;
    height: 42vw;
  }
}
.p-hit-track__detail {
  color: white;
  font-weight: bold;
  font-size: 56px;
  line-height: 120%;
  padding-left: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-hit-track__detail {
    padding-left: 12px;
    font-size: 6vw;
  }
}
.p-hit-track__img {
  width: 100%;
  border-radius: 8px;
}
.p-hit-track__img-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-hit-track__img-box {
    padding: 8px;
  }
}
.p-hit-track__group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-hit-track__day {
  color: white;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-hit-track__day {
    font-size: 3vw;
  }
}
.p-hit-track__dividend {
  color: white;
  font-weight: bold;
  font-size: 75px;
  text-align: end;
  line-height: 121%;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-hit-track__dividend {
    font-size: 8vw;
  }
}
/*  ranking--------------------------------------------------------------------------------- */
.p-ranking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
}
@media screen and (max-width: 768px) {
  .p-ranking {
    padding: 4px;
  }
}
.p-ranking__name {
  font-size: 32px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-ranking__name {
    font-size: 20px;
  }
}
.p-ranking__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 4px;
  background: rgba(255, 255, 255, 0.4392156863);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  padding: 4px;
}
@media screen and (max-width: 768px) {
  .p-ranking__wrap {
    gap: 4px;
  }
}
.p-ranking__img {
  border-radius: 8px;
}
.p-ranking__img-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-ranking__img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
  }
}
.p-ranking__text {
  font-size: 14px;
}
.p-ranking__img-box {
  position: relative;
}
.p-ranking__flg {
  position: absolute;
  top: 0;
  left: 8px;
  width: 20%;
}
.p-ranking__flg-number {
  position: absolute;
  top: -8%;
  left: 24%;
  font-size: 48px;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .p-ranking__flg-number {
    font-size: 5vw;
    top: -16%;
    left: 16%;
  }
}
.p-ranking__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.p-ranking__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  font-weight: bold;
  color: white;
  border-radius: 10px;
  background-color: #059669;
}
.p-ranking__rate-text {
  font-size: 48px;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .p-ranking__rate-text {
    font-size: 5vw;
    line-height: 110%;
  }
}
.p-ranking__rate-nunber {
  font-size: 116px;
  line-height: 150px;
}
@media screen and (max-width: 768px) {
  .p-ranking__rate-nunber {
    font-size: 16vw;
    line-height: 110%;
  }
}
.p-ranking__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-ranking__btn {
  width: 50%;
  text-align: center;
}
.p-ranking__btn:hover {
  color: white;
}
.p-ranking__text {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-ranking__text {
    font-size: 10px;
  }
}

/*  feature--------------------------------------------------------------------------------- */
.p-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.p-feature__name {
  font-size: 24px;
  font-weight: bold;
}
.p-feature__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-feature__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.p-feature__container {
  max-width: 400px;
  margin: 8px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 20px;
  background: white;
}
.p-feature__btn {
  width: 100%;
}
.p-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*  profile--------------------------------------------------------------------------------- */
.p-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px;
}
.p-profile__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-profile__imgs-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-profile__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-profile__img-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 50%;
}
.p-profile__birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
.p-profile__birth-year {
  width: 100px;
}
.p-profile__birth-month {
  width: 60px;
}
.p-profile__birth-day {
  width: 60px;
}
.p-profile__line {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-profile__line {
    font-size: 3.5vw;
  }
}
.p-profile__line-check {
  font-weight: bold;
}

/*  allmsg--------------------------------------------------------------------------------- */
.p-allmsg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  font-size: 16px;
}
.p-allmsg__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.522);
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-allmsg__box:hover {
  background: rgba(255, 255, 255, 0.768);
}
.p-allmsg__img {
  margin-right: 8px;
  width: 20%;
}
.p-allmsg__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  width: 80%;
}
.p-allmsg__name {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-allmsg__name {
    font-size: 20px;
  }
}
.p-allmsg__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-allmsg__body {
  font-size: 16px;
  overflow-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .p-allmsg__body {
    font-size: 12px;
  }
}
.p-allmsg__notice {
  background: #EC4899;
  padding: 6px 14px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-allmsg__notice {
    font-size: 8px;
    padding: 2px 4px;
  }
}
.p-allmsg__favorite-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-allmsg__favorite-mark {
  font-family: "Font Awesome 5 Free";
  color: #EC4899;
  padding: 4px;
  font-size: 32px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-allmsg__favorite-mark {
    font-size: 20px;
  }
}

/*  pagination--------------------------------------------------------------------------------- */
.p-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-pagination__item {
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 16px;
}

.highlight {
  background: #C1A859;
  color: white;
}

/*  reviews--------------------------------------------------------------------------------- */
.p-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 12px;
}
.p-reviews__radio-hidden {
  display: none;
}
.p-reviews__container {
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.522);
  text-align: start;
}
.p-reviews__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-reviews__user-icon {
  margin-right: 8px;
  font-size: 32px;
  color: #C1A859;
}
.p-reviews__like-icon {
  margin-right: 8px;
  font-size: 20px;
  color: #EC4899;
  font-family: "Font Awesome 5 Free";
}
.p-reviews__like-icon input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.p-reviews__like-icon label {
  display: inline-block;
}
.p-reviews__like-icon input:checked + label ~ label {
  color: grey;
}
.p-reviews__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.p-reviews__user-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.p-reviews__user-day {
  font-size: 12px;
  color: #999;
}
.p-reviews__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-reviews__body {
  font-size: 16px;
}
.p-reviews__notice {
  background: #EC4899;
  padding: 6px 14px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
}

/*  info--------------------------------------------------------------------------------- */
.p-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 12px;
}
.p-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 8px;
  margin: 16px;
  background: rgba(255, 255, 255, 0.522);
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-info__container {
    gap: 4px;
    padding: 8px;
    margin: 8px;
  }
}
.p-info__title {
  font-size: 2vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  line-height: 110%;
}
@media screen and (max-width: 1000px) {
  .p-info__title {
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.p-info__link {
  color: #EC4899;
  font-weight: bold;
}
.p-info__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-info__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.p-info__article-day {
  font-size: 12px;
  color: #999;
}
.p-info__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-info__body {
  font-size: 16px;
}
.p-info__notice {
  background: #EC4899;
  padding: 6px 14px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
}

/*  message--------------------------------------------------------------------------------- */
.p-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 12px;
}
.p-message__container {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 40px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 20px;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
}
@media screen and (max-width: 1000px) {
  .p-message__container {
    gap: 20px;
  }
}
.p-message__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 4px;
}
.p-message__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.p-message__name {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-message__name {
    font-size: 16px;
  }
}
.p-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: start;
}
.p-message__customer-img {
  margin: 8px;
  width: 50px;
}
.p-message__img {
  border-radius: 10px;
}
.p-message__customer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-message__customer-text {
  margin: 8px 8px 8px 0;
  background: #ffd3ea;
  padding: 8px;
  border-radius: 10px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-message__customer-text {
    font-size: 12px;
  }
}
.p-message__customer-time {
  margin-right: 8px;
  float: right;
}
.p-message__user-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-message__user-text {
  margin: 8px 8px 8px 0;
  background: #ffffff;
  padding: 8px;
  border-radius: 10px;
  font-size: 16px;
  text-align: start;
}
.p-message__user-time {
  margin-right: 8px;
  float: right;
}
.p-message__fix-title-wrap {
  position: fixed;
  width: 100%;
  background-color: rgba(167, 167, 167, 0.7098039216);
  color: white;
  top: 104px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-message__fix-title-wrap {
    font-size: 4vw;
    top: 54px;
  }
}
.p-message__fix-title {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-message__fix-title {
    font-size: 4vw;
  }
}

/*  origin--------------------------------------------------------------------------------- */
.p-origin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 1000px) {
  .p-origin {
    padding-top: 100px;
  }
}
.p-origin__explanation-box {
  position: relative;
}
.p-origin__explanation-text {
  font-size: 3.5vw;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-origin__explanation-text {
    font-size: 6vw;
  }
}
.p-origin__explanation-text-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-origin__explanation {
  font-size: 2vw;
  text-align: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .p-origin__explanation {
    font-size: 4vw;
  }
}
.p-origin__content {
  padding-top: 150px;
  color: #ffffff;
}
@media screen and (max-width: 1000px) {
  .p-origin__content {
    padding-top: 70px;
  }
}
.p-origin__wording {
  font-weight: bold;
  font-size: 2vw;
}
.p-origin__wording-forte {
  font-size: 4vw;
  font-weight: bold;
  color: #DB2777;
}
.p-origin__triangle {
  position: relative;
}
.p-origin__triangle:after {
  content: "";
  position: absolute;
  top: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 100px solid #000000;
}
@media screen and (max-width: 1000px) {
  .p-origin__triangle:after {
    border-top: 50px solid #000000;
  }
}
.p-origin__lead {
  font-size: 5vw;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-origin__lead {
    font-size: 8.5vw;
  }
}

/*  tradeLaw--------------------------------------------------------------------------------- */
.p-tradeLaw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-top: 150px;
}
@media screen and (max-width: 1000px) {
  .p-tradeLaw {
    padding-top: 100px;
  }
}
.p-tradeLaw__clause {
  margin-bottom: 32px;
}
.p-tradeLaw__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 24px;
}
.p-tradeLaw__subtitle {
  font-size: 24px;
  font-weight: bold;
}
.p-tradeLaw__text {
  padding: 20px;
}
@media screen and (max-width: 1000px) {
  .p-tradeLaw__text {
    padding: 4px;
  }
}

/*  present--------------------------------------------------------------------------------- */
.p-present {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .p-present {
    gap: 16px;
  }
}
.p-present__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .p-present__section {
    margin-bottom: 16px;
  }
}
.p-present__title {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 24px;
  line-height: 110%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(140, 188, 228, 0)), color-stop(22%, rgb(163, 206, 241)), to(rgba(140, 188, 228, 0)));
  background-image: linear-gradient(90deg, rgba(140, 188, 228, 0), rgb(163, 206, 241) 22% 79%, rgba(140, 188, 228, 0));
  color: white;
  font-family: "Noto serif JP", sans-serif;
}
@media screen and (max-width: 1000px) {
  .p-present__title {
    margin-bottom: 8px;
    font-size: 5vw;
  }
}
.p-present__title-beginner {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 24px;
  line-height: 110%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(140, 188, 228, 0)), color-stop(22%, rgb(243, 143, 209)), to(rgba(140, 188, 228, 0)));
  background-image: linear-gradient(90deg, rgba(140, 188, 228, 0), rgb(243, 143, 209) 22% 79%, rgba(140, 188, 228, 0));
  color: white;
  font-family: "Noto serif JP", sans-serif;
}
@media screen and (max-width: 1000px) {
  .p-present__title-beginner {
    margin-bottom: 8px;
    font-size: 5vw;
  }
}
.p-present__title-rebenge {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 24px;
  line-height: 110%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(140, 188, 228, 0)), color-stop(22%, rgb(243, 173, 25)), to(rgba(140, 188, 228, 0)));
  background-image: linear-gradient(90deg, rgba(140, 188, 228, 0), rgb(243, 173, 25) 22% 79%, rgba(140, 188, 228, 0));
  color: white;
  font-family: "Noto serif JP", sans-serif;
}
@media screen and (max-width: 1000px) {
  .p-present__title-rebenge {
    margin-bottom: 8px;
    font-size: 5vw;
  }
}
.p-present__title-favorite {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 24px;
  line-height: 110%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(140, 188, 228, 0)), color-stop(22%, rgb(225, 163, 241)), to(rgba(140, 188, 228, 0)));
  background-image: linear-gradient(90deg, rgba(140, 188, 228, 0), rgb(225, 163, 241) 22% 79%, rgba(140, 188, 228, 0));
  color: white;
  font-family: "Noto serif JP", sans-serif;
}
@media screen and (max-width: 1000px) {
  .p-present__title-favorite {
    margin-bottom: 8px;
    font-size: 5vw;
  }
}
.p-present__subtitle {
  font-size: 3vw;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  color: #C1A859;
  text-align: start;
}
@media screen and (max-width: 1000px) {
  .p-present__subtitle {
    font-size: 5vw;
  }
}
.p-present__detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1000px) {
  .p-present__detail-container {
    gap: 4px;
  }
}
.p-present__info-text {
  color: #3e3e3e;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .p-present__info-text {
    font-size: 10px;
  }
}
.p-present__info-text-lg {
  color: #3e3e3e;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .p-present__info-text-lg {
    font-size: 14px;
  }
}
.p-present__info-text-lg-favorite {
  color: #3e3e3e;
  text-align: start;
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .p-present__info-text-lg-favorite {
    font-size: 14px;
  }
}
.p-present__info-text-box {
  background: #ffffff;
}
.p-present__info-emphasis {
  padding: 4px;
  font-size: 24px;
  color: #007FF7;
  font-family: "Noto serif JP", sans-serif;
  line-height: 150%;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .p-present__info-emphasis {
    font-size: 4vw;
  }
}
.p-present__info-moreemphasis {
  text-shadow: 1px 1px #007FF7, -1px 1px #007FF7, -1px -1px #007FF7, 1px -1px #007FF7, 1px 0px #007FF7, 0px 1px #007FF7, -1px 0px #007FF7, 0px -1px #007FF7;
  font-size: 36px;
}
@media screen and (max-width: 1000px) {
  .p-present__info-moreemphasis {
    text-shadow: 0.5px 0.5px #007FF7, -0.5px 0.5px #007FF7, -0.5px -0.5px #007FF7, 0.5px -0.5px #007FF7, 0.5px 0px #007FF7, 0px 0.5px #007FF7, -0.5px 0px #007FF7, 0px -0.5px #007FF7;
    font-size: 5.3vw;
  }
}
.p-present__text-animation {
  -webkit-animation: animation 1s ease-in-out infinite alternate;
          animation: animation 1s ease-in-out infinite alternate;
}
@-webkit-keyframes animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@keyframes animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

/*  p-ivent--------------------------------------------------------------------------------- */
.p-ivent__footer-banner {
  display: block;
  position: relative;
}
.p-ivent__details {
  width: 100%;
  position: absolute;
  top: 45%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 4px;
  grid-row-gap: 0px;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-ivent__name {
  grid-area: 1/1/2/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  color: #ffffff;
  text-shadow: 2px 3px 3px rgb(255, 9, 0);
}
@media screen and (max-width: 1000px) {
  .p-ivent__name {
    font-size: 10px;
    text-shadow: 1px 1px 1px rgb(255, 9, 0);
  }
}
.p-ivent__name-space {
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .p-ivent__name-space {
    font-size: 3vw;
  }
}
.p-ivent__chara-phrase {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-ivent__chara-phrase {
    font-size: 1.5vw;
  }
}
.p-ivent__price {
  grid-area: 1/4/2/8;
  background: rgba(255, 255, 255, 0.6549019608);
  border-radius: 8px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  text-align: end;
}
@media screen and (max-width: 768px) {
  .p-ivent__price {
    font-size: 2vw;
    padding: 4px;
  }
}
.p-ivent__day-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-ivent__day {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-ivent__day {
    font-size: 1.9vw;
  }
}
.p-ivent__day-color {
  color: #DB2777;
  font-weight: bold;
}
.p-ivent__participation {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}
.p-ivent__participation-price {
  font-size: 64px;
  font-weight: bold;
  color: #C1A859;
  font-family: "Noto serif JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-ivent__participation-price {
    font-size: 5vw;
  }
}
.p-ivent__participation-text {
  font-size: 16px;
  line-height: 40%;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-ivent__participation-text {
    font-size: 2vw;
    line-height: 70%;
  }
}
.p-ivent__limit {
  position: absolute;
  left: 36%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0p;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6549019608);
  font-family: "Noto serif JP", sans-serif;
  font-weight: bold;
  -webkit-animation: comment-animation-lg 2s infinite;
          animation: comment-animation-lg 2s infinite;
}
@media screen and (max-width: 768px) {
  .p-ivent__limit {
    font-size: 12px;
    padding: 4px;
    -webkit-animation: comment-animation 2s infinite;
            animation: comment-animation 2s infinite;
  }
}
.p-ivent__limit::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.6549019608);
  left: 99.9%;
  top: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: calc(100% - 80px);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-ivent__limit::after {
    width: 20px;
  }
}
.p-ivent__limit > p {
  grid-area: 1/1/2/3;
}
.p-ivent__limit > span {
  grid-area: 2/1/3/2;
  color: #DB2777;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-ivent__limit > span {
    font-size: 16px;
  }
}
.p-ivent__limit > div {
  grid-area: 2/2/3/3;
  color: #DB2777;
}
.p-ivent__limit-color {
  color: #DB2777;
}
.p-ivent__limit-rest {
  font-size: 70px;
  line-height: 80%;
  -webkit-animation: comment-rest-animation-lg 2s infinite;
          animation: comment-rest-animation-lg 2s infinite;
}
@media screen and (max-width: 768px) {
  .p-ivent__limit-rest {
    line-height: 40%;
    -webkit-animation: comment-rest-animation 2s infinite;
            animation: comment-rest-animation 2s infinite;
  }
}

@-webkit-keyframes comment-rest-animation {
  0% {
    font-size: 8vw;
  }
  50% {
    font-size: 10vw;
  }
  100% {
    font-size: 8vw;
  }
}

@keyframes comment-rest-animation {
  0% {
    font-size: 8vw;
  }
  50% {
    font-size: 10vw;
  }
  100% {
    font-size: 8vw;
  }
}
@-webkit-keyframes comment-rest-animation-lg {
  0% {
    font-size: 70px;
  }
  50% {
    font-size: 90px;
  }
  100% {
    font-size: 70px;
  }
}
@keyframes comment-rest-animation-lg {
  0% {
    font-size: 70px;
  }
  50% {
    font-size: 90px;
  }
  100% {
    font-size: 70px;
  }
}
@-webkit-keyframes comment-animation-lg {
  0% {
    top: 2vw;
    padding: 4px;
  }
  50% {
    top: -3vw;
    padding: 8px;
  }
  100% {
    top: 2vw;
    padding: 4px;
  }
}
@keyframes comment-animation-lg {
  0% {
    top: 2vw;
    padding: 4px;
  }
  50% {
    top: -3vw;
    padding: 8px;
  }
  100% {
    top: 2vw;
    padding: 4px;
  }
}
@-webkit-keyframes comment-animation {
  0% {
    top: -1vw;
    padding: 2px;
  }
  50% {
    top: -5vw;
    padding: 4px;
  }
  100% {
    top: -1vw;
    padding: 2px;
  }
}
@keyframes comment-animation {
  0% {
    top: -1vw;
    padding: 2px;
  }
  50% {
    top: -5vw;
    padding: 4px;
  }
  100% {
    top: -1vw;
    padding: 2px;
  }
}
/*  component--------------------------------------------------------------------------------- */
.c-chat__container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.c-chat__wrap {
  min-height: 100vh;
}

.c-chat__box {
  width: 100%;
}

.talk_back_wrap {
  color: white;
}

.talk_back_wrap:hover {
  color: #EC4899;
}

.c-result__container {
  max-width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 40px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .c-result__container {
    gap: 20px;
    max-width: 90%;
  }
}

.c-comment__container {
  max-width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .c-comment__container {
    gap: 40px;
  }
}

.c-section__wrap {
  padding: 60px 0;
}
@media screen and (max-width: 1000px) {
  .c-section__wrap {
    padding: 30px 0;
  }
}
.c-section__wrap-lg {
  padding: 150px 0 20px 0;
}
@media screen and (max-width: 1000px) {
  .c-section__wrap-lg {
    padding: 100px 0 20px 0;
  }
}
.c-section__wrap-md {
  padding: 100px 0 20px 0;
}
@media screen and (max-width: 1000px) {
  .c-section__wrap-md {
    padding: 60px 0 0px 0;
  }
}
.c-section__record-bg {
  background-color: #059669;
}
.c-section__origin-bg {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(57%, rgb(255, 108, 180)), to(rgb(255, 0, 126)));
  background-image: linear-gradient(rgb(255, 108, 180) 57%, rgb(255, 0, 126));
}
.c-section__bg-menu {
  background-image: url(.././img/stone-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.c-section__bg01 {
  background-image: url(.././img/section_background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__bg02 {
  background-image: url(.././img/lady-horse02.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__bg03 {
  background-image: url(.././img/origin-img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__bg-ruch {
  background-image: url(.././img/haitou-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__bg-horse {
  background-image: url(.././img/horse-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__bg-lady-focus {
  background-image: url(.././img/why-lady-forcus.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__bg-no1 {
  background-image: url(.././img/no1-02-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__reson-bg {
  background-image: url(.././img/reson01^bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__intuition-bg {
  background-image: url(.././img/ladies-brain.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-section__bgform {
  background: #fdf2f8;
}
.c-section__throughout {
  background: #000000;
}
.c-section__triangle-black {
  position: relative;
}
.c-section__triangle-black:after {
  content: "";
  position: absolute;
  top: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 100px solid #000000;
}
@media screen and (max-width: 1000px) {
  .c-section__triangle-black:after {
    border-top: 50px solid #000000;
  }
}
.c-section__triangle-white {
  position: relative;
}
.c-section__triangle-white:after {
  content: "";
  position: absolute;
  top: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 100px solid #ffffff;
}
@media screen and (max-width: 1000px) {
  .c-section__triangle-white:after {
    border-top: 50px solid #ffffff;
  }
}

.c-img__decoration-chamfer {
  clip-path: polygon(25% 0%, 100% 0, 100% 75%, 75% 100%, 0 100%, 0% 25%);
}

.c-content {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .c-content {
    margin: 0 auto;
  }
}
.c-content__h-full {
  height: 100vh;
}

.c-content > a {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .c-content > a {
    margin-top: 10px;
  }
}

.c-content__bottom {
  padding-bottom: 100px;
}

.c-content__bottom-lg {
  padding-bottom: 140px;
}

.c-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 12px;
  border: 1px solid rgba(142, 142, 142, 0.45);
  border-radius: 8px;
  background: #ffffff;
  font-size: 20px;
  color: #505050;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-btn {
  padding: 8px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__responsive {
  padding: 8px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  font-size: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn__responsive {
    border-radius: 4px;
    border: none;
    font-weight: bold;
    font-size: 3vw;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.c-btn__link-responsive {
  padding: 8px;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  font-size: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .c-btn__link-responsive {
    padding: 4px;
    font-weight: bold;
    font-size: 3.5vw;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.c-btn__link-responsive:hover {
  color: #ffffff;
}
.c-btn__second {
  background: #C1A859;
  color: #ffffff;
}
.c-btn__second:hover {
  background: #E5C45B;
  color: #ffffff;
}
.c-btn__default {
  background: #EC4899;
  color: #ffffff;
}
.c-btn__default:hover {
  background: #F472B6;
}
.c-btn__s {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-btn__s {
    width: 83.3333333333%;
  }
}
.c-btn__ss {
  width: 28.5714285714%;
}
@media screen and (max-width: 768px) {
  .c-btn__ss {
    width: 100%;
  }
}
.c-btn__sat {
  background: #9A6229;
}
.c-btn__sun {
  background: #BEC1C3;
}
.c-btn__double {
  background: #C1A859;
}
.c-btn__set {
  background: #06C755;
}
.c-btn__payment {
  background: #306ebb;
}
.c-btn__special {
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(255, 108, 180)), to(rgb(255, 0, 126)));
  background: linear-gradient(-90deg, rgb(255, 108, 180) 57%, rgb(255, 0, 126));
}
.c-btn__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.c-img__shadow {
  -webkit-filter: drop-shadow(5px 5px 10px rgba(161, 103, 143, 0.7));
          filter: drop-shadow(5px 5px 10px rgba(161, 103, 143, 0.7));
}

.c-container__decoration {
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-radius: 10px;
}

.c-font__shadow-white-md {
  text-shadow: 2px 2px 0px #ffffff, 2px 0px 0px #ffffff, 0px 2px 0px #ffffff, 2px -2px 0px #ffffff, -2px 2px 0px #ffffff, -2px -2px 0px #ffffff, -2px 0px 0px #ffffff, 0px -2px 0px #ffffff;
}
.c-font__shadow-black-md {
  text-shadow: 4px 4px 0px rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .c-font__shadow-black-md {
    text-shadow: 2px 2px 0px rgb(0, 0, 0);
  }
}
.c-font__shadow-white-lg {
  text-shadow: 3px 3px 0px #ffffff, 3px 0px 0px #ffffff, 0px 3px 0px #ffffff, 3px -3px 0px #ffffff, -3px 3px 0px #ffffff, -3px -3px 0px #ffffff, -3px 0px 0px #ffffff, 0px -3px 0px #ffffff;
}
.c-font__shadow-pink-lg {
  text-shadow: 3px 3px 0px #bb0959, 3px 0px 0px #bb0959, 0px 3px 0px #bb0959, 3px -3px 0px #bb0959, -3px 3px 0px #bb0959, -3px -3px 0px #bb0959, -3px 0px 0px #bb0959, 0px -3px 0px #bb0959;
}
.c-font__gradient {
  background: -webkit-linear-gradient(0deg, #f932b1, #6284ff, #2aff2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 44px;
}
@media screen and (max-width: 1000px) {
  .c-font__gradient {
    font-size: 32px;
  }
}

.c-explanation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .c-explanation {
    gap: 8px;
    padding: 0 8px;
  }
}
.c-explanation__title {
  font-size: 2vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  line-height: 110%;
}
@media screen and (max-width: 1000px) {
  .c-explanation__title {
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.c-explanation__title-graph {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .c-explanation__title-graph {
    font-size: 2vw;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.c-explanation__text {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.c-explanation__title-box {
  width: 100%;
}
.c-explanation__text-box {
  font-size: 20px;
}

.c-line__color {
  background: #06C755;
  color: #ffffff;
}

.c-line__color:hover {
  background: #1cff7b;
  color: #ffffff;
}

.c-text__error {
  color: #fc0082;
}

.c-title_subline {
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(17%, rgb(235, 34, 215)), color-stop(47%, rgba(235, 34, 215, 0.44)), color-stop(76%, rgba(235, 34, 215, 0.19)), to(rgba(235, 34, 215, 0.04))) 0 100%/100% 10px no-repeat;
  background: linear-gradient(90deg, rgb(235, 34, 215) 17%, rgba(235, 34, 215, 0.44) 47%, rgba(235, 34, 215, 0.19) 76%, rgba(235, 34, 215, 0.04)) 0 100%/100% 10px no-repeat;
  display: inline;
  padding: 0 1px 0px;
}

.c-accent {
  text-decoration: none;
  -webkit-transition: background-size 2s;
  transition: background-size 2s;
}
.c-accent__pink {
  background: -webkit-gradient(linear, left top, left bottom, from(#DB2777), to(#EC4899)) 0 100%/10% 3px no-repeat;
  background: linear-gradient(#DB2777, #EC4899) 0 100%/10% 3px no-repeat;
}
.c-accent__gradient {
  background: -webkit-gradient(linear, left top, right top, color-stop(24%, #f932b1), color-stop(59%, #6284ff), color-stop(85%, #2aff2b)) 0 100%/10% 3px no-repeat;
  background: linear-gradient(90deg, #f932b1 24%, #6284ff 59%, #2aff2b 85%) 0 100%/10% 3px no-repeat;
}
.c-accent__gradient-gold {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(238, 255, 45)), color-stop(19%, rgb(253, 204, 57)), color-stop(38%, rgb(249, 254, 37)), color-stop(60%, rgb(255, 183, 44)), color-stop(80%, rgb(250, 255, 0)));
  background-image: linear-gradient(0deg, rgb(238, 255, 45), rgb(253, 204, 57) 19%, rgb(249, 254, 37) 38%, rgb(255, 183, 44) 60%, rgb(250, 255, 0) 80%);
}
.c-accent__gradient-silber {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(242, 242, 242)), color-stop(28%, rgb(160, 160, 160)), color-stop(52%, rgb(235, 235, 235)), color-stop(77%, rgb(136, 136, 136)), to(rgb(235, 235, 235)));
  background-image: linear-gradient(0deg, rgb(242, 242, 242), rgb(160, 160, 160) 28%, rgb(235, 235, 235) 52%, rgb(136, 136, 136) 77%, rgb(235, 235, 235));
}
.c-accent__gradient-bronds {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(218, 157, 94)), color-stop(34%, rgb(156, 100, 43)), color-stop(65%, rgb(218, 157, 94)), to(rgb(154, 98, 41)));
  background-image: linear-gradient(0deg, rgb(218, 157, 94), rgb(156, 100, 43) 34%, rgb(218, 157, 94) 65%, rgb(154, 98, 41));
}

.c-accent.isActive {
  background-size: 100% 4px;
}

.c-accent-forte {
  text-decoration: none;
  -webkit-transition: background-size 2s;
  transition: background-size 2s;
}
.c-accent-forte__pink-bold {
  background: -webkit-gradient(linear, left top, left bottom, from(#DB2777), to(#EC4899)) 0 100%/10% 8px no-repeat;
  background: linear-gradient(#DB2777, #EC4899) 0 100%/10% 8px no-repeat;
}
@media screen and (max-width: 1000px) {
  .c-accent-forte__pink-bold {
    background: -webkit-gradient(linear, left top, left bottom, from(#DB2777), to(#EC4899)) 0 100%/10% 4px no-repeat;
    background: linear-gradient(#DB2777, #EC4899) 0 100%/10% 4px no-repeat;
  }
}

.c-accent-forte.isActive {
  background-size: 100% 8px;
}
@media screen and (max-width: 1000px) {
  .c-accent-forte.isActive {
    background-size: 100% 4px;
  }
}

.c-link__talk {
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-link__talk {
    width: 100%;
    margin: auto;
  }
}

.u-shine1 {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.u-shine1::before {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: shine01 2s ease-in-out infinite;
          animation: shine01 2s ease-in-out infinite;
}

@-webkit-keyframes shine01 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shine01 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* 入会btn アニメーション----------------------------------------------- */
.btn_register-animation {
  color: #ffffff;
  background-size: 200% auto;
  background-image: linear-gradient(150deg, #03af4b, #9affc4);
  opacity: 0;
  -webkit-animation: 1.5s moveGradation ease infinite;
  animation: 1.5s moveGradation ease infinite;
}

@-webkit-keyframes moveGradation {
  0% {
    background-position: 1% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 1% 50%;
  }
}
@keyframes moveGradation {
  0% {
    background-position: 1% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 1% 50%;
  }
}
/*  通知-----------------------------------------------  */
.pulse-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgb(242, 29, 164);
  -webkit-box-shadow: 0 0 20px rgb(242, 29, 164);
          box-shadow: 0 0 20px rgb(242, 29, 164);
  cursor: pointer;
}

.pulse-btn img {
  width: 60%;
}

.pulse-btn::before,
.pulse-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(242, 29, 164);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -webkit-animation: pulsate 2s linear infinite;
          animation: pulsate 2s linear infinite;
}

.pulse-btn::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
/*  js  */
.js-right-slide {
  left: 0;
}

.js-headerColor-active {
  background-color: rgba(167, 167, 167, 0.7098039216);
}

.js-show-menu {
  height: 130%;
  overflow: visible;
}
@media screen and (max-width: 1000px) {
  .js-show-menu {
    height: 180%;
  }
}

.js-btn-disabled {
  cursor: not-allowed;
  -webkit-animation: bt-rotate 1s both;
          animation: bt-rotate 1s both;
}

.js-btn-disabled:hover {
  background-color: #10B981;
}

@-webkit-keyframes bt-rotate {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    background-color: #EC4899;
  }
  25% {
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
    background-color: #10B981;
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
    background-color: #10B981;
  }
  75% {
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
    background-color: #10B981;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    background-color: #10B981;
  }
}

@keyframes bt-rotate {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    background-color: #EC4899;
  }
  25% {
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
    background-color: #10B981;
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
    background-color: #10B981;
  }
  75% {
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
    background-color: #10B981;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    background-color: #10B981;
  }
}
.js-slider__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.js-bx-wrapper {
  position: relative;
}

.bx-wrapper {
  margin-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.bx-wrapper {
  position: relative;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.bx-wrapper .bx-controls-direction a {
  z-index: 10;
  top: 73%;
}

/* チャット風トーク画面--------------------------------------------------------------------------------- */
/*  balloon */
.balloon_js {
  margin: 8px 8px 8px 0;
  font-size: 16px;
}

.balloon_l {
  margin: 8px 8px 8px 0;
  font-size: 16px;
  width: 100%;
}

.balloon_l .p-message__body {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.balloon_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.balloon_r .p-message__body {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.balloon_r div.faceicon_wrap {
  display: none;
}

.balloon_r .c-balloon__text {
  background: #ffffff;
  padding: 8px;
  border-radius: 10px;
}

.c-balloon__text {
  overflow-wrap: break-word;
  background: #ffd3ea;
  padding: 8px;
  border-radius: 10px;
}

/* line登録POP--------------------------------------------------------------------------------- */
.c-line__pop {
  width: 8%;
  position: fixed;
  top: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 24px;
  margin: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 19;
}
@media screen and (max-width: 768px) {
  .c-line__pop {
    margin: 4px;
    width: 20%;
    z-index: 19;
    top: 200px;
  }
}
.c-line__flash {
  -webkit-animation: flashed 2s ease-in-out infinite alternate;
          animation: flashed 2s ease-in-out infinite alternate;
}
@-webkit-keyframes flashed {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flashed {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/** \regist　新画面css ========================== */
.c-explanation__appeal {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.text__annotation {
  font-size: 18px;
}

.c-explanation__description__img {
  margin: 0 auto;
  padding: 20px 80px 10px 80px;
  width: 300px;
  height: auto;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 192, 98)), color-stop(65%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 192, 98) 0%, rgba(255, 255, 255, 0) 65%);
}

.c-explanation__details {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.c-explanation__details p {
  margin-top: 24px;
}

.c-explanation__details-title {
  font-size: 3vw;
}

.details-img__kingaku {
  display: inline-block;
  width: 200px;
  height: auto;
  padding: 0 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 192, 98)), color-stop(65%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 192, 98) 0%, rgba(255, 255, 255, 0) 65%);
}

.details-img__henkin {
  display: inline-block;
  margin: 0 auto;
  width: 600px;
  height: auto;
  padding: 0 20px 4px 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 198, 223)), color-stop(65%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 198, 223) 0%, rgba(255, 255, 255, 0) 65%);
}

.c-explanation__appeal-text {
  font-size: 2.25vw;
}

.details-img__triangle {
  display: inline-block;
  width: 150px;
  height: auto;
}

.c-link__talk {
  margin: 0 auto;
  margin-top: 16px;
}

.c-explanation__explanation-chara {
  text-align: center;
  width: 95%;
  margin: 0 auto;
}

.explanation-chara__title {
  font-size: 2vw;
  font-weight: bold;
}

.explanation-chara__flex {
  max-width: 75%;
  max-height: 100%;
  margin: 0 auto;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}

.explanation-chara__img {
  width: 50%;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.explanation-chara__note {
  font-size: 18px;
  padding: 18px;
  text-align: left;
  font-weight: bold;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  vertical-align: middle;
}

.bg-monochromatic {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgba(255, 255, 255, 0.6068802521)), to(rgba(255, 255, 255, 0.6)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6068802521) 100%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 20px;
}

.c-realised__title {
  font-size: 3vw;
  font-weight: bold;
}

.js-slider__box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-link__talk-title {
  font-size: 2vw;
  font-weight: bold;
}

/* font-style */
.text__emphasis {
  font-size: 3vw;
  font-weight: bold;
}

.text__color-pink {
  color: #E61874;
}

.bg-shine2 {
  border-radius: 10px;
  background: var(--gold, linear-gradient(180deg, #EEFF2D 0%, #FDCC39 19.27%, #F9FE25 41.15%, #FFB72C 60.94%, #FAFF00 81.77%, #FAFF00 100%));
}

@media screen and (max-width: 1000px) {
  .text__emphasis {
    font-size: 34px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
  .c-explanation__details-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .c-explanation__appeal {
    width: 95%;
    margin: 0 auto;
  }
  .c-explanation__description__img {
    width: 200px;
  }
  .c-explanation__details {
    width: 95%;
    margin: 0 auto;
  }
  .c-explanation__details p {
    margin-top: 0;
  }
  .c-explanation__details-title {
    font-size: 28px;
  }
  .details-img__kingaku {
    width: 150px;
  }
  .details-img__henkin {
    width: 400px;
  }
  .c-explanation__appeal-text {
    font-size: 24px;
  }
  .details-img__triangle {
    width: 100px;
  }
  .explanation-chara__title {
    font-size: 28px;
  }
  .c-explanation__explanation-chara {
    width: 100%;
  }
  .explanation-chara__flex {
    max-width: 100%;
    max-height: 100%;
    gap: 8px;
    padding: 10px;
  }
  .explanation-chara__note {
    padding: 2%;
  }
  .explanation-chara__note p {
    font-size: clamp(10px, 2vw, 16px);
    max-height: 220px;
  }
  .c-realised__title {
    font-size: 28px;
  }
  .c-link__talk-title {
    font-size: 28px;
  }
  /* font-style; */
  .text__emphasis {
    font-size: 28px;
  }
}
@media screen and (max-width: 376px) {
  .c-explanation__title {
    font-size: 24px;
  }
  .c-explanation__description__img {
    width: 180px;
  }
  .c-explanation__details-title {
    font-size: 26px;
  }
  .c-explanation__details p {
    margin-top: 24px;
  }
  .details-img__kingaku {
    width: 100px;
  }
  .details-img__henkin {
    width: 300px;
  }
  .c-explanation__appeal-text {
    font-size: 24px;
  }
  .details-img__triangle {
    width: 100px;
    display: block;
    margin: 0 auto;
  }
  .explanation-chara__title {
    font-size: 24px;
  }
  .explanation-chara__note p {
    font-size: clamp(8px, 2vw, 12px);
    max-height: 220px;
  }
  .c-realised__title {
    font-size: 28px;
  }
  .c-link__talk-title {
    font-size: 24px;
  }
  /* font-style; */
  .text__emphasis {
    font-size: 24px;
  }
  .text__annotation {
    font-size: 16px;
  }
}
/* 画像LP 特設css ------------------------------ */
.lp-main {
  max-width: 800px;
  margin: 0 auto;
}

.lp-container__img-top {
  margin-bottom: 24px;
  width: 100%;
}

.lp-container__img {
  margin-bottom: 16px;
  width: 100%;
}

.lp-container__img-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 16px;
}

/** 2024/6/24 \regist 新画面css ========================== */
.c-regist {
  max-width: 1000px;
  margin: 0 auto;
  padding: 150px 8px 20px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}

@media screen and (max-width: 1000px) {
  .c-regist {
    padding: 80px 8px 20px 8px;
  }
}
.c-regist__head {
  position: relative;
}

.c-regist__title {
  font-size: 56px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  line-height: 110%;
}

@media screen and (max-width: 1000px) {
  .c-regist__title {
    font-size: 6.2vw;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.c-regist__text {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  line-height: 110%;
}

@media screen and (max-width: 1000px) {
  .c-regist__text {
    font-size: 4.2vw;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}
.c-regist__text-click {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
  line-height: 110%;
  background: linear-gradient(274.24deg, #C38C54 5.41%, #8A5926 25.7%, #9C642B 40.02%, #AE8051 58.25%, #895724 83.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1000px) {
  .c-regist__text-click {
    font-size: 4.2vw;
  }
}
.c-regist__arrow {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  top: 200px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url(.././img/regist-arrow01.png);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation-name: slideTextY-100;
  animation-name: slideTextY-100;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
}

@media screen and (max-width: 1000px) {
  .c-regist__arrow {
    width: 20vw;
    height: 20vw;
    top: 140%;
  }
}
.c-regist__link-content {
  text-align: center;
  margin: 100px;
}

@media screen and (max-width: 1000px) {
  .c-regist__link-content {
    margin: 10vw 0;
  }
}
.c-regist__link::before {
  position: absolute;
  content: "";
  height: 100%;
  top: -350px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url(.././img/regist-arrow3.png);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation-name: slideTextY-100;
  animation-name: slideTextY-100;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
}

@media screen and (max-width: 1000px) {
  .c-regist__link::before {
    top: -180%;
  }
}
.c-regist__link::after {
  position: absolute;
  content: "";
  height: 100%;
  top: 280px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url(.././img/regist-arrow3-up.png);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation-name: slideTextY100;
  animation-name: slideTextY100;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
}

@media screen and (max-width: 1000px) {
  .c-regist__link::after {
    top: 200%;
  }
}
.c-regist__link {
  color: white;
  font-weight: bold;
  font-size: 56px;
}

@media screen and (max-width: 1000px) {
  .c-regist__link {
    font-size: 5.5vw;
  }
}
.c-regist__link-btn {
  position: relative;
  font-family: noto serif jp;
  border: none;
  background: linear-gradient(274.24deg, #C38C54 5.41%, #8A5926 25.7%, #9C642B 40.02%, #AE8051 58.25%, #895724 83.82%);
  border-radius: 99px;
  padding: 10px 40px;
  border: none;
}

@media screen and (max-width: 1000px) {
  .c-regist__link-btn {
    padding: 10px 20px;
  }
}
/* 上下のアニメーション*/
@-webkit-keyframes slideTextY100 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 0;
  }
}
@keyframes slideTextY100 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 0;
  }
}
@-webkit-keyframes slideTextY-100 {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
}
@keyframes slideTextY-100 {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
}
.c-regist__userdata {
  max-width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin: 30px auto;
  padding: 16px;
  border-radius: 20px;
  font-weight: bold;
  border: 2px solid #C1A859;
  font-size: 28px;
}

@media screen and (max-width: 1000px) {
  .c-regist__userdata {
    margin: 20px auto;
    font-size: 5vw;
  }
}
/* おすすめバナー--------------------------------------------------------------------------------- */
.c-plan-recommend {
  max-width: 1000px;
  margin: 0 auto;
}
.c-plan-recommend__purple {
  background-color: rgba(242, 228, 251, 0.7882352941);
}
.c-plan-recommend__orange {
  background-color: #FFEAC1;
}
.c-plan-recommend__green {
  background-color: #EBFCEC;
}
.c-plan-recommend__title {
  background-color: rgba(255, 255, 255, 0.7882352941);
  padding: 4px;
  font-size: 32px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__title {
    padding: 2px;
    font-size: 3.2vw;
    border-radius: 4px;
  }
}
.c-plan-recommend__wrap-purple {
  background: url(.././img/recommend-paple.png) left top no-repeat;
  background-size: cover;
}
.c-plan-recommend__wrap-orange {
  background: url(.././img/recommend-orange.png) left top no-repeat;
  background-size: cover;
}
.c-plan-recommend__wrap-green {
  background: url(.././img/recommend-green.png) left top no-repeat;
  background-size: cover;
}
.c-plan-recommend__wrap {
  width: 100%;
  padding: 8px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__wrap {
    gap: 2px;
    padding: 4px;
  }
}
.c-plan-recommend__wrap:hover {
  color: #333;
  opacity: 0.8;
  -webkit-transform: scale(1.04, 1.04);
          transform: scale(1.04, 1.04);
}
.c-plan-recommend__text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
  width: 0;
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__text-container {
    gap: 2px;
  }
}
.c-plan-recommend__day {
  padding: 4px;
  font-size: 32px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__day {
    padding: 2px;
    font-size: 3.2vw;
    border-radius: 4px;
  }
}
.c-plan-recommend__plan {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__plan {
    padding: 2px;
    font-size: 2.6vw;
    border-radius: 4px;
  }
}
.c-plan-recommend__planName {
  text-align: end;
  font-size: 84px;
  font-family: "Noto serif JP", sans-serif;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__planName {
    padding: 2px;
    font-size: 8.5vw;
    border-radius: 4px;
  }
}
.c-plan-recommend__text-box {
  min-height: 170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  border: solid 2px #C1A859;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5803921569);
  font-size: 20px;
  overflow-wrap: break-word;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5803921569);
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__text-box {
    min-height: 12.8vw;
    padding: 2px;
  }
}
.c-plan-recommend__text {
  font-size: 20px;
  overflow-wrap: break-word;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5803921569);
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__text {
    font-size: 2.1vw;
  }
}
.c-plan-recommend__img-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.c-plan-recommend__img {
  border-radius: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-plan-recommend__chara {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
.c-plan-recommend__chara-name {
  font-size: 16px;
  padding: 8px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__chara-name {
    padding: 2px;
    font-size: 2.1vw;
    border-radius: 4px;
  }
}
.c-plan-recommend__info-text {
  font-size: 24px;
  padding: 8px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .c-plan-recommend__info-text {
    padding: 2px;
    font-size: 2.5vw;
    border-radius: 4px;
  }
}

/* 的中実績　キャラ別ページ用--------------------------------------------------------------------------------- */
.p-resultsChara-wrap {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-resultsChara-wrap {
    width: 94%;
    margin-bottom: 12px;
  }
}
.p-resultsChara__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.p-resultsChara__title {
  color: #333;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
.p-resultsChara__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-resultsChara__card-wrap {
    gap: 4px;
  }
}
.p-resultsChara__card {
  width: calc((100% - 24px) / 2);
  list-style: none;
  background-image: url(.././img/ticket-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-resultsChara__card {
    padding: 4px;
    width: calc((100% - 4px) / 2);
  }
}
.p-resultsChara__head {
  color: white;
  font-weight: bold;
}
.p-resultsChara__head-race {
  font-size: clamp(20px, 4vw, 40px);
  text-align: end;
}
.p-resultsChara__head-day {
  font-size: clamp(12px, 2.5vw, 20px);
  text-align: start;
}
.p-resultsChara__body {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-resultsChara__body {
    width: 100%;
  }
}
.p-resultsChara__footer-text {
  color: white;
  font-weight: bold;
  text-align: end;
}
.p-resultsChara__footer-price {
  font-size: clamp(32px, 7vw, 56px);
}
.p-resultsChara__total-box {
  width: 100%;
  text-align: center;
  background: #C1A859;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(20px, 4vw, 40px);
}
.p-resultsChara__total-price {
  font-size: clamp(32px, 7vw, 56px);
}

/*渡辺　plun bunner--------------------------------------------------------------------------------- */
.plun-bunner {
  width: 100%;
  position: relative;
  /*黒河　plun bunner--------------------------------------------------------------------------------- */
}
.plun-bunner__text {
  position: absolute;
  bottom: 5%;
  left: 9%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #42210B;
  text-shadow: 2px 2px 4px #aaaaaa;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .plun-bunner__text {
    bottom: 5%;
    left: 10%;
  }
}
.plun-bunner__num {
  font-size: clamp(8px, 4vw, 44px);
  letter-spacing: -1.5px;
}
@media screen and (max-width: 768px) {
  .plun-bunner__num {
    letter-spacing: normal;
  }
}
.plun-bunner__unit {
  font-size: clamp(4px, 2vw, 24px);
  letter-spacing: 1.5px;
}
@media screen and (max-width: 768px) {
  .plun-bunner__unit {
    letter-spacing: normal;
  }
}
.plun-bunner__text-kurokawa {
  position: absolute;
  bottom: 15%;
  right: 81%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .plun-bunner__text-kurokawa {
    bottom: 15%;
    right: 81%;
  }
}
.plun-bunner__num-kurokawa {
  font-size: clamp(32px, 7vw, 64px);
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .plun-bunner__num-kurokawa {
    letter-spacing: normal;
  }
}

/* テスト環境用スタイル--------------------------------------------------------------------------------- */
.t-container {
  padding: 160px 16px 40px 16px;
  margin: 16px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .t-container {
    padding: 120px 16px 20px 16px;
  }
}

.baken_ticket-lg {
  width: 460px;
  height: 440px;
  background: url(.././img/airal-card.png) left top no-repeat;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .baken_ticket-lg {
    width: 47vw;
    height: 21vw;
    background: url(.././img/airal-card.png) left top no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    position: relative;
  }
}

/* 初回限定案内バナーのボタン--------------------------------------------------------------------------------- */
.first-time-btn {
  position: relative;
}
.first-time-btn__text {
  position: absolute;
  top: 23%;
  right: 34.2%;
  font-size: clamp(6px, 2.72vw - 4.2px, 23px);
  color: #000A62;
  font-weight: bold;
  font-family: noto serif jp;
}
@media (max-width: 550px) {
  .first-time-btn__text {
    top: 28%;
    right: 33%;
  }
}

.p-plan__recommend-item-wrap .first-time-btn {
  width: 50%;
}
.p-plan__recommend-item-wrap .first-time-btn__text {
  top: 23%;
  right: 34%;
  font-size: clamp(8px, 2.72vw - 4.2px, 23px);
}
@media (max-width: 768px) {
  .p-plan__recommend-item-wrap .first-time-btn__text {
    font-size: clamp(9px, 4.2vw - 4px, 28px);
  }
}
@media screen and (max-width: 768px) {
  .p-plan__recommend-item-wrap .first-time-btn {
    width: 83.3333333333%;
  }
}

/* 初回限定お薦めお得プラン（共通） */
.recommendedplan-banner {
  background-size: cover;
  background-position: center;
  max-width: 1000px;
  font-family: serif;
  font-weight: bold;
  padding-bottom: 10px;
  margin: 0 auto;
  letter-spacing: 0;
  margin-bottom: 100px;
}
.recommendedplan-banner-top {
  background-color: rgba(255, 255, 255, 0.5019607843);
  text-align: center;
}
.recommendedplan-banner-planname {
  font-size: clamp(16px, 5vw, 42px);
  margin: 0;
}
.recommendedplan-planprice-outer {
  position: relative;
  width: 70%;
  margin: 0 auto;
  margin-top: -14px;
}
.recommendedplan-planprice-date {
  position: absolute;
  font-size: clamp(10px, 3.3vw, 34px);
  top: 18%;
  right: 77%;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}
.recommendedplan-banner-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2%;
  margin-top: -17px;
}
.recommendedplan-banner-profile-chara {
  width: 180px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.recommendedplan-banner-profile-chara img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommendedplan-banner-profile-outer {
  display: grid;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  grid-template-columns: 160px 1fr;
  font-size: clamp(16px, 3.3vw, 24px);
}
.recommendedplan-banner-profile-outer dt, .recommendedplan-banner-profile-outer dd {
  margin: 0;
  text-align: left;
}
.recommendedplan-banner-ecord {
  background-color: aliceblue;
  width: 80%;
  margin: 10px auto;
  height: 350px;
}
.recommendedplan-banner-text {
  background-color: rgba(255, 255, 255, 0.5019607843);
  padding: 1% 1% 3% 1%;
  font-size: clamp(10px, 3vw, 24px);
  margin-bottom: -18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.recommendedplan-btn-outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 7px;
}
.recommendedplan-text {
  position: absolute;
  margin: 0;
  font-size: clamp(14px, 3vw, 36px);
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  top: 10%;
  left: 1%;
}
.recommendedplan-plan-btn {
  position: relative;
}
.recommendedplan-plan-date {
  position: absolute;
  margin: 0;
  font-size: clamp(10px, 3.6vw, 36px);
  top: 29%;
  color: #4C2F09;
  font-weight: 900;
  right: 37%;
  letter-spacing: 0px;
}

@media screen and (max-width: 600px) {
  /* 768px以下で適用したいCSSを書く */
  .recommendedplan-banner-profile-outer {
    grid-template-columns: 130px 1fr;
  }
  .recommendedplan-banner-profile-chara {
    width: 130px;
  }
  .recommendedplan-banner-profile {
    margin-top: -3px;
  }
  .recommendedplan-planprice-outer {
    margin-top: -6px;
  }
}
/* 初回限定お薦めお得プラン（背景とテキスト） */
.recommendedplan-banner.blue {
  background-image: url(.././img/recommendedplan-blue-bg.png);
  color: #07326C;
}
.recommendedplan-banner.pink {
  background-image: url(.././img/recommendedplan-pink-bg.png);
  color: #520633;
}
.recommendedplan-banner.green {
  background-image: url(.././img/recommendedplan-green-bg.png);
  color: #084832;
}

/* 初回限定お薦めお得プラン　リニューアル版（共通） */
.ayase-banner {
  position: relative;
  max-width: 1000px;
  font-family: serif;
  font-weight: bold;
  padding-bottom: 10px;
  margin: 0 auto;
  letter-spacing: 0;
}
.ayase-banner-date {
  position: absolute;
  top: 22%;
  right: 67%;
  color: #ffffff;
  font-size: clamp(10px, 3.2vw, 32px);
}
.ayase-banner-btn-outer {
  position: absolute;
  bottom: 3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 7px;
}
.ayase-banner-btn-outer__text {
  position: absolute;
  color: #ffffff;
  margin: 0;
  font-size: clamp(14px, 3.6vw, 36px);
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  top: 5%;
  left: 1%;
}
.ayase-banner-btn-outer__plandate {
  position: absolute;
  margin: 0;
  font-size: clamp(10px, 3vw, 30px);
  top: 20%;
  color: #4C2F09;
  font-weight: 900;
  right: 35%;
  letter-spacing: 0px;
}

.ayase-banner-track {
  position: absolute;
  top: 48%;
  width: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ayase-banner-track > .p-hit-track__wrap {
  overflow: hidden;
  width: 100%;
}
.ayase-banner-track > .p-hit-track__wrap .p-hit-track__group-text {
  padding: 2% 2% 0 2%;
}
.ayase-banner-track > .p-hit-track__wrap .p-hit-track__detail {
  line-height: 90%;
  padding: 0;
}
.ayase-banner-track > .p-hit-track__wrap .p-hit-track__detail p {
  font-size: clamp(10px, 3.2vw, 32px);
}
.ayase-banner-track > .p-hit-track__wrap .p-hit-track__day {
  font-size: clamp(10px, 3.2vw, 32px);
}
.ayase-banner-track > .p-hit-track__wrap .p-hit-track__dividend {
  font-size: clamp(10px, 4vw, 40px);
  padding: 0 2% 2% 0;
}
.ayase-banner-track > .p-hit-track__wrap .p-hit-track__img-box {
  padding: 0;
}
.ayase-banner-track > .p-hit-track__wrap .p-hit-track__ticket-box {
  width: 50%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 0.2%;
}

@media screen and (max-width: 768px) {
  .p-hit-track__ticket {
    width: 100%;
    height: 100%;
    border-radius: 6px;
  }
  .ayase-banner-track__img {
    border-radius: 4px;
  }
  .ayase-banner-btn-outer {
    bottom: 5%;
  }
}
.ayase-banner-track .js-slider__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/*
html img 変換する
src="/files/img/"

css img 変換する
background-image: url(.././img/　　　);




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