@charset "UTF-8";
/* ============================================================
このCSSはSASSを利用しているため直接style.cssの編集を禁止します。
============================================================= */ /*--------------------------------------------------------------------------
□ 全体の設定
---------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, form, figure {
  margin: 0;
  padding: 0;
  font: inherit;
}

body {
  color: #000;
  font-size: 1.6rem;
  margin: 0 auto;
  padding: 0;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, Arial, Helvetica, Meiryo, "MS PGothic", Sans-serif;
  line-height: 1.7;
  min-width: 1100px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    font-family: BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    min-width: initial;
    min-width: auto;
  }
}

ul li {
  list-style: outside none none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

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

iframe {
  width: 100%;
}

address {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*カラー設定
---------------------------------------------------------------------------*/
:root {
  --main-color: #E8F8E2;
  --link-main-color: #00BF67;
}

.bgcMain {
  background-color: var(--main-color);
}

.red {
  color: #EB5151;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
  outline: none;
  color: var(--link-main-color);
}

a:hover {
  opacity: 0.85;
  text-decoration: none;
}

/*フォント設定
---------------------------------------------------------------------------*/
.mincho {
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.ff-mono {
  font-family: "ＭＳ ゴシック", monospace, serif;
}

/*見出し設定
---------------------------------------------------------------------------*/
.secTtl1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secTtl1 {
    font-size: 2.2rem;
  }
}

/*水平線設定
---------------------------------------------------------------------------*/
.hrStyle1 {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #000;
  margin-bottom: 2rem;
}

/*Header
---------------------------------------------------------------------------*/
.gHeader {
  position: relative;
  z-index: 1;
}

.hdrInr {
  width: 100%;
  height: 4.8rem;
  padding: 0 1.2rem 0 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hdrInr {
    height: 8.4rem;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .hdr_logo {
    margin: auto;
  }
  .hdr_logo img {
    width: 18rem;
    height: auto;
  }
}
/*gNavi
--------------------------------------*/
.gNavi {
  margin-left: auto;
}
.gNavi ul li {
  margin-right: 3rem;
}
.gNavi ul li a:not(.btn-sp-menu):not(.sp-menu_link) {
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .gNavi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #404342;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    padding: 3rem 0;
  }
  .gNavi.open {
    transition: all 0.5s;
    visibility: visible;
    opacity: 1;
  }
  .gNavi ul {
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
    flex-wrap: nowrap;
    margin-top: 5.2rem;
    padding-top: 2rem;
    position: relative;
  }
  .gNavi ul::-webkit-scrollbar {
    display: none;
  }
  .gNavi ul li {
    margin: 0 0 3.8rem;
    text-align: center;
  }
  .gNavi ul li a:not(.btn-sp-menu):not(.sp-menu_link) {
    color: #FFF;
    font-size: 1.8rem;
  }
  .gNavi .sp-menu_logo {
    position: absolute;
    top: 3rem;
    margin: auto;
    text-align: center;
    width: 100%;
  }
  .gNavi .sp-menu_logo img {
    width: 18rem;
    height: auto;
  }
  .gNavi .sp-menu_link {
    color: #FFF;
    font-size: 1.4rem;
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .fixed-bg {
    position: fixed;
    width: 100%;
  }
}
/*SPメニューボタン
----------------------------------------*/
.sp-btn-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-btn-menu {
    position: absolute;
    right: 1.4rem;
    width: 2.4rem;
    height: 2rem;
    display: block;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
  }
  .sp-btn-menu .line {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 2.4rem;
    height: 0.4rem;
    background: #404342;
    transition: all 0.3s ease-out;
    transform: translate(-50%, -50%);
  }
  .sp-btn-menu.is-active .line {
    background: #FFF;
  }
  .sp-btn-menu .line1 {
    top: calc(50% - 0.8rem);
  }
  .sp-btn-menu .line2 {
    top: 50%;
  }
  .sp-btn-menu .line3 {
    top: calc(50% + 0.8rem);
  }
  .sp-btn-menu.is-active .line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .sp-btn-menu.is-active .line2 {
    opacity: 0;
  }
  .sp-btn-menu.is-active .line3 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
}

