@charset "utf-8";

/*csslint
adjoining-classes      : false //adjoining classesの許可,
important              : false //inportantの許可,
outline-none           : false //outolineの許可,
unique-headings        : false //h1~6繰り返し使用許可,
box-sizing             : false //box-sizingの許可,
universal-selector     : false //アスタリスクの使用許可,
order-alphabetical     : false //outolineの許可,
overqualified-elements : false //li.activeなどの「li部分」許可,
ids                    : false //セレクタIDの使用の許可,
box-model              : flase //border,paddingの警告,
qualified-headings     : false //見出しの修飾許可,
fallback-colors: false //カラー正式指定の解除,
*/

/*
----------------------*/
/*
----------------------------------------*/

/*--------------------------------------------------------------------------
全体の設定
---------------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {opacity: 0}
  85% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  85% {opacity: 0}
  100% {opacity: 1}
}
html{
  font-size: calc(100vw / 76.8);
}
body {
  min-width: initial;
  min-width: auto;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  animation: fadeIn 1s ease 0s  1 normal;
}
/*フォント設定
---------------------------------------------------------------------------*/
/*見出し設定
---------------------------------------------------------------------------*/
.secTtlType1{
  font-size: 3.2rem;
}
/*共通部品
---------------------------------------------------------------------------*/
/*ボタン設定
--------------------------------------*/
/*テーブル設定
--------------------------------------*/
/*カラム設定
---------------------------------------------------------------------------*/
.flexDcr{
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/*Layout
---------------------------------------------------------------------------*/
/*共通コンテンツ
--------------------------------------*/
.innerWrap{
  width: 100%;
  padding: 0 2.8rem;
}
/*Header
---------------------------------------------------------------------------*/
.hdrInr{
  height: 8.5rem;
}
/*gNavi
--------------------------------------*/
.gNavi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
}
.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: 15rem;
  position: relative;
}
.gNavi ul::-webkit-scrollbar {
  display: none;
}
.gNavi ul li {
  margin: 0 0 4rem;
  text-align: center;
}
.gNavi ul li a:not(.hdr_btn-app) {
  font-size: 2rem;
}
.hdr_btn-app{
  font-size: 1.6rem;
  width: 40rem;
  height: 4.6rem;
  line-height: 4.6rem;
}
/*SPメニューボタン
----------------------------------------*/
.sp-btn-menu {
  position: absolute;
  right: 0;
  width: 4rem;
  height: 2.4rem;
  display: block;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
}
.sp-btn-menu .line {
  border-radius: .4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 4rem;
  height: .3rem;
  background: #FFF;
  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% - 1rem);
}
.sp-btn-menu .line2 {
  top: 50%;
}
.sp-btn-menu .line3 {
  top: calc(50% + 1rem);
}
.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);
}
.fixed-bg {
  position: fixed;
  width: 100%;
}
/*FOOTER
---------------------------------------------------------------------------*/
.ftrInr {
  padding: 5rem 0 0;
}
.ftr_logo{
  width: 100%;
  text-align: center;
}
.ftrNavi{
  margin: 5.4rem auto 0;
}
.copyRight {
  padding: 5rem 0 4rem;
}
/*--------------------------------------------------------------------------
□下層共通 lowerLayer
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.secLow {
  padding: 9rem 0;
}


/*--------------------------------------------------------------------------
□TOPページ home
---------------------------------------------------------------------------*/
.secHomeType1{
  padding: 9rem 0 9.2rem;
}
.secHomeType2{
  padding: 9rem 0 10.2rem;
}
/*homeMainVisual
--------------------------------------*/
.homeMainVisual{
  padding-top: 4rem;
  height: 62rem;
}
.hMvInr{
  width: 70.8rem;
  height: 54rem;
}
.hMv_img{
  top: -30px;
  left: 11px;
  width: 74.8rem;
}
.hMv_catch{
  top: 4.8rem;
  right: 6.6rem;
  bottom: inherit;
  width: 31.5rem;
}
.hMv_txt{
  bottom: 5rem;
  top: inherit;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1.4;
}
.hMv_txt p{
  font-size: 2.5rem;
}
.hMv_txt h2{
  font-size: 4.4rem;
}
.hMv_txt h2 span{
  font-size: 1.9rem;
  line-height: 1.05;
}
/*Main
---------------------------------------------------------------------------*/
/*app_btnWrap
----------------------------------------*/
.app_btnWrap{
  text-align: center;
  margin-top: 2.8rem;
}
.btn-appType1{
  background-color: var(--main-color);
  border-radius: 2rem;
  display: inline-block;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  width: 30rem;
  height: 4rem;
  line-height: 4rem;
}
/*homeAbout
----------------------------------------*/
.hAbout_boxImg{
  margin: auto;
}
.hAbout_box{
  margin-top: 3rem;
  width: 100%;
  padding: 0;
}
.hAbout_box_catch{
  margin-top: 2rem;
}
/*homeFeat
----------------------------------------*/
.hFeat_intro{
  width: 100%;
}
.hFeat_boxWrap{
  margin-top: 3rem;
}
.hFeat_box{
  width: 71.5rem;
  padding: 2.2rem;
  height: 20rem;
}
.hFeat_box:nth-of-type(2),
.hFeat_box:nth-of-type(3),
.hFeat_box:nth-of-type(5){
  margin-left: 0;
}
.hFeat_box_top{
  height: 6.4rem;
}
.hFeat_box_top p{
  font-size: 3.5rem;
}
.hFeat_box_top p span{
  font-size: 3.5rem;
}
.hFeat_box:nth-of-type(2) .hFeat_box_top p span{
  font-size: 3.5rem;
}
/*homeRec
----------------------------------------*/
.hRec_box{
  width: 34.5rem;
  height: 26.1rem;
}
.hRec_box:nth-of-type(2){
  margin-left: 2.2rem;
}
.hRec_box:nth-of-type(3){
  margin-left: 0;
}
.hRec_box_top p span{
  font-size: 3.5rem;
}
.hRec_box_bottom{
  margin-top: 1.2rem;
  height: 14rem;
}
.hRec_box_bottom p img{
  width: 11rem;
}
/*homeAnx
----------------------------------------*/
.homeAnx{
  padding-top: 9rem;
}
.hAnx_boxImg{
  margin-top: 6rem;
}
.hAnx_boxImg img{
  width: 39.6rem;
}
/*homeOpt
----------------------------------------*/
.homeOpt{
  padding-top: 9rem;
}
.homeOpt .hRec_box:first-of-type .hRec_box_top p span{
  font-size: 2.9rem;
}
.homeOpt .hRec_box:first-of-type .hRec_box_bottom p img{
  width: 22rem;
}
.hOpt_sample-link {
  padding-top: 3rem;
}
.hOpt_smp-link_box{
  margin-right: auto;
  width: 34.5rem;
}
.hOpt_smp-link_table{
  margin: 1.2rem auto;
}
/*homePlan
----------------------------------------*/
.hPlan_intro{
  font-size: 1.6rem;
  margin-top: 2.8rem;
}
.hPlan_tableWrap1{
  margin-top: 5.4rem;
  padding: 3.5rem 4.5rem 6rem;
}
.hPlan_tableType1 th,
.hPlan_tableType1 td{
  display: block;
  width: 100%;
}
.hPlan_tableType1 th{
  border-right: none;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 2rem;
}
.hPlan_tableType1 td{
  padding: 1.5rem 4.4rem 0;
}
.hPlan_tableType1 td:nth-of-type(1){
  width: 100%;
}
.hPlan_tableType1 td:nth-of-type(2){
  margin: auto;
}
.hPlan_tbT1_note{
  right: -13rem;
  bottom: -2rem;
}
.hPlan_tableType2 th{
  width: 50%;
}
/*homeFlow
----------------------------------------*/
.hFlow_box ul{
  flex-direction: column;
  margin: 0.8rem 0;
}
.hFlow_box ul li{
  text-align: center;
}
.hFlow_box ul li:not(:last-of-type){
  padding: 0 0 3.8rem;
}
.hFlow_catchWrap{
  margin-top: 3rem;
}
.hFlow_box ul li:not(:last-of-type):after{
  transform: rotate(90deg);
  right: 0;
  left: 0;
  margin: auto;
  top: inherit;
  bottom: 0.5rem;
}
/*homeFaq
----------------------------------------*/
.hFaq_tableWrap{
  margin-top: 4rem;
  padding: 3.6rem 4.6rem;
}
.hFaq_table tr:not(:last-of-type){
  border-width: 4.5rem;
}
.hFaq_table th,
.hFaq_table td{
  display: block;
  width: 100%;
}
.hFaq_table th{
  border-right: none;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 1.8rem;
}
.hFaq_table td{
  padding: 2rem 0 0 0;
}
/*homeComp
----------------------------------------*/
.hComp_tableWrap{
  padding: 4rem 4.5rem;
}
.hComp_table tr:not(:last-of-type){
  border-width: 4.5rem;
}
.hComp_table th,
.hComp_table td{
  display: block;
  width: 100%;
}
.hComp_table th{
  text-align: left;
  padding: 0 0 1.8rem 0;
  border-right: none;
  border-bottom: 1px solid var(--main-color);
}
.hComp_table td{
  padding: 2rem 0 0 0;
}
/*homeFactUser
--------------------------------------*/
.homeFactUser {
  padding: 0 0 9.2rem;
}
.hfuTable th {
  width: 11rem;
}
.hfuTable td {
  font-size: 1.5rem;
}
.swiper-button-next,
.swiper-button-prev {
  width: 4rem;
  height: 4rem;
  top: calc(50% - 1rem);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.6rem;
}
/*homeAppForm
----------------------------------------*/
.hAppFormWrap{
  width: 72rem;
  padding: 3.8rem 2.8rem 4.5rem;
}

