@charset "UTF-8";
/* noto-sans-jp-regular - japanese */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans Japanese Regular"), local("NotoSansJapanese-Regular"), url("../fonts/noto-sans-jp-v25-japanese-regular.woff2") format("woff2"); }
/* noto-sans-jp-700 - japanese */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans Japanese Bold"), local("NotoSansJapanese-Bold"), url("../fonts/noto-sans-jp-v25-japanese-700.woff2") format("woff2"); }
.f-av {
  font-family: "AvenirNextLTPro-Bold";
  letter-spacing: 0; }
.f-av.-r {
    font-family: "AvenirNextLTPro-Regular"; }
.f-ja {
  font-family: "Noto Sans JP", sans-serif !important; }
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
/**
 * for tablet and Pc. large viewport
 */
@custom-media --desktop(min-width: 992px);
@cusotm-media --between-tablet (max-width: 1250px);
/** http://bourbon.io/docs/#timing-functions */
/** example @include transition(all 5s $ease-in-circ);*/
/**
transition timing-function:
ease - cubic-bezier(0.25, 0.1, 0.25, 1.0) を指定したのと同じ（開始と完了を滑らかにする）（初期値）
linear - cubic-bezier(0.0, 0.0, 1.0, 1.0) を指定したのと同じ（一定）
ease-in - cubic-bezier(0.42, 0, 1.0, 1.0) を指定したのと同じ（ゆっくり始まる）
ease-out - cubic-bezier(0, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり終わる）
ease-in-out - cubic-bezier(0.42, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり始まってゆっくり終わる）
*/
/**
 * text ellipsis for block multiline
 */
/*
 unsupport IE, Edge, Fx

@mixin text-ellipsis-block($rows) {
  display: box;
  box-orient: vertical;
  line-clamp: $rows;
  overflow: hidden;
}
*/
/**
 * element size
 */
/**
 * position layout
 */
/**
 * images
 */
/**
 * letter space
 */
/**
 * hover style
 */
/**
 * font
 */
/**
* Variables
*/
/** extend */
.under-link {
  text-decoration: underline; }
.list-disc > li {
  position: relative;
  padding-left: 1.2em; }
.list-disc > li:before {
    content: '・';
    display: block;
    position: absolute;
    left: 0;
    top: 0; }
.list-indent li {
  text-indent: -1em;
  margin-left: 1em; }
@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }
@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }
@-webkit-keyframes fadeInFromBlock {
  0% {
    display: block;
    opacity: 1; }
  99% {
    display: block;
    opacity: 0; }
  100% {
    display: none;
    opacity: 0; } }
@keyframes fadeInFromBlock {
  0% {
    display: block;
    opacity: 1; }
  99% {
    display: block;
    opacity: 0; }
  100% {
    display: none;
    opacity: 0; } }
@-webkit-keyframes attentionTicker {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 0; }
  3% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1; }
  12% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-220%);
            transform: translateX(-220%);
    opacity: 1; } }
