@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital@1&family=Jost:wght@500&family=Noto+Sans+JP:wght@900&display=swap');

/*--------------------
*  共通
--------------------*/
body {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  color: #111;
  font-size: 13px;
  margin: 0;
  padding: 0;
  position: relative;
  background: #fff;
  overflow-x: hidden;
  color: #111;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #111;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h2 {
  margin: 0;
}

.text-none{
  position: absolute;
  z-index: -1;
}

.notesans8 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
}

.marker {
  display: inline;
  background: linear-gradient(rgba(0, 0, 0, 0) 40%, #F5FF00 40%);
}

.c_green {
  color: #43B6BA;
}

.c_blue {
  color: #137CD6;
}

.c_navy {
  color: #424D8B;
}

.c_black {
  color: #000;
}

.w_outline_2 {
  text-shadow:
    #fff 2px 0px, #fff -2px 0px,
    #fff 0px -2px, #fff 0px 2px,
    #fff 2px 2px, #fff -2px 2px,
    #fff 2px -2px, #fff -2px -2px,
    #fff 1px 2px, #fff -1px 2px,
    #fff 1px -2px, #fff -1px -2px,
    #fff 2px 1px, #fff -2px 1px,
    #fff 2px -1px, #fff -2px -1px;
}

.w_outline_3 {
  text-shadow:
    #fff 3px 0px, #fff -3px 0px,
    #fff 0px -3px, #fff 0px 3px,
    #fff 3px 3px, #fff -3px 3px,
    #fff 3px -3px, #fff -3px -3px,
    #fff 3px 3px, #fff -1px 3px,
    #fff 1px -3px, #fff -1px -3px,
    #fff 3px 1px, #fff -3px 1px,
    #fff 3px -1px, #fff -3px -1px;
}

.b_outline_1 {
  text-shadow:
    #000 1px 0px, #000 -1px 0px,
    #000 0px -1px, #000 0px 1px,
    #000 1px 1px, #000 -1px 1px,
    #000 1px -1px, #000 -1px -1px,
    #000 1px 1px, #000 -1px 1px,
    #000 1px -1px, #000 -1px -1px,
    #000 1px 1px, #000 -1px 1px,
    #000 1px -1px, #000 -1px -1px;
}

/*--------------------
*  ヘッダー
--------------------*/
header {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 60px;
}

.logo {
  position: absolute;
  left: 0;
}

.logo img {
  width: 270px;
  height: 100%;
  object-fit: cover;
}

/* 問い合わせフォーム遷移ボタン */
.contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 170px;
  height: 45px;
  margin-right: 10px;
  border: solid 1px #F2B079;
  border-radius: 3px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
  background: linear-gradient(#F48F3A, #FFB87E 10%, #FFCCA2 20%, #F48F3A, #CE6205);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.2s;
}

.contact_btn::before {
  display: block;
  content: "";
  position: absolute;
  right: 10px;
  width: 15px;
  height: 15px;
  background: url(https://icongr.am/jam/chevron-circle-right-f.svg?size=128&color=ffffff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact_btn:hover {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0);
}

.contact_btn.sp {
  display: none;
}

/*humburger*/
/*head*/
header {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 60px;
}

.header {
  display: flex;
  width: 100%;
  position: fixed;
}

.logo img {
  width: 270px;
  height: 100%;
  object-fit: cover;
}

.hamburger-menu {
  display: contents;
}

.menu-btn {
  right: 0px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  margin-left: auto;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #43b6ba;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

/*
.menu-btn:active{
  background-color: #e4fbfc;
}
*/
#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-content {
  width: 40%;
  height: 400px;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #e4fbfc;
  transition: all 0.5s;
  /*アニメーション設定*/
}

.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px black;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: black;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-weight: bold;
}

.menu-content ul li a:hover {
  color: rgba(0, 0, 0, 0.599);
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px black;
  border-right: solid 2px black;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

#menu-btn-check:checked~.menu-content {
  left: 60%;
  /*メニューを画面内へ*/
}

#menu-btn-check {
  display: none;
}

@media screen and (max-width: 768px) {
  header {
    height: 50px;
  }

  .logo img {
    width: 60vw;
    max-width: 200px;
    height: 50px;
    object-fit: cover;
  }

  .menu-content {
    width: 100%;
  }

  #menu-btn-check:checked~.menu-content {
    left: 0%;
    /*メニューを画面内へ*/
  }
}

/*--------------------
*  FV

#fv_main{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  max-height: calc(100vh - 25px - 60px - 100px - 130px);
  min-height: 35vw;
  padding-top: 25px;
  position: relative;
  background: linear-gradient(#E4FBFC,#62D5D5);
}

#fv_main::before{
  display: block;
  content:"";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-55deg,rgba(255,255,255,0) 2%,rgba(255,255,255,0.3) 2%,rgba(255,255,255,0.3) 10%,rgba(255,255,255,0) 10%,rgba(255,255,255,0) 12%,rgba(255,255,255,0.3) 12%,rgba(255,255,255,0.3) 14%,rgba(255,255,255,0) 14%,rgba(255,255,255,0) 87%);
}

#fv_main::after{
  display: block;
  content:"";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-55deg,rgba(255,255,255,0) 87%,rgba(255,255,255,0.3) 87%,rgba(255,255,255,0.3) 93%,rgba(255,255,255,0) 93%,rgba(255,255,255,0) 95%,rgba(255,255,255,0.3) 95%,rgba(255,255,255,0.3) 97%,rgba(255,255,255,0) 97%,rgba(255,255,255,0) 100%);
}
--------------------*/

/*--------------------
*  FV

#fv_main{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  max-height: calc(100vh - 25px - 60px - 100px - 130px);
  min-height: 35vw;
  padding-top: 25px;
  position: relative;
  background: linear-gradient(#E4FBFC,#62D5D5);
}

#fv_main::before{
  display: block;
  content:"";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-55deg,rgba(255,255,255,0) 2%,rgba(255,255,255,0.3) 2%,rgba(255,255,255,0.3) 10%,rgba(255,255,255,0) 10%,rgba(255,255,255,0) 12%,rgba(255,255,255,0.3) 12%,rgba(255,255,255,0.3) 14%,rgba(255,255,255,0) 14%,rgba(255,255,255,0) 87%);
}

#fv_main::after{
  display: block;
  content:"";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-55deg,rgba(255,255,255,0) 87%,rgba(255,255,255,0.3) 87%,rgba(255,255,255,0.3) 93%,rgba(255,255,255,0) 93%,rgba(255,255,255,0) 95%,rgba(255,255,255,0.3) 95%,rgba(255,255,255,0.3) 97%,rgba(255,255,255,0) 97%,rgba(255,255,255,0) 100%);
}
--------------------*/

#fv_main {
  /*
	max-height: calc(100vh - 25px - 60px - 100px - 130px);
	min-height: 49vw;
	*/
  background: #6dc7ca url(img/bgamaFV.jpg) no-repeat center center;
  background-size: cover;
}

/*--------------------
FV
---------------------*/
.fv_in {
  max-width: 1000px;
  margin: 0 auto;
}

.fv_firsttext {
  color: #fff;
  text-shadow: 3px 3px 3px #43b6b9;
  font-weight: bold;
}

.fv_firsttext p {
  font-size: 30px;
  margin-left: 7px;
  padding-top: 7px;
}

.fv_firsttext span {
  font-size: 45px;
  max-width: 1000px;
  display: block;
  margin: 10px auto;
  text-indent: -20%;
  padding-left: 25%;
  font-style: italic;
  line-height: 55px;
}

#fv_TopPC {
  width: 100%;
  margin: 0 auto;
}

#fv_TopSP {
  display: none;
}

.fv_Btm {
  width: 80%;
  margin: auto;
  background-color: #FFF;
  border-radius: 10px;
}

.fv_text {
  margin: 0 auto;
  background: #FFF;
  color: #6ec8cb;
  padding: 20px 0;
  text-align: center;
  font-size: 34px;
  font-weight: bold;
}