/*FOOTER
---------------------------------------------------------------------------*/
.gFooter {
  background-color: #404342;
}
.gFooter .ftrInr {
  padding: 7rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .gFooter .ftrInr {
    padding: 5rem 0;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .ftr_logo img {
    width: 22rem;
    height: auto;
  }
}

.ftrNavi {
  padding: 0 8rem;
}
@media screen and (max-width: 768px) {
  .ftrNavi {
    margin: 7.4rem 0 1.5rem;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}

.ftrNavi ul li {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .ftrNavi ul li {
    margin-bottom: 2rem;
  }
}

.ftrNavi ul li a {
  color: #FFF;
  font-size: 1.4rem;
}

.ftrNavi_grid {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 4rem;
  grid-auto-flow: row;
  grid-template-areas: "fNav1 fNav2" "fNav1 fNav3";
}
@media screen and (max-width: 768px) {
  .ftrNavi_grid {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: "fNav1" "fNav2" "fNav3";
  }
}

.fNav1 {
  grid-area: fNav1;
}
@media screen and (max-width: 768px) {
  .fNav1 a {
    font-weight: 700;
  }
}

.fNav2 {
  grid-area: fNav2;
}
@media screen and (max-width: 768px) {
  .fNav2 a {
    font-weight: 700;
  }
}

.fNav3 {
  grid-area: fNav3;
}
@media screen and (max-width: 768px) {
  .fNav3 ul {
    display: flex;
    justify-content: center;
  }
  .fNav3 ul li {
    padding: 0 1.5rem;
  }
}

.copyRight {
  background-color: #000;
  color: #FFF;
  font-size: 1rem;
  width: 100%;
  height: 5.8rem;
  line-height: 5.8rem;
  text-align: center;
}

/*ページリンクエリア
---------------------------------------------------------------------------*/
.pageLinkArea {
  background-color: #fff;
  border-radius: 2rem;
  width: 100%;
  padding: 3.5rem;
}
@media screen and (max-width: 768px) {
  .pageLinkArea {
    padding: 3rem 0;
  }
}
.pageLinkArea p {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .pageLinkArea p {
    font-size: 1.7rem;
    margin: 0 0 1.5rem;
    text-align: center;
  }
}
.pageLinkArea.bgcMain {
  background-color: var(--main-color);
}

/*3ステップ
---------------------------------------------------------------------------*/
.flow_boxWrap {
  border: 2px solid #000;
  border-radius: 2rem;
  margin-top: 4rem;
  padding: 2rem 4rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .flow_boxWrap {
    padding: 2rem 1rem 1.8rem;
    justify-content: center;
  }
}

.flow_boxImg {
  width: 300px;
  height: auto;
}

.flow_box {
  width: 560px;
  height: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .flow_box {
    margin: auto;
    width: 100%;
  }
}
.flow_box h5 {
  font-size: 2rem;
  font-weight: 700;
  text-indent: -1.7em;
  padding-left: 1.7em;
}
@media screen and (max-width: 768px) {
  .flow_box h5 {
    font-size: 1.7rem;
    margin-top: 3rem;
    text-indent: -1.7em;
    padding-left: 1.7em;
  }
}
.flow_box p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0 0 3.5rem;
}
@media screen and (max-width: 768px) {
  .flow_box p {
    margin: 0.5rem 0 0 2.8rem;
  }
}

/*パートナー募集
---------------------------------------------------------------------------*/
.partnerRec {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .partnerRec {
    background-color: var(--main-color);
  }
  .partnerRec .pageLinkArea.bgcMain {
    background-color: #fff;
  }
}

.pRec_txt {
  font-size: 2rem;
  font-weight: 700;
  margin: 3.6rem 0;
}
@media screen and (max-width: 768px) {
  .pRec_txt {
    font-size: 1.4rem;
    text-align: left;
  }
}

/*--------------------------------------------------------------------------
□下層共通 lowerLayer
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.secLow {
  padding: 7rem 0 8rem;
}

/*ボタン設定
---------------------------------------------------------------------------*/
button,
input[type=submit],
input[type=button] {
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 768px) {
  button,
  input[type=submit],
  input[type=button] {
    border-radius: 0;
  }
}

.btn-link1 {
  border: 2px solid var(--link-main-color);
  border-radius: 2rem;
  background-color: #fff;
  color: var(--link-main-color);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  width: 28.2rem;
  height: 5rem;
  line-height: calc(5rem - 4px);
  text-align: center;
}

.btn-login1 {
  color: #000;
  border-radius: 1.6rem;
  border: 2px solid var(--link-main-color);
  font-size: 1.3rem;
  font-weight: 700;
  width: 13rem;
  height: 3rem;
  line-height: calc(3rem - 4px);
  text-align: center;
}

.btn-reg1 {
  background-color: #fff;
  border-radius: 2rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  width: 24.5rem;
  height: 5.5rem;
  line-height: 5.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn-reg1 {
    font-size: 1.4rem;
    width: 30rem;
    height: 5.4rem;
    line-height: 5.4rem;
  }
}

@media screen and (max-width: 768px) {
  .btn-sp-menu {
    background-color: #fff;
    border-radius: 2rem;
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    width: 30rem;
    height: 5.4rem;
    line-height: 5.4rem;
    margin: auto;
  }
  .btn-sp-login1 {
    border: 2px solid var(--link-main-color);
    color: var(--link-main-color);
    line-height: calc(5.4rem - 4px);
  }
  .btn-sp-reg1 {
    color: #000;
  }
}
.btn-submit1 {
  background-color: var(--link-main-color);
  border-radius: 2rem;
  color: #FFF;
  display: block;
  width: 25.6rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  margin: auto;
}

.btn-submit2 {
  background-color: var(--link-main-color);
  border-radius: 2rem;
  color: #FFF;
  display: block;
  width: 26.4rem;
  height: 5.6rem;
  line-height: 5.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  margin: auto;
}

/*ページアップ btnPagetop
---------------------------------------------------------------------------*/
.btn-page-top {
  background-color: #CECECE;
  color: #6B6B6B;
  display: block;
  font-size: 1.4rem;
  width: 100%;
  height: 5.4rem;
  line-height: 5.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn-page-top {
    background-color: #fff;
  }
}

/*固定会員登録ボタン
---------------------------------------------------------------------------*/
.fixRegBtn {
  background-color: #000;
  border-radius: 2rem 0 0 2rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1607843137);
  display: none;
  width: 100px;
  height: auto;
  text-align: center;
  padding: 2rem 1rem 2rem 2rem;
  position: fixed;
  right: 0;
  bottom: 5rem;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .fixRegBtn {
    border-radius: 16px 0 0 16px;
    width: 77px;
    padding: 10px 8px 10px 15px;
  }
}

