@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;
}
.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_18em {
  font-size: 1.8em !important;
}
.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;
}
.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;
}
/*********************************


*********************************/
#acount-info {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 1rem;
}
#hotel, #air, #others, #step {
  /* display: none;*/
  margin-bottom: 2rem;
}
/*********************************

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.roomSelect::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #195c4e;
  content: "";
  position: absolute;
  right: 3%;
  top: 17%;
  width: 0;
}
.s-container.transfer::before {
  border-bottom: 7px solid #195c4e;
  border-left: 7px solid transparent;
  border-right: 7px 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;
  width: 100%;
  height: auto;
  flex-flow: nowrap;
  justify-content: space-around;
  align-items: center;
  opacity: 0;
}
header h1 {
  width: 11.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%;
}
/*********************************

KV

**********************************/
.kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: calc(100vh*.7);
  z-index: 1;
}
.kv_bg_grad {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .3) 40%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  height: 100%;
}
.img_box .hibiki {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  z-index: 3;
}
.kv_bg img {
  width: 100%;
}
.kv_bg .bg_paradise {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.kv_bg .bg_paradise img {
  width: 100%;
}
.kv_bg .hibiki img {
  width: 70%;
  transform: translate(55%, 0%);
  transform-origin: bottom;
}
/**main**/
.wrapper {
  width: 100%;
  position: relative;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  padding: 0;
}
.kv {
  position: relative;
  width: 100%;
  z-index: 999;
  padding: 0 2rem 0;
  margin-bottom: 2rem;
  opacity: 0;
}
.kv .subhead {
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 1rem;
  font-weight: 700;
  width: 100%;
  text-align: left;
  position: relative;
}
.kv .subhead img {
  width: 100%;
}
.kv .l-sub {
  margin: 0 auto 1rem;
  font-weight: 700;
  width: 100%;
  text-align: left;
  position: relative;
}
.kv .l-sub img {
  width: 75%;
}
.kv .kv-ttl {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.kv .kv-ttl .main-img {
  width: 100%;
}
.kv .kv-ttl .gift {
  position: absolute;
  bottom: -2vh;
  right: -5vw;
  width: 45%;
}
.kv .img_box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.kv .img_box .hibiki {
  position: relative;
  width: 100%;
  z-index: 3;
  margin-top: -1rem;
}
.kv .img_box .hibiki img {
  width: 100%;
  transform: scale(1.1);
}
.kv_bg img {
  width: 100%;
}
.kv .ex, .kv .ex-t {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  max-width: 70%;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 0 3px #333;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.kv .ex-t {
  margin: 1em 0 .5em;
}
.color_gd {
  color: #c9b52e !important;
  text-decoration: underline;
}
.color_gd_grad {
  color: transparent !important;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%) !important;
  -webkit-background-clip: text !important;
  text-decoration: underline !important;
  font-weight: 300;
}
/*********************************
スムース表示エフェクト
**********************************/
/* 滑らかに変形して出現 */
.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: 7rem;
  display: flex;
  margin: -1rem auto 3rem;
  padding: 1.5em 0em;
  text-align: center;
  /* border-radius: 2.8rem;*/
  border: none;
  /*background: #ff6c00;*/
  flex-direction: column;
  cursor: pointer;
  z-index: 9;
  background: url("../images/cta_btn.png")no-repeat center;
  background-size: contain;
  position: relative;
}
.kv-btn a {
  position: relative;
  width: 100%;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  height: 100%;
  z-index: 2;
}
.kv-btn .bob-icon {
  position: absolute;
  right: 0vw;
  bottom: 0;
  width: 30%;
}
.purupuru2 {
  animation: purupuru2 0.1s infinite;
}
@keyframes purupuru2 {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.98, 0.95)
  }
}
/*button a::after {
  content: '';
  background-image: url("../images/lead_main.png");
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -33px;
  left: -25px
}*/
/*********************************

ご利用条件

**********************************/
.terms_of_service {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 4rem;
  z-index: 99;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif !important;
  opacity: 0;
}
.tos-ttl {
  padding: 1rem;
  color: #fff;
  background: #195c4e;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  position: relative;
}
.tos-ttl::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;
}
.terms_of_service .wrapper {
  width: 100%;
  position: relative;
  background: #000;
  padding: 2rem 1.8rem;
  overflow: hidden;
}
.condition_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif !important;
}
.condition_box .row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0;
  color: #fff;
  text-align: center;
  margin: 0 auto 1.4rem;
  font-size: 1.6rem;
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(25, 92, 78, 1) 0%, rgba(25, 92, 78, 1) 50%, #00cdac 70%, rgba(25, 92, 78, 1) 100%) 1;
  font-family: YakuHanJPs_Narrow, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif !important;
}
.condition_box .row .col-01, .condition_box .row .col-02 {
  padding: .5em .7em;
  text-align: left;
  letter-spacing: 0;
}
.condition_box .row .col-01 {
  width: 20%;
  background-color: #8CC5A3;
  color: #333 !important;
  font-weight: 700;
  text-align: center;
}
.condition_box .row .col-02 {
  width: 75%;
  flex-grow: 1;
}
.condition_box .row:last-of-type, .condition_box .row:first-of-type {
  margin-bottom: 1.4rem;
}
.condition_box .row_sub {
  margin: 0 auto .6rem;
  font-size: 1.3rem;
  text-align: left;
  text-indent: -1em;
  padding-left: 1.5rem;
  color: #fff;
  display: block;
  width: 100%;
}
.condition_box .row_sub:nth-last-child(2) {
  margin: 0 auto .5rem;
}
.color_gd_grad2 {
  color: transparent !important;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%) !important;
  -webkit-background-clip: text !important;
  text-decoration: underline !important;
}
.ctw_ttl {
  font-size: 1.2rem;
  font-weight: bold;
  color: #195c4e;
  text-align: left;
  padding: .5em 1rem;
  margin-bottom: 0;
  display: inline-block;
  background: #fff;
  font-family: YakuHanJPs_Narrow, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif !important;
}
.ctw_table {
  border-collapse: collapse;
  width: 100%;
  font-family: YakuHanJPs_Narrow, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif !important;
  font-size: 2.5vw;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 0;
}
.ctw_table th, .ctw_table td {
  border: 1px solid #d1d1d1;
  padding: 10px 3px;
  text-align: left;
}
.ctw_table tr:first-child th {
  background-color: #195c4e;
  color: white; /* テキストの色を白に設定 */
}
.ctw_table td:first-child {
  background-color: #8CC5A3; /* 1列目全体の背景色 */
  color: #333; /* テキストの色を白に設定 */
  font-weight: bold;
}
.ctw_table tr:first-child th:first-child {
  background-color: #195c4e; /* 1行目1列のセルの背景色 */
}
.ctw_table td:nth-child(3), .ctw_table td:nth-child(5) {
  text-align: center; /* 3列目と5列目のセル内のテキストを中央寄せ */
}
.add-info {
  width: 100%;
  padding: 2rem 1rem;
  color: #fff;
  border: 1px solid #fff;
}
.add-info ul {
  padding-left: 2rem;
}
.add-info ul li {
  color: #fff;
  line-height: 1.3;
  font-size: 1.2rem;
  list-style-type: square;
  margin-bottom: 1rem;
  font-family: YakuHanJPs_Narrow, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif !important;
}
/*********************************

headline:共通

**********************************/
.headline {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 5rem;
}
.headline .headline_ttl {
  font-weight: 900;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 3px solid;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, rgba(25, 92, 78, 0) 0%, rgba(25, 92, 78, 1) 35%, #00cdac 50%, rgba(25, 92, 78, 1) 75%, rgba(25, 92, 78, 0) 100%) 1;
}
.headline_ttl::before {
  content: "";
  position: absolute;
  min-width: 100%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  top: 50%;
  background: url("../images/header_img.png") no-repeat center;
  height: 18rem;
  background-size: contain;
  opacity: .6;
  z-index: -1;
}
/*********************************

Betrnkの特徴

**********************************/
.feature {
  width: 100%;
  display: block;
  position: relative;
  padding: 0 2rem 3rem;
  opacity: 0;
}
.feature .wrapper {
  width: 100%;
  position: relative;
}
.feature .wrapper .txt {
  width: 100%;
  position: relative;
  color: #fff;
  margin: 0 auto 1.4rem;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
  z-index: 3;
}
.feature .wrapper .txt:last-of-type {
  margin-bottom: 4rem;
}
/*********************************
header
**********************************/
.header_img {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  opacity: 0;
}
.header_img img {
  width: 100%;
}
.ls_header {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 5rem;
  position: relative;
  display: flex;
  justify-content: flex-start;
  opacity: 0;
}
.ls_header .bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.ls_header .ls_header_ttl {
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  text-align: left;
  line-height: 1.3;
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 1.4rem 0;
  margin: 0;
  width: 100%;
  z-index: 3;
}
.ls_header .ls_header_ttl .head {
  /* text-align: left; */
  display: inline-block;
  padding: 0 1em;
  text-align: left;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.feature .wrapper .reason_box {
  width: 100%;
  background-size: contain;
  padding: 0;
  position: relative;
  margin: 0 auto 3rem;
  border: 1px solid;
  border-image: linear-gradient(45deg, rgba(30, 87, 153, 0) 0%, rgba(134, 187, 230, 0.8) 30%, #e5fcef 60%, #faf1c8 65%, #f7a970 100%) 1;
  border-image: -webkit-linear-gradient(45deg, rgba(30, 87, 153, 0) 0%, rgba(134, 187, 230, 0.8) 30%, #e5fcef 60%, #faf1c8 65%, #f7a970 100%) 1;
  opacity: 0;
}
.feature .wrapper .reason_box .img {
  width: 100%;
}
.feature .wrapper .reason_box .reason_label {
  font-size: 2rem;
  color: #fff;
  text-align: left;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  position: absolute;
  margin-bottom: 0;
  background: linear-gradient(-45deg, rgba(30, 87, 153, 0) 0%, rgba(134, 187, 230, 0.8) 30%, #e5fcef 60%, #faf1c8 65%, #f7a970 100%);
  background: -webkit-linear-gradient(-45deg, rgba(30, 87, 153, 0) 0%, rgba(134, 187, 230, 0.8) 30%, #e5fcef 60%, #faf1c8 65%, #f7a970 100%);
  padding: 1rem 2rem;
  top: 2rem;
  left: 0;
  z-index: 9;
}
.feature .wrapper .reason_box .title {
  font-size: 2rem;
  text-align: center;
  position: relative;
  z-index: 9;
  color: #fff;
  font-weight: 400;
  letter-spacing: .1rem;
}
.feature .wrapper .reason_box .txt {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  padding: 0.5rem 0.2rem 0.5rem 0.8rem;
  line-height: 1.7;
  position: relative;
  z-index: 9;
}
/*********************************

Losing Back条件

**********************************/
.losing_back {
  width: 100%;
  display: block;
  position: relative;
  padding: 3rem 2rem;
  opacity: 0;
}
.losing_back .wrapper {
  width: 100%;
  position: relative;
}
.lb-box {
  width: 100%;
  padding: 4rem 1.8rem;
  background: rgba(30, 30, 30, .8);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 1rem #777;
}
.lb-box .about {
  width: 100%;
  padding: 3rem 1.8rem;
  font-size: 2rem;
  background: #000;
  margin-bottom: 2rem;
  position: relative;
  line-height: 1.6;
  color: #fff;
}
.lb-box .about::before {
  content: "";
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.lb-box .about::after {
  content: "";
  background: linear-gradient(-45deg, rgba(30, 87, 153, 0) 0%, rgba(134, 187, 230, 0.8) 30%, #e5fcef 60%, #faf1c8 65%, #f7a970 100%);
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: 1;
}
.lb-box .about p {
  margin: 0 auto;
  font-size: 1.8rem;
  position: relative;
  z-index: 3;
}
.lb-box .losing-txt {
  color: #fff;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.7;
}
.lb-wrap {
  width: 100%;
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif;
}
.lb-wrap .ttl {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  text-align: left;
  color: #fff;
}
.lb-table {
  border-collapse: collapse;
  width: 100%;
  line-height: 1.1;
}
.lb-table th, .lb-table td {
  border: 1px solid #d1d1d1;
  padding: 8px;
  text-align: left;
  font-size: 1.4rem;
}
.lb-table tr:nth-child(2) > td {
  text-align: center;
  padding: 1.4rem 8px;
  background: #fff;
}
.lb-table tr:nth-child(2) > :nth-child(2), .lb-table tr:nth-child(2) > :nth-child(3), .lb-table tr:nth-child(2) > :nth-child(4) {
  color: darkred;
  font-weight: 600;
  font-size: 1.8em;
}
.lb-table tr:first-child > th {
  text-align: center;
  background: #195c4e;
  color: #fff;
}
.lb-box .example {
  color: #fff;
  font-size: 1.4rem;
}
.lb-box .example dt {
  margin-bottom: .8em;
}
.lb-box .example dd {
  margin-left: 2.4rem;
}
/*******************************

シェアボタン

********************************/
.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;
  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;
  width: 100%;
}
.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;
}
/***********************************

QA

***********************************/
.qa {
  width: 100%;
  display: block;
  position: relative;
  padding: 5rem 0rem 1rem;
  opacity: 0;
}
.qa .wrapper {
  width: 100%;
  padding: 0 2rem 4rem;
}
.qa .wrapper .qa_box {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.qa .wrapper .qa_box .question {
  position: relative;
  width: 100%;
  padding: 1rem 1rem 1rem 2.6em;
  font-size: 1.4rem;
  line-height: 1.5;
  border: 1px solid;
  border-image: linear-gradient(90deg, rgba(25, 92, 78, 1) 0%, rgba(25, 92, 78, 1) 35%, #00cdac 50%, rgba(25, 92, 78, 1) 75%, rgba(25, 92, 78, 1) 100%) 1;
  font-weight: 400;
  background-color: #000;
  margin-top: 1em;
  color: #fff;
  letter-spacing: .05em;
}
.qa .wrapper .qa_box .question .arrow {
  position: absolute;
  right: .3rem;
  top: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: auto;
}
.qa .wrapper .qa_box .question::before {
  content: 'Q';
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  font-size: 2rem;
  color: #f1890e;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.qa .wrapper .qa_box .answer {
  position: relative;
  width: 100%;
  font-size: 1.4rem;
  padding: 1em 1em 1em 2.8em;
  border: 1px solid rgb(224, 224, 224);
  margin: 0 auto 1rem;
  display: block;
  background: #fff;
  letter-spacing: 0.08em;
}
.qa .wrapper .qa_box .answer::before {
  content: 'A';
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  font-size: 2rem;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
}
.qa .picture {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center
}
.qa .picture img {
  width: 50%;
}
/*****************************************

offer

*****************************************/
.offer {
  width: 100%;
  position: relative;
  padding: 0;
  opacity: 0;
}
.offer img {
  width: 100%;
}
/*****************************************

お申し込みフォーム

*****************************************/
.application {
  width: 100%;
  position: relative;
  padding: 7rem 0 4rem;
  opacity: 0;
}
.application img{
  width: 100%;
  margin: 0 auto 5rem;
}
.application .headline .headline_ttl {
  margin-bottom: 6.4rem;
}
.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: #fff;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif;
}
.hidden {
  display: none !important;
}
.active {
  display: block !important;
}
.form #account_opening, .form #bonus {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  width: 100%;
  margin-bottom: 0;
}
.form .headline {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #333;
  font-weight: bold;
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 3.5rem;
}
.form .headline span {
  padding: 0.6em 0.5em;
  font-size: 1.6rem;
  border: 3px solid #195c4e;
  color: #fff;
  background: #195c4e;
  font-weight: 900;
}
.form .headline span:nth-child(1) {
  margin-bottom: 1rem;
}
.form .select_form {
  display: block;
  margin-bottom: 3.4rem;
}
.label {
  font-size: 1.4rem;
  color: #333;
  display: block;
  margin-bottom: 1.6rem !important;
}
.form input, .form textarea {
  font-size: 1.6rem;
  padding: 0.5em 0.7em;
  margin-bottom: 1.5em;
  border: 1px solid #a1a1a1;
  border-radius: 0.1em;
  line-height: 1.8;
  color: #333;
  width: 100%;
}
.form select {
  padding: 0.5em 1em;
  font-size: 1.6rem;
  border: 1px solid #999;
  text-align: left;
  width: 100%;
  line-height: 1.8;
}
.form .txt {
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: #333;
  width: 100%;
}
.form textarea {
  height: 10rem;
  margin-bottom: 1rem;
}
.form .txt_tel {
  font-size: 1.4rem;
  color: #333;
  text-align: left;
  margin: 0 auto 2.4rem;
  width: 100%;
}
.form .link {
  display: none;
  margin: 0 auto 2rem;
  padding-left: 1rem;
}
.textarea{
    margin: 0.5em 0 1rem;
  width: 100%;
  height: auto !important;
}
.textarea_clk, .textarea_clk2 {
  display: none;
  margin: 0.5em 0 1rem;
  width: 100%;
  height: auto !important;
}
.form .guest {
  margin-bottom: 2rem;
}
.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: #333;
  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;
  display: block;
}
.submit_btn {
  width: 100%;
  display: block;
  margin: 0 auto 3rem;
  padding: 1.2em 1em !important;
  border-radius: 2.8rem !important;
  border: none!important;
  cursor: pointer;
  position: relative;
  color: #fff !important;
  font-size: 3rem !important;
  font-weight: 900;
  text-align: center;
  line-height: 1.2 !important;
  z-index: 9;
  background: url("../images/cta_btn.png") no-repeat center;
  background-size: contain;
}
.submit .bob-icon {
  position: absolute;
  right: 0;
  bottom: 3rem;
  width: 30%;
  z-index: 10;
}
.width100 {
  width: 100% !important;
}
.box_br input {
  width: 6%;
}
.box_br {
  margin-bottom: .1em;
  letter-spacing: 0;
}
.form .time-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.form .time-box input, .form .time-box .s-container {
  width: 49%;
}
.form .time-box input, .form .time-box .s-container select {
  line-height: 1.2;
  padding: 0.5em 0.7em;
  font-size: 1.6rem;
  min-height: 4.6rem;
}
/********************************

個人情報に関する同意

*********************************/
.consent {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  color: #333;
  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: 1px solid #333;
  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: #333;
}
.consentCheck #consentCheckbox {
  width: 10%;
}
/********************************

バイイン登録用

*********************************/
.buy-in-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: baseline;
  font-size: 1.4rem;
  color: #fff;
}
.buy-in-box .buy-in {
  width: 50%;
  margin-right: 1rem;
  text-align: right;
}
.buy-in-box .yen {
  color: #333;
  font-size: 1.4rem;
}
#companion, #companion2 {
  font-size: 1.4rem;
  text-align: left;
  border: 1px solid #b00020;
  color: #b00020;
  padding: .3em;
  text-indent: -1em;
  padding-left: 1.5em;
  background: #FFE4E1;
  margin: 0 auto 1em;
}
/********************************

バリデーション

*********************************/
.validation {
  display: block;
  width: 100%;
  padding: 1rem 1.4rem;
  color: #b00020;
  border: 3px solid #b00020;
  background: #ffd1dc;
  margin-bottom: 2rem;
}
.validation p {
  margin: 0 auto;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
}
/********************************

FOOTER

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

サンクスページ

**********************************/
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%;
}
main .wrapper_th {
  width: 100%;
  position: relative;
  padding: 10rem 0;
  height: 100vh;
}
.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;
  }
  .kv .subhead {
    letter-spacing: 0;
  }
  .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;
  }
  .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: calc(100vh*.7);
  }
  .kv_bg .hibiki {
    position: absolute;
    bottom: 10%;
  }
  .kv_bg .hibiki img {
    width: 70%;
    transform: translate(55%, 5%) scale(1);
    transform-origin: bottom;
  }
  .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: 23rem;
    left: 1.8rem;
  }
  .kv .subhead img {
    width: 50%;
  }
  header p {
    font-size: 1.6rem;
    margin-left: 5rem;
  }
  header p img {
    width: 58%;
  }
  .kv {
    max-width: 128rem;
    margin: 0 auto;
  }
  .kv .subhead {
    font-size: 2.8rem;
  }
  .kv .kv-ttl {
    width: 50%;
  }
  .kv .ex {
    font-size: 1.8rem;
    color: #fff;
    margin: 1rem 0;
    padding: 0 1.8rem;
  }
  button {
    width: 40%;
    margin: 4rem 0 2rem
  }
  button a {
    font-size: 1.8rem;
  }
  kv_bg {
    height: 476px;
  }
  .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;
  }
  .application img {
    width: 60%;
    margin: 0 auto 5rem;
    display: block;
}
  .form {
    max-width: 76rem;
    padding: 6rem;
  }
  .form label {
    font-size: 1.6rem;
  }
}
@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;
  }
  .terms_of_service {
    width: 76rem;
    margin: 0 auto 5rem;
    padding: 6rem;
  }
  .tos-ttl {
    font-size: 3rem;
  }
  .condition_box .row {
    font-size: 2rem;
  }
  .condition_box .row_sub {
    font-size: 1.8rem;
  }
  .ctw_table {
    font-size: 1.1vw;
  }
  .add-info ul li {
    font-size: 1.6rem;
  }
  .lb-box {
    padding: 6rem;
  }
  .header_img {
    position: relative;
    width: 76rem;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
  .header_img img {
    width: 100%;
    margin: 0 auto;
  }
  .ls_header .ls_header_ttl {
    font-weight: 900;
    font-size: 2.4rem;
  }
  .feature {
    width: 76rem;
    margin: 0 auto;
    display: block;
    position: relative;
    padding: 6rem;
    z-index: 999;
  }
  .losing_back .wrapper {
    width: 76rem;
    margin: 0 auto;
    position: relative;
  }
  .qa .wrapper .qa_box {
    width: 76rem;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .offer {
    width: 76rem;
    margin: 0 auto;
    position: relative;
    padding: 0;
  }
  .submit_btn {
    height: 12rem;
    border: none;
  }
  .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: 1260px) {
  .kv {
    max-width: 128rem;
    margin: 0 auto;
    height: 80vh;
    position: relative;
  }
  .kv_bg::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, 1) 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .kv .img_box {
    position: absolute;
    width: 60%;
    top: 0;
    right: 0;
  }
  .kv .img_box .hibiki {
    position: relative;
    width: 86%;
    z-index: 3;
    margin-top: 0rem;
  }
  .kv .img_box .hibiki img {
    width: 100%;
    transform: translate(16%, 0)scale(1);
  }
  .terms_of_service {
    width: 76rem;
    margin: 0 auto 5rem;
    padding: 6rem;
  }
  .kv .kv-ttl {
    width: 50%;
    margin: 0;
    z-index: 9;
  }
  .kv-btn {
    width: 45%;
    height: 10rem;
    display: flex;
    margin: 0 0 3rem;
  }
  .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%;
  }
}