.fv_maintext {
  position: relative;
}
.fv_maintext h1{
  margin: 0;
}
.fv_maintext h1 .image-text {
  position: absolute;
  color: #fff;
  text-shadow: 4px 4px 0px rgba(235, 73, 72, 1);
  text-align: center;
  right: 0;
  left: 0;
  font-size: min(71px, 7.2vw);
  line-height: 1.4;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.fv_maintext h1 .image-text .big-text {
  font-size: min(85px, 8.7vw);
}
.fv_maintext h1 img {
  width: 100%;
  margin: 10px auto;
}
.fv_maintext .ado_chan {
  position: absolute;
  top: -180px;
  width: 135px;
  right: 165px;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .fv_maintext .ado_chan {
    right: 16.5vw;
  }
}
@media screen and (max-width: 768px) {
  .fv_maintext .ado_chan {
    top: -117px;
    width: 90px;
  }
}
@media screen and (max-width: 480px) {
  .fv_maintext .ado_chan {
    top: -103px;
    width: 80px;
    right: 0;
    left: 77vw;
  }
}
/* @media screen and (max-width:470px) {
    .fv_maintext .fv_maintext-title img{
  margin: -90px auto 10px;
}
} */

.fv_syokai,
.fv_nikaime {
  width: 100%;
}

.fv_syokai_wrapper {
  position: relative;
  text-align: center;
  margin-top: 1em;
}

.fv_syokai_wrapper img {
  width: 80%;
}

.fv_syokai_wrapper .line_banner {
  width: 100%;
}

.fv_syokai {
  display: flex;
  padding: 2em 1em;
  box-sizing: border-box;
  width: 80%;
  margin: 1em auto 0;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.fv_syokai .fv_syokai_percent .ppp02 {
  font-size: min(14vw, 150px);
}

.fv_syokai .fv_syokai_percent .relative {
  position: relative;
}

.fv_syokai .fv_syokai_percent .absolute {
  position: absolute;
  display: block;
  bottom: -1vw;
  right: -1em;
}

.fv_syokai .fv_syokai_percent .absolute .zero {
  font-size: 0.6em;
  display: flex;
  margin-bottom: -0.7em;
}

.fv_syokai_text {
  text-align: center;
  width: min(20vw, 200px);
}

.fv_syokai_text p {
  color: #fff;
  background-color: #43B6B9;
  font-size: min(2vw, 20px);
}

.fv_syokai_text img {
  width: 85%;
  margin-top: 5px;
}

.fv_syokai_wrapper .fv_3point {
  width: auto;
  position: absolute;
  right: 1em;
  top: -7em;
}

.fv_syokai_wrapper .fv_3point ul li {
  background-color: #EB4948;
}

.fv_nikaime {
  text-align: center;
  color: #43B6B9;
  background-color: #43B6B9;
  margin: 2.7em auto;
  width: 60%;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 1em 0;
}

.fv_nikaime_text {
  margin: auto;
  width: 130px;
}

.fv_nikaime_text p {
  background-color: #fff;
  width: 130px;
  font-weight: bold;
}

.fv_nikaime .fv_nikaime_percent .relative {
  position: relative;
}

.fv_nikaime .fv_nikaime_percent .absolute {
  position: absolute;
  display: block;
  bottom: -20px;
  right: -1em;
}

.fv_nikaime .fv_nikaime_percent .absolute .zero {
  font-size: 0.6em;
  display: flex;
  margin-bottom: -43px;
}

.fv_nikaime_percent .ppp02,
.fv_nikaime_percent .ppp03 {
  color: #fff;
}

.fv_3point {
  margin: 0 auto;
  width: 80%;
  margin-bottom: 2.7em;
}

.fv_3point ul {
  display: flex;
  justify-content: space-between;
}

.fv_3point ul li {
  background-color: #ff7b7a;
  border-radius: 50%;
  color: #fff;
  width: 200px;
  height: 200px;
  text-align: center;
  position: relative;
}

.fv_3point ul li span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 200px;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.4em;
}

.fv_Btm .handling h2 {
  text-align: center;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .fv_syokai .fv_syokai_percent .absolute .zero {
    margin-bottom: -0.5em;
  }

  .fv_nikaime .fv_nikaime_percent .absolute {
    bottom: -7px;
    right: -1em;
  }

  .fv_nikaime .fv_nikaime_percent .absolute .zero {
    margin-bottom: -14px;
  }

  .fv_firsttext p {
    font-size: 20px;
  }

  .fv_firsttext span {
    font-size: 25px;
    max-width: 1000px;
    display: block;
    margin: auto;
    text-indent: -24%;
    padding-left: 28%;
    line-height: 35px;
  }

  .fv_syokai_text {
    width: min(20vw, 110px);
    min-width: 75px;
  }

  .fv_syokai_text p {
    font-size: max(2.2vw, 1em);
  }

  .fv_syokai_wrapper {
    margin-top: 0;
  }

  .fv_syokai_wrapper .fv_3point {
    width: auto;
    position: absolute;
    right: 0.5em;
    top: -3.5em;
  }

  .fv_syokai_wrapper .fv_3point ul li {
    height: 110px;
    width: 110px;
  }

  .fv_syokai_wrapper .fv_3point ul li span {
    width: 110px;
  }

  .fv_nikaime {
    margin: 0.7em auto;
    width: 60%;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 1em 0;
  }

  .fv_nikaime_text {
    width: 130px;
  }

  .fv_3point {
    margin-bottom: 1em;
  }

  .fv_3point ul li {
    width: 25vw;
    height: 25vw;
  }

  .fv_3point ul li span {
    width: 25vw;
    font-size: 1.3em;
    line-height: 1.3em;
  }

  .fv_syokai .fv_syokai_percent .ppp02 {
    font-size: max(14vw, 54px);
  }
}

@media screen and (max-width: 370px) {
  .fv_syokai_wrapper .fv_3point ul li {
    height: 90px;
    width: 90px;
  }

  .fv_syokai_wrapper .fv_3point ul li span {
    width: 90px;
  }

  .fv_3point ul li span {
    font-size: 1em;
  }
}

.ppp00 {
  font-size: 140%;
  color: #f7c000;
  margin-left: 10px;
  margin-right: 10px;
}

.fv_paBox {
  padding: 10px 0;
  text-align: center;

  /* 追加する部分 */
  display: flex;
  justify-content: space-evenly;
}

.fv_paBoxIn {
  display: inline-block;
  background: #FFF;
  padding: 5px;
  text-align: center;
  width: 300px;

  /* 追加する部分 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.fv_paBoxIn img {
  width: 60%;
  filter: drop-shadow(0 3px 5px rgb(0 0 0 / 30%));
}

.fv_paBoxInTop h3 {
  font-size: 1.5em;
  font-weight: bold;
  color: #43b6ba;
  margin: 0;
}

.fv_paBoxInBtm {
  text-align: center;
}

.fv_paBoxInBtmOne {
  text-align: center;
  vertical-align: top;
  /* display: inline-block; */
  /* width: 45%; */
}

.ppp01 {
  background: #43b6ba;
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  margin-top: 18px;
}

.ppp02 {
  color: #fc4242;
  font-size: 74px;
  font-weight: bold;
  line-height: 100%;

  /* 追加する部分 */
  margin-top: 10px;
}

.ppp03 {
  font-size: 50%;
  margin-left: 2px;
}

.ppp02 {
  color: #fc4242;
  font-size: 74px;
  font-weight: bold;
  line-height: 100%;
  /* 追加する部分 */
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .fv_paBox {
    padding: 5px 0;
    text-align: center;
  }

  .fv_paBoxIn {
    /* display: block; */
    background: #FFF;
    text-align: center;
    width: 25%;
    margin: 2px auto;
  }

  .fv_paBoxIn img {
    width: 100%;
  }

  .fv_paBoxInTop {
    /* display: inline-block; */
    /* display: inline-block; */
    font-size: 15px;
    font-weight: bold;
    color: #43b6ba;
    width: 100%;
    /* 追加する部分 */
    word-wrap: break-word;
  }

  .fv_paBoxInBtm {
    display: inline-block;
    text-align: center;
    width: 100%;
  }

  .fv_paBoxInBtmOne {
    text-align: center;
    vertical-align: middle;
    /* width: 45%; */
    /* width: 45%; */
  }
}


.hiddenPc {
  visibility: hidden;
  display: none;
  width: 0px;
  height: 0px;
}

.hiddenSp {
  visibility: inherit;
  display: inherit;
}

/*.google_button{
  background: linear-gradient(#3d3d3d,#000000);
}*/

/*.google_button::before{
  display: block;
  content:"";
  position: absolute;
  left: 15px;
  width: 40px;
  height: 45px;
  background: url(https://icongr.am/simple/google.svg?size=128&color=ffffff&colored=false);
  background-position: center top;
  background-repeat:no-repeat;
  background-size: contain;
}*/

#fv_message_area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  left: 30px;
}

#fv_main_message {
  width: 39vw;
}

#fv_main_message img {
  width: 100%;
}

#realtime {
  position: absolute;
  bottom: 30px;
  left: 23vw;
  width: 40vw;
  height: 22vw;
  padding-top: 2.0vw;
  background: url(img/realtime.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#transfer_time {
  position: relative;
  width: 100%;
  margin-bottom: 1vw;
  text-align: center;
  color: #fff;
  font-size: 1.5vw;
  font-weight: bold;
}