.fixRegBtn_txt1 {
  background-color: #fff;
  border-radius: 0.6rem;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  width: 7rem;
  height: 2.1rem;
  line-height: 2.1rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .fixRegBtn_txt1 {
    font-size: 7px;
    width: 54px;
    height: 17px;
    line-height: 17px;
    margin-bottom: 4px;
  }
}

.fixRegBtn_txt2 {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.19rem;
}
@media screen and (max-width: 768px) {
  .fixRegBtn_txt2 {
    font-size: 10px;
    letter-spacing: 1.4px;
  }
}

/*Layout
---------------------------------------------------------------------------*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  main {
    display: block;
  }
}
.innerWrap {
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .innerWrap {
    width: 100%;
    padding: 0 1rem;
  }
}

/*カラム設定
---------------------------------------------------------------------------*/
.flexCols {
  display: flex;
  flex-wrap: wrap;
}

.flexAc {
  align-items: center;
}

.flexAfe {
  align-items: flex-end;
}

.flexJc {
  justify-content: center;
}

.flexJc_Ac {
  justify-content: center;
  align-items: center;
}

.flexJsb {
  justify-content: space-between;
}

.flexJsb_Ac {
  justify-content: space-between;
  align-items: center;
}

.flexJsa {
  justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .flexDcr {
    flex-direction: column-reverse;
  }
}
/*3カラム
--------------------------------------*/
@media screen and (min-width: 769px) {
  .col-3-pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .col-3-pc > * {
    flex: 0 0 300px;
  }
}
/*テーブル設定
---------------------------------------------------------------------------*/
/*tableType1
----------------------------------------*/
.tableType1 {
  width: 100%;
  table-layout: fixed;
}
.tableType1 tr {
  border-bottom: 1px solid #707070;
}
.tableType1 th, .tableType1 td {
  font-size: 1.4rem;
  padding: 1.6rem 0;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .tableType1 th, .tableType1 td {
    display: block;
  }
}
.tableType1 th {
  font-weight: 400;
  width: 14rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .tableType1 th {
    padding: 1.5rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .tableType1 td {
    padding: 0 0 1.5rem;
  }
}

/*フォーム設定
---------------------------------------------------------------------------*/
select {
  background-color: #fff;
  outline: none;
  font-size: 1.4rem;
  height: 2.4rem;
  vertical-align: bottom;
}

/*hRegForm
--------------------------------------*/
.hRegForm input:not([type=radio]):not([type=checkbox]):not([type=search]):not([type=button]):not([type=submit]):not([type=file]) {
  background: #FFF;
  border: 1px solid #7B7B7B;
  padding: 0 1.6rem;
  outline: none;
  font-size: 1.6rem;
  height: 4rem;
}

.hRegForm input::-moz-placeholder {
  font-size: 1.4rem;
  color: #7B7B7B;
}

.hRegForm input::placeholder {
  font-size: 1.4rem;
  color: #7B7B7B;
}

.hRegForm input[type=radio] {
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 3px;
  vertical-align: middle;
}

.hRegForm input[type=checkbox] {
  width: 2.2rem;
  height: 2.2rem;
  vertical-align: middle;
}

/*ptnrFrom
--------------------------------------*/
.ptnrFrom input:not([type=radio]):not([type=checkbox]):not([type=search]):not([type=button]):not([type=submit]):not([type=file]) {
  background: #FFF;
  border: none;
  padding: 0 2rem;
  outline: none;
  font-size: 1.6rem;
  height: 5rem;
}

.ptnrFrom input::-moz-placeholder {
  font-size: 1.4rem;
  color: #7B7B7B;
}

.ptnrFrom input::placeholder {
  font-size: 1.4rem;
  color: #7B7B7B;
}
@media screen and (max-width: 768px) {
  .ptnrFrom input::-moz-placeholder {
    font-size: 1.2rem;
  }
  .ptnrFrom input::placeholder {
    font-size: 1.2rem;
  }
}

.ptnrFrom input[type=radio] {
  width: 3rem;
  height: 3rem;
  margin-bottom: 5px;
  vertical-align: middle;
}

.ptnrFrom input[type=checkbox] {
  width: 3rem;
  height: 3rem;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .ptnrFrom .w50p {
    width: 100%;
  }
}
/*ect
---------------------------------------------------------------------------*/
.floatL {
  float: left;
}

.floatR {
  float: right;
}

.alignL {
  text-align: left;
}

.alignR {
  text-align: right;
}

.alignCR {
  text-align: center;
}

.fw700 {
  font-weight: 700;
}

.textNone {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  line-height: 0;
}

.w15r {
  width: 15rem;
}

.w100p {
  width: 100%;
}

.w50p {
  width: 50%;
}

.w_itl {
  width: initial !important;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
  .pc-mt-1 {
    margin-top: 1rem;
  }
  .pc-mt-1-5 {
    margin-top: 1.5rem;
  }
  .pc-mt-2 {
    margin-top: 2rem;
  }
  .pc-mt-2-5 {
    margin-top: 2.5rem;
  }
  .pc-mt-3 {
    margin-top: 3rem;
  }
  .pc-mt-4 {
    margin-top: 4rem;
  }
  .pc-mt-5 {
    margin-top: 5rem;
  }
  .pc-mt-6 {
    margin-top: 6rem;
  }
  .pc-mt-7 {
    margin-top: 7rem;
  }
  .pc-mt-8 {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .spAlignL {
    text-align: left;
  }
  .spAlignR {
    text-align: right;
  }
  .spAlignCR {
    text-align: center;
  }
  .spNone {
    display: none;
  }
  .sp-mt-1 {
    margin-top: 1rem;
  }
  .sp-mt-1-5 {
    margin-top: 1.5rem;
  }
  .sp-mt-2 {
    margin-top: 2rem;
  }
  .sp-mt-2-5 {
    margin-top: 2.5rem;
  }
  .sp-mt-3 {
    margin-top: 3rem;
  }
  .sp-mt-4 {
    margin-top: 4rem;
  }
  .sp-mt-5 {
    margin-top: 5rem;
  }
  .sp-mt-6 {
    margin-top: 6rem;
  }
  .sp-mt-7 {
    margin-top: 7rem;
  }
  .sp-mt-8 {
    margin-top: 8rem;
  }
}
/*--------------------------------------------------------------------------
□TOPページ home
---------------------------------------------------------------------------*/
/*homeMainVisual
--------------------------------------*/
.homePrimary {
  background: url(../images/common/mv-bg.jpg);
  padding-bottom: 2.4rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .homePrimary {
    background-color: var(--main-color);
    background-image: none;
  }
}

.hpriInr {
  width: 1080px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hpriInr {
    width: 100%;
  }
}

.hMv_img {
  margin-top: -2.4rem;
}
@media screen and (max-width: 768px) {
  .hMv_img {
    margin-top: 0;
  }
}

.scrolldown {
  position: absolute;
  left: 50%;
  bottom: -50px;
  height: 50px;
}

.scrolldown span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #7b7b7b;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #ccc;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*homeRegForm
--------------------------------------*/
.homeRegFormWrap {
  background-color: #fff;
  border: 3px solid var(--link-main-color);
  border-radius: 2rem;
  box-shadow: 0 0.3rem 0.6rem;
  width: 34rem;
  padding: 4rem 2rem;
  position: absolute;
  top: 4rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .homeRegFormWrap {
    position: relative;
    margin: auto;
  }
}
.homeRegFormWrap h4 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.homeRegFormWrap h4 span {
  color: var(--link-main-color);
}
.homeRegFormWrap input[type=text], .homeRegFormWrap input[type=email], .homeRegFormWrap input[type=password] {
  width: 100%;
  margin: 0.5rem 0 0;
}
.homeRegFormWrap label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.homeRegFormWrap label span {
  vertical-align: middle;
}

.hReg_item-ttl {
  font-size: 1.4rem;
  font-weight: 700;
}

.hReg_item-err {
  color: red;
  font-size: 1.4rem;
  margin-left: 1rem;
}

.hRegForm .label-classif {
  margin-left: 1rem;
}

.hReg_note1 {
  font-size: 1.4rem;
  font-weight: 700;
}

.hReg_item_comp {
  display: none;
}

.ref-codeArea p {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}
.ref-codeArea p span {
  margin-right: 1rem;
}
.ref-codeArea p.ref-code_note1 {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  padding-left: 1em;
  text-indent: -1em;
}
.ref-codeArea p.ref-code_note2 {
  font-size: 1.2rem;
  padding-left: 1em;
  text-indent: -1em;
}

/*Main
---------------------------------------------------------------------------*/
.secHome {
  padding: 7rem 0 8rem;
}

/*homeFactUser
--------------------------------------*/
.hfuCardSlide {
  margin-top: 5rem;
  padding: 0 2rem;
}

.hfuCard {
  border-radius: 20px;
  background-color: #F8F8F8;
  padding: 2rem;
}

.hfuTable {
  width: 100%;
}
.hfuTable tr {
  border-bottom: 1px solid #e0e0e0;
}
.hfuTable th {
  width: 13rem;
  padding: 1rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .hfuTable th {
    font-size: 1.5rem;
    width: 11rem;
  }
}
@media screen and (max-width: 768px) {
  .hfuTable th {
    width: 11rem;
  }
}
.hfuTable th span {
  background-color: #00bf67;
  border-radius: 20px;
  color: #FFF;
  display: inline-block;
  width: 100%;
  padding: 0.3rem 0.5rem;
}
.hfuTable td {
  padding: 1rem 2rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .hfuTable td {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .hfuTable td {
    font-size: 1.5rem;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 5.4rem;
  height: 5.4rem;
  top: calc(50% - 1.35rem);
}
@media screen and (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 4rem;
    height: 4rem;
    top: calc(50% - 1rem);
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #FFF;
  z-index: 1;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1.6rem;
  }
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
}

/*homeWarning
--------------------------------------*/
.homeWarning {
  padding-bottom: 6rem;
}

.homeWarning h2 {
  text-align: center;
}

.homeWarning h2 a {
  background: url(../images/common/icon/warning-red.svg) no-repeat 0 50%/35px auto;
  color: #000;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  text-decoration: underline;
  padding-left: 4.2rem;
}
@media screen and (max-width: 768px) {
  .homeWarning h2 a {
    font-size: 1.8rem;
    background-size: 2.5rem;
    padding-left: 3rem;
  }
}

.homeWarning h2 a:hover {
  text-decoration: none;
}

/*homeProblem
--------------------------------------*/
.hProb_box {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hProb_box {
    margin-bottom: 4rem;
  }
}
.hProb_box h5 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .hProb_box h5 {
    font-size: 1.8rem;
  }
}

.hProb_imgWrap {
  margin-top: auto;
}
.hProb_imgWrap img {
  border-radius: 1.6rem;
}

/*homeAbout
--------------------------------------*/
.homeAbout {
  text-align: center;
}

.hAbout_note1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0;
}
@media screen and (max-width: 768px) {
  .hAbout_note1 {
    font-size: 1.7rem;
  }
}

/*homeFeat
--------------------------------------*/
.homeFeat {
  text-align: center;
}

.hFeat_box {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .hFeat_box {
    margin-top: 4rem;
  }
}
.hFeat_box h5 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 768px) {
  .hFeat_box h5 {
    font-size: 1.8rem;
  }
}
.hFeat_box p {
  font-size: 1.4rem;
  font-weight: 700;
}
.hFeat_box p span {
  font-size: 2.4rem;
}
.hFeat_box .hFeat_box_note1 {
  font-size: 1.2rem;
}
.hFeat_box .hFeat_box_note2 {
  margin: 0.8rem 0;
}

