@charset "UTF-8";
/* CSS Document */
/********************************************

Common CSS

********************************************/
html {
  font-size: 62.5%; /*フォントの基準を10pxに*/
}
body {
  color: #484848;
  background: #fff;
  font-size: 1rem;
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif;
  box-sizing: border-box;
  overflow-y: scroll;
  overflow-x: hidden;
  font-feature-settings: "palt"1; /*文字詰め*/
  letter-spacing: .08em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
.hidden {
  display: none;
}
.txt_under {
  text-decoration: underline;
}
img {
  vertical-align: top;
}
/*テキストを選択した時の装飾*/ ::selection {
  background: #537895;
  color: #fff;
}
::-moz-selection {
  background: #537895;
  color: #fff;
}
li {
  list-style-type: none;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  color: white;
  display: none;
  font-family: 'source_sans_proregular';
  line-height: 25px;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
select, input[type=radio], input[type=date], input[type=time] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
  background: #fff;
  color: #333;
}
input[type=date]::-webkit-date-and-time-value, input[type=time]::-webkit-date-and-time-value {
  text-align: left;
}
.my-radio {
  position: relative;
  display: block; /* 縦並びに */
  margin: 0.2em 0; /* 前後のスペース */
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
}
/* inputは非表示にする */
.my-radio input {
  display: none;
}
/* 常に表示する枠線の円 */
.radio-mark {
  position: absolute;
  top: 0; /* 上からの位置 */
  left: 0;
  height: 22px; /* 大きさ */
  width: 22px; /* 大きさ */
  border: solid 2px #d4dae2; /* 線 */
  border-radius: 50%;
  box-sizing: border-box;
}
/* 選択時に重ねる円 */
.radio-mark:after {
  content: "";
  position: absolute;
  background: #f1890e; /* 色 */
  border-radius: 50%;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  opacity: 0; /* 透明にしておく */
}
/* 選択時に重ねた円の透明を解除 */
.my-radio input:checked + .radio-mark:after {
  opacity: 1;
}
/* 常に表示する枠線の円 */
.radio-mark-en {
  position: absolute;
  top: 2px; /* 上からの位置 */
  left: 0;
  height: 22px; /* 大きさ */
  width: 22px; /* 大きさ */
  border: solid 2px #d4dae2; /* 線 */
  border-radius: 50%;
  box-sizing: border-box;
}
/* 選択時に重ねる円 */
.radio-mark-en:after {
  content: "";
  position: absolute;
  background: #2e80ff; /* 色 */
  border-radius: 50%;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  opacity: 0; /* 透明にしておく */
}
/* 選択時に重ねた円の透明を解除 */
.my-radio input:checked + .radio-mark-en:after {
  opacity: 1;
}
.placeholder::before {
  content: attr(placeholder);
  color: rgb(117, 117, 117);
}
.placeholder::-webkit-datetime-edit-fields-wrapper {
  display: none;
}
.placeholder::-webkit-calendar-picker-indicator {
  display: none;
}
.mgb_1rem {
  margin-bottom: 1rem !important;
}
.width_50 {
  width: 55% !important;
}
.width_100 {
  width: 100% !important;
}
input[type="date"] {
  height: 3.6rem;
  position: relative;
  text-align: left !important;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left !important;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}
input[type="date"]::after {
  content: '';
  background-image: url("../images/ico_calendar.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
input[type="time"] {
  height: 3.6rem;
}
/*********************************

Font

**********************************/
.bold_400 {
  font-weight: 400 !important;
}
.bold_600 {
  font-weight: 600 !important;
}
.bold_700 {
  font-weight: 700 !important;
}
.bold_800 {
  font-weight: 800 !important;
}
.bold_900 {
  font-weight: 900 !important;
}
.txt_08em {
  font-size: 0.8em !important;
}
.txt_14rem {
  font-size: 1.4rem !important;
}
.txt_11em {
  font-size: 1.1em !important;
}
.txt_12em {
  font-size: 1.2em !important;
}
.txt_15em {
  font-size: 1.5em !important;
  font-weight: 900;
}
.txt_20em {
  font-size: 2em !important;
}
.txt_22em {
  font-size: 2.2em !important;
  font-weight: 900;
}
.txt_26em {
  font-size: 2.2em !important;
  font-weight: 900;
}
.color_r_red {
  color: #BF0000 !important;
}
.color_yel {
  color: #FBF91B !important;
}
.color_blue {
  color: #406DD1 !important;
}
.color_white {
  color: #fff !important;
}
.color_green {
  color: #195c4e !important;
}
.color_txtgold {
  color: #c9b52e !important;
}
.txt_line {
  text-decoration: line-through !important;
}
.bg_yel {
  background: #eee8aa;
}
.bg_bk {
  background-color: #000 !important;
}
.bg_r_red {
  background-color: #BE0000 !important;
}
.bg_yel_txt {
  background: #FBF91B !important;
  color: #333 !important;
  font-weight: 900;
}
.dot {
  position: relative;
}
.dot::after {
  position: absolute;
  content: "";
  background-image: url("../images/dot.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.1rem;
  height: 1.1rem;
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
}
.under_line {
  text-decoration: underline !important;
}
.mincho-seri {
  font-family: 'Noto Serif JP', serif;
}
/*********************************
PC/MOBILE 
**********************************/
.pc {
  display: none;
}
.mb {
  display: block;
}
/*********************************


*********************************/
#hotel, #air {
  display: none;
}
/*********************************

main/resp_wrapper

**********************************/
main {
  width: 100%;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
.required {
  padding: 0.1rem 0.5rem .3rem;
  color: #be0000;
  margin-left: 1rem;
  line-height: 1;
  border: 1px solid #be0000;
  background: #fff;
  font-size: 1.1rem;
}
.option {
  padding: 0.1rem 0.5rem;
  color: #999;
  margin-left: 1rem;
  line-height: 1;
  border: 1px solid #999;
  font-size: 1.1rem;
  background: #fff;
}
.s-container {
  width: 100%;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: nowrap;
  flex-flow: column;
  position: relative;
  margin-bottom: 1.5em;
}
.s-container::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #195c4e;
  content: "";
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}
.s-container.transfer::before {
  border-bottom: 4.5px solid #195c4e;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
  position: absolute;
  right: 47%;
  top: 57%;
  width: 0;
}
.s-container.transfer::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid #195c4e;
  content: "";
  position: absolute;
  right: 47%;
  top: 67%;
  width: 0;
}
.s-container.adj.en::before {
  border-bottom: 4.5px solid #195c4e;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
  position: absolute;
  right: 47%;
  top: 62%;
  width: 0;
}
.s-container.adj.en::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid #195c4e;
  content: "";
  position: absolute;
  right: 47%;
  top: 72%;
  width: 0;
}
.s-container.party::before {
  border-bottom: 4.5px solid #195c4e;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
  position: absolute;
  right: 5%;
  top: 10px;
  width: 0;
}
.s-container.party::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid #195c4e;
  content: "";
  position: absolute;
  right: 5%;
  top: 21px;
  width: 0;
}
/*********************************

header

**********************************/
header {
  position: relative;
  display: flex;
  top: 0;
  left: 0;
  z-index: 99;
  padding-top: 1rem;
  width: 100%;
  height: auto;
  flex-flow: nowrap;
  justify-content: space-around;
  align-items: center;
}
header h1 {
  width: 13.5rem;
  position: relative;
  height: auto;
  left: 0.8rem;
}
header h1 img {
  width: 100%;
}
header p {
  width: 50%;
  font-size: 1.3rem;
  color: #fff;
}
header p img {
  width: 100%;
}
/*********************************

KeyVisual

**********************************/
.keyvisual {
  position: relative;
  display: flex;
  flex-direction: column;
  background: url("../images/kv_bg.jpg") no-repeat center;
  background-size: cover;
  height: 100%;
  margin-top: -7.5rem;
  padding-top: 7.5rem;
  opacity: 0;
}
.keyvisual .camp_ttl {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 9;
}
.keyvisual .camp_ttl img {
  width: 100%;
}
.keyvisual .main_ttl {
  display: block;
  position: relative;
  width: 100%;
  padding: 1rem 2.4rem 0;
  z-index: 9;
}
.keyvisual .main_ttl img {
  width: 100%;
}
.keyvisual .main_ttl .sub_txt {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  letter-spacing: 0;
}
.keyvisual .images {
  width: 100%;
  position: relative;
  z-index: 9;
}
.keyvisual .images .bob_hibiki {
  width: 100%;
}
.keyvisual .deadline {
  width: 46%;
  position: absolute;
  right: 0;
  bottom: 28%;
}
.keyvisual .deadline img {
  width: 100%;
}
/**main**/
.wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}
.color_gd {
  color: #c9b52e !important;
  text-decoration: underline;
}
/*********************************
スムース表示エフェクト
**********************************/
/* 滑らかに変形して出現 */
.open {
  animation-name: openAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}