#transfer_time::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0px;
  left: 15%;
  width: 70%;
  height: 1px;
  background: #fff;
}

#transfer_time::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 15%;
  width: 70%;
  height: 1px;
  background: #fff;
}

#transfer_time span {
  color: #F5C128;
  font-size: 2vw;
}

#cash_rate_area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cash_rate_wrap {
  width: 10vw;
  height: 10vw;
  margin: 0px 5px;
  border-radius: 50%;
  border: solid 2px #fff;
  background: linear-gradient(#fff, #fff 75%, #EAEAEA 75%);
}

.cash_rate_amazon {
  color: #FB4545;
}

.cash_rate_itunes {
  color: #086C6F;
}

.cash_rate_wrap p:nth-child(1) {
  margin-top: 2.5vw;
  text-align: center;
  font-weight: bold;
  line-height: 0px;
  font-size: 0.9vw;
}

.cash_rate {
  position: relative;
  bottom: 5px;
  margin-top: 0px;
  padding-right: 7px;
  text-align: center;
  font-size: 4.3vw;
  font-weight: bold;
}

.cash_rate span {
  position: absolute;
  right: 0.8vw;
  bottom: 1vw;
  font-size: 1.5vw;
}

.cash_rate_wrap p:nth-last-child(1) {
  position: relative;
  bottom: 9px;
  text-align: center;
  font-size: 0.6rem;
}

#fv_operator {
  width: 26%;
}

#fv_bar {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100px;
  position: relative;
  background: #43B6BA;
}

#fv_bar_img {
  width: 23%;
  margin: 0px 10px;
  position: relative;
  top: -50%;
}

.fv_circle {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 20vw;
  max-width: 300px;
  height: 20vw;
  max-height: 300px;
  position: relative;
  right: 70px;
  top: -3vw;
  margin: 0px 1px;
  border-radius: 50%;
  z-index: 1;
}

.fv_circle::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}

#fv_bar_bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 130px;
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

#circle_blue {
  border: solid 5px rgba(4, 94, 198, 0.5);
}

#circle_blue::before {
  background-image: url(img/card_bg_b.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.fv_circle p {
  width: 100%;
  text-align: center;
}

.fv_circle p:nth-child(1) {
  font-size: 1.7vw;
  line-height: 1px;
  font-weight: bold;
}

#circle_blue p:nth-child(2) {
  margin: 20px 0px;
  font-size: 4.5vw;
  line-height: 4.5vw;
  color: #1275CB;
}

.fv_circle p:nth-child(3) {
  font-size: 0.9rem;
  line-height: 0.9rem;
}

@media screen and (min-width: 1280px) {
  .fv_circle p:nth-child(1) {
    font-size: 1.5rem;
  }

  #circle_green p:nth-child(2),
  #circle_red p:nth-child(2),
  #circle_blue p:nth-child(2) {
    font-size: 4rem;
    line-height: 4rem;
  }

  #circle_red span {
    margin-top: 1.5rem;

  }
}

@media screen and (min-width: 769px) {
  #fv_bar_bottom {
    align-items: flex-end;
  }
}

/* 申し込み遷移ボタン */
.button_area_wrap {
  margin-top: 4em;
  background: linear-gradient(#B1E0F0, #DBF0FF);
}

.button_area_wrap2 {
  margin-top: 0;
  background: #43B6B9;
}

.button_area_wrap h2 {
  text-align: center;
  color: #EB4948;
  font-size: 1.8rem;
  padding-top: 20px;
  font-weight: 600;
  text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff;
}

#fv_main .button_area_wrap {
  margin-top: 0;
  background: none;
  padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .button_area_wrap h2 {
    padding-top: 5px;
  }
}

@media screen and (max-width: 500px) {
  .button_area_wrap h2 {
    font-size: 1.2rem;
  }
}

.button_area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.button_area a {
  width: 28%;
  margin: 0.2rem;
}

.button_area img {
  width: 100%;
}

.button_area img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 3px 5px rgb(0 0 0 / 30%));
}

.main_button {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
  width: 330px;
  height: 75px;
  margin: 0px 10px;
  /*padding-left: 10px;*/
  /*border: solid 3px #fff;*/
  border-radius: 7px;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  transition: 0.3s;
}

.main_button:hover {
  transform: scale(1.03);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.main_button span {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  text-align: center;
}

/*.main_button::after{
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  background: url(https://icongr.am/jam/chevron-right.svg?size=128&color=ffffff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}*/

/*.amazon_button{
  background: linear-gradient(#FB4444,#BC2F2F);
}*/

/*.amazon_button::before{
  display: block;
  content:"";
  position: absolute;
  left: 15px;
  width: 40px;
  height: 40px;
  background: url(https://icongr.am/simple/amazon.svg?size=128&color=ffffff&colored=false);
  background-position: center;
  background-repeat:no-repeat;
  background-size: contain;
}*/

/*.itunes_button{
  background: linear-gradient(#137CD6,#0A3E6B);
}*/

/*.itunes_button::before{
  display: block;
  content:"";
  position: absolute;
  left: 15px;
  width: 40px;
  height: 45px;
  background: url(https://icongr.am/simple/apple.svg?size=128&color=ffffff&colored=false);
  background-position: center top;
  background-repeat:no-repeat;
  background-size: contain;
}*/







/*--------------------
*  追従
--------------------*/
#float_bottom_button {
  display: block;
}

.float_bottom_button_area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0px;
  background: rgba(67, 182, 186, 0.7);
  z-index: 3;
  transition: 0.3s;
}


.float_bottom_button_area .main_button {
  width: 43%;
  max-width: 200px;
  height: 12vw;
  max-height: 55px;
  margin: 0px;
  /*border: solid 2px #fff;*/
  border-radius: 5px;
  font-size: 0.7rem;
  margin-right: 0.8vw;
}

.float_bottom_button_area img {
  width: 100%;
}

.float_bottom_button_area .main_button:last-child {
  margin-right: 0;
}

.float_bottom_button_area .main_button span {
  font-size: 0.7rem;
}

.float_bottom_button_area .main_button::before {
  width: 23px;
  height: 23px;
  left: 1.5vw;
  background-position: center;
}

.float_bottom_button_area .main_button::after {
  right: 0.5vw;
}

/*--------------------
*  ナビゲーション
--------------------*/
#nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 70px;
  background: #F2F2F2;
}

#nav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}

#nav li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}

#nav li::before {
  display: block;
  content: "";
  width: 2px;
  height: 10px;
  position: relative;
  background: #000;
}

#nav li:nth-child(1)::before {
  display: none;
}

#nav li a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  padding: 0px 40px;
  font-size: 0.9rem;
  font-weight: bold;
}

#nav li a:hover {
  opacity: 0.7;
}

#nav_button a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 180px;
  height: 50px;
  padding-left: 20px;
  position: relative;
  border-radius: 45px;
  font-weight: bold;
  background: #fff;
  transition: 0.2s;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2),
    0px -3px 3px rgba(255, 255, 255, 0.9);
}

#nav_button a:hover {
  background: #FFFF3E;
}

#nav_button a::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 20px;
  background: url(https://icongr.am/clarity/email.svg?size=128&color=000000);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


/*--------------------
*  換金率
--------------------*/
#rate {
  padding: 100px 0px;
  background:
}

#rate2 {
  background-color: #43B6B9;
  padding-bottom: 40px;
}

#rate2 .under_line {
  margin-bottom: 10px;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 460px) {
  #rate2 .under_line {
    font-size: 1.2rem;
  }
}

#rate_table {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1rem;
}

#rate_table th {
  padding: 10px 0px;
  background: #116bb8;
  color: #fff;
}

#rate_table .th_gift_type {
  padding: 5px 0px;
  background: #798792;
}

#rate_table td {
  text-align: center;
  background: #F2F2F2;
}

.rate_wrap {
  margin: 0 auto;
  padding: 2em 0 4em;
  width: 80%;
  text-align: center;
  background-color: #fff;
}

.rate_wrap .under_line .thin {
  border-bottom: 3px solid #43b6b9;
  width: 90%;
  max-width: 380px;
  margin: auto;
  margin-bottom: 1em;
  position: relative;
}

.rate_wrap .changing-circle-table {
  position: absolute;
  left: auto;
  right: -4em;
}

@media screen and (max-width: 535px) {
  .rate_wrap .changing-circle-table {
    right: -2em;
    top: -3.2em;
  }
}

/* ↓table */
.rate_wrap table {
  border-collapse: collapse;
  border: 2px solid #43b6b9;
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  width: 65%;
  margin: auto;
}

.rate_wrap thead,
.rate_wrap tfoot {
  background-color: #43b6b9;
  color: #fff;
}

.rate_wrap th {
  border: 1px solid #43b6b9;
  padding: 8px 10px;
}