.hFeat_imgWrap {
  margin-top: auto;
}
.hFeat_imgWrap img {
  border-radius: 1.6rem;
  margin-top: 1.5rem;
}

/*homeVoice
--------------------------------------*/
@media screen and (max-width: 768px) {
  .hVoice_box {
    margin-bottom: 4rem;
  }
}
.hVoice_box h5 {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .hVoice_box h5 {
    font-size: 1.8rem;
  }
}

.hVoice_name {
  font-size: 1.4rem;
  margin: 0.8rem 0;
}

.hVoice_txt {
  font-size: 1.4rem;
  font-weight: 700;
}

/*PARTNER
---------------------------------------------------------------------------*/
/*mainVisual
--------------------------------------*/
.ptnrMainVisual {
  text-align: center;
}
.ptnrMainVisual img {
  width: 100%;
  height: auto;
}

/*Main
---------------------------------------------------------------------------*/
/*ptnrIntro
--------------------------------------*/
@media screen and (max-width: 768px) {
  .ptnrIntro {
    background-color: var(--main-color);
  }
}
.ptnrIntro_txt {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 3rem 0 4rem;
}
@media screen and (max-width: 768px) {
  .ptnrIntro_txt {
    font-size: 1.8rem;
    margin: 4rem 0 3rem;
  }
}

