@charset "UTF-8";
/* CSS Document */
/*共通*/
/*フォント*/
body{
    line-height: 1.5rem;
    text-size-adjust: 100%;
 　　-webkit-text-size-adjust: 100%;/*Chrome,Safari*/
 　　-ms-text-size-adjust: 100%;/*EgdeMobile*/
 　　-moz-text-size-adjust: 100%;/*firefox*/
	font-family: 'Noto Sans JP', sans-serif!important;
}
img{
	max-width: 100%;
    height: auto;
}
a {
	text-decoration: none!important;
	color: black;
}
ul {
    list-style: none;
    padding: 0;
}
.clear{
	clear: both;
}
/*/////////////動き///////////////////////////////////////*/
/*========= 下からフェードインで出てくる===============*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1650ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*========= 時間差をつけて順番に動作===============*/
/*全共通*/
.box{
  opacity: 0;
}
/*========= 下から上へ===============*/
.box-02.displayed{
  animation-delay: 0.3s;
}
.box-03.displayed{
  animation-delay: 0.6s;
}
.box-04.displayed{
  animation-delay: 0.9s;
}
.box-05.displayed{
  animation-delay: 1.2s;

}
.displayed{
  animation: fadeUp 1s forwards;
}
@keyframes fadeUp{
  0%{
	  opacity:0;
	  transform: translateY(0px);
	}
100%{
	opacity:1;
	transform: translateY(-30px);
	}
}
/*========= 左から右へ===============*/
.box-02_l-r.displayed_lr{
  animation-delay: 0.3s;
}
.box-03_l-r.displayed_lr{
  animation-delay: 0.6s;
}
.box-04_l-r.displayed_lr{
  animation-delay: 0.9s;
}
.box-05_l-r.displayed_lr{
  animation-delay: 1.2s;

}
.box-06_l-r.displayed_lr{
  animation-delay: 1.5s;

}
.displayed_lr{
  animation: fade_lr 1s forwards;
}
@keyframes fade_lr{
  0%{
	  opacity:0;
	  transform: translateX(-100%);
	}
100%{
	opacity:1;
	transform: translateX(0%);
	}
}
/*========= テキストの動き流れるように１文字ずつ出現（左から右） ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
    display: inline-block;
}
.slide-in_inner {
  display: inline-block;

}
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*中央構えの際に追加*/
.center-slide-in-leftAnime {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*========= 左から右のスライドアニメーション ===============*/
.leftAnime-slide {
	opacity: 0; 
	transform: translateX(-100%); /* 初期状態では左に移動させる */
	transition: opacity 1.3s ease-in-out, transform 1.3s ease-in-out;
}
.slideAnimeLeftRight-slide {
	transform: translateX(0); /* 右に移動させる */
	opacity: 1; 
}
/*========= ボタンの動き　もっちり動===============*/
.mocchiri {
    animation: mocchiri 3s infinite;
}
@keyframes mocchiri {
    0% {
        transform: scale(1, 0.8);
    }
    20% {
        transform: scale(0.8, 1.1);
    }
    95% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 0.8);
    }
}
/*ボタンの動き　拡大縮小で動く*/
.cv_btn {
  margin: 0 auto;
}
.cv_btn .banner_btn {
	animation: anime1 0.9s ease 0s infinite alternate;
	transform-origin:center;
    color: #fff;
}
@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}
/*/////////////Gナビ/////////////*/
/*gナビ全体*/
.header-pc {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999999;
}
@media (max-width: 1250px){
.header-pc {
    display: none;
}
}
/*gナビの帯*/
.header-inner {
    position: relative;
    left: 0;
    width: 100%;
    height: 80px;
	background-color:#fff;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.10);
}
/*ロゴ*/
.header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 35px;
    height: 100%;
    pointer-events: auto;
    margin-right: 80px;
}
@media (max-width: 1607px){
.header-logo {
    margin-right: 40px;
}
}
@media (max-width: 1440px){
.header-logo {
    margin-right: 30px;
    width: 250px;
	padding-left: 20px;
}
}
@media (max-width: 1199px){
.header-logo {
	padding-left: 20px;
}
}
/*左側ナビ*/
.header-nav {
    display: flex;
    opacity: 1;
}
@media (max-width: 1165px){
.header-nav {
    padding-right: 20px;
}
}
@media (max-width: 1025px){
.header-nav {
    padding-right: 15px;
}
}
.header-nav > ul,.header-nav-left > ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
/*ナビメニュー　文字*/
.header.header-item {
    margin-right: 50px;
    font-size: 14px;
    font-weight: 400;
}
@media (max-width: 1607px){
.header.header-item {
	margin-right: 30px;
}
}
@media (max-width: 1199px){
.header.header-item {
    font-size: 13px;
    margin-left: 15px;
}
}
/*ナビメニュー　文字リンク*/
.header-link {
    position: relative;
    color: #313233;
    display: block;
    padding-top: 32px;
	height: 80px;
    -webkit-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
}
a.header-link:hover {
    color: #3DB6BE;
    transition: color 0.5s ease-out;
}
/*右側ナビ*/
li.header-influencer {
    border-radius: 25px;
    border: 2px solid #000;
    background: #E9FF61;
    padding: 12px;
    padding: 12px 25px;
    font-size: 13px;
    color: #000;
    font-weight: 500;
    margin-top: 18px;
}
li.header-influencer:hover{
	animation: shine 1s;
}
@keyframes shine {
  0% { background: #e4f76f; }
  10% { background: #f8ffce; }
  100% { background: #e4f76f; }
}
li.header-square-botton {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80px;
    padding: 31px 17px;
    justify-content: center;
	font-size: 12px;
	font-weight: 600;
    color: #fff;
	    overflow: hidden;
    position: relative;
    z-index: 1;
}
li.header-square-botton::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
li.header-square-botton:hover {
  color: #fff;
}
li.header-square-botton:hover::after {
  transform: scale(1, 1);
}
li.header-square-botton:hover {
  color: #fff;
}
.header-login{
    background: #3DB6BE;
    margin-left: 38px;
}
@media (max-width: 1607px){
.header-login{
    margin-left: 15px;
}
}
/*背景変わる*/
li.header-square-botton.header-login::after{
	background: #000;
	color: #fff;
}
.header-omoushikomi {
    background: #FF2929;;
}
/*背景変わる*/
li.header-square-botton.header-omoushikomi::after{
	background: #000;
	color: #fff;
}
/*//////////////////////////SPナビ//////////////////////////*/
.header-sp{
	display: none;
}
@media (max-width: 1250px){
.header-sp{
	display:block;
}
}
.header-spmenu_r {
    position: relative;
    float: right;
}
.header-logotext-sp {
    margin: 16px 0 0 15px;
	width: 300px;
}
@media (max-width: 767px){
.header-logotext-sp {
	width: 250px;
    margin: 16px 0 0 15px;
}
}
@media (max-width: 320px){
.header-logotext-sp {
    margin: 16px 0 0 10px;
}
}
.header-sp {
	position: fixed;
	left: 0;
	top: -2;
	width: 100%;
	height: 60px;
	background-color: #fff;
	z-index: 100;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.10);
}
#menu-wrapper {
    overflow: hidden;
    max-width: 100%;
    cursor: pointer;
    margin-top: -40px;
}
@media (max-width: 767px){
#menu-wrapper {
    margin-top: -37px;
}
}
@media (max-width: 1250px){
#menu-wrapper #hamburger-menu {
    position: relative;
    width: 25px;
    height: 20px;
    margin: 16px;
	float: right;
}
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu {
    margin-top: 15px;
}
}
#menu-wrapper #hamburger-menu span {
    opacity: 1;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
	border-radius: 15px;
    color: black;
    background-color:#FF2929;;
    position: absolute;
    transform: rotate(0deg);
    transition: .4s ease-in-out;
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu span {
	height: 3px;
}
}
#menu-wrapper #hamburger-menu span:nth-child(1) {
    top: 0;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
    top: 9px;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
    top: 18px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    transform: translateY(6px) rotate(135deg);
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
}
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-60px);
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-135deg);
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-135deg);
}
}
#menu-container .menu-list {
    padding-right: 0;
    position: absolute;
    width: 400px;
    max-width: 400px;
	background: #EFEFEF;
    z-index: 999;
    height: 100%;
    position: fixed;
    right: -100%;
}
@media (max-width: 991px){
#menu-container .menu-list {
    margin-top: 16px;
}
}
@media (max-width: 767px){
#menu-container .menu-list {
    width: 100%;
    max-width: 100%;
}
}
.sp-nav-bottom {
    display: flex;
    justify-content: space-between;
    margin: 28px;
}
@media (max-width: 767px){
.sp-nav-bottom {
    justify-content: space-evenly;
}
}
li.sp-square-botton{
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 110px;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	background: #FFF;
}
.sp-nav-bottom-login li.sp-square-botton {
    margin: 28px 0px 28px 13px;
}
.sp-nav-bottom-login li.sp-square-botton:hover{
	border: solid 1px #3DB6BE;
	transition: 0.3s ease-in-out;
	background: #FFF;
}
.sp-nav-bottom-application li.sp-square-botton{
    margin: 28px 13px 28px 0px;
}
.sp-nav-bottom-application li.sp-square-botton:hover{
	border: solid 1px #FF2929;
	transition: 0.3s ease-in-out;
	background: #FFF;
}
.sp-nav-bottom-login a li,.sp-nav-bottom-application a li{
	background: #FFF!important;
}
.col-6.sp-nav-bottom-l {
    padding-right: 10px;
}
.col-6.sp-nav-bottom-r {
    padding-left: 10px;
}
span.sp-square-botton-login {
    color: #3DB6BE;
    font-size: 15px;
    font-weight: 600;
/*    font-family: 'Inter', sans-serif;*/
}
span.sp-square-botton-omoushikomi {
    color: #FF2929;
    font-size: 15px;
    font-weight: 600;
/*    font-family: 'Inter', sans-serif;*/
}
li.sp--influencer {
    border-radius: 25px;
	border: 2px solid #000;
    background: #E9FF61;
    padding: 12px;
    padding: 12px 25px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-top: 28px;
    text-align: center;
    width: 88%;
    margin: auto;
    margin-bottom: 45px;
}
li.sp--influencer:hover{
	animation: shine 1s;
}
#menu-container .menu-list li.accordion-toggle, #menu-container .menu-list .menu-login {
    font-size: 16px;
    padding: 10px 20px;
	text-transform: uppercase;
    border-top: 1px solid #dbdcd2;
}
#menu-container .menu-list li a{
	display: block;
	color: #000;
}
#menu-container .menu-list li a:hover{
	color: #3DB6BE;
	transition: color 0.5s ease-out;
}
a.sp-nav-small {
    color: #6F6F6F!important;
    font-size: 12px;
    font-weight: 500;
}
a.sp-nav-small:hover{
	color: #3DB6BE!important;
}
li.sp-nav-smallgrop_1,li.sp-nav-smallgrop_2{
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
@media (max-width: 767px){
li.sp-nav-smallgrop_1,li.sp-nav-smallgrop_2{
    padding: 0px 0px 15px;
}
}
li.sp-nav-smallgrop_1 a:nth-child(1),li.sp-nav-smallgrop_2 a:nth-child(1){
	margin-right: 23px;
}
.accordion-toggle, .accordion-content {
    cursor: pointer;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
}
.accordion-content {
    display: none;
}
.accordion-toggle a:before, .accordion-toggle a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 15px;
    height: 2px;
    margin-top: -1px;
    background-color: #5a5858;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-out;
}
.accordion-toggle a:before {
    transform: rotate(-90deg);
    opacity: 1;
    z-index: 2;
}
.accordion-toggle.active-tab {
  background: #ff7512;
  transition: all 0.3s ease;
}
.accordion-toggle a.active:before {
    transform: rotate(0deg);
    background: #fff !important;
}
.accordion-toggle a.active:after {
    transform: rotate(180deg);
    background: #fff !important;
    opacity: 0;
}
#menu-container .menu-list li.sp-nav-p{
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}
@media (max-width: 767px){
#menu-container .menu-list li.sp-nav-p{
    margin-bottom: 30px;
}
}
/*/////////////トップページ/////////////*/
/*メイン画像*/
.main-img-content {
    padding-top: 80px;
}
@media (max-width: 1250px){
.main-img-content {
    padding-top: 61px;
}
}
.main-img{
    background-image: url(../img/main.jpg);
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
    height: 676px;
    background-size: cover;
    position: relative;
    z-index: 1;
}
@media (max-width: 1300px){
.main-img{
    height: 480px;
}
}
@media (max-width: 991px){
.main-img{
    height: 350px;
}
}
@media (max-width: 767px){ 
.main-img{
	background-image:url("../img/main-sp.jpg");
    padding-bottom: 147%;
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
}
}
/*メイン画像内コンテンツ*/
.main-img-pc-contents {
    position: absolute;
    top: 42%;
    left: 44%;
}
@media (max-width: 767px){
.main-img-pc-contents {
    left: 0%;
    width: 100%;
}
}
.main-pc-title {
	display: flex;
	justify-content: center;
	align-items: baseline;
    margin: 25px 0px 0px -8px;
}
@media (max-width: 1300px){
.main-pc-title {
    justify-content: flex-start;
    margin: -6px 0px 0px -8px;
}
}
@media (max-width: 767px){
.main-pc-title {
	display: none;
}
}
@media (max-width: 767px){
.main-pc-title {
	display: none;
}
}
.main-sp-title {
	display: none;
}
@media (max-width: 767px){
.main-sp-title {
	display: block;
	width: 87%;
    position: absolute;
    top: 6%;
}
}
.getsugaku-nin {
    width: 86%;
}
.getsugaku-price {
    width: 82%;
	margin: -5% 0px 0px 16%;
}
.main-pc-title-item {
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    background: -webkit-linear-gradient(transparent 77%, #E9FF61 87%);
	background: -o-linear-gradient(transparent 77%, #E9FF61 87%);
	background: linear-gradient(transparent 77%, #E9FF61 87%);
}
@media (max-width: 767px){
.main-pc-title-item {
    font-size: 4vw;
	font-weight: bold;
    background: linear-gradient(transparent 44%, #E9FF61 45%);
}
}
span.main-pc-title-number {
    font-weight: 500;
    font-size: 57px;
}
@media (max-width: 1300px){
span.main-pc-title-number {
    font-size: 40px;
}
}
@media (max-width: 1199px){
span.main-pc-title-number {
    font-size: 30px;
}
}
@media (max-width: 767px){
span.main-pc-title-number {
    font-size: 15vw;
}
}
span.main-pc-title-j {
    font-family: "Zen Kaku Gothic New";
    font-size: 43px;
    margin-left: -8px;
}
@media (max-width: 1300px){
span.main-pc-title-j {
    font-size: 40px;
}
}
@media (max-width: 991px){
span.main-pc-title-j {
    font-size: 30px;
}
}
@media (max-width:767px){
span.main-pc-title-j {
    font-size: 5vw;
}
}
span.main-pc-title-small {
	font-family: "Zen Kaku Gothic New";
    font-size: 32px;
    margin-left: -8px;
}
@media (max-width: 1300px){
span.main-pc-title-small {
	font-size: 25px;
}
}
@media (max-width: 991px){
span.main-pc-title-small {
	font-size: 20px;
}
}
@media (max-width:767px){
span.main-pc-title-small {
    font-size: 5vw;
}
}
.main-pc-title-item-marker{
    background: #E9FF61;
    padding: 0px 18px;
	font-size: 27px;
	font-weight: 800;
    text-align: center;
	margin-right: 5px;
    background: -webkit-linear-gradient(transparent 11%, #E9FF61 0%);
	background: -o-linear-gradient(transparent 11%, #E9FF61 0%);
	background: linear-gradient(transparent 11%, #E9FF61 0%);
    position: relative;
    top: -8px;
}
@media (max-width: 991px){
.main-pc-title-item-marker{
    padding: 0px 10px;
    top: -3px;
}
}
@media (max-width: 767px){
.main-pc-title-item-marker{
    margin: 0px 0px 0px 50px;
}
}
.main-pc-title-item-marker span{
    font-size: 47px;
}
@media (max-width: 1300px){
.main-pc-title-item-marker span{
    font-size: 31px;
}
}
@media (max-width: 991px){
.main-pc-title-item-marker span{
	font-size: 23px;
}
}
@media (max-width: 767px){
.main-pc-title-item-marker span{
    font-size: 9vw;
}
}
span.main-pc-price-text{
    font-size: 80px;
	font-weight: 500;
}
@media (max-width: 1300px){
span.main-pc-price-text{
    font-size: 55px;
}
}
@media (max-width: 991px){
span.main-pc-price-text{
    font-size: 43px;
}
}
@media (max-width: 767px){
span.main-pc-price-text{
    font-size: 17vw;
    font-weight: bold;
}
}
.banner-contents-pc p{
	font-size: 27px;
	font-weight: 500;
	margin-top: 40px;
}
p.price-text-small {
    font-family: "Zen Kaku Gothic New";
    font-size: 15px;
    font-weight: 100;
    text-align: right;
    margin-right: 7px;
}
@media (max-width: 991px){
p.price-text-small {
	font-size: 13px;
}
}
@media (max-width: 767px){
p.price-text-small {
    color: #5f5f5f;
    margin: -5% 6% 0px;
    font-size: 2.5vw;
}
}
.main-pc-text-grop-caption {
    font-family: 'BIZ UDPGothic', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.05em;
}
@media (max-width: 1300px){
.main-pc-text-grop-caption {
    font-size: 16px;
}
}
@media (max-width: 991px){
.main-pc-text-grop-caption {
    margin-top: -15px;
}
}
@media (max-width: 767px){
.main-pc-text-grop-caption {
    font-size:4vw;
    background-color: #02aab5;
    border-radius: 33px;
    width: 73%;
    margin: 0px auto 12px;
	padding: 7px 15px;
}
}
.main-pc-text-grop-caption span{
    background-color: #02aab5;
    border-radius: 20px;
    padding: 12px 25px;
    letter-spacing: 0.09em;
}
@media (max-width: 991px){
.main-pc-text-grop-caption span{
	padding: 8px 15px;
}
}
@media (max-width: 767px){
.main-pc-text-grop-caption span{
    background-color: transparent;
}
}
.main-pc-text-grop-caption-text {
    margin-top: 20px;
}
@media (max-width: 991px){
.main-pc-text-grop-caption-text {
    margin-top: 10px;
}
}
@media (max-width: 767px){
.main-pc-text-grop-caption-text {
    margin-top: 0px;
    margin-bottom: 0.5rem;
}
}
.main-pc-text-grop-caption-text span{
    font-family: "Zen Kaku Gothic New";
    font-size: 29px;
	border-bottom: solid 5px #02aab5;
    padding-bottom: 5px;
}
@media (max-width: 1300px){
.main-pc-text-grop-caption-text span{
    font-size: 21px;
    border-bottom: solid 3px #02aab5;
    padding-bottom: 2px;
}
}
@media (max-width: 991px){
.main-pc-text-grop-caption-text span{
    font-size: 16px;
}
}
@media (max-width:767px){
.main-pc-text-grop-caption-text span{
	font-size: 4.5vw;
}
}
@media (max-width: 767px){
.main-pc-text-grop {
    display: block;
    margin: auto;
    position: static;
    text-align: center;
    margin-top: 50%;
}
}
/*コンテンツ*/
.top-content {
    margin-top: 80px;
}
@media (max-width: 767px){
.top-content {
    margin-top: 50px;
}
}
.top-content-title {
    color: #02AAB5;
    text-align: center;
    font-size: 35px;
    font-weight: 500;
}
@media (max-width: 991px){
.top-content-title {
    font-size: 23px;
}
}
@media (max-width: 767px){
.top-content-title {
    font-size: 19px;
}
}
@media (max-width: 425px){
.top-content-title {
    font-size: 17px;
}
}
@media (max-width: 375px){
.top-content-title {
    font-size: 16px;
}
}
@media (max-width: 320px){
.top-content-title {
    font-size: 13px;
}
}
.top-content-title span{
	 background:-webkit-linear-gradient(transparent 60%, #E9FF61 60%);
	 background:-o-linear-gradient(transparent 60%, #E9FF61 60%);
	 background:linear-gradient(transparent 60%, #E9FF61 60%);
}
.top-content-logotext {
    color: #FF2929;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    margin-top: 32px;
}
@media (max-width: 991px){
.top-content-logotext {
	font-size: 14px;
}
}
@media (max-width: 767px){
.top-content-logotext {
margin-bottom: 0.3rem;
}
}
.top-content-logo {
    display: block;
    margin: auto;
}
@media (max-width: 991px){
.top-content-logo {
    width: 50%;
}
}
@media (max-width: 767px){
.top-content-logo {
    width: 80%;
}
}
.top-content-text {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin: 32px 0px 86px;
    line-height: 2em;
}
@media (max-width: 991px){
.top-content-text {
    font-size: 15px;
    margin: 32px 0px 60px;
}
}
@media (max-width: 767px){
.top-content-text {
    line-height: 2em;
    margin: 32px 0px 40px;
}
}
@media (max-width: 360px){
.top-content-text {
    font-size: 13px;
}
}
/*特徴*/
.features-bg {
    background: #FAFAFA;
    padding: 100px 0px;
}
@media (max-width: 991px){
.features-bg {
    padding: 60px 0px;
}
}
@media (max-width: 767px){
.features-bg {
    padding: 2px 0px;
}
}
h2.h2-title {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
@media (max-width: 991px){
h2.h2-title {
    font-size: 25px;
}
}
h2.h2-title-kaso {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 57px;
}
@media (max-width: 1199px){
h2.h2-title-kaso {
	margin-bottom: 50px;
}
}
@media (max-width: 991px){
h2.h2-title-kaso {
    font-size: 25px;
}
}
@media (max-width: 767px){
h2.h2-title-kaso {
	margin-bottom: 30px;
}
}
.h3-title {
    color: #02AAB5;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 600;
}
@media (max-width: 991px){
.h3-title {
    font-size: 13px;
}
}
@media (max-width: 767px){
.h3-title {
    margin-top: 40px;
}
}
@media (max-width: 375px){
.h3-title {
	font-size: 13px;
}
}
h3.h3-title.h3-title-white{
    color: #fff;
}
.featurestext-grop {
    margin-top: 70px;
}
@media (max-width: 767px){
.featurestext-grop {
    margin-top: 30px;
}
}
.featurestext-grop-title {
    color: #02AAB5;
    font-size: 24px;
    font-weight: 700;
}
@media (max-width: 991px){
.featurestext-grop-title {
	font-size: 17px;
}
}
@media (max-width: 767px){
.featurestext-grop-title {
    font-size: 20px;
    margin-top: 10px;
}
}
@media (max-width: 360px){
.featurestext-grop-title {
    font-size: 14px;
}
}
.featurestext-grop-text {
    font-size: 14px;
    font-weight: 400;
	margin-top: 40px;
    line-height: 2em;
}
@media (max-width: 991px){
.featurestext-grop-text {
    font-size: 13px;
	margin: 10px 0px 0rem;
}
}
.support-content {
    display: flex;
    justify-content: space-between;
    margin-top: 95px;
}
@media (max-width: 991px){
.support-content {
    margin-top: 40px;
}
}
@media (max-width: 767px){
.support-content {
    justify-content: space-between;
	flex-wrap: wrap;
    margin: 40px 0px;
}
}
.support-item {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.10);
	display: flex;
	width: 208px;
	padding: 25px 22px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media (max-width: 991px){
.support-item {
    width: 160px;
    padding: 25px 8px;
}
}
@media (max-width: 767px){
.support-item {
    width: 48%;
	padding: 25px 8px;
    margin-bottom: 15px;
}
}
.support-item p{
	text-align: center;
	font-size: 15px;
	font-weight: 600;
    margin-bottom: 0rem;
}
@media (max-width: 991px){
.support-item p{
	font-size: 13px;
}
}
@media (max-width: 991px){
.support-item img{
    width: 50px;
}
}/*他社比較*/
.comparison-bg {
    background: #F3F3F3;
    padding: 100px 0px;
}
@media (max-width: 991px){
.comparison-bg {
    padding: 60px 0px;
}
}
@media (max-width: 767px){
.comparison-bg {
    padding: 2px 0px 60px;
}
}
.comparison-img{
    margin-top: 50px;
}
@media (max-width: 991px){
.comparison-img {
    display: none;
}
}
/*SPのみ*/
.comparison-contents-table {
    display: none;
}
@media (max-width: 991px){
.comparison-contents-table {
	display: block;
	overflow: auto;
    white-space: nowrap;
    margin-top: 30px;
}
}
td.comparison-detail {
    overflow: auto;
    white-space: pre-line;
    text-align: left;
    vertical-align: baseline;
	font-size: 14px;
	line-height: 1.7em;
}
table{
	border-collapse: collapse;
	width: 100%;
}

.comparison-contents th, td {
	padding: 8px;
	text-align: center;
    border: 5px solid #F3F3F3;
	background-color: #fff;
	font-size: 14px;
}
.comparison-contents td {
	font-size: 13px;
	font-weight: 400;
}
.comparison-table th {
    color: #fff;
}
.comparison-contents th:first-child {
	background: transparent;
}

.comparison-contents th:nth-child(2) {
	background: #FF2929;
    padding: 8px 30px;
}
.comparison-contents th:nth-child(3),.comparison-contents th:nth-child(4),.comparison-contents th:nth-child(5){
    padding: 8px 65px;
}
.comparison-contents th:not(:first-child):not(:nth-child(2)) {
	background: #BFBFBF;
}
.comparison-contents th:nth-child(5) {
	border-radius: 0px 10px 0px 0px;
}
.comparison-contents th, .comparison-contents-itemtd {
	margin: 5px;
    color: #fff;
}
.comparison-green{
	background: #55C7CE;
    color: #fff;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}
/*バナー*/
.banner-bg {
    border: 7px solid #000;
    background: #FFF;
    padding: 0px 0px 50px;
}
@media (max-width: 991px){
.banner-bg {
    padding: 0px 0px 55px;
}
}
@media (max-width: 425px){
.banner-bg {
    padding: 0px 0px 40px;
}
}
.banner-obi {
    margin-left: 5%;
}
@media (max-width: 991px){
.banner-obi {
    width: 15%;
}
}
@media (max-width: 767px){
.banner-obi {
   display:none;
}
}
.sp-banner-obi{
   display:none;
}
@media (max-width: 767px){
.sp-banner-obi{
    display: block;
    border-radius: 46px;
	background: #000;
	padding: 9px 0px;
    font-size: 5vw;
	color: #FFF;
    margin: 45px auto 30px;
	width: 100%;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.05em;
}
}
@media (max-width: 576px){
.sp-banner-obi{
	border-radius: 28px;
	width: 60%;
}
}
@media (max-width: 425px){
.sp-banner-obi{
    margin: 30px auto 30px;
}
}
img.banner-cheapest-price {
    width: 100%;
}
p.banner-contents-sp-text {
    margin-top: 0px;
}
p.banner-contents-sp-text span{
    margin-top: 10px;
}
.cheapest-price {
    display: block;
    margin: auto;
    margin-top: -90px;
}
@media (max-width: 991px){
.cheapest-price {
    width: 37%;
    margin-top: -40px;
}
}
@media (max-width: 767px){
.cheapest-price {
	width: 93%;
    margin-top: 0px;
}
}
.banner-contents-pc {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px){
.banner-contents-pc {
    display: none;
}
}
.banner-contents-sp {
    display: none;
}
@media (max-width: 767px){
.banner-contents-sp {
    display:block;
}
}
@media (max-width: 767px){
.banner-contents-sp p{
    font-size: 4vw;
    font-weight: 600;
    margin-top: -10px;
    text-align: center;
}
}
@media (max-width: 576px){
.banner-contents-sp p{
    font-size: 4.6vw;
}
}
.banner-contents-marker-sp {
    display: block;
}
.banner-contents-sp-img {
    width: 78%;
	margin-top: -28px;
}
.banner-contents-sp-grop{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
p.banner-contents-sp-text {
    font-size: 8vw;
	font-weight: bold;
    margin: 8px 0px 0px 5px;
}
@media (max-width: 425px){
p.banner-contents-sp-text {
    margin: 0px 0px 0px 5px;
}
}
.banner-contents-marker{
    background: #E9FF61;
    padding: 0px 18px;
	font-size: 27px;
    font-weight: 700;
    text-align: center;
	margin-right: 5px;
	background: -webkit-linear-gradient(transparent 72%, #E9FF61 0%);
	background: -o-linear-gradient(transparent 72%, #E9FF61 0%);
    background: linear-gradient(transparent 72%, #E9FF61 0%);
}
@media (max-width: 991px){
.banner-contents-marker{
    font-size: 25px;
}
}
@media (max-width: 767px){
.banner-contents-marker{
    font-size: 40px;
}
}
span.price-text{
	font-size: 55px;
    font-weight: 600;
}
@media (max-width: 991px){
span.price-text{
    font-size: 35px;
}
}
@media (max-width: 767px){
span.price-text{
    font-size: 80px;
}
}
.banner-contents p{
	font-size: 27px;
	font-weight: 500;
	margin-top: 40px;
}
@media (max-width: 991px){
.banner-contents p{
    font-size: 19px;
}
}
/*各ボタン*/
.row.banner-text-grop {
    width: 77%;
    margin: auto;
}
@media (max-width: 767px){
.row.banner-text-grop {
    width: 100%;
}
}
.col-12.col-md-6.banner-bottom {
	margin-top: 18px;
	text-align: center;
}
@media (max-width: 767px){
.col-12.col-md-6.banner-bottom {
	margin-top: 20px;
}
}
.banner-text{
	font-size: 15px;
	font-weight: 500;
}
.banner-text{
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0.3rem ;
}
@media (max-width: 991px){
.banner-text{
    font-size: 13px;
}
}
@media (max-width: 767px){
.banner-text{
    font-size: 3.3vw;
}
}
@media (max-width: 576px){
.banner-text{
    font-size: 3.8vw;
}
}
.banner-text-send{
	color: #FF2929;
}
.banner-text-mail{
	color: #000;
}
.banner_btn{
    padding: 10px;
    border-radius: 25px;
    width: 80%;
    margin: auto;
}
@media (max-width: 1199px){
.banner_btn{
    width: 100%;
}
}
@media (max-width: 767px){
.banner_btn{
    border-radius: 45px;
    padding: 13px 10px;
}
}
@media (max-width: 425px){
.banner_btn{
	padding: 10px;
}
}
.banner_btn p{
    margin-bottom: 0rem;
	font-size: 18px;
	font-weight: 500;
}
@media (max-width: 991px){
.banner_btn p{
	font-size: 15px;
}
}
@media (max-width: 767px){
.banner_btn p{
    font-size: 4vw;
}
}
@media (max-width: 576px){
.banner_btn p{
    font-size: 5vw;
}
}
.banner_btn.banner_btn-send {
    background: #FF2929;
}
.banner_btn.banner_btn-mail {
    background: #000;
}
img.banner_btn-icon {
    margin-left: 10px;
    vertical-align: bottom;
}
@media (max-width: 767px){
img.banner_btn-icon {
    width: 9%;
}
}
/*ご利用事例*/
.case-bg {
    background: #55C7CE;
    padding: 100px 0px;
}
@media (max-width: 991px){
.case-bg {
    padding: 60px 0px;
}
}
@media (max-width: 767px){
.case-bg {
    padding: 2px 0px 40px;
}
}
.case-contents-grop {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px){
.case-contents-grop {
    flex-direction: column;
}
}
.case-contents-grop-contents {
    display: inline-flex;
    padding: 30px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.10);
    margin-top: 45px;
}
.case-contents-grop-contents:nth-of-type(1) {
	margin-right: 20px;
}
@media (max-width: 767px){
.case-contents-grop-contents:nth-of-type(1) {
    margin-top: 30px;
	margin-right: 0px;
}
}
.case-contents-grop-contents:nth-of-type(2) {
	margin-left: 20px;
}
@media (max-width: 767px){
.case-contents-grop-contents:nth-of-type(2) {
    margin-top: 30px;
	margin-left: 0px;
}
}
.case-title {
    color: #6F6F6F;
    font-weight: 400;
    margin-bottom: 0rem;
}
.case-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
    margin-bottom: 0rem;
}
@media (max-width: 991px){
.case-text {
    font-size: 13px;
}
}
.qa-mt-bg {
    padding: 120px 0px 0px;
    background: #FAFAFA;
}
@media (max-width: 991px){
.qa-mt-bg {
    padding: 70px 0px 0px;
}
}
@media (max-width: 767px){
.qa-mt-bg {
    padding: 0px;
}
}
.case-contents-grop_2 {
    border-radius: 10px;
    background: #F3F3F3;
    display: flex;
	padding: 52px 103px;
}
@media (max-width:1199px){
.case-contents-grop_2 {
    align-items: center;
}
}
@media (max-width:991px){
.case-contents-grop_2 {
    padding: 52px 20px;
}
}
@media (max-width:767px){
.case-contents-grop_2 {
    flex-direction: column;
    padding: 52px 20px 40px;
	background: transparent;
}
}
@media (max-width:767px){
.qa-mt-bg-sp{
    background: #F3F3F3;
}
}
@media (max-width:767px){
img.case1 {
    width: 100%;
    margin: auto;
    display: block;
}
}
.case-contents-grop_2-rigth {
    margin-left: 65px;
    width: 50%;
    line-height: 2em;
}
@media (max-width:1199px){
.case-contents-grop_2-rigth {
    width: 82%;
}
}
@media (max-width:991px){
.case-contents-grop_2-rigth {
    width: 100%;
}
}
@media (max-width:767px){
.case-contents-grop_2-rigth {
    margin: 15px 0px 0px;
    line-height: 1.5em;
}
}
@media (max-width:991px){
p.case-contents-grop_2-text {
    font-size: 13px;
}
}
@media (max-width:767px){
p.case-contents-grop_2-text {
    margin-bottom: 0rem;
}
}
.case-contents-grop_2-text{
	font-weight: 400;
}
.case-color{
	font-family: "Zen Kaku Gothic New";
	font-size: 24px;
	font-weight: 700;
    margin: 25px 0px;
}
@media (max-width:991px){
.case-color{
	font-size: 22px;
}
}
@media (max-width:360px){
.case-color{
	font-size: 19px;
}
}
@media (max-width:320px){
.case-color{
	font-size: 18px;
}
}
span.case-color-green{
	color: #02AAB5;
	font-weight: 700;
}
span.case-color-red{
	color: #FF2929;
	font-weight: 700;
}
/*よくある質問*/
.cqa-bg {
    padding-top: 120px;
}
@media (max-width:767px){
.cqa-bg {
   padding-top: 40px;
}
}
.faq-contents {
    margin: 65px 0px 120px;
}
@media (max-width:767px){
.faq-contents {
    margin: 32px 0px 40px;
}
}
.accordion-item{
  width: 100%;
  margin: 0 auto;
}
.accordion-header{
  transition: ease-in-out 100ms;
}
.accordion-wrap {
    background: #FFF;
    box-shadow: 0px 1px 8.3px 0px rgba(179, 194, 206, 0.33);
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 17px 25px;
    cursor: pointer;
    position: relative;
}
@media (max-width:767px){
.accordion-wrap {
    padding: 10px 10px 12px;
	margin-bottom: 20px;
}
}
.accordion-wrap-img {
    margin-right: 15px;
	display: inline-block;
}
@media (max-width:767px){
.accordion-wrap-img {
    position: absolute;
}
}
.accordion-wrap-q {
    display: inline-block;
    width: 85%;
}
@media (max-width:767px){
.accordion-wrap-q {
    margin-left: 10%;
}
}
.accordion-wrap-icon {
    position: absolute;
    right: 25px;
    top: 20px;
}
@media (max-width:767px){
.accordion-wrap-icon {
	right: 13px;
}
}
.accordion-text{
    display: none;
    border-radius: 10px;
    background: #E9FF61;
    padding: 10px 15px;
    margin-top: 20px;
 }
.fa{
  transition: ease-in-out 300ms;
 }
.rotate-fa{
  transform: rotate(180deg);
 }
i.fas.fa-plus {
    float: right;
    line-height: 0px;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    color: #FF2929;
}
@media (max-width:767px){
i.fas.fa-plus {
    padding-top: 3px;
}
}
@media (max-width:767px){
.accordion-header .fa{
    line-height: 3px;
}
}
.accordion-gray{
  color: #848687;
 }
.accordion-no-bar{
  border-bottom: 0;
}
@media (max-width:767px){
p.qa_a.font_Noto-bold {
    font-size: 13px;
}
}
/*Q*/
.aq-text {
    list-style-type: none !important;
    padding-left: 1em!important;
    text-indent: -1em!important;
    margin-bottom: 0rem;
}
@media (max-width:991px){
.aq-text {
	font-size: 20px;
    padding-left: 0em!important;
    text-indent: 0em!important;
}
}
@media (max-width:767px){
.aq-text {
    font-size: 13px;
}
}
@media (max-width:767px){
.aq-text {
    line-height: 1rem;
}
}
.aq-text img{
	margin-right: 15px;
}
@media (max-width:767px){
.aq-text img{
	margin-right: 3px;
}
}
/*Q　テキスト*/
span.accordion-header {
    font-size: 13px;
	font-weight: 400;
}
@media (max-width:767px){
span.accordion-header {
    line-height: 1.5rem;
}
}
@media (max-width:991px){
p.accordion-header {   
	font-size: 16px;
}
}
@media (max-width:425px){
p.accordion-header {   
    font-size: 3.2vw;
}
}
@media (max-width:375px){
p.accordion-header {   
    font-size: 13px;
}
}
p.aq-text.llg_q_text {
	color: #93cf30;
}
/*A*/
p.q-text {
    list-style-type: none !important;
    line-height: 1.5em;
    margin-bottom: 0rem;
    font-size: 14px;
}
@media (max-width:991px){
p.q-text {
    font-size: 13px;
}
}
/*A 文字のテキスト*/
span.qa_a {
	font-size: 15px;
    line-height: 1.5rem;
}
@media (max-width:991px){
span.qa_a {
	font-size: 13px;
    line-height: 1.3rem;
}
}
/*水色*/
.tab_content_qa_p {
    width: 100%!important;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 30px;
    padding-bottom: 50px;
}
@media (max-width:991px){
.tab_content_qa_p {
    padding-bottom: 0px;
}
}
p.qa_title_p {
    font-size: 25px;
    font-family: 'myfont-Bold';
    border-bottom: solid 1px #000;    
	padding-bottom: 15px;
    letter-spacing: 0.1rem;
}
@media (max-width:991px){
p.qa_title_p {
    font-size: 20px;
    padding: 20px 0px;
}
}
@media (max-width:767px){
p.qa_title_p {
    font-size: 18px;
    padding: 15px;
}
}
@media (max-width:425px){
p.qa_title_p {
    font-size: 18px;
    padding: 5px 0px;
}
}
.accordion-header_p .fa {
    float: right;
    line-height: 0px;
    padding: 3px 9px;
    margin: auto;
    text-align: center;
    padding-top: 15px;
}
@media (max-width:767px){
.accordion-header_p .fa {
	line-height: 3px;
}
}
/*////////////////フッター//////////////*/
.footer-menu-botton {
    display: flex;
    justify-content: space-between;
	margin-top: 110px;
}
@media (max-width:991px){
.footer-menu-botton {
	margin-top: 70px;
}
}
@media (max-width:767px){
.footer-menu-botton {
    flex-direction: column;
    margin: 50px 0px;
}
}
.footer-menu-botton-grop {
    display: flex;
	color: #fff;
}

.footer-menu-botton-grop.footer-application-grop-send {
    border-radius: 10px;
    background: #FF2929;
    display: inline-flex;
    padding: 18px 33px;
    align-items: center;
    gap: 90px;
	justify-content: space-around;
}
.footer-text {
    margin-left: -15%;
}
.footer-menu-botton-grop.footer-application-grop-send:hover{
    background: #ff7d7d;
    transition: all .5s ease;
}
.footer-menu-botton-grop.footer-application-grop-mail {
    border-radius: 10px;
    background: #000;
    display: inline-flex;
    padding: 18px 33px;
    align-items: center;
    gap: 90px;
	justify-content: space-around;
}
.footer-menu-botton-grop.footer-application-grop-mail:hover{
	background: #474747;
    transition: all .5s ease;
}
@media (max-width:991px){
.footer-menu-botton-grop.footer-application-grop-send,.footer-menu-botton-grop.footer-application-grop-mail{
    gap: 40px;
}
}
@media (max-width:767px){
.footer-menu-botton-grop.footer-application-grop-send,.footer-menu-botton-grop.footer-application-grop-mail{
    gap: 40px;
    width: 100%;
	justify-content: space-between;
}
.footer-menu-botton-grop.footer-application-grop-send{
	margin-bottom: 20px;
}
}
span.footer-e {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 700;
}
span.footer-j {
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
}
@media (max-width:1199px){
span.footer-j {
    font-size: 21px;
}
}
@media (max-width:991px){
span.footer-j {
    font-size: 16px;
}
}
@media (max-width:1199px){
img.footer-application-icon {
    width: 50px;
}
img.footer-contact-icon {
    width: 50px;
}
}
i.fa-solid.fa-chevron-right.footer-arrow-icon{
    font-size: 30px;
}
@media (max-width:991px){
i.fa-solid.fa-chevron-right.footer-arrow-icon{
    font-size: 20px;
}
}
.footer-nav-content {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    margin: 52px auto;
	color: #6F6F6F;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-weight: 500;
}
@media (max-width:991px){
.footer-nav-content {
    width: 100%;
}
}
@media (max-width:767px){
.footer-nav-content {
    display: none;
}
}
.footer-nav-content a{
    color: #6F6F6F;
}
.footer-nav-content a:hover{
	color: #3DB6BE;
	transition: color 0.5s ease-out;
}
/*コピーライト*/
p.cope-text {
    background: #9E9E9E;
    text-align: center;
	font-weight: 400;
	font-size: 14px;
    margin-bottom: 0rem;
	padding: 15px 0px;
	color: #fff;
}
@media (max-width: 991px){
p.cope-text {
	font-size: 12px;
}
}
@media (max-width: 767px){
p.cope-text {
	padding: 5px 0.5px;
    padding-bottom: 70px;
}
}
@media (max-width: 1199px){
p.cope-text-top {
    margin-bottom: 100px;
}
}
@media (max-width: 991px){
p.cope-text-top {
    margin-bottom: 90px;
}
}
@media (max-width: 767px){
p.cope-text-top {
    margin-bottom: 60px;
}
}
/*下からナビ*/
@media (max-width: 767px) {
#nav8 {
    z-index: 1;
	position: fixed;
    bottom: -60px;
    left: 0;
    width: 100%;
    color: #fff;
    height: 65px;
	background: #FF2929;
    padding: 11px 0px;
}
}
#nav8 .inner {
    width: 100%;
    margin: 0;
    padding: 0;
    min-width: 320px;
}
#nav8  a {
	color: #FF2929;;
	font-size: 12px;
	font-weight: 500;
}
#nav8 .inner a {
    display: block;
    padding: 9px;
	text-align: center;
}
.f_banner_box {
    display: block;
    margin: auto;
    text-align: center;
}
.footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.footer-nav-item {
    width: 45%;
	justify-content: center;
    align-items: center;
    gap: 11.951px;
    flex-shrink: 0;
    border-radius: 40px;
    background: #FFF;
}
@media screen and (max-width: 375px){
.footer-nav-item {
    width: 47%;
}
}
i.fa-solid.fa-phone.footer-sp-phone,img.footer-download{
    padding-right: 10px;
}
/*//////////////////////////下層//　////////////////////////*/
/*/////////運営会社/////////*/
.kaso-bg {
    background: #FAFAFA;
    padding: 200px 0px 0px;
}
@media screen and (max-width: 1199px){
.kaso-bg {
    padding: 150px 0px 0px;
}
}
@media screen and (max-width: 767px){
.kaso-bg {
	padding: 80px 0px 0px;
}
}
.company_box-contents {
    background-color: #fff;
    width: 50%;
    margin: 0px auto 100px;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199px){
.company_box-contents {
    width: 63%;
}
}
@media screen and (max-width: 991px){
.company_box-contents {
    width: 80%;
}
}
@media screen and (max-width: 767px){
.company_box-contents {
    width: 100%;
    margin: 0px auto 70px;
}
}
table.company_box {
	width: 85%;
	margin:auto;
    font-size: 14px;
    font-weight: 400;
}
@media screen and (max-width: 767px){
table.company_box {
	width: 90%;
}
}
table.company_box th{
    font-size: 14px;
    font-weight: 400;
	padding: 20px 35px 20px;
	vertical-align: baseline;
}
table.company_box td{
    border: 0px solid transparent;
    text-align: left;
    padding: 20px 0px;
	color: #4D4D4D!important;
}
@media screen and (max-width: 767px){
table.company_box th,table.company_box td{
    display: block;
    width: 100%;
    padding: 10px 0px 10px;
}
}
@media screen and (max-width: 767px){
table.company_box th{
    font-weight: 500;
}
}
tr.company-line {
    border-bottom: solid 1px #E6E6E6;;
}
tr.company-line:nth-of-type(5) {
    border-bottom: solid  transparent;
    padding-bottom: 35px;
}
tr.company-line th.company-mt:nth-of-type(1),tr.company-line td.company-mt:nth-of-type(1){
    padding-top: 35px;
}
@media screen and (max-width: 767px){
tr.company-line td.company-mt:nth-of-type(1){
    padding: 10px 0px 10px;
}
}
table.company_box td.company-bm{
    padding-bottom: 35px;
}
.footer-nav-content-kaso {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    margin: 52px auto 38px;
	color: #6F6F6F;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-weight: 500;
}
@media (max-width:991px){
.footer-nav-content-kaso {
    width: 100%;
}
}
@media (max-width:767px){
.footer-nav-content-kaso {
    display: none;
}
}
.footer-nav-content-kaso a{
    color: #6F6F6F;
}
.footer-nav-content-kaso a:hover{
	color: #3DB6BE;
	transition: color 0.5s ease-out;
}
/*/////////プライバシーポリシー/////////*/
.privacy-context{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 58px;
}
@media (max-width:767px){
.privacy-context {
    font-size: 13px;
}
}
.privacy-title {
    font-weight: 500;
    margin-top: 37px;
}
li.privacy-text-mt {
    margin-top: 37px;
}
ul.privacy-textbox {
    padding-left: 1em;
    text-indent: -1em;
}
ul.privacy-otoiawase {
    color: #000;
}
/*/////////利用規約/////////*/
.terms-of-service-context{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 58px;
}
.terms-of-service-context_3{
    margin-bottom: 125px;
}
@media (max-width:767px){
.terms-of-service-context_3{
    margin-bottom: 58px;
}
}
@media (max-width:767px){
.terms-of-service-context,.terms-of-service-context_3{
    font-size: 13px;
}
}
.terms-of-service-title {
    font-size: 18px;
    font-weight: 500;
    border-left: solid 5px #02AAB5;
    padding-left: 10px;
    margin-top: 47px;
}
@media (max-width:767px){
.terms-of-service-title {
    font-size: 16px;
    border-left: solid 3px #02AAB5;
}
}
.terms-of-service-subtitle {
    font-weight: 500;
    margin-top: 37px;
}
@media (max-width:767px){
.terms-of-service-subtitle {
    margin-top: 25px;
}
}
li.terms-of-service-text-mt {
    margin-top: 37px;
}
ul.terms-of-service-textbox {
    padding-left: 1em;
    text-indent: -1em;
}
.specific-commercial_box-contents {
    background-color: #fff;
    width: 67%;
	margin: 0px auto 100px;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199px){
.specific-commercial_box-contents {
    width: 63%;
}
}
@media screen and (max-width: 991px){
.specific-commercial_box-contents {
    width: 92%;
}
}
@media screen and (max-width: 767px){
.specific-commercial_box-contents {
    width: 100%;
    margin: 0px auto 70px;
}
}
tr.company-line th.company-mt-specific-commercial:nth-of-type(1),tr.company-line td.company-mt-specific-commercial:nth-of-type(1){
    padding-top: 35px;
}
@media screen and (max-width: 767px){
tr.company-line td.company-mt:nth-of-type(1){
    padding: 10px 0px 10px;
}
}
table.company_box.specific-commercial-boxtr.company-line:nth-of-type(5){
    border-bottom: solid 1px #E6E6E6;
}
tr.company-line.company-line-on {
    border-bottom: solid 1px #E6E6E6;
}
div#tokusyo {
    padding-top: 100px;
}
.company_box-contents.company_box-contents_boxbox {
    margin-bottom: 0px;
}