@keyframes openAnime {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
/* 滑らかに変形して出現 */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}
@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*********************************
アニメーションエフェクト
**********************************/
.yureru-s {
  animation: yureru-s 2s infinite;
}
@keyframes yureru-s {
  0% {
    transform: translate(5px, 0px);
  }
  5% {
    transform: translate(-5px, 0px);
  }
  10% {
    transform: translate(5px, 0px);
  }
  15% {
    transform: translate(-5px, 0px);
  }
  20% {
    transform: translate(5px, 0px);
  }
  25% {
    transform: translate(-5px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.tikatika {
  animation: tikatika 1.2s infinite;
}
@keyframes tikatika {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dokidoki {
  animation: dokidoki 1.5s infinite;
}
@keyframes dokidoki {
  0% {
    transform: scale(1.1)
  }
  5% {
    transform: scale(1)
  }
  95% {
    transform: scale(1)
  }
  100% {
    -webkit-transform: scale(1.1)
  }
}
.opacity02 {
  opacity: .2 !important;
}
/*******************************
button
********************************/
.kv-btn {
  width: 100%;
  height: 7.6rem;
  display: flex;
  margin: 0rem auto 0rem;
  padding: 1.3em 1em;
  text-align: center;
  /* border-radius: 2.8rem; */
  border: none;
  /* background: #ff6c00; */
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: absolute;
  bottom: 5%;
  z-index: 9;
  background: url(../images/cv_btn.png)no-repeat center;
  background-size: contain;
}
.kv-btn a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  z-index: 2;
}
/*button a::after {
  content: '';
  background-image: url("../images/lead_main.png");
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -33px;
  left: -25px
}*/
button i {
  color: #fff;
  width: 10%;
}
.submit_btn {
  width: 100%;
  display: flex;
  margin: 0 auto 3rem;
  padding: 1.2em 1em !important;
  text-align: center;
  border-radius: 2.8rem !important;
  border: none;
  background: #ff6c00;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  z-index: 9;
}
/*********************************

CAMPAIGN

**********************************/
.campaign {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 4rem;
  z-index: 99;
  background: #002047;
  opacity: 0;
}
.campaign .wrapper {
  width: 100%;
  position: relative;
  background: linear-gradient(to bottom, #000000 0%, #002047 100%);
  padding: 2rem 1.8rem 4.6rem;
}
.campaign .wrapper::before {
  content: "";
  display: block;
  background: url("../images/campaign-top.png") no-repeat center;
  height: 5rem;
  background-size: 100%;
}
.campaign .wrapper::after {
  content: "";
  display: block;
  background: url("../images/campaign-bottom.png") no-repeat center;
  height: 5rem;
  background-size: 100%;
}
.campaign .wrapper .camp-box {
  width: 100%;
  position: relative;
  padding: .5rem 2rem;
  background: url("../images/campaign-middle.png")repeat-y 0 -6px;
  background-size: 100%;
  z-index: 10;
}
.campaign .wrapper .camp-box .camp-box-ttl {
  width: 100%;
  margin-bottom: 3rem;
}
.campaign .wrapper .camp-box .camp-box-ttl img {
  width: 100%;
}
.campaign .wrapper .camp-box dl {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.campaign .wrapper .camp-box dl dt {
  display: inline-block;
  font-size: 2.1rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  width: 80%;
  margin: 0 auto 3rem;
  padding: 1rem 0;
}
.campaign .wrapper .camp-box dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}
.campaign .wrapper .camp-box dl dt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}
.campaign .wrapper .camp-box dl dd {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  margin: 0 auto 2rem;
  line-height: 1.5;
  width: 80%;
  text-align: left;
}
.campaign .wrapper .camp-box dl img {
  width: 80%;
  margin: 0 auto;
}
.campaign .wrapper .camp-box dl .sub {
  width: 80%;
  margin: 0 auto 1rem;
  text-align: right;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
}
.friends_system_ttl {
  width: 100%;
  padding: 0rem 2.4rem 3rem;
  opacity: 0;
}
.friends_system_ttl img {
  width: 100%;
}
/*********************************

SIMLATION

**********************************/
.simulation {
  width: 100%;
  display: block;
  position: relative;
  z-index: 99;
}
.simulation .wrapper {
  width: 100%;
  position: relative;
  background: #000;
  padding: 2rem 1.8rem;
}
.simulation .wrapper::before {
  content: "";
  display: block;
  background: url("../images/bg_top.png") no-repeat center;
  height: 5.6rem;
  background-size: 100%;
}
.simulation .wrapper::after {
  content: "";
  display: block;
  background: url("../images/bg_bottom.png") no-repeat center;
  height: 5.6rem;
  background-size: 100%;
}
.simulation .wrapper .sim-box {
  width: 100%;
  position: relative;
  padding: 0 1.8rem;
  background: url("../images/bg_center.png")repeat-y 0 -6px;
  background-size: 100%;
  z-index: 10;
}
.simulation .wrapper .sim-box .ttl {
  width: 95%;
  margin: 0 auto;
  position: relative;
}
.simulation .wrapper .sim-box .ttl .star {
  width: 20rem;
  height: auto;
  right: -12vw;
  top: -24vw;
  position: absolute;
}
.simulation .wrapper .sim-box .ttl img {
  width: 100%;
}
.simulation .wrapper .sim-box .bar {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.simulation .wrapper .sim-box .bar img {
  width: 100%;
}
.sim-box .sim-detail, .sim-box .precondition {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  letter-spacing: .09rem;
}
.sim-box .sim-detail .ttl-main, .sim-box .pre-simulation .ttl-main {
  color: #fff;
  font-size: 1.6rem;
  padding: 0.4em 0.8em;
  text-align: center;
  margin: 1rem 0;
  text-shadow: 0 0 3px #777;
  background-image: linear-gradient(90deg, #195c4e 0%, #00cdac 50%, #195c4e 100%);
}
.sim-box .pre-simulation .lead {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #fff;
  margin: 0 auto 1.4rem;
  text-align: left;
}
.sim-box .sim-detail .box {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.sim-box .sim-detail .box .ttl {
  font-size: 1.5rem;
  text-align: left;
  padding-left: 3rem;
  color: #fff;
  margin: 1rem 0 0;
  line-height: 1.5;
  position: relative;
  letter-spacing: 0;
  width: 100%;
}
.sim-box .sim-detail .box .ttl::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background: url("../images/spade.png") no-repeat center;
  background-size: contain;
}
.sim-box .sim-detail .box ul {
  width: 100%;
  padding-left: 3rem;
  line-height: 1.2;
  font-size: 1.4rem;
}
.sim-box .sim-detail .box ul li {
  width: 100%;
  list-style-type: disclosure-closed;
  color: #fff;
  line-height: 1.1;
}
.sim-box .precondition .ttl {
  color: #fff;
  font-size: 1.5rem;
  padding: 0;
  text-align: center;
  margin: 1rem 0;
  text-decoration: underline;
}
.sim-box .precondition .calc-fact {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
  padding: 1rem 1.5rem;
  align-items: flex-start;
}
.sim-box .precondition .calc-fact .ttl {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  margin: 0 auto 1rem;
  text-decoration: none;
}
.sim-box .precondition .lead {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.7;
  text-align: left;
  margin: 0 auto 1.4rem;
}
.sim-box .precondition .calc-fact p {
  display: flex;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
  margin: 0 auto 1rem;
  text-decoration: none;
  padding: .4em .5em;
  border: 1px solid #fff;
}
.arialB {
  display: inline-block;
  position: relative;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  color: transparent;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  -webkit-background-clip: text;
  font-weight: bold;
}
.input_rate {
  width: 100%;
  display: flex;
  font-size: 1.6rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}
.input_rate:last-child {
  margin-bottom: 0;
}
.input_rate .buy-in-label {
  width: 40%;
  text-align: left;
  color: #fff;
}
.buy-in {
  padding: .3em .5em .3em 1em;
  text-align: right;
  color: #333;
  font-size: 2rem;
  width: 50%
}
.currency_unit {
  font-size: 1.3rem;
  color: #fff;
  width: 10%;
  margin-left: 3px;
}
.output {
  width: 50%;
  position: relative;
  display: block;
  font-size: 2.8rem;
  margin: 0 auto;
  text-align: right;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  color: transparent;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  -webkit-background-clip: text;
  font-weight: bold;
  line-height: 1.3;
  padding: .3em .6em 0em 1em;
}
.output::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}
.mgb-20 {
  margin-bottom: 2rem !important;
}
.calc-btn {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 40%;
  color: #fff;
  text-align: center;
  border-radius: 1.3rem;
  padding: 0.7em 1em;
  font-size: 1.4rem;
  font-weight: bold;
  background: #f1890e;
  line-height: 1.1;
  cursor: pointer;
  margin: 2em auto 0;
}
/*********************************

headline:共通

**********************************/
.headline {
  width: 100%;
  margin-bottom: 7rem;
}
.headline .headline_ttl {
  font-weight: 900;
  font-size: 2.4rem;
  color: #fff;
  text-align: left;
  position: relative;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  align-items: center;
  z-index: 999;
}
.headline_ttl::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  background-color: #195c4e;
  border-radius: 5px;
  width: 30%;
  height: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.headline_ttl::before {
  content: "";
  position: absolute;
  bottom: -3rem;
  border-radius: 5px;
  width: 80%;
  left: 50%;
  transform: translate(-50%, 0) scale(1.3);
  top: 0;
  background: url("../images/mark.png");
  height: 100%;
  z-index: -1;
  background-size: contain;
  vertical-align: middle;
  opacity: .7;
}
/*********************************

ご紹介者条件

**********************************/
.condition {
  width: 100%;
  display: block;
  position: relative;
  padding: 3rem 2rem;
  opacity: 0;
}
.condition .wrapper {
  width: 100%;
  position: relative;
  background: #000;
}
.intro-box {
  width: 100%;
  padding: 4rem 1.8rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.intro-box .must_have {
  width: 100%;
  padding: 0 1.2rem;
  font-size: 2.4rem;
  background: #195c4e;
  margin-bottom: 2rem;
  position: relative;
  line-height: 1;
}
.intro-box .must_have::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 20px solid #195c4e;
  border-bottom: 0;
}
.intro-box .must_have p {
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
}
.intro-box .ttl {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 auto 3rem;
  border-top: 0.2rem solid #000;
  border-bottom: 0.2rem solid #000;
  padding: 1rem 0;
  line-height: 1.2;
  letter-spacing: 0;
}
.color_orange {
  color: #f1890e !important;
}
.color_orange_gd {
  background-image: linear-gradient(to right, #f83600 0%, #f9d423 100%) !important;
}
.cond {
  width: 100%;
  position: relative;
}
.intro-box .cond .ttl {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-top: none;
  border-bottom: none;
  line-height: 1.3;
  padding: 0.4em 1em;
  color: #fff;
  background: #000;
  border-left: 10px solid #195c4e;
  border-right: 10px solid #195c4e;
  margin-bottom: 2rem;
}
/****************************

Flow design

*****************************/
.flow_design {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
}
.flow {
  padding-left: 0;
  margin: 0 auto;
}
.flow > li {
  list-style-type: none;
  position: relative;
  padding: 0 0 0 0;
}
.flow > li:not(:last-child) {
  margin-bottom: 1.2rem;
}
.flow > li dl dt {
  position: relative;
  width: 100%;
  padding-left: 6rem;
  padding-bottom: 0.2rem;
  border-bottom: 3px solid #195c4e;
  margin-bottom: 1.4rem;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
}
.flow > li dl dt.item1::before, .flow > li dl dt.item2::before, .flow > li dl dt.item3::before, .flow > li dl dt.item4::before, .flow > li dl dt.item5::before, .flow > li dl dt.item6::before, .flow > li dl dt.item7::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
}
.flow > li dl dt.item1::before {
  background: url("../images/no1.png")no-repeat center;
  background-size: contain;
}
.flow > li dl dt.item2::before {
  background: url("../images/no2.png")no-repeat center;
  background-size: contain;
}
.flow > li dl dt.item3::before {
  background: url("../images/no3.png")no-repeat center;
  background-size: contain;
}
.flow > li dl dt.item4::before {
  background: url("../images/no1-2.png")no-repeat center;
  background-size: contain;
}
.flow > li dl dt.item5::before {
  background: url("../images/no2-2.png")no-repeat center;
  background-size: contain;
}
.flow > li dl dt.item6::before {
  background: url("../images/no3-2.png")no-repeat center;
  background-size: contain;
}
.flow > li dl dt.item7::before {
  background: url("../images/no4_2.png")no-repeat center;
  background-size: contain;
}
.flow > li dl dd {
  margin: 0;
}
.non-border {
  border: none !important;
}
.mgt-2 {
  margin-top: 2rem;
}
.mgb-14 {
  margin-bottom: 1.4rem !important;
}
.intro-box .cond .rule-box {
  width: 100%;
  position: relative;
  color: #333;
  z-index: 3;
}
.intro-box .cond .rule-box ul {
  padding-left: 2rem;
  margin: 0;
}
.intro-box .cond .rule-box ul li {
  list-style-type: square;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cond .intro-img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.cond .intro-img img {
  width: 70%;
  margin: 0 auto;
  display: block;
  opacity: .15;
}
/*******************************

友達紹介

********************************/
.introduce {
  width: 100%;
  position: relative;
  padding: 3.5rem 2rem;
  background: #000;
  opacity: 0;
}
/*******************************

rolingとは

********************************/
.roling-wrap {
  width: 100%;
  margin: 5rem auto 3rem;
  background: #fff;
  box-shadow: 0 0 6px #999;
  position: relative;
  padding: 4rem 1.8rem;
  opacity: 0;
}
.roling-wrap::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 70px solid transparent;
  border-left: 70px solid transparent;
  border-top: 30px solid #345D54;
  border-bottom: 0;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
.roling-wrap .ttl-q {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 auto 3rem;
  /*border-top: 0.2rem solid #000;
  border-bottom: 0.2rem solid #000;*/
  padding: 1rem 0;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.roling-wrap .ttl-q img {
  width: 100%;
}
.roling-wrap .ttl {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
}
.roling-wrap .ttl img {
  width: 90%;
  margin: 0 auto;
  display: block;
}
.roling-wrap .ex {
  font-size: 1.6rem;
  line-height: 1.8;
  text-indent: -1rem;
  padding-left: 1rem;
  margin-bottom: 2.5rem;
  letter-spacing: .2rem;
  margin-top: 0rem;
}
.roling-wrap .ex:first-of-type {
  border-bottom: 2px dotted #195c4e;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5em;
}
.roling-wrap .ex2 {
  font-size: 1.6rem;
  line-height: 1.3;
  padding: 0.5em 1em;
  display: inline-block;
  width: 65%;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
  background: url("../images/arrow-gr-r.png") no-repeat center;
  background-size: contain;
}
.roling-wrap dl {
  font-size: 1.6rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  margin: 0 auto 3rem;
}
.roling-wrap dl dt, .roling-wrap dl dd {
  margin-left: 1rem;
}
.roling-wrap dl dt {
  text-align: left;
  line-height: 1;
  font-weight: 700;
  border-bottom: 2px solid #195c4e;
  margin-bottom: 1rem;
  margin-left: 0;
}
/**/
.bg_edge_green {
  background: #195c4e;
  display: inline-block;
  width: 50%;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  position: relative;
  color: #fff;
}
/*.bg_edge_green:before {
  width: calc(100%);
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  content: "";
}
.bg_edge_green:before {
  border-bottom: solid .5rem #195c4e ;
  border-right: solid .5rem transparent;
  bottom: 100%;
}*/
/**/
.roling-wrap dl dd {
  margin-bottom: 2rem;
  line-height: 1.2;
}
.roling-wrap dl dd:last-child {
  margin-bottom: 0;
}
.roling-wrap ul {
  padding-left: 0;
  margin: 0 auto 2rem;
}
.roling-wrap ul li {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.roling-wrap ul li:nth-child(2) {
  margin-bottom: 3.8rem;
}
.roling-wrap .roling_img {
  width: 100%;
  position: relative;
}
.roling-wrap .roling_img img {
  width: 100%;
}
.benefit {
  width: 100%;
  padding: 1.8rem 1.4rem;
  margin: 0 auto;
  background: #f1890e;
}
.benefit p {
  font-size: 1.8rem;
  text-align: left;
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .1rem;
}
.chip-img {
  width: 100%;
  position: relative;
}
.chip-img img {
  width: 100%;
  margin-bottom: 1.8rem;
}
/*******************************

シェアボタン

********************************/
.share {
  position: relative;
  width: 100%;
  margin: 0 auto;
  bottom: 0%;
  text-align: center;
  margin-bottom: 1rem;
  overflow: hidden;
  z-index: 1;
  transform: translateY(-40px);
  background-color: #000;
  padding-top: 3rem;
  opacity: 0;
}
.share .bg {
  width: 30%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 3;
}
.share h3 {
  font-size: 2.4rem;
  position: relative;
  font-weight: bold;
  color: transparent;
  margin-bottom: 2rem;
  margin-top: 0;
  z-index: 9;
  display: inline-block;
  background-image: linear-gradient(135deg, #ffec61, #f321d7);
  -webkit-background-clip: text;
}
/*.icon {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  z-index: 99;
}
.icon a {
  width: 18%;
  height: auto;
  margin-right: 2em;
}
.icon a img {
  width: 100%;
  position: relative;
  z-index: 99;
}*/
/*********************************

ウォレットについて

**********************************/
.wallet {
  width: 100%;
  display: block;
  position: relative;
  padding: 5rem 0rem 1rem;
  opacity: 0;
}
.wallet .wrapper {
  width: 100%;
  position: relative;
  background: #000;
  padding: 0 2rem;
}
.wallet-box {
  width: 100%;
  padding: 4rem 1.8rem 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.wallet-box .ttl {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 auto 3rem;
  border-top: 0.2rem solid #000;
  border-bottom: 0.2rem solid #000;
  padding: 1rem 0;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.03em;
  background: #000;
}
.wallet-box .wallet-img {
  width: 100%;
  position: relative;
}
.wallet-box .wallet-img img {
  width: 100%;
  opacity: 0;
}
.wallet-feature {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
}
.wallet-feature h4 {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  padding: 0.5em;
  background: #000;
  border-right: 10px solid #f1890e;
  border-left: 10px solid #f1890e;
}
.wallet-feature .txt {
  font-size: 1.6rem;
  margin: 1rem auto;
  text-align: left;
  padding: 0 1.8rem;
}
.f-wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
}
.f-wrapper .f-box {
  width: calc(100vw*0.7);
  margin: 0 auto;
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  border-radius: 50%;
  height: calc(100vw*0.7);
  padding: 4rem 1.8rem;
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
}
.f-wrapper .f-box .con {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4rem 3rem;
}
.f-wrapper .f-box i {
  font-size: 5rem;
  color: #f1890e;
  margin-bottom: 1rem;
}
.f-wrapper .f-box h4 {
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.f-wrapper .f-box p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #555;
}
/*********************************

お支払いについて

**********************************/
.payment {
  width: 100%;
  display: block;
  position: relative;
  padding: 3.5rem 0rem 1rem;
  opacity: 0;
}
.payment .wrapper {
  width: 100%;
  position: relative;
  background: #000;
  padding: 0 2rem 4rem;
}
.payment-box {
  width: 100%;
  padding: 4rem 1.8rem 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.payment-box .ttl {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 auto 3rem;
  border-top: 0.2rem solid #000;
  border-bottom: 0.2rem solid #000;
  padding: 1rem 0;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.payment-ex {
  width: 100%;
  padding: 0rem 0 4rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.payment-ex .txt {
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.7;
  margin: 0 auto 1rem;
}
.payment-ex .rule {
  border: 2px solid #195c4e;
  padding: 3rem 1.8rem;
  font-size: 1.6rem;
  background: #195c4e;
  color: #fff;
}
.payment-ex .rule dl {
  margin: 0 auto 2rem;
}
.payment-ex .rule dl:last-child {
  margin: 0 auto;
}
.payment-ex .rule dt {
  margin: 0 auto 1rem;
  font-weight: 800;
  font-size: 1.8rem;
}
.payment-ex .rule dd {
  margin-left: 1rem;
}
/*****************************************

お申し込みフォーム

*****************************************/
.application {
  width: 100%;
  position: relative;
  padding: 0 0 4rem;
  opacity: 0;
}
.application .camp_ttl {
  display: block;
  position: relative;
  width: 100%;
  z-index: 9;
  margin-bottom: 5rem;
}
.application .camp_ttl img {
  width: 100%;
  z-index: 9;
}
.application .headline {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}
.application .headline h2 {
  font-size: 2.6rem;
  font-weight: 900;
  position: relative;
  margin-bottom: 5rem;
  color: #fff;
}
.application .headline h2::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  background-color: #FFF;
  border-radius: 5px;
  width: 30%;
  height: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.application .headline p {
  font-size: 1.6rem;
  position: relative;
  width: 90%;
  text-align: left;
  line-height: 1.5;
  margin: 0 auto 1rem;
  color: #fff;
}
.form {
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding: 3rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  background: linear-gradient(0deg, #345D54 0%, #007056 50%, #345D54 100%);
  background: -webkit-linear-gradient(0deg, #345D54 0%, #007056 50%, #345D54 100%);
}
.form label {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}
.form input, .form textarea {
  font-size: 1.6rem;
  padding: 0.5em 0.7em;
  margin-bottom: 1.5em;
  border: none;
  border-radius: 0.1em;
  line-height: 1.8;
  color: #333;
}
.form select {
  padding: 0.5em 1em;
  font-size: 1.6rem;
  border: 1px solid #999;
  text-align: left;
  width: 100%;
  line-height: 1.8;
}
.form textarea {
  height: 10rem;
  margin-bottom: 1rem;
}
.form .txt_tel {
  font-size: 1.4rem;
  color: #fff;
  text-align: left;
  margin: 0 auto 2.4rem;
  width: 100%;
}
.form .link {
  display: none;
  margin: 0 auto;
  padding-left: 1rem;
}
.form .link li a {
  display: inline-block;
  width: auto;
  height: auto;
  text-decoration: none;
}
.form .link li a img {
  width: 50%;
}
.form .transfer_destination, .form .crypttransfer_destination {
  display: flex;
  flex-direction: column;
  margin-top: 1.5em;
}
.form .transfer_destination p, .form .crypttransfer_destination p {
  color: #fff;
  margin: 0 auto 1em;
  text-align: left;
  width: 100%;
  font-size: 1.4rem;
}
::placeholder {
  color: #c1c1c1;
}
.mgb_05em {
  margin-bottom: 0.5em !important;
}
input[type="file"] {
  font-size: 1.4rem !important;
  background: rgba(221, 255, 221, .7);
  border: 1px solid #c1c1c1 !important;
}
/*button a::after {
  content: '';
  background-image: url("../images/lead_main.png");
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -33px;
  left: -25px
}*/
button i {
  color: #fff;
}
.transfer {
  width: 100%;
  padding: 0 0.5em 2rem;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: nowrap;
  flex-flow: column;
  position: relative;
}
.submit {
  width: 100%;
  position: relative;
}
.submit_btn {
  width: 100%;
  display: block;
  margin: 0 auto 3rem;
  padding: 1.2em 1em !important;
  border-radius: 2.8rem !important;
  border: none;
  cursor: pointer;
  position: relative;
  color: #fff !important;
  font-size: 1.8rem !important;
  font-weight: 900;
  text-align: center;
  line-height: 1.2 !important;
  z-index: 9;
  background: url("../images/cv_btn.png") no-repeat center;
  background-size: contain;
}
.submit::before {
  font: var(--fa-font-solid);
  content: '\f054';
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  font-size: 1.6rem;
  top: 35%;
  right: 15px;
  z-index: 10;
  transform: translateY(-50%) scale(1.3);
  color: #fff;
  font-weight: 900;
}
.width100 {
  width: 100% !important;
}
.box_br input {
  width: 6%;
}
.box_br {
  margin-bottom: .1em;
}
/********************************

個人情報に関する同意

*********************************/
.consent {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  margin-bottom: 3rem;
}
.consent h4 {
  font-weight: 400;
}
.consent p {
  margin: 0 auto 1em;
  width: 100%;
  line-height: 1.5;
}
.consent ul {
  margin-top: 0;
  border: .8px solid #fff;
  padding: 1rem .7rem;
  padding-left: 2rem;
}
.consent ul li {
  margin: .5em;
  list-style-type: disc;
}
.consentCheck {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-size: 1.4rem;
  color: #fff;
}
.consentCheck #consentCheckbox {
  width: 10%;
}
/********************************

FOOTER

*********************************/
footer {
  background: #000;
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: .3em 1em;
  position: relative;
  z-index: 999;
}
/*********************************

サンクスページ

**********************************/
main .wrapper_th {
  width: 100%;
  position: relative;
  padding: 10rem 0;
  height: 100vh;
}
.thanks{
    width: 100%;
    padding: 2rem 1.4rem 0;
    background: url("../images/thanks_bg.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 99;
    min-height: 100vh;
}
.thanks_wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 2rem 1rem 0;
}
.thanks_wrapper .logo {
  width: 40%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50% ,0);
}
.thanks_wrapper .logo img{
    width: 100%;
}

.thanks_wrapper::before {
  content: "";
  display: block;
  background: url("../images/thanks_bg_top.png") no-repeat center;
  height: 12.6rem;
  background-size: 100%;
}
.thanks_wrapper::after {
  content: "";
  display: block;
  background: url("../images/thanks_bg_bottom.png") no-repeat center;
  height: 12.6rem;
  background-size: 100%;
}
.thanks_wrapper .box {
  width: 100%;
  position: relative;
  height: 100%;
  padding: 0 1rem;
  background: url("../images/thanks_bg_middle.png")repeat-y 0 -6px;
  background-size: 100%;
  z-index: 10;
}
.thanks_wrapper .box .ttl {
  width: 100%;
  position: relative;
}
.thanks_wrapper .box .ttl img{
  width: 100%;
}
.thanks_wrapper .box .txt{
   font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
   font-size: 1.4rem;
   color: #fff;
   line-height: 1.5;
   margin: 0 auto 1.8rem;
   text-align: center;
   letter-spacing: 0;
}
.thanks_wrapper .img {
  width: 100%;
  position:relative;
  bottom: 0;
  left: 0;
  z-index: 10;
  transform: scale(1.5) translateY(15%);
}
.thanks_wrapper .img img{
  width: 100%;
}
.kv_bg_th {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.kv_bg_th img {
  width: 100%;
}
.kv_th {
  position: absolute;
  width: 100%;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
}
.kv_th .subhead {
  font-size: 2rem;
  color: #fff;
  padding-left: 2rem;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-family: "Lato";
  text-shadow: 0 0 5px #555;
}
.kv_th .ttl-wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
}
.kv_th .ttl {
  font-size: 2.4rem;
  color: #fff;
  background: #195C4E;
  display: inline-block;
  padding: 0.5em 2rem;
  margin: 0 0 1rem;
  line-height: 1;
  font-family: "Lato";
  font-weight: 900;
  letter-spacing: .04em;
}
.bg_gr {
  background: #195C4E !important;
  display: inline-block;
}
.kv_th .ttl:last-of-type {
  margin-bottom: 3.5rem;
}
.kv_th .txt {
  width: 90%;
  color: #fff;
  font-size: 2rem;
  line-height: 2;
  margin: 0 auto 2rem;
}
/* ローディングの背景部分のCSS */
.loader {
  background: #195C4E;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: none;
}
/* ローディングのアニメーション部分のCSS (https://projects.lukehaas.me/css-loaders/) */
.loader-animation, .loader-animation:before, .loader-animation:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader-animation {
  height: 10px;
  left: 50%;
  margin: -5px 0 0 -5px;
  position: absolute;
  top: 50%;
  width: 10px;
  color: #ffffff;
  text-indent: -9999em;
  font-size: 10px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader-animation:before, .loader-animation:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader-animation:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader-animation:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
.margin0auto {
  margin: 0 auto !important;
  display: flex;
}
@media only screen and (max-width:360px) {
  .kv .ex {
    font-size: 1.4rem;
  }
  header p {
    font-size: 1.1rem;
  }
  .headline .headline_ttl {
    font-weight: 900;
    font-size: 2.1rem;
  }
  .intro-box .must_have {
    font-size: 2rem;
  }
  .intro-box .ttl {
    width: 100%;
    font-size: 1.6rem;
  }
  .sim-box .sim-detail .box .ttl {
    font-size: 1.3rem;
  }
  .sim-box .sim-detail .box ul {
    font-size: 1.3rem;
  }
  .sim-box .precondition .calc-fact {
    padding: 1rem 0.5rem;
  }
  .intro-box .ttl {
    width: 100%;
    font-size: 1.6rem;
  }
  .intro-box .must_have {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 2.1rem;
  }
  .payment-ex .rule dt {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width:375px) {
  .sim-box .sim-detail .box .ttl {
    font-size: 1.4rem;
  }
  .sim-box .precondition .calc-fact {
    padding: 1rem 1rem;
  }
  .keyvisual .camp_ttl {
    display: block;
    position: relative;
    width: 90%;
  }
  .keyvisual .main_ttl {
    padding: 1rem 3.4rem 0;
  }
  .keyvisual .deadline {
    width: 45%;
    position: absolute;
    right: 0;
    bottom: 15%;
  }
  .kv-btn {
    width: 100%;
    height: 6.6rem;
    bottom: -1%;
  }
  .sim-box .sim-detail .box ul {
    padding-left: 2rem;
  }
  .sim-box .precondition .calc-fact .ttl {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 414px) {
  .kv_bg {
    height: 653px;
  }
  .kv_bg .hibiki {
    position: absolute;
    bottom: 30%;
  }
  
  .kv-btn {
    width: 100%;
    height: 8rem;
     bottom: 5%;
    }
  .campaign .wrapper::before {
    content: "";
    display: block;
    background: url(../images/campaign-top.png) no-repeat center;
    height: 6rem;
    background-size: 100%;
  }
  .campaign .wrapper::after {
    content: "";
    display: block;
    background: url(../images/campaign-bottom.png) no-repeat center;
    height: 6rem;
    background-size: 100%;
  }
  .simulation .wrapper .sim-box .ttl .star {
    width: 20rem;
    height: auto;
    right: -10vw;
    top: -21vw;
    position: absolute;
  }
  .roling-wrap .ex2 {
    padding: 0.5em 1rem;
    display: inline-block;
    width: 55%;
  }
}
@media only screen and (min-width: 767px) {
  .pc {
    display: block;
  }
  .mb {
    display: none;
  }
  header {
    padding: 2rem;
    justify-content: flex-start;
  }
  header h1 {
    width: 17rem;
    left: 1.8rem;
  }
  .kv .subhead img {
    width: 50%;
  }
  .campaign {
    padding: 4rem 0;
  }
  header p {
    font-size: 1.6rem;
    margin-left: 5rem;
  }
  header p img {
    width: 58%;
  }
  .keyvisual .camp_ttl {
    display: block;
    position: relative;
    width: 76rem;
    z-index: 9;
    margin: 0 auto;
  }
  button {
    width: 40%;
    margin: 4rem 0 2rem
  }
  button a {
    font-size: 1.8rem;
  }
  kv_bg {
    height: 476px;
  }
  .campaign .wrapper {
    width: 76rem;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(to bottom, #000000 0%, #002047 100%);
    padding: 2rem 1.8rem 4.6rem;
  }
  .friends_system_ttl {
    width: 76rem;
    padding: 0rem 2.4rem 3rem;
    display: block;
    margin: 0 auto;
  }
  .application .camp_ttl {
    display: block;
    position: relative;
    width: 76rem;
    margin: 0 auto 5rem;
    z-index: 9;
    margin-bottom: 5rem;
  }
  .submit_btn {
    width: 100%;
    height: 10rem;
  }
  .kv_bg .hibiki img {
    width: 50%;
    right: 0;
    transform: translate(100%, 0%) scale(1);
    transform-origin: bottom;
  }
  .simulation .wrapper {
    width: 76rem;
    margin: 0 auto;
  }
  .simulation .wrapper .sim-box .ttl {
    width: 100%;
  }
  .simulation .wrapper .sim-box {
    padding: 3rem 8rem;
  }
  .simulation .wrapper .sim-box .bar img {
    width: 100%;
    margin: 2rem auto 3rem;
  }
  .sim-box .sim-detail .ttl-main {
    font-size: 2.4rem;
    padding: 0.4em 0.8em;
    margin: 1rem 0 3rem;
  }
  .sim-box .sim-detail .box .ttl {
    font-size: 2rem;
    padding-left: 4rem;
    margin: 1rem 0 1.8rem;
    line-height: 1.5;
    position: relative;
    letter-spacing: 0.05rem;
  }
  .sim-box .sim-detail .box {
    display: flex;
    margin-bottom: 2rem;
  }
  .sim-box .sim-detail .box .ttl::after {
    width: 3rem;
    height: 3rem;
  }
  .sim-box .sim-detail .box ul {
    width: 100%;
    padding-left: 4rem;
    line-height: 1.3;
    font-size: 1.6rem;
  }
  .sim-box .precondition .ttl {
    color: #fff;
    font-size: 1.8rem;
    text-align: left;
    padding-left: 2rem;
    margin: 1rem 0 1.8rem;
  }
  .sim-box .precondition .calc-fact p {
    font-size: 1.8rem;
    margin: 0 auto 1.8rem;
    padding: 0.3em 0.5em;
  }
  .sim-box .precondition .calc-fact .ttl {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
    margin: 0 auto 1.6rem;
    text-decoration: none;
  }
  .headline .headline_ttl {
    font-weight: 900;
    font-size: 3.2rem;
  }
  .headline_ttl::after {
    width: 15%;
  }
  .intro-box {
    max-width: 76rem;
    padding: 6rem;
    margin: 0 auto;
  }
  .intro-box .ttl {
    width: 100%;
    font-size: 2.1rem;
    margin: 0 auto 3rem;
  }
  .intro-box .cond .ttl {
    margin: 1rem 0 1.6rem;
    font-size: 2.1rem;
  }
  .flow_design {
    font-size: 1.6rem;
  }
  .flow > li {
    list-style-type: none;
    position: relative;
    padding: 0px 0 0 7vw;
    border-bottom: 5px solid #f1890e;
  }
  .flow > li dl dt {
    font-size: 2rem;
  }
  .intro-box .cond .rule-box ul li {
    font-size: 1.8rem;
  }
  .roling-wrap {
    position: relative;
    padding: 6rem;
    opacity: 0;
    max-width: 76rem;
  }
  .roling-wrap .ttl-q {
    width: 100%;
    font-size: 2.1rem;
  }
  .roling-wrap .ex {
    font-size: 1.8rem;
  }
  .benefit {
    max-width: 76rem;
  }
  .wallet-box {
    max-width: 76rem;
    margin: 0 auto;
    padding: 6rem;
  }
  .wallet-box .wallet-img {
    width: 50%;
    margin: 0 auto;
  }
  .wallet-feature .txt {
    font-size: 1.8rem;
  }
  .f-wrapper {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    padding: 3rem 0;
    justify-content: space-around;
  }
  .f-wrapper .f-box {
    width: 20rem;
    height: 20rem;
    padding: 1rem 1rem;
    position: relative;
    margin-bottom: 2rem;
  }
  .f-wrapper .f-box i {
    font-size: 3rem;
    margin-bottom: .5rem;
  }
  .f-wrapper .f-box p {
    font-size: 1.2rem;
    width: 100%;
    margin: 0;
  }
  .f-wrapper .f-box h4 {
    font-size: 1.6rem;
    margin-bottom: .7rem;
  }
  .payment-box {
    padding: 6rem;
    max-width: 76rem;
    margin: 0 auto;
  }
  .payment-box .ttl {
    width: 100%;
    font-size: 2.1rem;
  }
  .payment-ex {
    padding: 6rem;
    max-width: 76rem;
    margin: 0 auto;
  }
  .application .headline h2 {
    font-size: 3.2rem;
  }
  .application .headline h2::after {
    width: 15%;
  }
  .application .headline p {
    width: 76rem;
    font-size: 1.8rem;
  }
  .form {
    max-width: 76rem;
    padding: 6rem;
  }
  .form label {
    font-size: 1.6rem;
  }
  .thanks_wrapper {
    width: 76rem;
    margin: 0 auto;
}
    .thanks_wrapper::before,.thanks_wrapper::after {
    min-height: 25.6rem;
}
    .thanks_wrapper .box .txt {
    font-size: 2rem;
}
}
@media only screen and (min-width: 767px) {
  .kv_bg {
    height: 100vh
  }
  .kv_bg .hibiki {
    position: absolute;
    bottom: 0%;
  }
  .kv_bg .hibiki img {
    width: 40%;
    right: 0;
    transform: translate(160%, 0%) scale(1);
    transform-origin: bottom;
  }
  .flow > li {
    list-style-type: none;
    position: relative;
    padding: 0px 0 0 0vw;
    border-bottom: none;
  }
}
@media only screen and (min-width: 1180px) {
  .kv {
    max-width: 128rem;
    margin: 0 auto;
    height: 100vh;
  }
    header {
    padding: 2rem 20%;
    justify-content: flex-start;
}
  .keyvisual {
    margin-top: -13rem;
    padding-top: 13rem;
  }
  .keyvisual .deadline {
    width: 30%;
    position: absolute;
    right: 0;
  }
  .keyvisual .main_ttl {
    display: block;
    position: relative;
    width: 76rem;
    margin: 0 auto;
    padding: 2rem 1.4rem;
    z-index: 9;
  }
  .keyvisual .images {
    width: 50%;
    position: absolute;
    bottom: 0;
    left: 10%;
    z-index: 9;
  }
  .kv-btn {
    width: 50%;
    height: 12.2rem;
    display: flex;
    margin: 0rem auto 0rem;
    padding: 1.3em 1em;
    text-align: center;
    /* border-radius: 2.8rem; */
    border: none;
    /* background: #ff6c00; */
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: absolute;
    bottom: 1%;
    left: 26vw;
    z-index: 9;
    background: url(../images/cv_btn.png)no-repeat center;
    background-size: contain;
  }
  .keyvisual .deadline {
    width: 30%;
    position: absolute;
    right: 0;
    bottom: 5%;
  }
  .simulation .wrapper::before {
    height: 10.6rem;
  }
  .simulation .wrapper::after {
    height: 10.6rem;
  }
  .simulation .wrapper .sim-box .ttl .star {
    width: 20rem;
    height: auto;
    right: 0vw;
    top: -7vw;
    position: absolute;
  }
  .roling-wrap .ex2 {
    width: 30%;
  }
  .submit::after {
    top: -23px;
    left: 15%;
  }
  .submit::before {
    right: 20%;
  }
}