/*--------------------------------------------------------------------------
□下層ページ
---------------------------------------------------------------------------*/
/*ABOUT
---------------------------------------------------------------------------*/
/*mainVisual
--------------------------------------*/
/*Main
---------------------------------------------------------------------------*/

/*ect
---------------------------------------------------------------------------*/
.tab-mt-0{margin-top: 0;}
.tab-mt-1{margin-top: 1rem;}
.tab-mt-1-5{margin-top: 1.5rem;}
.tab-mt-2{margin-top: 2rem;}
.tab-mt-2-5{margin-top: 2.5rem;}
.tab-mt-3{margin-top: 3rem;}
.tab-mt-4{margin-top: 3rem;}
.tab-mt-5{margin-top: 5rem;}
.tab-mt-6{margin-top: 6rem;}
.tab-mt-5{margin-top: 7rem;}
.tab-mt-6{margin-top: 8rem;}


.pcNone{display: block!important;}
.pcNone-inl{display: inline!important;}
.TabSpNone{display: none!important;}

@media screen and (max-width: 480px){
/*--------------------------------------------------------------------------
全体の設定
---------------------------------------------------------------------------*/
html{
  font-size: calc(100vw / 39);
}
/*フォント設定
---------------------------------------------------------------------------*/
/*見出し設定
---------------------------------------------------------------------------*/
.secTtlType1{
  font-size: 2.6rem;
}
/*共通コンテンツ・部品
---------------------------------------------------------------------------*/
/*カラム設定
---------------------------------------------------------------------------*/
.innerWrap {
  padding: 0 1.6rem;
}
/*Header
---------------------------------------------------------------------------*/
.hdrInr {
  height: 4.5rem;
  padding: 0;
}
.hdr_logo{
  width: 12.8rem;
}
/*gNavi
--------------------------------------*/
.hdr_btn-app {
  width: 30rem;
}
/*SPメニューボタン
----------------------------------------*/
.sp-btn-menu {
  width: 2.1rem;
  height: 1.4rem;
}
.sp-btn-menu .line {
  width: 2.1rem;
  height: .2rem;
}
.sp-btn-menu .line1 {
  top: calc(50% - .5rem);
}
.sp-btn-menu .line3 {
  top: calc(50% + .5rem);
}
/*FOOTER
---------------------------------------------------------------------------*/
.ftrNavi {
  margin: 3rem auto 0;
}
.ftrNavi ul{
  flex-direction: column;
}
.ftrNavi ul li{
  margin: 2rem 0 0;
}
.ftrNavi ul li:not(:last-of-type){
  margin-right: 0;
}
/*--------------------------------------------------------------------------
下層共通 lowerLayer
---------------------------------------------------------------------------*/
/*mainVisual
--------------------------------------*/
/*breadcrumb
--------------------------------------*/
/*Main
--------------------------------------*/

/*--------------------------------------------------------------------------
TOPページ home
---------------------------------------------------------------------------*/
/*homeMainVisual
--------------------------------------*/
.homeMainVisual{
  padding-top: 2.2rem;
  height: 41.9rem;
}
.hMvInr{
  width: 36rem;
  height: 37rem;
}
.hMv_img{
  width: 38.8rem;
  top: inherit;
  bottom: -1.7rem;
  left: 0;
  right: 0;
  margin: auto;
}
.hMv_txt{
  bottom: inherit;
  top: 3rem;
}
.hMv_txt p{
  font-size: 1.2rem;
}
.hMv_txt h2{
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.hMv_txt h2 span{
  font-size: 1.4rem;
  line-height: 1.07;
}
.hMv_catch{
  top: 9.5rem;
  width: 16.6rem;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateX(0.6rem);
}
/*Main
--------------------------------------*/
/*app_btnWrap
----------------------------------------*/
.app_btnWrap{
  margin-top: 3rem;
}
/*homeAbout
----------------------------------------*/
.hAbout_box h3{
  font-size: 1.8rem;
}
.hAbout_box{
  margin-top: 4rem;
}
.hAbout_box_catch{
  font-size: 1.8rem;
}
/*homeFeat
----------------------------------------*/
.hFeat_box_top p{
  font-size: 2.6rem;
}
.hFeat_box_top p span{
  font-size: 2.6rem;
}
.hFeat_box_top{
  height: 5.6rem;
}
.hFeat_box_bottom p{
  font-size: 1.6rem;
}
.hFeat_box{
  width: 100%;
  height: 17.4rem;
  padding: 2.2rem 1.4rem;
}
/*homeRec
----------------------------------------*/
.hRec_box_top p span{
  font-size: 2.6rem;
}
.hRec_box{
  width: 100%;
  height: 27rem;
}
.hRec_box_bottom{
  margin-top: 3.2rem;
}
.hRec_box:nth-of-type(2){
  margin-left: 0;
}
.hOpt_smp-link_box{
  width: 100%;
}
.hOpt_smp-link_table{
  margin-left: 0;
  margin-top: 0.4rem;
}
/*homeAnx
----------------------------------------*/
.hAnx_boxImg{
  margin-top: 2rem;
}
.hAnx_boxImg img{
  width: 32.6rem;
}
/*homeOpt
----------------------------------------*/
.homeOpt .hRec_box:first-of-type .hRec_box_top p span{
  font-size: 2.6rem;
}
.hOpt_link_btn{
  width: 30rem;
}
/*homePlan
----------------------------------------*/
.hPlan_tableWrap1{
  padding: 3.5rem 1.5rem 6rem;
}
.hPlan_tableType1 td{
  padding: 2rem 0 0 0;
}
.hPlan_tableType1 td:nth-of-type(2){
  width: 100%;
}
.hPlan_tbT1_item{
  margin-bottom: 1.8rem;
}
.hPlan_tbT1_item p{
  margin-bottom: 0;
}
.hPlan_tbT1_item p:nth-of-type(1){
  font-size: 1.6rem;
  width: 8rem;
}
.hPlan_tbT1_item p:nth-of-type(2){
  font-size: 1.6rem;
  width: 22rem;
}
.hPlan_tbT1_item:last-of-type p:nth-of-type(1){
  display: none;
}
.hPlan_tbT1_item:last-of-type p:nth-of-type(2){
  width: 30rem;
}
.hPlan_tbT1_note{
  right: -0.4rem;
  bottom: -2.4rem;
  font-size: 1.1rem;
}
.hPlan_tbT1_note2{
  font-size: 1.1rem;
}
.hPlan_tableWrap2{
  padding: 4rem 1.5rem 3.6rem;
}
.hPlan_tableType2 th,
.hPlan_tableType2 td{
  display: block;
  width: 100%;
}
.hPlan_tableType2 th{
  border-right: none;
  border-bottom: 1px solid var(--sub-color);
  padding-bottom: 1.8rem;
}
.hPlan_tableType2 td{
  padding-top: 2rem;
}
.hPlan_tableType2 td p{
  padding: 0;
  text-align: center;
}
/*homeFlow
----------------------------------------*/
.hFlow_box{
  padding: 3rem 4.6rem 4.4rem;
}
.hFlow_catchWrap span{
  right: 0;
  left: 0;
  margin: auto;
  transform: translate(2rem,0) rotate(172deg);
  width: 21.5rem;
}
/*homeFaq
----------------------------------------*/
.hFaq_tableWrap {
  padding: 3.6rem 1rem;
}
.hFaq_table th{
  padding-bottom: 1.2rem;
}
/*homeComp
----------------------------------------*/
.hComp_tableWrap {
  padding: 4rem 1rem;
}
.hComp_tableWrap:last-of-type .hComp_table th{
  text-align: center;
}
.hComp_tableWrap:last-of-type .hComp_table td{
  text-align: center;
}
.hComp_table_note1{
  margin-top: 1.5rem;
}
/*homeAppForm
----------------------------------------*/
.hAppFormWrap{
  width: 35.8rem;
  padding: 3rem 1rem 4.5rem;
}
.hAppFormInr{
  width: 100%;
}

/*--------------------------------------------------------------------------
下層ページ
---------------------------------------------------------------------------*/

/*プライバシーポリシー・利用規約
---------------------------------------------------------------------------*/
/*Main
---------------------------------------------------------------------------*/
.termsListWrap h4 {
  font-size: 1.6rem;
}

/*--------------------------------------------------------------------------
ect
---------------------------------------------------------------------------*/
.spAlignL {text-align: left;}
.spAlignR {text-align: right;}
.spAlignCR {text-align: center;}

.sp-mt-0{margin-top: 0;}
.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;}

.pcTabNone{display: block!important;}
.spNone{display: none!important;}
.spNone-inl{display: none!important;}

}

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

}

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

}