@keyframes attentionTicker {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 0; }
  3% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1; }
  12% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-220%);
            transform: translateX(-220%);
    opacity: 1; } }
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@-webkit-keyframes loadingBodyPC {
  0% {
    -webkit-transform: translateY(10vh);
            transform: translateY(10vh); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@keyframes loadingBodyPC {
  0% {
    -webkit-transform: translateY(10vh);
            transform: translateY(10vh); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@-webkit-keyframes loadingBodySP {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@keyframes loadingBodySP {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
.js-inview-item {
  opacity: 0;
  will-change: opacity, transform; }
.js-mask {
  display: block;
  position: relative;
  overflow: hidden; }
.js-mask-item {
    display: block;
    -webkit-transform: translateY(1.4em);
            transform: translateY(1.4em);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.43, 0.6, 0.76, 0.99);
    transition: -webkit-transform 0.4s cubic-bezier(0.43, 0.6, 0.76, 0.99);
    transition: transform 0.4s cubic-bezier(0.43, 0.6, 0.76, 0.99);
    transition: transform 0.4s cubic-bezier(0.43, 0.6, 0.76, 0.99), -webkit-transform 0.4s cubic-bezier(0.43, 0.6, 0.76, 0.99);
    will-change: transform; }
.js-mask-item.is-view {
      -webkit-transform: translateY(0);
              transform: translateY(0); }
.js-mask-item.is-view-end {
      -webkit-transform: translateY(-1.4em);
              transform: translateY(-1.4em); }
.js-global-nav__item {
  will-change: opacity, transform; }
.js-mask-img {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity .4s linear .5s;
  transition: opacity .4s linear .5s; }
.js-mask-img.is-view {
    opacity: 1; }
.js-play-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%; }
.js-play-video:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 56.25%;
    position: absolute;
    left: 0;
    top: 0; }
.js-play-video video {
    width: 100%; }
.js-play-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    opacity: 0; }
.js-play-video__thumb {
    width: 100%;
    position: relative;
    z-index: 2;
    -webkit-transition: opacity .2s;
    transition: opacity .2s; }
.js-play-video__thumb img {
      width: 100%; }
.js-play-video__btn {
    position: absolute;
    left: 50%;
    top: 50%;
    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;
    z-index: 3;
    aspect-ratio: 1 / 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: 0 !important; }
.js-play-video__btn:before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-color: #fff;
      border: solid 1px currentColor;
      border-radius: 100%;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-transition: 0.2s cubic-bezier(0.1, 0.28, 0.45, 0.75);
      transition: 0.2s cubic-bezier(0.1, 0.28, 0.45, 0.75); }
.js-play-video__btn i {
      aspect-ratio: 1 / 1;
      line-height: 1;
      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; }
.js-play-video__btn svg {
      width: 100%; }
.js-play-video.is-play iframe {
    opacity: 1; }
@-webkit-keyframes animate-banner {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); } }
@keyframes animate-banner {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); } }
.js-inview[data-inview="fade"] {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s; }
.js-inview[data-inview="fade"].inview {
    opacity: 1; }
.js-inview[data-inview="fade-top"] {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s; }
.js-inview[data-inview="fade-top"].inview {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
.js-inview-eachItem[data-inview="fade-top"] {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); }
.js-inview-eachItem[data-inview="fade-right"] {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px); }
.js-inview-eachItem-delay[data-inview="fade-top"] {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); }
.js-inview-eachItem-delay[data-inview="fade-right"] {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px); }
.js-logoMask-inview[data-inview="fade-top"] {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); }
.p-referral {
  font-size: 14px;
  position: relative; }
.p-referral:before {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    background: url("/assets_default/images/campaign/permanent-program/referral/pattern.png") left bottom repeat;
    position: fixed;
    left: 0;
    top: 0; }
.p-referral__main {
    width: 100%;
    max-width: 504px;
    margin: 0 auto;
    background-color: #fff;
    position: relative; }
.p-referral-inner {
    position: relative;
    padding: 0 27px; }
.p-referral .c-btn-round.-rev {
    letter-spacing: 0;
    margin-left: auto;
    margin-right: auto;
   }