.ptnrIntro_imgWrap {
  text-align: center;
}

.ptnrIntro_boxWrap::after {
  content: "";
  display: block;
  width: 300px;
}

.ptnrIntro_box {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .ptnrIntro_box {
    margin-top: 3rem;
  }
}
.ptnrIntro_box h5 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .ptnrIntro_box h5 {
    font-size: 1.8rem;
  }
}
.ptnrIntro_box p {
  font-size: 1.4rem;
  font-weight: 700;
}

/*ptnrContract
--------------------------------------*/
@media screen and (max-width: 768px) {
  .ptnrContract {
    background-color: #fff;
  }
}
@media screen and (min-width: 769px) {
  .ptnrCont_boxWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ptnrCont_boxWrap > * {
    flex: 0 0 227px;
  }
}
@media screen and (max-width: 768px) {
  .ptnrCont_boxWrap {
    margin-top: 5rem;
  }
}
.ptnrCont_box {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .ptnrCont_box {
    margin-top: 3rem;
  }
}

.ptnrCont_box_num {
  font-size: 2rem;
  font-weight: 700;
}

.ptnrCont_box_txt {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

@media screen and (max-width: 768px) {
  .ptnrCont_imgWrap {
    text-align: center;
  }
}
.ptnrCont_imgWrap img {
  border-radius: 1.6rem;
}

/*ptnrFromArea
--------------------------------------*/
.ptnrFromArea {
  background-color: #EDEDED;
}

.ptnrFrom_note1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  text-align: center;
}