.rate_wrap td {
  border: 1px solid #43b6b9;
  padding: 0;
}

.rate_wrap thead th {
  border: unset;
  border-left: 1px solid #fff;
  min-width: 125px;
}

.rate_wrap .table_img {
  padding: 0;
}

.rate_wrap .table_img img {
  width: 55%;
  border-radius: 15px;
}

.rate_wrap .table_img h3 {
  letter-spacing: normal;
  font-size: min(1.5em, 1.5vw);
  color: #555;
  margin: 0;
}

.rate_wrap .syokai,
.rate_wrap .nikaime,
.rate_wrap thead th {
  color: #fff;
  font-size: 1.8em;
}

.rate_wrap .syokai {
  background-color: #f24146;
}

.rate_wrap .nikaime {
  background-color: #43b6b9;
}

@media screen and (max-width: 880px) {
  .rate_wrap .table_img h3 {
    font-size: 1em;
  }
}

@media screen and (max-width: 768px) {
  .rate_wrap table {
    width: 90%;
  }

  .rate_wrap .table_img img {
    width: 40%;
    max-width: 150px;
    min-width: 75px;
    border-radius: 10px;
  }

  .rate_wrap .table_img p {
    font-size: 1em;
  }

  .rate_wrap .syokai,
  .rate_wrap .nikaime,
  .rate_wrap thead th {
    font-size: 1em;
  }

  .rate_wrap .syokai,
  .rate_wrap .nikaime {
    padding: 0.4em 0;
  }

  .rate_wrap thead th {
    min-width: 75px;
  }
}

/* ↑table */

#rate2 ul {
  display: flex;
  justify-content: space-evenly;
}

#rate2 li {
  width: 17vw;
  padding: 0.5% 0.5% 0px 0.5%;
  text-align: center;
}

#rate2 li a {
  display: block;
  position: relative;
  width: 100%;
  height: 16.8vw;
  overflow: hidden;
  background: #fff;
  border: 0.6vw solid #3379bf;
  color: #000;
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: none;
}

.syokai_rate {
  border: 0.6vw solid #3379bf;
  border-image: linear-gradient(60deg, #b8751e 0%, #ffce08 37%, #fefeb2 47%, #fafad6 50%, #fefeb2 53%, #e1ce08 63%, #b8751e 100%);
  border-image-slice: 1;
}

#rate2 .rate_icon {
  display: block;
  float: left;
  width: 20%;
  border-radius: 0.3vw;
}

li .gtext {
  position: relative;
  float: right;
  width: calc(95% - 2.8vw);
  height: 2.8vw;
  padding: 0;
}

p.price {
  background: #f7c000;
  color: #FFF;
  font-size: 2vw;
  font-weight: bold;
  padding: 0.3rem 1.5rem;
  width: 60%;
}

p.price2 {
  background: #9e9e9e;
  color: #FFF;
  font-size: 2vw;
  font-weight: bold;
  padding: 0.3rem 1.5rem;
  width: 60%;
}

.rate_detail {
  display: flex;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
}

.p_rate {
  font-size: 5vw;
  font-weight: bold;
}

.nikai_rate {
  border: 0.6vw solid #3379bf;
  border-image: linear-gradient(60deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
  border-image-slice: 1;
}

@media screen and (max-width: 1200px) {
  #rate2 li {
    width: 20vw;
  }
}

@media screen and (max-width: 991px) {
  .rate_wrap {
    width: 90%;
  }

  #rate2 li {
    width: 22vw;
  }

  p.price {
    padding: 0.3rem 1.0rem;
  }

  p.price2 {
    padding: 0.3rem 1.0rem;
  }
}

@media screen and (max-width: 768px) {
  #rate2 {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 450px) {
  #rate2 li {
    width: 30vw;
    padding: 0.5% 0.5% 0px 0.5%;
    text-align: center;
  }

  p.price {
    padding: 0.3rem 0.5rem;
    font-size: 1.5vw;
  }

  p.price2 {
    padding: 0.3rem 0.5rem;
    font-size: 1.5vw;
  }
}

.mb20 {
  margin-bottom: 0.8rem;
}

/*--------------------
*  約束
--------------------*/
#promise {
  clear: both;
  /*display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;*/
  position: relative;
  padding: 60px 0px;
  background: url(img/bg_buildings.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

#promise::before {
  display: block;
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  background: #43B6BA;
}

#promise::after {
  display: block;
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  background: #43B6BA;
}

#promise_area {
  width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}

#promise_area::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -35px;
  left: calc(50% - 70px);
  border-top: solid 45px #43B6BA;
  border-left: solid 70px transparent;
  border-right: solid 70px transparent;
}

#promise_area_bar {
  padding: 10px;
  /*background: #fff;*/
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}

#h_promise {
  padding: 5px 10px;
  /*background: #43B6BA;*/
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

#h_promise .c_navy {
  margin: 0px 5px;
  font-size: 5rem;
  line-height: 5rem;
}

#h_promise .c_black {
  margin: 0px 5px;
  font-size: 3.2rem;
}

#promise_ul_area {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 60px;
}

#promise_ul_area ul {
  margin: 0px 20px;
}

#promise_ul_area li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 10px 0px;
  font-weight: bold;
  font-size: 1rem;
}

#promise_ul_area li::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url(img/checkbox.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*new promise pc*/
#promise .sp {
  display: none;
}

#promise .leadIMage {
  margin-bottom: 40px;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

@media screen and (min-width: 1401px) {
  #promise .leadIMage {
    width: 80%;
  }
}

#promise .leadIMage li {
  margin-left: 6px;
  display: block;
  width: 25%;
  background: #e4fbfc;
}

#promise .leadIMage li:nth-child(2) {
  margin-left: 25px;
}

#promise .leadIMage li:nth-child(3) {
  margin-left: 25px;
}

#promise .leadIMage li div {
  margin: 20px 0 0 -5px;
  padding: 5px;
  background: #f7c000;
  color: #FFF;
  width: 103%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 2000px) {
  #promise .leadIMage li div {
    width: 102%;
  }
}

@media screen and (max-width: 1401px) {
  #promise .leadIMage li div {
    width: 103%;
  }
}

@media screen and (max-width: 1400px) {
  #promise .leadIMage li div {
    width: 104%;
  }
}

@media screen and (max-width: 1200px) {
  #promise .leadIMage li div {
    width: 105%;
  }
}

@media screen and (max-width: 1000px) {
  #promise .leadIMage li div {
    width: 106%;
  }
}

#promise .leadIMage li img {
  display: block;
  margin: 17px auto 5px;
  width: 120px;
  height: 120px;
}

#promise .leadIMage li div:before {
  content: url(https://img.phoenix.webcrew.co.jp/17800/images/contents/about_corner_left.png);
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 0;
}

#promise .leadIMage li div:after {
  content: url(https://img.phoenix.webcrew.co.jp/17800/images/contents/about_corner_right.png);
  position: absolute;
  top: 100%;
  right: 0;
  font-size: 0;
}

#promise .leadIMage li h3 {
  margin: 0;
  padding-bottom: 15px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 25%;
  padding: 20px 0 15px;
  font-size: 1.2rem;
  font-weight: normal;
}

#promise .leadIMage li div span {
  font-size: 130%;
  vertical-align: middle;
}

#promise .leadIMage li div span:last-child {
  font-size: 157%;
  text-align: left;
}

/*new promise sp*/
@media screen and (max-width: 1000px) {
  #promise .pc {
    display: none;
  }

  #promise .sp {
    display: block;
  }

  .leadImage {
    padding: 0 4.8% 6%;
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
  }

  .leadImage li {
    margin-bottom: 5%;
    width: 100%;
    min-height: 90px;
    display: table;
    background: #C5E2E4;
    position: relative;
  }

  .leadImage li div:nth-child(1) {
    padding-top: 7%;
    width: 16.1%;
    height: 93%;
    background: #FF8000;
    position: absolute;
    top: -3px;
    left: 2.65%;
    box-sizing: border-box;
    text-align: center;
  }

  .leadImage li div:nth-child(1):after {
    content: "";
    width: 3px;
    height: 3px;
    display: block;
    background: url(https://img.phoenix.webcrew.co.jp/17800/images/sp/label_shadow.png) no-repeat 0 0;
    background-size: 100% auto;
    position: absolute;
    right: -3px;
    top: 0;
  }

  .leadImage li div:nth-child(2) {
    width: 43.06%;
    text-align: right;
    box-sizing: border-box;
  }

  .leadImage li div:nth-child(2) img {
    margin-right: 7%;
    width: 45%;
    padding: 5% 0;
    height: auto;
    vertical-align: bottom;
  }

  .leadImage li h3 {
    padding: 7.3% 2% 7.3% 0;
    line-height: 1.5;
    box-sizing: border-box;
    font-size: 3vw;
    font-weight: normal;
  }

  .leadImage li div:nth-child(2),
  .leadImage li h3 {
    display: table-cell;
    vertical-align: middle;
  }

  .leadImage li div:nth-child(1) span:nth-child(3) {
    font-size: 130%;
  }

  .leadImage li div:nth-child(1) span:nth-child(1) {
    margin-bottom: 10%;
    display: block;
    font-size: 100%;
  }

  .leadImage li div:nth-child(1) span:nth-child(2) {
    font-size: 100%;
  }

  .leadImage li div:nth-child(1) span {
    color: #FFF;
    font-weight: 500;
    line-height: 1;
  }
}