.p-referral .c-btn-round.-rev a {
      gap: 0 .4em;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
.p-referral .c-btn-round.-rev .icon-download,
    .p-referral .c-btn-round.-rev .icon-present {
      margin-left: 0;
      width: 1.1em !important;
      height: 1.1em !important; }
.p-referral .c-panel-frame-btn {
    font-size: 15px; }
.p-referral-kv {
  background: url("/assets_default/images/campaign/permanent-program/referral/kv_bg.png") center top no-repeat;
  background-size: 100%;
  line-height: 1.5;
  font-size: 12px;
  text-align: center;
  padding-top: 45px;
  position: relative; }
.p-referral-kv__highlight {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 0 8px;
    text-align: left;
    height: 32px;
    overflow: hidden; }
.p-referral-kv__highlight-content {
      display: inline-block;
      color: #fff;
      line-height: 32px;
      padding-left: 100%;
      white-space: nowrap;
      -webkit-animation: animate-banner 20s linear infinite;
              animation: animate-banner 20s linear infinite; }
.p-referral-kv__highlight-content > * {
        display: inline; }
.p-referral-kv__h1 {
    margin: 0 -10px; }
.p-referral-kv .c-row {
    margin: 0 -5px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
.p-referral-kv .c-note {
    font-size: 14px;
    margin-top: 20px;
    text-align: left;
    line-height: 1.7; }
.c-referral-gray {
  background-color: #f8f8f8; }
.c-referral-frame {
  padding: 32px 13px 25px;
  border: solid 2px #000;
  position: relative;
  background-color: #fff; }
.c-referral-label {
  font-size: 20px;
  background-color: #eeff00;
  line-height: 1;
  padding: 0.5em 0.1em;
  font-weight: bold;
  text-align: center; }
.c-referral-label.-gr {
    background-color: #F4F4F4; }
.c-referral-label.-wh {
    background-color: #fff; }
.c-referral-kv-introducer {
  width: calc((100% - 3px) / 2);
  position: relative;
  margin-top: 150px; }
.-type-1500 .c-referral-kv-introducer {
    margin-top: 105px; }
.c-referral-kv-introducer:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 3px;
    top: 3px;
    background: #F4F4F4 url("/assets_default/images/campaign/permanent-program/referral/kv_introducer_bg.png") left bottom repeat; }
.c-referral-kv-introducer__inner {
    display: block;
    position: relative;
    z-index: 2;
    padding: 30px 12px 25px;
    background-color: #fff;
    border: solid 2px #000;
    -webkit-box-shadow: 0 0 0 4px #eeff00 inset;
            box-shadow: 0 0 0 4px #eeff00 inset; }
.-introduced .c-referral-kv-introducer__inner {
      -webkit-box-shadow: 0 0 0 4px #F4F4F4 inset;
              box-shadow: 0 0 0 4px #F4F4F4 inset; }
.c-referral-kv-introducer .c-link {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
.c-referral-kv-introducer .c-link a {
      display: block;
      width: 100%;
      height: 100%; }
.c-referral-kv-introducer .c-referral-label {
    margin-bottom: 20px; }
.-type-1500 .c-referral-kv-introducer .c-referral-label {
      margin-bottom: 10px; }
.c-referral-kv-introducer .c-icon-human {
    width: 50px;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border: solid 1px #000;
    border-radius: 100%; }
.c-referral-kv-introducer .c-attention-note {
    font-size: 10px;
    margin-top: 0.3em; }
.-type-1500 .c-referral-kv-introducer .c-text {
    min-height: 55px; }
.c-referral-kv-introducer .c-img-en {
    min-height: 70px;
    margin-top: 20px; }
.-type-1500 .c-referral-kv-introducer .c-img-en {
      margin-top: 10px;
      min-height: 80px; }
.c-referral-kv-introducer .-en-line {
    height: 26px;
    margin-top: 12px; }
.c-referral-kv-introducer .c-btn-round {
    font-size: 11px;
    max-width: 145px;
    width: 100%;
    height: 40px;
    z-index: 2;
    position: relative;
    margin-top: 10px; }
.c-referral-kv-introducer .c-link-arrow {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 12px auto 0;
    font-size: 12px;
    font-weight: bold; }
.c-referral-h2 {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em; }
.c-referral-h2.c-marker {
    margin-left: auto;
    margin-right: auto; }
.c-referral-h2.f-av {
    line-height: 1;
    font-size: 32px; }
.p-referral-about {
  margin-top: 100px; }
.p-referral-about .c-referral-h2 {
    background-color: #fff;
    padding: 0.2em .4em;
    margin-top: calc((32px + 1em) * -1);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 10px; }
.p-referral-about .c-referral-gray {
    padding: 12px;
    margin-top: 15px;
    margin-bottom: -10px; }
.p-referral-about__dl {
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.6; }
.p-referral-about__dl:nth-of-type(n + 2) {
      margin-top: 16px; }
.p-referral-about__dl dt {
      width: 130px;
      font-size: 17px;
      margin-right: 0.4em;
      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-referral-about img {
    margin-top: 20px; }
.p-referral-now {
  margin-top: 100px; }
.p-referral-now .c-referral-h2 {
    background-color: #fff;
    padding: 0.2em .4em;
    margin-top: calc((32px + .7em) * -1);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 10px;
    font-size: 24px; }
.p-referral-now img {
    margin: 15px 0; }
.p-referral-now .c-note {
    font-size: 10px;
    margin: .6em 0; }
.p-referral-now .c-link-arrow {
    display: inline-block;
    font-size: inherit; }
.p-referral-now p + p {
    margin-top: 1em; }
.c-referral-program-h2 {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  background-color: #f8f8f8;
  border-left: 5px solid #eeff00;
  border-right: 5px solid #eeff00;
  text-align: center;
  padding: 0.1em 0.2em 0.2em;
  margin-bottom: 20px; }
.c-referral-program-block {
  padding: 0; }
.c-referral-program-block:nth-of-type(n + 2) {
    margin-top: 48px; }
.c-referral-program-block:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 10px;
    top: 10px;
    background: url("/assets_default/images/campaign/permanent-program/referral/kv_introducer_bg.png") left bottom repeat; }
.c-referral-program-block__inner {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 32px 13px 25px; }
.c-referral-program-block .c-icon-human {
    width: 100px;
    margin: 0 auto; }
.c-referral-program-block__catch {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.1;
    letter-spacing: 0.12em;
    margin-top: 8px; }
.c-referral-program-block__catch.c-marker {
      padding-bottom: 0;
      background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #eeff00));
      background: linear-gradient(transparent 85%, #eeff00 85%); }
.c-referral-program-block__catch em {
      font-style: normal;
      font-size: 200%;
      margin: 0 .1em; }
.c-referral-program-block .c-btn-round {
    font-size: 16px;
    height: 54px;
    width: 302px;
    max-width: 100%;
    margin: 30px 0 5px; }
.c-referral-program-block .c-note {
    font-size: 10px; }
.c-referral-program-block .c-note.-last {
      margin-top: 30px; }
.c-referral-program-list__item {
  margin-top: 30px; }
.c-referral-program-list__step {
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 1em; }
.c-referral-program-list__step span {
    position: relative;
    z-index: 2;
    padding: 10px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    margin: 0 auto; }
.c-referral-program-list__step:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #B7B7B7; }
.c-referral-program-list__step strong {
    display: block;
    font-size: 28px; }
.c-referral-program-list__h3 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px; }
.c-referral-program-list__auth {
  margin-top: 12px;
  font-size: 11px; }
.c-referral-program-list__auth dt {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 4px; }
.c-referral-program-list .c-btn-frame {
  margin: 20px 0 30px; }
.c-referral-program-list .c-btn-round {
  margin: 20px 0 30px; }
.c-referral-program-list .c-btn-round.-btn-bottom {
    margin: 30px auto 20px; }
.c-referral-program-list .c-note {
  margin-top: 5px; }
.c-referral-program-list .c-img {
  margin-top: 20px; }
.p-referral-program {
  margin-top: 65px; }
.p-referral-program .c-referral-h2 {
    margin: 0 auto 20px; }
.p-referral-program #introduction,
  .p-referral-program #start {
    padding-top: 44px;
    margin-top: calc(-44px - 32px); }
.p-referral-program #start {
    padding-bottom: 32px; }
.p-referral-present {
  margin-top: 48px; }
.p-referral-present img {
    margin-bottom: 8px; }
.p-referral-point {
  margin-top: 65px; }
.p-referral-point .c-referral-h2 {
    margin-bottom: 24px; }
.c-referral-point-list__item:nth-of-type(n + 2) {
  margin-top: 20px; }
.c-referral-point-list .lazy-wrap {
  text-align: center; }
.c-referral-point-list img {
  width: auto;
  height: 160px; }
.c-referral-point-list__h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  margin: 14px 0; }
.c-referral-point-list .c-note {
  margin-top: 1em;
  font-size: 10px; }
.p-referral-more {
  margin-top: 65px; }
.p-referral-more .c-referral-h2 {
    margin-bottom: 24px; }
.c-referral-more-list__item:nth-of-type(n + 2) {
  margin-top: 25px; }
.c-referral-more-list a {
  text-decoration: none; }
.c-referral-more-list img {
  border: solid 1px #000;
  margin-bottom: 0.5em; }
.c-referral-more-list .c-link-arrow {
  font-size: 14px; }
.c-referral-more-list .c-link-arrow span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
.c-referral-more-list .c-link-arrow span:hover:before {
      background: none; }
.p-referral-ng {
  margin-top: 65px;
  font-size: 12px; }
.p-referral-ng .c-referral-h2 {
    margin-bottom: 24px; }
.p-referral-ng__h3 {
    margin: .8em 0 .15em;
    font-size: 20px; }
.p-referral-ng .lazy-wrap {
    margin: 10px 0; }
.p-referral-ng .c-link-arrow {
    font-size: 12px;
    font-weight: bold;
    margin-top: 30px; }
.c-referral-bottom {
  padding-top: 30px;
  margin-top: 80px;
  padding-bottom: 80px; }
.p-referral-faq .c-referral-h2 {
  margin-bottom: 25px; }
.c-referral-faq-list {
  line-height: 1.5;
  font-size: 16px; }
.c-referral-faq-list__item {
    border-top: dashed #A9A9A9 1px;
    padding: 15px 0; }
.c-referral-faq-list__item .c-head {
      font-weight: bold;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 0 8px; }
.c-referral-faq-list__item .c-body {
      position: relative;
      overflow: hidden;
      margin-top: 6px;
      line-height: inherit; }
.c-referral-faq-list__item .c-accordion-btn {
      width: 10px;
      height: 10px;
      position: relative;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-top: .4em; }
.c-referral-faq-list__item .c-accordion-btn:before, .c-referral-faq-list__item .c-accordion-btn:after {
        content: '';
        width: 100%;
        height: 1px;
        background-color: #000;
        position: absolute;
        top: 50%;
        left: 0; }
.c-referral-faq-list__item .c-accordion-btn:after {
        -webkit-transition: -webkit-transform .2s;
        transition: -webkit-transform .2s;
        transition: transform .2s;
        transition: transform .2s, -webkit-transform .2s;
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg); }
.c-referral-faq-list [data-accordion-open] .c-accordion-btn:after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
.p-referral-detail {
  padding-bottom: 0;
  margin: 40px 0; }
.p-referral-detail__h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 14px; }
.p-referral-detail__body {
    position: relative;
    overflow: hidden; }
.p-referral-detail .c-panel-frame-btn {
    padding: 45px 0; }
.p-referral-detail .c-panel-frame-btn__icon {
      width: 13px;
      height: 13px; }
.p-referral-detail .c-panel-frame-btn__icon:before, .p-referral-detail .c-panel-frame-btn__icon:after {
        height: 2px; }
.p-referral-detail .p-campaign-modules__notice {
    margin-top: 15px; }
.p-referral .p-campaign-modules__textBlock--titleLnomrg dt {
  font-size: 16px;
  text-align: left;
  margin-bottom: 1em; }
.p-referral .p-campaign-modules__textBlock--titleLnomrg dd {
  font-size: 14px;
  text-align: left; }
.p-referral .p-campaign-modules__textBlock--titleLnomrg p + p {
  margin-top: .8em; }
.p-referral .p-campaign-term {
  padding: 40px 0 0;
  margin: 0;
  font-size: 10px; }
.p-referral .p-campaign-term .c-title-h4 {
    font-size: 20px; }
.p-referral .p-campaign-term-content-main {
    padding: 0 10px 0 0; }
.p-referral .p-campaign-term p {
    font-size: inherit;
    margin-top: 1em; }
@media (min-width: 897px) {
  .ex-link {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear; }
    .ex-link:hover {
      opacity: .5; }
  .tel-link {
    pointer-events: none;
    text-decoration: none;
    cursor: default; }
    .js-inview-item {
      -webkit-transform: translate(0, 50px);
              transform: translate(0, 50px); }
    .js-play-video:hover .js-play-video__thumb {
      opacity: .6; }
    .js-play-video:hover .js-play-video__btn:before {
      background-color: #000; }
    .js-play-video:hover .js-play-video__btn svg {
      fill: #fff; }
    .js-play-video__btn {
      width: 150px; }
      .js-play-video__btn i {
        width: 26px; }
    .p-referral__main {
      border-left: 2px solid #000;
      border-right: 2px solid #000; } }
@media (max-width: 896px) {
  .p-campaign-detail__catch {
    margin-top: 0;}
  .tel-link {
    text-decoration: none; }
  .is-tab .for-tablet-other {
    display: none; }
    .js-inview-item {
      -webkit-transform: translate(0, 40px);
              transform: translate(0, 40px); }
    .js-play-video__btn {
      width: 56px; }
      .js-play-video__btn i {
        width: 10px; }
    [data-barba-namespace="cheerbox"] .js-play-video__btn,
    [data-barba-namespace="cheerbox-detail"] .js-play-video__btn {
      width: 13.5vw; }
      [data-barba-namespace="cheerbox"] .js-play-video__btn i,
      [data-barba-namespace="cheerbox-detail"] .js-play-video__btn i {
        width: 2.4vw; }
        .l-main__inner--m {
          padding-left: 0 !important;
          padding-right: 0 !important;
      }}
/*# sourceMappingURL=../../_cache/_maps/referral.css.map */
.p-campaign-detail__catch {
  margin-top: 0;}

  .l-main__inner--m {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.c-q {
  font-weight: 600;
}