.ptnrFromWrap {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ptnrFromWrap {
    width: 100%;
    padding: 0 1rem;
  }
}

.ptnrFromWrap label {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pFrom_item {
  margin-top: 3rem;
}

.pFrom_item-ttlWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.pFrom_item-ttl {
  font-size: 1.8rem;
  font-weight: 700;
}

.pFrom_item-req {
  background-color: #EB5151;
  border-radius: 0.6rem;
  line-height: 2.4rem;
  text-align: center;
  padding: 0 0.6rem;
  margin-left: 2rem;
}
.pFrom_item-req span {
  color: #FFF;
  font-size: 1.2rem;
  vertical-align: middle;
}

.pFrom_item-err {
  color: #EB5151;
  margin-left: 3rem;
  font-size: 1rem;
}

.pFrom_item-inputWrap {
  margin-top: 1.8rem;
}

.ptnrFrom .label-classif {
  margin-right: 1.5rem;
}

.pFrom_note1 {
  font-size: 1.8rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .pFrom_note1 {
    font-size: 1.6rem;
  }
}

.pFrom_btnWrap {
  margin-top: 3rem;
}

/*COMPANY
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
/*compMsn
--------------------------------------*/
.compMsn {
  text-align: center;
}
.compMsn.secLow {
  padding: 7rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .compMsn.secLow {
    padding: 7rem 0 0;
  }
}
.compMsn .secTtl1 {
  color: var(--link-main-color);
}
.compMsn h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 4rem 0;
}
@media screen and (max-width: 768px) {
  .compMsn h3 {
    font-size: 1.8rem;
  }
}
.compMsn p {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .compMsn p {
    text-align: left;
  }
}