@media screen and (max-width: 500px) {
  .leadImage {
    width: 90%;
  }

  .leadImage li h3 {
    font-size: 4vw;
  }
}

/*--------------------
*  3STEP
--------------------*/
#step {
  padding: 80px 0px 40px 0px;
  /*background: url(img/wall_bg.jpg);*/
  background-color: #F2F2F2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#h_step {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

#h_step::before {
  display: block;
  content: "";
  width: 2px;
  height: 60px;
  position: absolute;
  left: -70px;
  bottom: 5px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #000;
}

#h_step::after {
  display: block;
  content: "";
  width: 2px;
  height: 60px;
  position: absolute;
  right: -70px;
  bottom: 5px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}


#h_step h2 {
  display: block;
  text-align: center;
}

#h_step_min {
  color: #EB4948;
}

#h_step .w_outline_2 {
  font-size: 3.5rem;
  color: #000;
}

.each_step {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  align-items: flex-end;
  height: 200px;
  width: 500px;
  position: relative;
  padding: 25px;
  padding-top: 30px;
  margin: 80px auto;
  border-radius: 10px;
  background: #fff;
}

.each_step3 {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  align-items: flex-end;
  height: 200px;
  width: 500px;
  position: relative;
  padding: 25px;
  padding-top: 30px;
  margin: 80px auto;
  border-radius: 10px;
  background: #fff;
}

.each_step::before {
  display: block;
  content: "";
  width: 5px;
  height: 30px;
  position: absolute;
  bottom: -55px;
  left: calc(50% - 13px);
  border-radius: 5px;
  background: #000;
  -ms-transform: rotate(-55deg);
  -webkit-transform: rotate(-55deg);
  transform: rotate(-55deg);
}

.each_step::after {
  display: block;
  content: "";
  width: 5px;
  height: 30px;
  position: absolute;
  bottom: -55px;
  right: calc(50% - 13px);
  border-radius: 5px;
  background: #000;
  -ms-transform: rotate(55deg);
  -webkit-transform: rotate(55deg);
  transform: rotate(55deg);
}



.each_step_img {
  width: 160px;
  height: 160px;
}

.each_step_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.each_step_text {
  height: 100%;
  width: calc(100% - 180px);
  margin-left: 30px;
}

.each_step_text h3 {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  height: 40px;
  margin: 0;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.3rem;
}

.each_step_no {
  margin-right: 5px;
  padding-top: 2px;
  font-size: 1.5rem;
  line-height: 1rem;
}

.each_step_text p {
  height: calc(100% - 70px);
  padding: 15px;
  border-radius: 5px;
  background: #F7F7F7;
  font-size: 120%;
}

#step .button_normal {
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 40px;
}

.button_normal {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 350px;
  position: relative;
}


.button_normal a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 80px;
  border-radius: 80px;
  margin: 0 auto;
  position: relative;
  font-size: 1.3rem;
  font-weight: bold;
}

/*--------------------
*  よくある質問
--------------------*/
#faq {
  padding: 60px 0px;
}

#faq h2 {
  margin-bottom: 80px;
  font-size: 1.5rem;
  text-align: center;
}

#faq_area {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.faq_ul {
  margin: 0px 15px;
  font-size: 0.9rem;
}

.faq_ul li {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  border-bottom: dashed 1px #D8D8D8;
}

.faq_q {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.faq_q::before {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  content: "Q";
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 50%;
  background: #43B6BA;
  font-size: 2.2rem;
  font-family: 'Jost', sans-serif;
  color: #fff;
}

.faq_q:hover {
  background: RGBA(242, 242, 242, 0.4);
}

.faq_q label {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 300px;
  padding: 30px;
  padding-left: 60px;
  position: relative;
  cursor: pointer;
}

.faq_q label span {
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  right: 10px;
  background: #FC4242;
}

.faq_q label span::before {
  display: block;
  content: "";
  height: 20px;
  width: 2px;
  position: absolute;
  right: 9px;
  top: -9px;
  background: #FC4242;
  transition: 0.3s;
}

.faq_q label h3{
  margin: 0;
  font-weight: bold;
  font-size: 1em;
}

.faq_checkbox {
  display: none;
}

.faq_a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 300px;
  height: 0;
  padding-right: 20px;
  padding-left: 60px;
  position: relative;
  opacity: 0;
  font-weight: bold;
  -ms-transform-origin: top;
  -webkit-transform-origin: top;
  transform-origin: top;
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transition: 0.3s;
}

.faq_a::before {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  content: "A";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0px;
  border-radius: 50%;
  background: #FC4242;
  font-size: 2.2rem;
  font-family: 'Jost', sans-serif;
  color: #fff;
}

[id^="faq_checkbox_"]:checked~.faq_a {
  height: auto;
  min-height: 50px;
  padding: 20px;
  padding-left: 60px;
  opacity: 1;
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

[id^="faq_checkbox_"]:checked~.faq_q label span::before {
  opacity: 0;
}

/*twitter*/
.twitter {
  width: 60%;
  margin: 0 auto;
  padding-top: 40px;
}

@media screen and (max-width: 1000px) {
  .twitter {
    width: 90%;
    margin: 0 auto;
    padding-top: 40px;
  }
}

/*--------------------
*  誘導
--------------------*/
#yudo {
  margin-top: 40px;
  background: #43B6BA;
}

#yudo_inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

#ribbon {
  max-width: 700px;
  position: relative;
  top: -15px;
}

#yudo_inner_left .button_normal {
  margin: 0 auto;
  margin-bottom: 40px;
}

.w_button a::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  background: url(https://icongr.am/jam/chevron-right.svg?size=128&color=000000);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.w_button a {
  background: #fff;
  transition: 0.3s;
}

.w_button a:hover,
.tel_button a:hover {
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.5),
    0px -3px 7px rgba(255, 255, 255, 0.4);
}

#yudo_inner_left .tel_button {
  margin-bottom: 20px;
}

.tel_button {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 350px;
  margin: 0 auto;
  position: relative;
}

.tel_button a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 80px;
  border-radius: 80px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  transition: 0.3s;
}

.tel_button_left {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding-top: 7px;
  position: absolute;
  left: 20px;
  object-fit: contain;
}

.tel_button_right p {
  text-align: center;
}

.tel_button_right p:nth-child(1) {
  font-size: 0.8rem;
}

.tel_button_right p:nth-child(2) {
  font-size: 1.3rem;
}

#yudo_inner_right p {
  width: 350px;
  height: 100%;
  position: relative;
}

#yudo_inner_right img {
  width: 350px;
  position: absolute;
  bottom: 0;
}

/*--------------------
*  会社概要
--------------------*/
#company {
  padding: 100px 0;
  /* padding-bottom: 150px; */
  background: #F2F2F2;
}

#company h2 {
  margin-bottom: 80px;
  font-size: 1.5rem;
  text-align: center;
}

#company table {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: bold;
  border-spacing: 5px;
}

#company th {
  width: 150px;
  padding: 10px 5px;
  background: #fff;
}

#company td {
  padding: 0px 10px;
  border-bottom: solid 1px #000;
}

/*--------------------
*  問い合わせ
--------------------*/
#contact_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 200px);
  padding: 100px 0;
}

#contact h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 80px;
}

#contact_area {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
}

#contact_area p {
  font-size: 0.7rem;
}

#contact_form_area {
  border-radius: 10px;
  background: #f2f2f2;
  padding: 50px 70px;
  font-size: 16px;
}

#contact_form_area table {
  margin-bottom: 30px;
}

#contact_form_area tr {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
}

#contact_form_area th {
  width: 40%;
  text-align: left;
}

#contact_form_area td {
  width: 60%;
  min-height: 35px;
}

#contact_form_area td input:not([type=radio]),
textarea,
select {
  width: 100%;
  height: 35px;
  padding: 2px 3px;
  border: solid 1px #707070;
  border-radius: 0px;
  background: #fff;
  box-sizing: border-box;
  resize: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 17px;
}

select {
  background-image: url(https://icongr.am/jam/chevron-down.svg?size=128&color=555555);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: right 5px center;
}

#contact_form_area td input[type=radio] {
  margin-right: 10px;
}

textarea {
  height: 130px;
}

.hissu {
  margin-right: 10px;
  color: #e85f5f;
}

#submit_button {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

#submit_button::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  background: url(https://icongr.am/jam/chevron-right.svg?size=128&color=ffffff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#submit_button input {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 300px;
  height: 70px;
  margin: 0 auto;
  position: relative;
  border-radius: 70px;
  border: none;
  outline: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: #FC4242;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  transition: 0.2s;
  cursor: pointer;
}

#submit_button input:hover {
  opacity: 0.8;
}

#contact_link_area {
  margin-top: 5px;
  text-align: center;
}

#contact_link_area a {
  margin: 0px 2px;
  padding-bottom: 3px;
  border-bottom: dashed 1px #111;
  font-size: 0.8rem;
  transition: 0.3s;
}

#contact_link_area a:hover {
  color: #FC4242;
  border-bottom: dashed 1px #FC4242;
}


/*--------------------
*  内容確認
--------------------*/
#confirmation {
  padding: 100px 0px;
}

#confirmation h2 {
  text-align: center;
  font-size: 1.5rem;
}

#confirmation_form_area {
  width: 600px;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 10px;
  background: #f2f2f2;
  padding: 50px 70px;
  font-size: 16px;
}

#confirmation_form_area table {
  width: 100%;
  margin-bottom: 30px;
}

#confirmation_form_area tr {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  border-bottom: solid 1px #fff;
}

#confirmation_form_area th {
  width: 30%;
  padding: 15px;
  text-align: left;
}

#confirmation_form_area td {
  width: 70%;
  padding: 15px;
}

#back_button {
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 10px;
}

#back_button a {
  padding: 5px 0px;
  border-bottom: dashed 1px #111;
  font-size: 0.9rem;
  transition: 0.2s;
}

#back_button a:hover {
  color: #FC4242;
  border-bottom: dashed 1px #FC4242;
}

/*--------------------
*  サンクスページ
--------------------*/
#thanks {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 100px 0px;
}

#thanks h2 {
  margin-bottom: 80px;
  text-align: center;
  font-size: 1.5rem;
}

#thanks_message {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: 420px;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
}

#thanks_message p {
  margin-top: 10px;
  padding: 0px 5px;
  font-size: 0.7rem;
  text-align: left;
  font-weight: normal;
  max-width: 420px;
}

#red_button a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 300px;
  height: 70px;
  margin: 0 auto;
  position: relative;
  border-radius: 70px;
  background: #FC4242;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  transition: 0.2s;
}

#line_button a img {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 300px;
  margin: 0 auto 30px auto;
  position: relative;
  transition: 0.2s;
}

#line_button a img:hover {
  opacity: 0.8;
}

#red_button a:hover {
  opacity: 0.8;
}

#red_button a::after {
  display: block;
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  right: 15px;
  top: 0;
  background: url(https://icongr.am/jam/chevron-right.svg?size=128&color=ffffff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*--------------------
*  プライバシーポリシー、利用規約
--------------------*/
#privacypolicy,
#terms {
  padding: 100px 0px;
  background: url(img/wall_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#privacypolicy h2,
#terms h2 {
  text-align: center;
  margin-bottom: 80px;
  font-size: 1.5rem;
}

#privacypolicy_wrap,
#terms_wrap {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
}

#privacypolicy_wrap h3 {
  margin: 20px 0px 10px 0px;
}

#privacypolicy_wrap p,
#terms_wrap p {
  font-size: 0.9rem;
  line-height: 1.5rem;
}

#terms_wrap ul {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

#terms_wrap li {
  list-style: disc;
}


@media screen and (max-width: 991px) {

  /*--------------------
  *  FV

  #fv_main{
    height: 35vw;
    max-height: calc(100vh - 25px - 50px - 100px - 130px);
    padding-top: 10px;
  }
  --------------------*/
  #realtime {
    bottom: 30px;
    left: 25vw;
    width: 310px;
    height: 200px;
    padding-top: 15px;
  }

  #transfer_time {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }

  #transfer_time::before {
    bottom: 2px;
  }

  #transfer_time::after {
    bottom: 0px;
  }

  #transfer_time span {
    font-size: 1.6rem;
  }

  .cash_rate_wrap {
    width: 100px;
    height: 100px;
    margin: 0px 5px;
  }

  .cash_rate_wrap p:nth-child(1) {
    margin-top: 25px;
    font-size: 0.6rem;
  }

  .cash_rate {
    position: relative;
    bottom: 3px;
    margin-top: 3px;
    font-size: 2.5rem;
  }

  .cash_rate span {
    bottom: 8px;
    font-size: 0.8rem;
  }

  .fv_circle {
    width: 20vw;
    max-width: 200px;
    height: 20vw;
    max-height: 200px;
  }

  .fv_circle p:nth-child(1) {
    line-height: 1rem;
  }

  #circle_blue p:nth-child(2) {
    margin: 5px 0px;
    font-size: 2.3rem;
    line-height: 2rem;
  }

  .fv_circle p:nth-child(3) {
    margin-top: 5px;
    font-size: 0.8rem;
  }

  /*--------------------
  *  ナビゲーション
  --------------------*/
  #nav li a {
    padding: 0px 30px;
  }
}

@media screen and (max-width: 768px) {
  .sp_block {
    display: block;
  }

  #step .button_normal {
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 20px;
  }

  .button_normal {
    /*width: 250px;*/
  }

  .button_normal a {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 65px;
    border-radius: 80px;
    font-size: 1.1rem;
  }

  .tel_button {
    width: 250px;
  }

  .tel_button a {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 65px;
    border-radius: 80px;
    font-size: 1.1rem;
  }

  .main_button {
    width: 290px;
    margin: 5px;
  }

  /*--------------------
  *  ヘッダー
  --------------------*/
  header {
    height: 50px;
  }

  .logo img {
    width: 60vw;
    max-width: 200px;
    height: 100%;
    object-fit: cover;
  }

  .contact_btn {
    width: 30px;
    height: 30px;
    padding: 5px;
    margin-right: 7px;
  }

  .contact_btn img {
    width: 100%;
    height: 100%;
  }

  .contact_btn::before {
    display: none;
  }

  .contact_btn.pc {
    display: none;
  }

  .contact_btn.sp {
    display: block;
  }


  /*--------------------
  *  FV

  /*--------------------
  *  FV

  #fv_main{
    display: block;
    height:inherit;
    min-height: inherit;
    max-height:inherit;
  }

  #fv_main::before,  #fv_main::after{
    display: none;
  }
  --------------------*/

  #fv_main {
    /*
  max-height: calc(100vh - 25px - 60px - 100px - 130px);
  min-height: 49vw;
  */
    background: #6dc7ca url(img/bgamaFV.jpg) no-repeat center center;
    background-size: cover;
  }


  .fv_in {
    width: 100%;
    margin: 0 auto;
  }

  .fv_firstImg {
    width: 95%;
    margin: 0 auto;
  }

  .fv_Btm {
    width: 100%;
  }


  #fv_TopPC {
    display: none;
  }

  #fv_TopSP {
    visibility: inherit;
    display: inherit;
    width: 100%;
    margin: 0 auto;
  }

  .fv_text {
    padding: 1px 0;
    font-size: 18px;
  }

  .ppp00 {
    font-size: 140%;
    color: #f7c000;
    margin-left: 10px;
  }

  .fv_paBox {
    padding: 5px 10px;
    text-align: center;

  }

  .fv_paBoxIn {
    /* display: block; */
    background: #FFF;
    text-align: center;
    width: 25%;
    margin: 2px auto;

  }

  .fv_paBoxInTop {
    /* display: inline-block; */
    font-size: 9px;
    font-weight: bold;
    width: 100%;

    word-wrap: break-word;
  }

  .fv_paBoxInBtm {
    display: inline-block;
    text-align: center;
    width: 100%;
  }

  .fv_paBoxInBtmOne {
    text-align: center;
    vertical-align: middle;
    /* width: 45%; */
  }

  .ppp01 {
    background: #43b6ba;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    margin-top: 0px;
  }

  .ppp02 {
    color: #fc4242;
    font-size: 30px;
    font-weight: bold;
    line-height: 80%;
    margin-top: 10px;
  }

  .ppp03 {
    font-size: 55%;
    margin-left: 6px;
  }

  .hiddenPc {
    visibility: inherit;
    display: inherit;
  }

  .hiddenSp {
    visibility: hidden;
    display: none;
    width: 0px;
    height: 0px;
  }





  #fv_message_area {
    left: 0;
  }

  #fv_main_message {
    position: relative;
    padding: 0px 10px;
    width: 90vw;
  }

  #realtime {
    bottom: 6vw;
    left: 8vw;
    width: 45vw;
    height: 70vw;
    padding-top: 5vw;
    background: url(img/realtime_sp.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  #transfer_time {
    margin-bottom: 2px;
    font-size: 3vw;
  }

  #transfer_time span {
    font-size: 5.5vw;
  }

  #cash_rate_area {
    flex-wrap: wrap;
  }

  .cash_rate_wrap {
    width: 21vw;
    height: 21vw;
    margin: 1vw;
  }

  .cash_rate_wrap p:nth-child(1) {
    margin-top: 5vw;
    margin-bottom: 0px;
    font-size: 1vw;
  }

  .cash_rate {
    bottom: 4px;
    font-size: 9vw;
  }

  .cash_rate span {
    bottom: 2vw;
    right: 2.5vw;
    font-size: 3vw;
  }

  #fv_operator {
    display: block;
    width: 45%;
    position: relative;
    right: 3%;
    margin: 0 0 0 auto;
  }

  #fv_point {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    align-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 55%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 3%;
    font-weight: bold;
  }

  #fv_point p {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    top: 15vw;
    font-size: 4vw;
  }

  #fv_point p::before {
    display: block;
    content: "";
    width: 25px;
    height: 25px;
    position: relative;
    bottom: 3px;
    margin: 0px 5px;
    background: url(https://icongr.am/material/check-bold.svg?size=128&color=137CD6);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  #fv_point .b_outline_1 {
    display: block;
    margin: 0px 2px;
    padding-left: 35px;
    font-size: 7vw;
    color: #fff;
  }

  #fv_bar {
    height: 15vw;
  }

  .fv_circle {
    width: 30vw;
    max-width: 200px;
    height: 30vw;
    max-height: 200px;
    right: 15px;
  }

  .fv_circle p:nth-child(1) {
    font-size: 3vw;
    line-height: 3.5vw;
    font-weight: bold;
  }

  #circle_blue {
    border: solid 4px rgb(4, 94, 198, 0.5);
  }

  #circle_blue p:nth-child(2) {
    margin: 2vw 0px;
    font-size: 5.8vw;
    line-height: 5vw;
  }

  .fv_circle p:nth-child(3) {
    font-size: 2vw;
    line-height: 2vw;
    white-space: nowrap;
  }

  .cash_rate {
    margin-top: 0px;
  }

  #fv_bar {
    justify-content: flex-end;
  }

  #fv_bar_bottom {
    min-height: 120px;
    padding: 10px 0px;
    flex-direction: column;
  }

  #fv_bar_img {
    display: none;
  }

  .button_area a {
    width: 90%;
  }



  /*--------------------
  *  ナビゲーション
  --------------------*/
  #nav {
    height: inherit;
    padding: 10px 0px
  }

  #nav ul {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #nav li a {
    width: 30vw;
    padding: 10px 0px;
    font-size: 0.8rem;
  }

  #nav li::before {
    display: none;
  }

  #nav li::after {
    display: block;
    content: "";
    width: 1px;
    height: 10px;
    position: relative;
    background: #000;
  }

  #nav li:nth-child(3)::after {
    display: none;
  }

  #nav_button {
    display: none;
  }

  /*--------------------
  *  換金率
  --------------------*/
  #rate {
    padding: 50px 0px;
  }

  #rate h2 {
    margin-bottom: 30px;
    font-size: 1.3rem;
  }

  #rate_table {
    width: 95%;
    font-size: 0.9rem;
  }

  /*--------------------
  *  約束
  --------------------*/
  #promise {
    padding: 60px 0px;
  }

  #promise::before,
  #promise::after {
    height: 30px;
  }

  #promise_area {
    width: 95%;
  }

  #promise_area::before {
    bottom: -25px;
    left: calc(50% - 45px);
    border-top: solid 25px #43B6BA;
    border-left: solid 45px transparent;
    border-right: solid 45px transparent;
  }

  #promise_area_bar {
    font-size: 1.0rem;
  }

  #h_promise {
    font-size: 1.5rem;
  }

  #h_promise .c_navy {
    font-size: 4rem;
    line-height: 4.5rem;
  }

  #h_promise .c_black {
    font-size: 3rem;
  }

  #promise_ul_area {
    display: block;
    padding: 20px
  }

  #promise_ul_area ul {
    width: 230px;
    margin: 0 auto;
  }

  /*--------------------
  *  3STEP
  --------------------*/
  #step {
    padding: 60px 0px;
  }

  #h_step::before {
    height: 40px;
    left: -50px;
  }

  #h_step::after {
    height: 40px;
    right: -50px;
  }

  #h_step_min {
    font-size: 0.9rem;
  }

  #h_step .w_outline_2 {
    font-size: 2.2rem;
  }

  .each_step {
    height: 200px;
    width: calc(95% - 20px);
    max-width: 350px;
    padding: 10px;
    margin: 60px auto;
    border-radius: 5px;
  }

  .each_step3 {
    height: 200px;
    width: calc(95% - 20px);
    max-width: 350px;
    padding: 10px;
    margin: 60px auto;
    border-radius: 5px;
  }

  .each_step_img {
    width: 160px;
    height: 160px;
  }

  .each_step_text h3 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 35px;
    padding-bottom: 5px;
    font-size: 0.8rem;
    line-height: 0.8rem;
  }

  .each_step_no {
    margin-right: 5px;
    padding-top: 0px;
    font-size: 1rem;
    line-height: 1rem;
  }

  .each_step_text {
    width: calc(100% - 120px);
    margin-left: 10px;
    font-size: 1rem;
  }

  .each_step_text p {
    height: calc(100% - 50px);
    padding: 5px;
    border-radius: 3px;
    font-size: 1.0rem;
  }

  .each_step::before {
    width: 3px;
    height: 20px;
    bottom: -40px;
    left: calc(50% - 8px);
  }

  .each_step::after {
    width: 3px;
    height: 20px;
    bottom: -40px;
    right: calc(50% - 9px);
  }

  /*--------------------
  *  よくある質問
  --------------------*/
  #faq {
    padding: 50px 0px;
  }

  #faq h2 {
    margin-bottom: 50px;
    font-size: 1.3rem;
  }

  #faq_area {
    display: block;
  }

  .faq_ul {
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 0.9rem;
  }

  .faq_q label {
    width: calc(320px - 100px);
    min-width: inherit;
  }

  .faq_a {
    width: calc(320px - 100px);
    min-width: inherit;
  }

  /*--------------------
  *  誘導
  --------------------*/
  #yudo {
    margin-top: 30px;
    position: relative;
  }

  #yudo_inner {
    display: block;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    position: static;
  }

  #ribbon {
    display: block;
    width: 95%;
    margin: inherit;
    position: absolute;
    left: calc(50vw - 177px);
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
  }

  #yudo_inner_left {
    /*width: 320px;*/
    position: static;
    padding: 30px 0px 20px 0px;
  }

  #yudo_inner_left .button_normal {
    margin: inherit;
    margin-bottom: 10px;
  }

  #yudo_inner_left .tel_button {
    margin: inherit;
  }

  #yudo_inner_right img {
    width: 180px;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }

  #yudo_inner_left .button_normal {
    max-width: 300px;
  }

  .button_normal a {
    height: 55px;
    font-size: 1rem;
  }

  #yudo_inner_left .tel_button {
    width: 200px;
  }

  #yudo_inner_left .tel_button a {
    height: 55px;
    font-size: 1rem;
  }

  #yudo_inner_left .tel_button_right p:nth-child(1) {
    font-size: 0.7rem;
  }

  #yudo_inner_left .tel_button_right p:nth-child(2) {
    font-size: 1rem;
  }

  #yudo_inner_left .tel_button_left {
    width: 30px;
    height: 30px;
    left: 15px;
  }

  #yudo_inner_left .tel_button_left img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  #yudo_inner_left .tel_button_right {
    padding-left: 20px;
  }

  /*--------------------
  *  会社概要
  --------------------*/
  #company {
    padding: 50px 0;
    padding-bottom: 20px;
  }

  #company h2 {
    margin-bottom: 50px;
    font-size: 1.3rem;
  }

  #company th {
    width: 90px;
  }

  #company td {
    padding: 0px 5px;
    text-align: center;
  }

  /*--------------------
  *  問い合わせ
  --------------------*/
  #contact_wrap {
    min-height: calc(100vh - 100px);
    padding: 50px 0px;
  }

  #contact h2 {
    margin-bottom: 50px;
    font-size: 1.3rem;
  }

  #contact_area {
    width: 95%;
  }

  #contact_area p {
    font-size: 0.6rem;
  }

  .hissu {
    margin-right: 4px;
  }

  #contact_form_area {
    padding: 30px 20px;
  }

  #contact_form_area table {
    margin-bottom: 0px;
  }

  #contact_form_area table,
  #contact_form_area tr,
  #contact_form_area th,
  #contact_form_area td {
    display: block;
  }

  #contact_form_area th {
    width: 100%;
    text-align: center;
  }

  #contact_form_area td {
    width: 100%;
    min-height: 35px;
  }

  #contact_form_area tr:nth-child(1) td {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  #contact_form_area tr:nth-child(1) td label {
    margin: 0px 5px;
  }

  #submit_button input {
    width: 230px;
    height: 60px;
    border-radius: 70px;
    font-size: 1.1rem;
  }

  /*--------------------
  *  内容確認
  --------------------*/
  #confirmation {
    padding: 50px 0px;
  }

  #confirmation h2 {
    font-size: 1.3rem;
  }

  #confirmation_form_area {
    width: calc(95% - 20px);
    padding: 20px 10px;
  }

  #confirmation_form_area table,
  #confirmation_form_area tr,
  #confirmation_form_area th,
  #confirmation_form_area td {
    display: block;
  }

  #confirmation_form_area th {
    width: 100%;
    padding: 10px 0px;
    text-align: center;
  }

  #confirmation_form_area td {
    width: 100%;
    padding: 0px 0px 10px 0px;
    text-align: center;
  }

  #confirmation_form_area tr:last-child td {
    text-align: left;
  }

  /*--------------------
  *  サンクスページ
  --------------------*/
  #thanks {
    min-height: calc(100vh - 100px);
    padding: 50px 0px;
  }

  #thanks h2 {
    margin-bottom: 50px;
  }

  #thanks_message {
    width: auto;
    margin-bottom: 50px;
  }

  #red_button a {
    width: 230px;
    height: 60px;
    position: relative;
    font-size: 1.1rem;
  }

  #line_button a img {
    width: 230px;
    position: relative;
  }

  /*--------------------
  *  利用規約、プライバシーポリシー
  --------------------*/

  #privacypolicy,
  #terms {
    padding: 50px 0px;
  }

  #privacypolicy h2,
  #terms h2 {
    margin-bottom: 50px;
    font-size: 1.3rem;
  }

  #privacypolicy_wrap,
  #terms_wrap {
    width: calc(95% - 20px);
    padding: 20px 10px;
  }

  #privacypolicy_wrap h3 {
    margin: 15px 0px 5px 0px;
  }

  #privacypolicy_wrap p,
  #terms_wrap p {
    font-size: 0.8rem;
    line-height: 1.4rem;
  }

  #terms_wrap ul {
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
}

@media screen and (max-width: 382px) {
  .fv_paBoxInTop {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 450px) {
  p.price {
    padding: 0px;
    font-size: 4.2vw;
    width: 70%;
  }

  p.price2 {
    padding: 0px;
    font-size: 4.2vw;
    width: 70%;
  }

  #rate2 .rate_icon {
    width: 25%;
  }

  .p_rate {
    font-size: 7vw;
  }

  .p_rate_nikaime {
    font-size: 6vw;
    padding: 5px 0;
  }
}

.br-sp {
  display: none;
}

@media (max-width: 586px) {
  .br-sp {
    display: block;
  }
}

.menu-btn1 {
  right: 0px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  margin-left: auto;
}

#menuBarToBeHide2>span,
#menuBarToBeHide2>span:before,
#menuBarToBeHide2>span:after {
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #43b6ba;
  position: absolute;
}

#menuBarToBeHide2>span:before {
  bottom: 0;
  transform: rotate(45deg);
}

#menuBarToBeHide2>span:after {
  top: 0;
  transform: rotate(-45deg);
}

@media screen and (min-width: 769px) {
  .aFloatButton {
    height: 15vw !important;
    max-height: 100px !important;
    margin-right: 3.8vw !important;
  }

  .imgFloatButton {
    width: 110% !important;
    height: 90% !important;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .aFloatButton {
    height: 20vw !important;
    max-height: 100px !important;
    margin-right: 3.8vw !important;
  }

  .imgFloatButton {
    width: 110% !important;
    height: 92% !important;
  }
}

@media screen and (max-width: 480px) {
  .aFloatButton {
    height: 25vw !important;
    max-height: 100px !important;
    margin-right: 3.3vw !important;
  }

  .imgFloatButton {
    width: 110% !important;
    height: 95% !important;
  }
}

/* アコーディオン */

.tab {
  position: relative;
  color: #fff;
  overflow: hidden;
  width: 85vw;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 3px;
  border-radius: 7px;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #000;
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
  background: #43B6BA;
}

.tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
  color: #000;
  margin: 0 auto;
  background: #fff;
  height: auto;
  padding: 0px 20px;
}

.tab-content h3 {
  margin: 27px 0 20px 0;
  padding: 15px 0 15px 20px;
  font-size: 22px;
  border-left: 5px solid #43B6BA;
}

.tab-content p {
  font-size: 15px;
  margin: 1em;
}

.tab-content ol {
  margin: 20px 0px 20px 10px;
}

.tab-content ol li {
  position: relative;
  list-style: outside decimal;
  padding: 0 0 0 5px;
  font-size: 15px;
}

.tab-content ol li::marker {
  font-size: 130%;
  font-weight: 700;
  color: #43B6BA;
}

.tab-content a {
  color: #fc4242;
  text-decoration: underline;
}

/* :checked */
.tab input:checked~.tab-content {
  max-height: 100%;
}

/* Icon */
.tab label::after {
  position: absolute;
  right: 0;
  top: 8px;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}

.tab input[type=checkbox]+label::after {
  content: "+";
}

.tab input[type=radio]+label::after {
  content: "\25BC";
}

.tab input[type=checkbox]:checked+label::after {
  transform: rotate(315deg);
}

.tab input[type=radio]:checked+label::after {
  transform: rotateX(180deg);
}

/*  サンクスページ SP*/
.thanks_sp {
  text-align: center;
}

.thanks_sp>a>img,
.thanks_sp>img,
.thanks_sp>video {
  width: 300px;
}

.thanks_sp>video {
  margin: 10px auto;
}


@media screen and (max-width: 768px) {

  .thanks_sp>a>img,
  .thanks_sp>img,
  .thanks_sp>video {
    width: 230px;
  }

  .thanks_sp>video {
    margin: 10px auto;
  }
}

/*-----------------
campaign
-----------------*/
.campaign {
  padding: 0.5em 0;
  max-width: 600px;
  width: 90%;
  margin: auto;
  margin-bottom: -2em;
}
.campaign .banner {
  width: 80%;
  margin: auto;
  padding: 1.5em 0;
  display: block;
}
.campaign .banner img {
  width: 100%;
}
.campaign .relative {
  position: relative;
}
.campaign .relative img {
  width: 100%;
  display: block;
}
.campaign .absolute {
  position: absolute;
  top: 45%;
  bottom: 0;
  right: 0;
  left: 0;
}
.campaign .absolute ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 67%;
  margin: auto;
}
.campaign .absolute ul li {
  background-color: #fff;
  box-shadow: 2px 2px 5px #00000040;
  margin: 5px;
  border-radius: 3px;
}
.campaign .absolute ul li a {
  margin: auto;
  padding: 0 10px;
  display: block;
}

@media screen and (max-width: 500px) {
  .campaign {
    width: 100%;
  }
  .campaign .banner {
    width: 90%;
  }
}


/*--------------------
*  お知らせ一覧
--------------------*/
#news {
  padding: 100px 0;
  /* padding-bottom: 150px; */
  background: #F2F2F2;
}

#news h2 {
  margin-bottom: 80px;
  font-size: 1.5rem;
  text-align: center;
}
.top-news__contents {
  max-height: 300px;
  overflow-y: auto;
  margin-right: auto;
  margin-left: auto;
  color: #141414;
  border-radius: 10px;
  background: #fff;
  padding: 0 10px;
  width: 85vw;
  max-width: 1000px;
}

.news-list__item {
  border-bottom: #707070 solid 2px;
}

.news-list__item:last-child {
  border-bottom: unset;
}

.news-list__link {
  padding: 10px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
}

.news-list__link h3 {
  line-height: normal;
  font-size: 13px;
  margin: 0;
}

.news-list__title a {
  color: #eb4949;
  cursor: pointer;
  text-decoration: underline;
  display: inline;
}

@media (min-width: 600px) {
  .top-news__contents {
    max-height: 360px;
  }

  .news-list__link {
    align-items: baseline;
    flex-direction: unset;
    padding: 25px 10px;
  }
}