.compMsn_imgWrap {
  margin-top: 3rem;
}

/*compAbout
--------------------------------------*/
.compAbout .secTtl1 {
  color: var(--link-main-color);
}

.compAbout_tableWrap {
  margin-top: 3rem;
}

.compAbout_mapWrap {
  padding: 0 4rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .compAbout_mapWrap {
    padding: 0;
  }
}

/*FAQ
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.secLow.faqMain {
  padding: 7rem 0 13rem;
}
@media screen and (max-width: 768px) {
  .secLow.faqMain {
    padding: 7rem 0 8rem;
  }
}

.faqMain_content {
  margin-top: 5rem;
}

.faqMain_dl dt {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  padding-left: 4.6rem;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .faqMain_dl dt {
    font-size: 1.8rem;
    padding-left: 4rem;
  }
}
.faqMain_dl dt:before {
  content: "Q";
  color: var(--link-main-color);
  font-size: 3rem;
  position: absolute;
  left: 0;
  top: 0;
}
.faqMain_dl dd {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-left: 4.6rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .faqMain_dl dd {
    padding-left: 4rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
.faqMain_dl dd:before {
  content: "A";
  color: #EB5151;
  font-size: 3rem;
  position: absolute;
  left: 0;
  top: 0;
}

/*VOICE
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.voiceMain_content {
  margin-top: 5rem;
}

.voiceMain_dl dt {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .voiceMain_dl dt {
    font-size: 1.8rem;
  }
}
.voiceMain_dl dd {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .voiceMain_dl dd:last-of-type {
    margin-bottom: 0;
  }
}

.voiceMain_name {
  font-size: 1.2rem;
  margin: 0.6rem 0;
}

.voiceMain_txt {
  font-size: 1.4rem;
  font-weight: 700;
}

/*CONTACT
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.secContact table {
  width: 100%;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  background: #FFF;
  border: 1px solid #e9e9e9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .secContact table {
    border: none;
    border-bottom: 1px solid #ddd;
  }
}

.secContact table th {
  background-color: #fcfcfc;
  text-align: left;
  vertical-align: top;
  width: 25%;
}

.secContact table th,
.secContact table td {
  padding: 1.2rem 1.5rem;
  border: 1px solid #ddd;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .secContact table th,
  .secContact table td {
    width: 100%;
    display: block;
    border-bottom: none;
    padding: 4%;
  }
}

.secContact table th span {
  padding: 0.3rem 0.6rem 0.2rem;
  margin-top: 1px;
  background-color: #e60000;
  color: #fff;
  font-size: 70%;
  float: right;
}

.secContact input[type=text],
.secContact input[type=email],
.secContact input[type=tel],
.secContact input[type=url],
.secContact input[type=password],
.secContact input[type=number] {
  background-color: #ffffff;
  border: solid 1px #cccccc;
  font-size: 1.6rem;
  padding: 1rem;
  width: 100%;
  outline: none;
  height: 4rem;
}

.secContact textarea {
  background-color: #ffffff;
  border: solid 1px #cccccc;
  font-size: 1.6rem;
  padding: 1rem;
  width: 100%;
  outline: none;
}

.secContact .submitArea {
  text-align: center;
  margin-top: 5rem;
}

.secContact .submitArea .btnSub {
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #27b3b1;
  cursor: pointer;
  padding: 0.8rem 2rem;
  outline: none;
}

.secContact .submitArea span {
  display: block;
  margin-top: 40px;
}

/*プライバシーポリシー・利用規約
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.termsListWrap {
  margin: 5rem auto 0;
}
.termsListWrap h4 {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .termsListWrap h4 {
    font-size: 1.6rem;
  }
}
.termsListWrap p {
  margin-bottom: 2rem;
}
.termsListWrap ul {
  margin: 2rem 0 2rem 2.2rem;
}
.termsListWrap ul.termsList_decimal > li {
  list-style: outside decimal;
  margin: 1rem 0 0 0;
}
.termsListWrap ul.termsList_brackets {
  list-style: outside none;
  text-indent: -2.6em;
  padding-left: 0.8em;
}

/*CHEATER
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.cheaterMain_content {
  margin-top: 5rem;
}

.cheater_boxWrap {
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  width: 850px;
  margin: 0 auto;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .cheater_boxWrap {
    width: 100%;
  }
}

.cheater_boxImg {
  width: 150px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cheater_boxImg {
    width: 100%;
  }
  .cheater_boxImg img {
    width: 150px;
  }
}

.cheater_boxImg p {
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

.cheater_box {
  width: calc(100% - 150px);
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .cheater_box {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}

.cheater_table {
  width: 100%;
}

.cheater_table tr:not(:first-of-type) {
  border-top: 1px dashed #d0d0d0;
}

.cheater_table th,
.cheater_table td {
  padding: 1.5rem 0;
  vertical-align: top;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .cheater_table th,
  .cheater_table td {
    display: block;
    width: 100%;
  }
}

.cheater_table th {
  width: 90px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .cheater_table th {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .cheater_table td {
    padding-top: 0.5rem;
  }
}
.cheater_btnWrap {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cheater_btnWrap {
    margin-top: 5rem;
  }
}

.btn-cheater-reg {
  display: inline-block;
  position: relative;
  background: #0e7f4b;
  width: 35rem;
  padding: 1.5rem;
  border-radius: 0.6rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1rem;
  transition: 0.5s;
}

.btn-cheater-reg:before {
  content: "";
  position: absolute;
  top: 45%;
  right: 12px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}

.btn-cheater-reg:after {
  content: "";
  position: absolute;
  top: 56%;
  right: 12px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
}

.cheater_loginFormArea {
  width: 360px;
  padding: 8rem 0 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .cheater_loginFormArea {
    width: 100%;
    max-width: 414px;
    padding: 5rem 0 0;
  }
}

.cheater_loginFormInr {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 414px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
@media screen and (max-width: 768px) {
  .cheater_loginFormInr {
    padding: 40px 20px;
    margin: 0 auto 5rem;
  }
}

.cheater_loginFormInr input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

.cheater_loginFormInr button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  transition: all 0.3 ease;
  cursor: pointer;
}

.cheater_loginFormInr button:hover,
.cheater_loginFormInr button:active,
.cheater_loginFormInr button:focus {
  background: #43A047;
}

.cheater_loginFormInr .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}

.cheater_loginFormInr .message a {
  color: #4CAF50;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */