@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: "Zen Kaku Gothic New", sans-serif!important;
    margin: 0;
    padding: 0;
    background-size: cover;
    overflow-x: hidden;
}
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);
}
/*========= 上からフェードイン===============*/
.fadein-top {
  opacity: 0;
  transform: translate(0, -100px);
  transition: all 1650ms;
}

.fadein-top.scrollin-top {
  opacity: 1;
  transform: translate(0, 0);
}
.img-scrollin-top {
  transform: scale(0.5); /* 初期状態は0.5倍の大きさ */
  opacity: 0; /* 初期状態は非表示 */
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* アニメーションを設定 */
}
.img-scrollin-top.smallbig-img-scrollin-top {
  transform: scale(1); /* スクロール時に等倍の大きさに拡大 */
  opacity: 1; /* スクロール時に表示 */
}
/*========= 時間差をつけて順番に動作===============*/
/*全共通*/
.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;
}
.main-text-line{
	border-bottom: solid;
}
@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;
}
/*/////////////Gナビ/////////////*/
/*gナビ全体*/
.header-pc {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
}
@media (max-width: 1366px){
.header-pc {
    display: none;
}
}
/*gナビの帯*/
.header-inner {
    position: relative;
    left: 0;
    width: 100%;
    height: 100px;
	background-color:#fff;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
/*ロゴ*/
.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: 28px;
    height: 100%;
    pointer-events: auto;
    margin-right: 80px;
}
@media (max-width: 1440px){
.header-logo {
	margin-right: 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-logo img{
	width: 175px;
	height: 72px;
    margin-top: 8px;
}
.header-logo span{
	color: #009E99;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.17px;
	border-bottom: 1px solid #009E99;
    margin-left: 15px;
}
/*ナビメニュー　文字*/
.header.header-item {
    margin-right: 48px;
    font-weight: 500;
}
@media (max-width: 1440px){
.header.header-item {
    margin-right: 15px;
}
}
/*ナビメニュー　文字リンク*/
.header-link {
    position: relative;
    color: #313233;
    display: block;
    padding-top: 40px;
	height: 100px;
    -webkit-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
}
a.header-link:hover {
    color: #ff4f34;
    transition: color 0.5s ease-out;
}
/*右側ボタン*/
.header-nav-left a {
	text-decoration: none;
}
.header-nav-left a span{
	margin-right: 70px;
}
@media (max-width: 1440px){
.header.header-item {
    margin-right: 15px;
}
}
.header-nav-left a span{
	border-radius: 75px;
	background: #FF649C;
	display: flex;
	width: 272px;
	height: 59px;
	justify-content: center;
	align-items: center;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	margin-top: 25px;
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
}
.header-nav-left a span::after {
  background: #00D7D0;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}
 
.header-nav-left a spane:hover {
  color: #fff;
}
.header-nav-left a span:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}
@media (max-width: 1366px){
.header-nav-left a span{
	width: 152px;
	height: 42px;
	font-size: 14px;
	font-weight: 500;
	margin-top: -45px;
	margin-right: 10px;
}
}
@media (max-width: 375px){
.header-nav-left a span{
	width: 143px;
	margin-right: 0px;
}
}
@media (max-width: 320px){
.header-nav-left a span{
	width: 133px;
	margin-right: 0px;
	font-size: 13px;
}
}

/*//////////////////////////SPナビ//////////////////////////*/
.header-sp{
	display: none;
}
@media (max-width: 1366px){
.header-sp{
	display:block;
}
}
.header-spmenu_r {
    display: flex;
    justify-content: flex-end;
}
.header-logotext-sp {
    margin: 13px 0 0 15px;
    width: 113px;
}
@media (max-width: 767px){
.header-logotext-sp {
	margin: 12px 0 0 20px;
	width: 112px;
}
}
@media (max-width: 375px){
.header-logotext-sp {
	margin: 12px 0 0 8px;
}
}
.header-sp {
	position: fixed;
	left: 0;
    top: 0;
	width: 100%;
	height: 70px;
	background-color: #fff;
	z-index: 100;
    border-bottom: 2px solid #009E99;
}
#menu-wrapper {
    overflow: hidden;
    max-width: 100%;
    cursor: pointer;
    margin-top: -50px;
}
@media (max-width: 767px){
#menu-wrapper {
    margin-top: -47px;
}
}
@media (max-width: 1366px){
#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: 3px;
	border-radius: 15px;
    color: black;
    background-color:#009E99;
    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: -4px;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
    top: 7px;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
    top: 17px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    transform: translateY(6px) rotate(128deg);
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    transform: translateY(12px) rotate(129deg);
}
}
#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(-15px) rotate(-128deg);
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-131deg);
}
}
#menu-container .menu-list {
    padding-right: 0;
    position: absolute;
    width: 400px;
    max-width: 500px;
	background: #F8F8F8;
    z-index: 999;
    height: 100%;
    position: fixed;
    right: -100%;
    height: 100vh;
    overflow-y: auto;
    margin-top: 9px;
    padding: 104px 0px 15vw;
}
@media (max-width: 767px){
#menu-container .menu-list {
    width: 100%;
    max-width: 100%;
	margin-top: 7px;
	padding: 104px 0px 130px;
}
}
.sp-nav-contents {
    display: flex;
    justify-content: space-evenly;
}
li.sp-square-botton img{
	width: 40px;
	height: 40px;
}
li.sp-square-botton{
    font-size: 15px;
    font-weight: 500;
	color: #FF4E34;
    display: flex;
    width: 160px;
    height: 110px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    background: #FFF;
    border: 2px solid #FF4E34;
    border-radius: 10px;
    margin-bottom: 30px;
}
@media (max-width: 360px){
li.sp-square-botton{
    width: 140px;
    height: 95px;
}
}
@media (max-width: 320px){
li.sp-square-botton{
    width: 125px;
}
}
li.sp-square-botton:hover{
    background: #eae7e6;
    transition: color 0.5s ease-out;
}
.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-omoushikomi {
    color: #FF2929;
    font-size: 15px;
    font-weight: 600;
}
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 {
    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: #ff4f34;
	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: #ff4f34!important;
}
li.sp-nav-smallgrop_1{
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
li.sp-nav-smallgrop_2{
    display: flex;
    justify-content: center;
    padding-top: 12px;
}
@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: 500;
    margin-bottom: 48px;
	text-align: center;
}
@media (max-width: 767px){
#menu-container .menu-list li.sp-nav-p{
    margin-bottom: 30px;
}
}
li.sp-nav-p.sp-nav-p-btm {
    margin-top: 60px;
}
ul.footer-link-menu.footer-link-menu-text {
    margin-top: -45px;
    font-weight: 400;
    margin-bottom: 18px;
}
ul.footer-link-menu.footer-link-menu-text li a{
    color: #716d6d!important;
}
.sp-nav-btm a span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
    gap: 5px;
    flex-shrink: 0;
    background: #FF649C;
    width: 90%;
    margin: auto;
    border-radius: 75px;
    padding: 15px 0px;
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
}
.sp-nav-btm a span::after {
  background: #00D7D0;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}

.sp-nav-btm a span:hover {
  color: #fff;
}
.sp-nav-btm a span:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}

/*////////////メイン画像////////////*/
.main-content {
	background-image: url("../img/main-img-pc.jpg");
	background-size: cover; /* 画像を要素全体に広げて両端を切る */
	background-position: center; /* 画像を中央寄せ */
	background-repeat: no-repeat; /* 画像を繰り返さない */
	height: 748px;
}
@media (max-width: 1366px){
.main-content {
	 background-position: calc(50% - 50px) center; /* 中央から左に20pxずらす */
}
}
@media (max-width: 991px){
.main-content {
    background-position: calc(40% - 50px) center; /* 中央から左に20pxずらす */
    height: 450px;
}
}
@media (max-width: 767px){
.main-content {
	background-image: url("../img/main-img-sp.jpg");
	background-position: top;
	margin-top: -88px;
	height: 950px;
}
}
@media (max-width: 600px){
.main-content {
    height: 850px;
}
}
@media (max-width: 576px){
.main-content {
    height: 900px;
    margin-top: -14vw;
}
}
@media (max-width: 430px){
.main-content {
	height: 790px;
	margin-top: -7vw;
}
}
@media (max-width: 425px){
.main-content {
	height: 700px;
	margin-top: -7vw;
}
}
@media (max-width: 393px){
.main-content {
	height: 650px;
}
}
@media (max-width: 320px){
.main-content {
	height: 600px;
}
}
.main-img{
    width: 100%;
    height: auto;
}
.main-title {
    color: #FFF;
	text-align:center;
    font-weight: 700;
}
.main-title-small {
    font-size: 20px;
    padding-top: 148px;
}
@media (max-width: 1366px){
.main-title-small {
    padding-top: 88px;
}
}
@media (max-width: 767px){
.main-title-small {
    padding-top: 73px;
}
}
@media (max-width: 399px){
.main-title-small {
    font-size: 17px;
}
}
@media (max-width: 320px){
.main-title-small {
    font-size: 15px;
}
}
.main-title-big {
	font-size: 50px;
	margin-top: 6px;
	letter-spacing: 4.5px;
}
@media (max-width: 767px){
.main-title-big {
	font-size: 9vw;
	margin-top: -10px;
}
}
.main-img-pc {
    display: flex;
    justify-content: center;
    padding-top: 195px;
	padding-left: 157px;
    gap: 50px;
}
@media (max-width: 1366px){
.main-img-pc {
    padding-left: 50px;
}
}
@media (max-width: 1024px){
.main-img-pc {
	padding-left: 0px;
}
}
@media (max-width: 767px){
.main-img-pc {
	flex-direction: column;
	padding-left: 0px;
	padding-top: 0px;
    gap: 0px;
}
}
@media (max-width: 767px){
.main-img-pc {
    align-items: center;
}
}
.main-img-right-box {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
@media (max-width: 1024px){
.main-img-right-box {
	transform: translate(-30%, -50%);
	-webkit-transform: translate(-30%, -50%);
	-ms-transform: translate(-30%, -50%);
}
}
@media (max-width: 991px){
.main-img-right-box {
    transform: translate(0%);
}
}
@media (max-width: 1199px){
.main-img-right {
    transform: translate(6%, 9%);
}
}
@media (max-width: 1030px){
.main-img-right {
    height: 222px;
    transform: translate(5%, 9%);
    width: 460px;
}
}
@media (max-width: 991px){
.main-img-right {
	height: 210px;
	transform: translate(5%, 9%);
	width: 420px;
}
}
@media (max-width: 820px){
.main-img-right {
	height: 200px;
	width: 350px;
}
}
@media (max-width: 767px){
.main-img-right {
	transform: translate(0%);
	width: 100%;
	height: 44vh;
	border-radius: 0px;
    align-items: center;
	border-top: 4px solid #E4E4E4;
	border-bottom: 4px solid #E4E4E4;
	position: relative;
    display: unset;
}
}
@media (max-width: 576px){
.main-img-right {
	height: 41vh;
}
}
@media (max-width: 430px){
.main-img-right {
	height: 35vh;
}
}
@media (max-width: 320px){
.main-img-right {
	height: 30vh;
}
}
.main-img-right-box {
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 100%;
	font-weight: 700;
	padding-top: 502px;
	margin-left: 75px;
}
@media (max-width: 1045px){
.main-img-right-box {
	margin-left: 95px;
}
}
@media (max-width: 991px){
.main-img-right-box {
	padding-top: 0px;
	margin-left: -25px;
	gap: 0px;
}
}

@media (max-width: 881px){
.main-img-right-box {
	margin-left: -10px;
}
}

@media (max-width: 767px){
.main-img-right-box {
	padding-top: 45px;
	margin-left: 0;
	display: block;
	margin: auto;
	margin-top: 170px;
}
}
@media (max-width: 767px){
.main-img-right-box {
	padding-top: 0px;
	margin-top: 250px;
}
}
@media (max-width: 690px){
.main-img-right-box {
	margin-top: 200px;
}
}
@media (max-width: 600px){
.main-img-right-box {
	margin-top: 170px;
}
}
@media (max-width: 576px){
.main-img-right-box {
	margin-top: 150px;
}
}
@media (max-width: 430px){
.main-img-right-box {
	margin-top: 115px;
}
}
@media (max-width: 425px){
.main-img-right-box {
	margin-top: 100px;
}
}
@media (max-width: 393px){
.main-img-right-box {
	margin-top: 100px;
}
}
@media (max-width: 320px){
.main-img-right-box {
	margin-top: 80px;
}
}
.main-img-right-box span{
	font-size: 40.149px!important;
    padding-bottom: 9px;
}
@media (max-width: 991px){
.main-img-right-box span{
	font-size: 27px!important;
}
}
@media (max-width: 767px){
.main-img-right-box span{
	font-size: 40px!important;
}
}
@media (max-width: 576px){
.main-img-right-box span{
    width: 360px;
}
}
@media (max-width: 430px){
.main-img-right-box span{
    width: 300px;
	font-size: 32px!important;
}
}
@media (max-width: 393px){
.main-img-right-box span{
    width: 280px;
	font-size: 30px!important;
    padding-bottom: 5px;
}
}
.scroll-in_lr.box.box-01_l-r.displayed_lr span.main-text-s{
    font-size: 32.331px!important;
}
@media (max-width: 991px){
.scroll-in_lr.box.box-01_l-r.displayed_lr span.main-text-s{
	font-size: 25px!important;
}
}
@media (max-width: 767px){
.scroll-in_lr.box.box-01_l-r.displayed_lr span.main-text-s{
	font-size: 25px!important;
}
}
@media (max-width: 393px){
.scroll-in_lr.box.box-01_l-r.displayed_lr span.main-text-s{
	font-size: 29px!important;
}
}
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main {
	font-size: 40.149px;
}
@media (max-width: 991px){
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main {
    margin-bottom: 0rem;
}
}
@media (max-width: 767px){
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main {
	font-size: 52px!important;
}
}
@media (max-width: 767px){
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main {
	margin-bottom: 0.8rem;
	display: flex;
}
}
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main:nth-of-type(1) {
    letter-spacing: 0.16em;
}
@media (max-width: 991px){
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main:nth-of-type(1) {
    margin-bottom: 0rem;
}
}
@media (max-width: 767px){
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main:nth-of-type(1) {
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}
}
@media (max-width: 576px){
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main:nth-of-type(1) {
	letter-spacing: 0.14em;
}
}
@media (max-width: 430px){
.scroll-in_lr.box.box-01_l-r.displayed_lr.box-01_l-r_main:nth-of-type(1) {
	letter-spacing: 0.1em;
}
}
/*左側*/
.main-img-left-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: -33px;
	margin-top: -10px;
}
@media (max-width: 1045px){
.main-img-left-box {
	margin-left: -83px;
}
}
@media (max-width: 1024px){
.main-img-left-box {
	margin-left: 0px;
}
}
@media (max-width: 991px){
.main-img-left-box {
	margin-top: -90px;
}
}
@media (max-width: 767px){
.main-img-left-box {
	margin-top: 120px;
}
}
@media (max-width: 576px){
.main-img-left-box {
    margin-top: 7vh;
}
}
@media (max-width: 430px){
.main-img-left-box {
    margin-top: 6.5vh;
}
}
@media (max-width: 425px){
.main-img-left-box {
    margin-top: 4vh;
}
}
@media (max-width: 576px){
.main-wakuwaku {
    width: 60vw;
}
}
@media (max-width: 576px){
img.main-100.img-main-wakuwaku-top.d-block.d-lg-none.animate {
    width: 80vw;
}
}
@media (max-width: 430px){
img.main-100.img-main-wakuwaku-top.d-block.d-lg-none.animate {
    width: 79vw;
}
}
@media (max-width: 393px){
img.main-100.img-main-wakuwaku-top.d-block.d-lg-none.animate {
    width: 71vw;
}
}

img.main-wakuwaku {
    margin: 0 0 30px 0;
}
@media (max-width: 991px){
img.main-wakuwaku {
    width: 62%;
}
}
@media (max-width: 576px){
img.main-wakuwaku {
    width: 77%;
}
}
@media (max-width: 430px){
img.main-wakuwaku {
    width: 80%;
}
}
@media (max-width: 393px){
img.main-wakuwaku {
    width: 73%;
}
}
/*わくわくキャンペーン*/
.img-main-wakuwaku-top{
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.img-main-wakuwaku-top.animate{
  transform: scale(1);
  opacity: 1;
}
img.main-100 {
    margin-top: -5px;
}
.main-left-text-blue {
    color: #0C95EE;
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
}

.main-text-blue { color: #0C95EE; font-size: 16px; font-weight: 700; margin: 10px 0 0 0;}

.header-nav-left a span.main-btn{
    background: #0C95EE;
    margin-top: 0px;
	width: 272px!important;
    height: 59px!important;
    font-size: 18px!important;
}
/*お申し込みはこちら*/
.header-nav-left.header-nav-left-main {
	width: 272px!important;
    height: 59px!important;
    font-size: 18px!important;
	margin-top: 15px;
}
.header-nav-left a span::after {
  background: #00D7D0;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}
.header-nav-left.header-nav-left-main a span::after {
  background: #FF649C;
}
.header-nav-left a spane:hover {
  color: #fff;
}
.header-nav-left a span:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}

.main-img-right.main-img-right-box{
	display: flex;
	width: 400px;
	height: 50px;
	justify-content: center;
	align-items: flex-end;
	gap: 13px;
    font-size: 20px;
    font-weight: 700;
}
.main-img-right-text {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 163%;
}
@media (max-width: 1030px){
.main-img-right-text {
	font-size: 15px;
}
}
@media (max-width: 991px){
.main-img-right-text {
    font-size: 14px;
}
}
@media (max-width:820px){
.main-img-right-text {
    font-size: 13px;
}
}
@media (max-width: 767px){
.main-img-right-text {
	font-size: 3vw;
	text-align: left;
	position: absolute;
	left: 235px;
	top: 39%;
	right: 13px;
}
}
@media (max-width: 500px){
.main-img-right-text {
    font-size: 4vw;
    top: 30%;
}
}
@media (max-width: 430px){
.main-img-right-text {
    left: 190px;
    top: 38%;
}
}
@media (max-width: 320px){
.main-img-right-text {
	left: 153px;
	top: 38%;
}
}
.main-img-right-text span{
    border-bottom: solid 2px #FF649C;
}
@media (max-width: 767px){
.main-img-right-text span{
	border-bottom: solid 0px transparent;
}
}
.main-img-right-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 13px;
}
.main-img-right-button a span{
    border-radius: 75px;
    background: #FF649C;
    display: flex;
    width: 288px;
    height: 47px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #FFF;
    font-weight: 700;
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
}
.main-img-right-button a span::after {
  background: #00D7D0;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}

.main-img-right-button a span:hover {
  color: #fff;
}
.main-img-right-button a span:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}

@media (max-width: 1030px){
.main-img-right-button a span{
    width: 235px;
}
}
@media (max-width: 991px){
.main-img-right-button a span{
	width: 210px;
	height: 40px;
}
}
@media (max-width: 767px){
.main-img-right-button a span{
	font-size: 18px;
	text-align: center;
	width: 96%;
	background: #FF649C;
	border-radius: 75px;
	padding: 23px;
	position: absolute;
	margin: auto;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	bottom: 0%;
}
}
@media (max-width: 430px){
.main-img-right-button a span{
    padding: 20px 23px;
}
}



img.main-img-rightimg {
    position: absolute;
    bottom: 0px;
    right: 7%;
}
@media (max-width: 1199px){
img.main-img-rightimg {
    right: 12%;
    width: 30%;
}
}
@media (max-width: 830px){
img.main-img-rightimg {
	display: none;
}
}
.main-img-left {
    transform: translate(0%, 18%);
	max-width: 100%; /* コンテンツのサイズを維持する */
}
@media (max-width: 1199px){
.main-img-left {
    transform: translate(-2%, 26%);
    width: 500px;
	height: 100%;
}
}
@media (max-width: 1030px){
.main-img-left {
	width: 430px;
	transform: translate(-2%, 40%);
}
}
@media (max-width: 1024px){
.main-img-left {
    max-width: 50%;
    height: 50%;
    transform: translate(-2%, 40.1%);
}
}
@media (max-width: 991px){
.main-img-left {
	width: 395px;
}
}
@media (max-width: 820px){
.main-img-left {
	width: 320px;
	transform: translate(-2%, 63%);
}
}
@media (max-width: 767px){
.main-img-left {
	transform: translate(0%);
	max-width: 90%;
    width: 100%;
	height: auto;
}
}
/*////////////コンテンツ////////////*/
section {
    padding-top: 135px;
}
@media (max-width: 767px){
section {
    padding-top: 75px;
}
}
/*特徴*/
#features {
    background: #F5F5F5;
    padding: 72px 0px;
}
@media (max-width: 767px){
#features {
    padding: 101px 0px 19px;
}
}
@media (max-width: 767px){
.col-12.col-md-6.features-sp-contents {
    padding-right: 0px;
    padding-left: 0px;
}
}
.features-contents-bg {
    border-radius: 10px;
    background: #FFF;
    display: inline-flex;
    padding: 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 43px;
}
@media (max-width: 1199px){
.features-contents-bg {
    height: 265px;
}
}
@media (max-width: 991px){
.features-contents-bg {
	height: 415px;
    padding: 26px 10px;
}
}
@media (max-width: 767px){
.features-contents-bg {
	background: transparent;
	padding: 0px;
	height: auto;
	border-radius: 0px;
	width: 100%;
	margin-top: 13px;
}
}
p.features-title {
    color: #FF3C6A;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0rem;
}
@media (max-width: 1199px){
p.features-title {
    font-size: 19px;
}
}
@media (max-width: 991px){
p.features-title {
    font-size: 15px;
}
}
@media (max-width: 767px){
p.features-title {
    font-size: 18px;
	width: 96%;
	margin: auto;
	margin-top: 9px;
}
}
@media (max-width: 360px){
p.features-title {
    font-size: 16px;
}
}
@media (max-width: 330px){
p.features-title {
    font-size: 15px;
}
}
.features-contents {
    display: flex;
    align-items: flex-start;
    gap: 23px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
}
@media (max-width: 991px){
.features-contents {
    flex-direction: column;
}
}
@media (max-width: 767px){
.features-contents {
    gap: 9px;
    display: block;
}
}
@media (max-width: 767px){
.features-contents-item-text {
    width: 96%;
    margin: auto;
}
}
.features-contents-item {
    width: 100%;
}
@media (max-width: 991px){
.features-contents-item {
	margin: auto;
    text-align: center;
}
}
.features-contents-item-text p{
	font-size: 14px;
	font-weight: 400;
	margin-top: 9px;
}
/*バナー*/
section.banner {
    padding-top: 0px;
}
.main-content-banner{
	background-image: url("../img/main-content-banner-bg.jpg");
	background-position: top;
	height: 345px;
}
@media (max-width: 767px){
.main-content-banner{
	background-image: none;
	position: relative;
	text-align: center;
	height: auto;
}
}
.top-line,
.bottom-line {
	display: none;
}
@media (max-width: 767px){
.top-line,
.bottom-line {
	display: block;
  height: 10px;
  background-color: #19b4e1;
}
}
.banner_box{
	display: flex;
    justify-content: center;
    padding-top: 145px;
    gap: 50px;
}
@media (max-width: 1024px){
.banner_box{
	padding-left: 0px;
}
}
@media (max-width: 767px){
.banner_box{
	flex-direction: column;
	padding-left: 0px;
	padding-top: 0px;
    gap: 0px;
}
}
.banner-right {
    margin-left: 70px;
}
@media (max-width: 991px){
.banner-right {
    margin: 20px 0px 0px 70px;
}
}
@media (max-width: 767px){
.banner-right {
    margin: 28px auto 0px;
}
}
@media (max-width: 767px){
.banner-left-text {
    display: none;
}
}
img.banner-wakuwaku {
    display: block;
    margin: auto;
}
.banner-text-line {
    border-bottom: solid 1.5px;
    padding-bottom: 5px;
	font-weight: 700;
}
.banner-text-white {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-top: 37px;
}
.banner-text-blue {
    color: #0C95EE;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-top: 37px;
}

@media (max-width: 767px){
.banner-text-white {
	color: #0C95EE;
	margin-top: 0px;
	font-size: 3.81vw;
}
}
.banner-left {
    margin: -60px 0px 0px 70px;
    color: #FFF;
    font-size: 23px;
}
@media (max-width: 767px){
.banner-left {
	margin: 0px;
}
}
/*バナーのお申し込みはこちら*/
.banner--btn {
	width: 272px!important;
    height: 59px!important;
    font-size: 18px!important;
}
@media (max-width: 767px){
.banner--btn {
	width: 100%!important;
	margin-bottom: 28px;
}
}
.banner--btn a span{
	border-radius: 75px;
	background: #fff;
	display: flex;
	width: 279px;
	height: 50px;
	justify-content: center;
	align-items: center;
	color: #0C95EE;
	font-size: 17px;
	font-weight: 700;
	margin-top: 10px;
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
	font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px){
.banner--btn a span{
	background: #0C95EE;
	color: #fff;
	width: 100%;
	height: 50px;
	font-size: 4.32vw;
}
}
.banner--btn a span::after {
/*
  background: #FF649C;
  color: #fff;
*/
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}
.banner--btn a span:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
	color: #fff;
	background: #FF649C;
}
.banner--btn a span:hover {
    color: #fff;
}
@media (max-width: 767px){
.main-img-pc {
    align-items: center;
}
}
.banner-title {
	color: #FFF;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 1.71px;
    text-align: center;
}
@media (max-width: 767px){
.banner-title {
	font-size: 4.3vw;
	letter-spacing: 0.07em;
}
}
@media (max-width: 430px){
.banner-title {
	font-size: 4.5vw;
}
}
@media (max-width: 320px){
.banner-title {
	font-size: 4.2vw;
}
}
.banner-title-big {
    color: #FBFF40;
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    border-bottom: 3.028px solid #FFF;
    width: 38%;
	margin: auto;
	letter-spacing: 0.08em;
}
@media (max-width: 767px){
.banner-title-big {
    width: 100%;
    font-size: 6vw;
}
}
.banner-title-big span{
	font-size: 39px;
}
@media (max-width: 767px){
.banner-title-big span{
    font-size: 11vw;
}
}
.monthly-fee {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.8px;
}
@media (max-width: 767px){
.monthly-fee {
    font-size: 4vw;
}
}
@media (max-width: 767px){
.arrow-icon {
    margin-top: 16px;
	width: 35px;
	height: auto;
}
}
@media (max-width: 430px){
.arrow-icon {
	margin-top: 26px;
}
}
.monthly-fee span{
	font-size: 50px;
}
@media (max-width: 360px){
.monthly-fee span{
    font-size: 45px;
}
}
@media (max-width: 320px){
.monthly-fee span{
    font-size: 38px;
}
}
.banner-contents {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 11px;
	gap: 14px;
}
@media (max-width: 767px){
.banner-contents {
    justify-content: space-between;
    align-items: stretch;
	margin-top: 19px;
}
}
@media (max-width: 430px){
.banner-contents {
    gap: 0px;
    margin-top: 0px;
}
}
.banner-contents-title1 {
	color: #FFF;
	font-size: 20px;
	font-weight: 700;
	line-height: 227%;
	letter-spacing: 1.8px;
}
.banner-contents-title1 span{
	color: #FBFF40;
	font-size: 54px;
	font-weight: 700;
	letter-spacing: 4.86px;
}
@media (max-width: 767px){
.banner-contents-title1 span{
    font-size: 12vw;
}
}
@media (max-width: 430px){
.banner-contents-title1 span{
    font-size: 11vw;
}
}
@media (max-width: 360px){
.banner-contents-title1 span{
    font-size: 10vw;
}
}
@media (max-width: 320px){
.banner-contents-title1 span{
    font-size: 9vw;
}
}
.banner-contents-title1 p{
    margin-bottom: 0rem;
}
@media (max-width: 767px){
.banner-contents-title1 {
	font-size: 4vw;
	margin-left: 0px;
}
}
@media (max-width: 430px){
.banner-contents-title1 {
	margin-top: 18px;
}
}
.banner-contents-btn a span{
	display: flex;
	padding: 14px 50px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	border-radius: 75px;
	background: #FF649C;
	font-weight: 700;
	color: #FFF;
    width: 340px;
    margin: auto;
    margin-top: 5px;
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
}
.banner-contents-btn a span::after {
  background: #00D7D0;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}

.banner-contents-btn a span:hover {
  color: #fff;
}
.banner-contents-btn a span:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}
@media (max-width: 1199px){
.banner-contents-btn a span{
    width: 45%;
}
}
@media (max-width: 991px){
.banner-contents-btn a span{
    width: 60%;
}
}
@media (max-width: 767px){
.banner-contents-btn a span{
    width: 100%;
    padding: 21px 0px;
	font-size: 18px;
}
}
@media (max-width: 320px){
.banner-contents-btn a span{
    padding: 14px 0px;
}
}
.banner-note {
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    line-height: 1.7em;
    margin-bottom: 0rem;
}
@media (max-width: 320px){
.banner-note {
    font-size: 11px;
}
}
/*離職理由で常に上位にあるのは「人間関係」と「職場環境」*/
.cause-bg {
    background-image: url(../img/cause-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    height: 697px;
    padding: 77px 0px;
    color: #F2F2F2;
    font-weight: 400;
	text-align: center;
    line-height: 2em;
    background-size: cover;
}
@media (max-width: 991px){
.cause-bg {
    height: 880px;
    padding: 35px 0px;
}
}
@media (max-width: 767px){
.cause-bg {
	height: auto;
	padding: 35px 0px;
	font-weight: 500;
	font-size: 15px;
	color: #FFF;
}
}
.cause-title {
    font-size: 30px;
    font-weight: 700;
}
@media (max-width: 991px){
.cause-title {
    line-height: 1.7em;
}
}
@media (max-width: 767px){
.cause-title {
    font-size: 6.36vw;
}
}
.cause-text1 {
    margin-top: 42px;
}
@media (max-width: 991px){
.cause-text1 {
    text-align: left;
}
}
@media (max-width: 767px){
.cause-text1 {
    margin-top: 28px;
}
}
.cause-img-box {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    margin: 17px 0px;
}
@media (max-width: 767px){
.cause-img-box {
    display: block;
    margin: 13px 0px;
}
}
.cause-text2 {
    margin-bottom: 2rem;
}
@media (max-width: 991px){
.cause-text2 {
    text-align: left;
}
}
@media (max-width: 767px){
p.cause-text2.cause-text2-sp {
    text-align: center;
    margin-bottom: 0rem;
    margin-top: 25px;
}
}
p.cause-text2-big {
    font-size: 20px;
    font-weight: 700;
    color: #F2F2F2;
}
@media (max-width: 1024px){
p.cause-text2-big {
    font-size: 18px;
}
}
@media (max-width: 991px){
p.cause-text2-big {
    text-align: left;
}
}
@media (max-width: 767px){
p.cause-text2-big {
    text-align: center;
    font-size: 4vw;
    line-height: 1.7em;
}
}
@media (max-width: 430px){
p.cause-text2-big {
    font-size: 4.5vw;
}
}
@media (max-width: 320px){
p.cause-text2-big {
    font-size: 4.7vw;
}
}
/*ご利用の流れ*/
#flow {
    background: #F5F5F5;
}
.flow-grop-margin-top{
	margin-top: 44px;
    padding-bottom: 85px;
}
@media (max-width: 767px){
.flow-grop-margin-top{
	margin-top: 27px;
}
}
.flow-contents {
    display: flex;
    padding: 18px 40px;
    align-items: center;
    gap: 41px;
    border-radius: 10px;
    background: #FFF;
    margin-top: 57px;
}
.flow-item-number {
	font-family: Montserrat;
    color: #009E99;
    text-align: center;
    font-size: 70px;
    font-weight: 500;
    line-height: 26px;
}
@media (max-width: 767px){
.flow-item-number {
    font-size: 40px;
	width: 2ch;/* chユニットは数字の横幅に基づくため適切 */
	display: inline-block;
	text-align: center;/* 数字を中央揃えにする */
}
}
span.flow-item-title {
    color: #009E99;
    font-size: 20px;
    font-weight: 500;
}
@media (max-width: 767px){
span.flow-item-title {
    position: absolute;
    top: 17px;
    left: 16%;
}
}
@media (max-width: 430px){
span.flow-item-title {
    left: 20%;
}
}
@media (max-width: 425px){
span.flow-item-title {
    left: 23%;
}
}
@media (max-width: 320px){
span.flow-item-title {
    left: 25%;
    font-size: 17px;
}
}
span.flow-item-text {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 767px){
span.flow-item-text {
    font-size: 15px;
    font-weight: 400;
}
}
.flow-contents {
    display: flex;
    padding: 18px 40px;
    align-items: center;
    gap: 41px;
    border-radius: 10px;
    background: #FFF;
    width: 64%;
    margin: auto;
    margin-top: 15px;
}
@media (max-width: 1024px){
.flow-contents {
    width: 74%;
}
}
@media (max-width: 991px){
.flow-contents {
    width: 100%;
}
}
@media (max-width: 767px){
.flow-contents {
	width: 100%;
	padding: 18px 16px;
	align-items: flex-start;
	flex-direction: column;
	gap: 0px;
	position: relative;
}
}
.flow-arrow {
    display: block;
    margin: auto;
    margin-top: 15px;
	animation: flow 2s infinite;
}
 @keyframes flow {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(10px);
		 opacity: 0.5;
	}
	100% {
		transform: translateY(0);
		opacity: 0;
	}
}
p.flow-text-pink {
    color: #FF649C;
    font-family: "Zen Kaku Gothic New";
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-top: 5px;
}
@media (max-width: 320px){
p.flow-text-pink {
    font-size: 13px;
}
}
.h3-title {
	color: #009E99;
	text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 600;
}
@media (max-width: 767px){
.h3-title {
    font-size: 14px;
}
}
h2.h2-title {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
@media (max-width: 991px){
h2.h2-title {
    font-size: 25px;
}
}
@media (max-width: 767px){
h2.h2-title {
    font-size: 22px;
}
}
h2.h2-title.h2-title-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
h2.h2-title.h2-title-2 p{
	color: #000;
	font-size: 30px;
	font-weight: 500;
    margin: 0px 0px 0px 15px;
}
@media (max-width: 767px){
h2.h2-title.h2-title-2 p{
    font-size: 21px;
}
}
@media (max-width: 320px){
h2.h2-title.h2-title-2 p{
    font-size: 17px;
}
}
.h2-title-2-text.h2-title-2-text-sp {
	display: none;
}
@media (max-width: 767px){
.h2-title-2-text.h2-title-2-text-sp {
    display:block;
    color: #000;
    font-size: 25px;
    font-weight: 500;
    margin: 0px;
    text-align: center;
}
}
.benefits-membership-grop {
    font-size: 30px;
    text-align: center;
    margin-top: 35px;
    font-weight: 700;
    color: #FF4E34;
}
@media (max-width: 767px){
.benefits-membership-grop {
    margin-top: 22px;
    line-height: 1.5em;
}
}
@media (max-width: 320px){
.benefits-membership-grop {
    font-size: 25px;
}
}
.benefits-membership-grop span{
    font-size: 55px;
    font-weight: 600;
	border-bottom: solid 4px #FF4E34;
    font-family: Montserrat!important;
}
@media (max-width: 991px){
.benefits-membership-grop span{
    font-size: 50px;
}
}
@media (max-width: 767px){
.benefits-membership-grop span{
    border-bottom: solid 4px transparent;
}
}
@media (max-width: 320px){
.benefits-membership-grop span{
    font-size: 35px;
}
}
@media (max-width: 767px){
span.benefits-membership-grop-sp {
    font-family: "Zen Kaku Gothic New", sans-serif !important;
    font-size: 46px;
}
}
@media (max-width: 320px){
span.benefits-membership-grop-sp {
    font-size: 33px;
}
}
.merit-content {
    display: flex;
    justify-content: space-between;
    margin-top: 37px;
}
@media (max-width: 767px){
.merit-content {
    flex-direction: column;
}
}
.merit-item {
    width: 23.5%;
}
@media (max-width: 767px){
.merit-item {
    width: 100%;
}
}
@media (max-width: 767px){
.container.container-sp-no {
    padding-right: 0px;
    padding-left: 0px;
    max-width: 100%;
}
}
@media (max-width: 767px){
.row.container-sp-no {
    margin-right: 0px;
    margin-left: 0px;
}
}
.merit-item-price {
    color: #32C4D7;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
@media (max-width: 767px){
.merit-item-price {
    margin-left: 15px;
}
}
.merit-item-price span{
	font-size: 14px;
}
.merit-item-text {
    color: #000;
    font-size: 14px;
	font-weight: 500;
    margin-top: 5px;
}
@media (max-width: 991px){
.merit-item-text {
    font-size: 13px;
}
}
@media (max-width: 767px){
.merit-item-text {
	margin: 5px 15px 24px 15px;
    font-size: 15px;
}
}
.merit-item-text span{
	color: #7C7C7C;
	text-decoration-line: underline;
}
.merit-item-price_2 {
    margin-top: 24px;
    color: #32C4D7;
    font-size: 20px;
    font-weight: 600;
	margin-bottom: 0.5rem;
}
@media (max-width: 767px){
.merit-item-price_2 {
	margin-left: 15px;
}
}
.merit-item-price_2 span{
	font-size: 14px;
}
.merit-contente_2 {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px){
.merit-contente_2 {
    flex-direction: column;
}
}
/*なぜ台東区で一番PRがつよい？*/
.why-bg {
    background: #FAFAFA;
	padding: 100px 0px 60px;
    margin-top: 53px;
}
@media (max-width: 767px){
.why-bg {
    padding: 38px 0px 30px;
}
}
@media (max-width: 767px){
.row.whytext-grop {
    margin-right: 0px;
    margin-left: 0px;
}
}
.whytext-grop {
    margin-top: 70px;
}
@media (max-width: 767px){
.whytext-grop {
    margin-top: 20px;
}
}
.whytext-grop-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    margin-left: -4%;
}
@media (max-width: 1199px){
.whytext-grop-text {
    margin-left: 0%;
}
}
@media (max-width: 767px){
.whytext-grop-text {
	margin: 10px 15px 0rem 15px;
	font-size: 15px;
}
}
/*こんな方におすすめ*/
.recommended-bg {
    margin-top: 70px;
}
@media (max-width: 991px){
.recommended-bg {
    margin-top: 34px;
}
}
.recommended-grop {
    border-radius: 10px;
    background: #F8F8F8;
    margin: 30px 0px;
    padding: 40px;
}
@media (max-width: 767px){
.recommended-grop {
    background: transparent;
    margin: 30px 0px;
    padding: 0px;
}
}
/*他社比較*/
.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;
}
}
.recommended-grop-title {
    background: #32C4D7;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 0px;
}
.recommended-text-contents {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 991px){
.recommended-text-contents {
	flex-direction: column;
}
}
ul.recommended-item {
    margin-bottom: 0rem;
}
@media (max-width: 767px){
ul.recommended-item {
    margin-left: 8%;
}
}
ul.recommended-item li{
	padding-top: 25px;
	font-weight: 500;
}
@media (max-width: 1199px){
ul.recommended-item li{
    font-size: 13px;
}
}
ul.recommended-item li span{
	color: #717171;
	font-size: 14px;
    margin-left: 6.5%;
}
@media (max-width: 991px){
ul.recommended-item li span{
	margin-left: 4.5%;
}
}
@media (max-width: 767px){
ul.recommended-item li span{
    margin-left: 0%;
}
}
i.fa-regular.fa-square {
    background: #FFF;
    color: #868484;
}
@media (max-width: 767px){
i.fa-regular.fa-square {
    background: #FFF;
    color: #868484;
	margin-left: -8%;
	font-size: 20px;
}
}
p.recommended-text-red {
    color: #FF4E34;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
@media (max-width: 991px){
p.recommended-text-red {
    font-size: 25px;
}
}
@media (max-width: 767px){
p.recommended-text-red {
    font-size: 4.5vw;
    margin-bottom: 0.2rem;
}
}
@media (max-width: 320px){
p.recommended-text-red {
    font-size: 4vw;
}
}
p.recommended-text-small {
    font-size: 13px;
    color: #565656;
    text-align: center;
}
/*こんなお悩みはお持ちでないでしょうか？*/
.problems-bg{
	background-image:url("../img/worries-bg.png");
	background-repeat: no-repeat;
    background-size: contain;
    height: 37.8vw;
    padding-top: 8vw;
	margin-top: 30px;
    position: relative;
}
@media (max-width: 767px){
.problems-bg{
    background-image: url(../img/worries-bg-sp.png);
	background-size: cover;
	height: 207vw;
	padding-top: 77px;
}
}
@media (max-width: 320px){
.problems-bg{
	padding-top: 55px;
}
}
img.worries-img {
    position: absolute;
    width: 80vw;
    left: 50%;
    transform: translate(-50%, -0%);
    bottom: 0;
}
@media (max-width: 1440px){
img.worries-img {
    width: 73vw;
}
}
@media (max-width: 1199px){
img.worries-img {
    width: 68vw;
}
}
@media (max-width: 767px){
img.worries-img {
    width: 100%;
    left: 50%;
}
}
/*オプション*/
.options-grop-contents {
    display: flex;
    margin-top: 56px;
    justify-content: space-between;
}
@media (max-width: 767px){
.options-grop-contents {
    flex-direction: column;
    margin: 20px 0px 30px;
}
}
.options-grop-contents div{
    width: 90%;
}
@media (max-width: 767px){
.options-grop-contents div{
    width: 100%;
}
}
.options-title {
    color: #FF649C;
    font-size: 25px;
    font-weight: 700;
}
@media (max-width: 1199px){
.options-title {
    font-size: 22px;
}
}
@media (max-width: 991px){
.options-title {
    font-size: 15px;
}
}
@media (max-width: 991px){
p.options-title{
    width: 96%;
    margin: auto;
    margin-top: 9px;
    font-size: 16px;
}
}
@media (max-width: 1199px){
img.media-img {
    width: 210px;
	height: auto;
    font-size: 22px;
}
}
@media (max-width: 991px){
img.media-img {
    width: 156px;
	height: auto;
}
}
.options-text {
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0px 61px;
}
@media (max-width: 767px){
.options-text {
	width: 96%;
	margin: 10px auto 33px;
}
}
@media (max-width: 360px){
.options-text {
    font-size: 14px;
}
}
h2.h2-title span{
	font-size: 60px;
	font-weight: 900;
	color: #FF2100;
}
@media (max-width: 767px){
h2.h2-title span{
	font-size: 42px;
}
}
h3.h3-title.h3-title-big {
    font-size: 22px;
}
h3.h3-title.h3-title-big {
    font-size: 22px;
    border-bottom: 3px solid #FF2100;
    padding-bottom: 5px;
    margin-top: 20px;
	font-family: "Zen Kaku Gothic New";
}
@media (max-width: 767px){
h3.h3-title.h3-title-big {
    font-size: 18px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0rem;
}
}
@media (max-width: 375px){
h3.h3-title.h3-title-big {
    font-size: 16px;
}
}
@media (max-width: 320px){
h3.h3-title.h3-title-big {
    font-size: 14px;
}
}
.benefits-contents-grop {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px){
.benefits-contents-grop {
    flex-direction: column;
}
}
.benefits-contents-grop-contents {
	display: inline-flex;
    padding: 30px 25px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    border-radius: 10px;
    background: #FFF;
    margin-top: 45px;
	width: 48%;
	align-items: center;
}
@media (max-width: 767px){
.benefits-contents-grop-contents {
	width: 100%;
	background: transparent;
	margin-top: 17px;
	padding: 0px;
    gap: 7px;
}
}
.benefits-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0rem;
}
@media (max-width: 767px){
.benefits-title {
    font-size: 12px;
}
}
.benefits-title.benefits-title-red {
	color: #F00;
}
.benefits-title.benefits-title-blue {
	color: #009E99;
}
.benefits-text {
    font-weight: 400;
    margin-top: 9px;
}
@media (max-width: 767px){
.benefits-text {
	font-size: 15px;
}
}
/*加入特典その2-*/
img.benefits-logo2 {
    margin: auto;
    display: block;
    margin-top: 73px;
}
@media (max-width: 767px){
img.benefits-logo2 {
    margin-top: 33px;
}
}
.benefits-contents-grop-contents-img {
    display: inline-flex;
    margin-top: 45px;
    width: 520px;
    height: 320px;
}
@media (max-width: 1199px){
.benefits-contents-grop-contents-img {
    width: 46%;
    height: 263px;
}
}
@media (max-width: 991px){
.benefits-contents-grop-contents-img {
	width: 50%;
	height: 220px;
}
}
@media (max-width: 767px){
.benefits-contents-grop-contents-img {
	width: 100%;
	height: auto;
    margin-top: 18px;
}
}
.benefits-contents-grop-contents-text{
    display: inline-flex;
	margin-top: 45px;
	flex-direction: column;
    width: 47%;
}
@media (max-width: 767px){
.benefits-contents-grop-contents-text{
	width: 100%;
	margin-top: 18px;
}
}
.benefits-text2 {
    font-weight: 400;
    line-height: 1.7em;
	margin-bottom: 30px;
}
@media (max-width: 767px){
.benefits-text2 {
	margin-bottom: 0px;
}
}
.youtube-btm {
    border-radius: 67px;
    background: #F00;
    font-weight: 700;
    color: #FFF;
    text-align: center;
	width: 286px;
	padding: 8px 0px;
}
@media (max-width: 767px){
.youtube-btm {
	width: 95%;
	margin: auto;
	padding: 12px 0px;
}
}
i.fa-brands.fa-youtube {
    padding-right: 5px;
}
/*YouTubeのスライダー*/
.slider-gallery-beside .slick-slide {
	width: 330px;
 	 height: auto;
	position: relative;
	overflow: hidden;
    margin: 0 10px;
}
.slider-gallery-beside .slick-slide img {
	display: block;
	width: 100%;
	height: 100%;
 	 object-fit: cover;
    margin-top: 71px;
}
@media screen and (max-width:767px) {
.slider-gallery-beside .slick-slide img {
    margin-top: 25px;
}
}
.row.btn-2-mt {
    margin-top: 150px;
}
@media screen and (max-width:1199px) {
.row.btn-2-mt {
    margin-top: 100px;
}
}
/*加入特典その3-*/
.benefits3-logo {
    display: flex;
	font-weight: 500;
}
.benefits3-logo img{
    width: 139px;
    margin-right: 15px;
}
@media screen and (max-width:320px) {
.benefits3-logo img{
    width: 120px;
    margin-right: 10px;
}
}
table.benefits3-item {
    margin-top: 18px;
    font-weight: 500;
}
table.benefits3-item td:nth-of-type(1) {
	width: 23%;
}
@media screen and (max-width:991px) {
table.benefits3-item td:nth-of-type(1) {
	width: 42%;
}
}
@media screen and (max-width:767px) {
table.benefits3-item td:nth-of-type(1) {
	width: 39%;
	padding-right: 10px;
}
}
@media screen and (max-width:360px) {
table.benefits3-item td:nth-of-type(1) {
	width: 40%;
}
}
@media screen and (max-width:320px) {
table.benefits3-item td:nth-of-type(1) {
	font-size: 14px;
}
}
table.benefits3-item td:nth-of-type(2) {
	color: #FF2100;
	font-size: 23px;
	font-weight: 500;
}
@media screen and (max-width:320px) {
table.benefits3-item td:nth-of-type(2) {
	font-size: 21px;
}
}
table.benefits3-item td span{
	font-weight: 400;
	color: #000;
}
@media screen and (max-width:767px) {
table.benefits3-item td span{
	font-size: 16px;
}
}
@media screen and (max-width:767px) {
.benefits3-table-sp {
    display: flex;
	width: 90%;
	padding: 22px 28px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 3px solid #FFC10D;
    background: #FFF;
    margin: auto;
    margin-top: 20px;
}
}
@media screen and (max-width:375px) {
.benefits3-table-sp {
    width: 100%;
}
}
@media screen and (max-width:320px) {
.benefits3-table-sp {
    padding: 22px 15px;
}
}
/*加入特典その5*/
.benefits5-text {
    font-weight: 500;
    margin-bottom: 0rem;
}
.benefits5-text-red {
    color: #FF2100;
    font-size: 27px;
    font-weight: 500;
}
@media screen and (max-width:991px) {
.benefits5-text-red {
    margin-bottom: 0.5rem;
    font-size: 23px;
}
}
@media screen and (max-width:767px) {
.benefits5-text-red {
    margin-bottom: 0.5rem;
}
}
@media screen and (max-width:320px) {
.benefits5-text-red {
	font-size: 20px;
}
}
.benefits5-text-red span{
	font-size: 41.638px;
    font-weight: 700;
}
@media screen and (max-width:320px) {
.benefits5-text-red span{
    font-size: 35px;
}
}
/*料金について*/
.price-bg {
    margin: 90px 0px 84px;
}
@media screen and (max-width:767px) {
.price-bg {
    margin: 30px 0px 38px;
}
}
.price-logo {
    display: flex;
    margin: auto;
    text-align: center;
    margin-top: 48px;
    font-size: 21px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}
.price-logo img {
    margin-right: 10px;
}
table.price-item {
    width: 40%;
	margin: auto;
    margin: 24px auto 14px;
}
@media screen and (max-width:1199px) {
table.price-item {
    width: 50%;
}
}
@media screen and (max-width:991px) {
table.price-item {
    width: 80%;
}
}
@media screen and (max-width:767px) {
table.price-item {
    width: 100%;
}
}
table.price-item tr{
	border-top: solid 1px #C6C6C6;
}
table.price-item tr:nth-of-type(3){
	border-bottom: solid 1px #C6C6C6;
}
table.price-item td:nth-of-type(1) {
    width: 40%;
    color: #645D5C;
    font-size: 22px;
    font-weight: 500;
    padding: 23px 26px 23px 37px;
}
@media screen and (max-width:767px) {
table.price-item td.price-grop {
    padding: 28px 10px 32px 10px;
}
}
@media screen and (max-width:767px) {
table.price-item td:nth-of-type(1) {
	padding: 30px 10px 30px 10px;
	width: 33%;
	font-size: 18px;
}
}
@media screen and (max-width:360px) {
table.price-item td:nth-of-type(1) {
	padding: 30px 0px 30px 10px;
}
}
@media screen and (max-width:320px) {
table.price-item td:nth-of-type(1) {
	padding: 30px 0px 30px 10px;
	font-size: 16px;
}
}
table.price-item td:nth-of-type(2) {
	color: #FF2100;
	font-size: 30px;
	font-weight: 500;
}
table.price-item td span{
    font-weight: 500;
    color: #000;
    font-size: 25px;
}
table.price-item td.black-text{
	color: #000;
}
@media screen and (max-width:767px) {
table.price-item td.black-text{
    font-size: 25px;
}
}
@media screen and (max-width:375px) {
table.price-item td.black-text{
    font-size: 22px;
}
}
@media screen and (max-width:360px) {
img.price-arrow-price-img {
    width: 63%;
}
}
.price-note {
    width: 38%;
    margin: auto;
    font-size: 13px;
    font-weight: 500;
}
@media screen and (max-width:1199px) {
.price-note {
    width: 50%;
}
}
@media screen and (max-width:991px) {
.price-note {
    width: 80%;
}
}
@media screen and (max-width:767px) {
.price-note {
	color: #645D5C;
	width: 100%;
}
}
/*よくある質問*/
.faq-container {
    margin-top: 65px;
}
@media screen and (max-width:767px) {
.faq-container {
    margin-top: 30px;
}
}
.qa-bg {
    background: #F5F5F5;
    padding: 102px 0px 72px;
}
@media screen and (max-width:767px) {
.qa-bg {
    padding: 75px 0px 30px;
}
}
h3.h3-title.h3-title-white {
    color: #fff;
}
h2.h2-title.h2-title-white{
    color: #fff;
}
.faq-contents {
    margin: 23px 0px;
	font-family: "Noto Sans JP";
	font-weight: 400;
}
@media (max-width: 767px) {
.faq-contents {
    margin:0px;
}
}
span.faq-q {
	color: #009E99;
	font-family: Montserrat;
	font-size: 30px;
	font-weight: 500;
	margin-right: 15px;
}
.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 23px;
	cursor: pointer;
	position: relative;
}
@media (max-width: 767px) {
.accordion-wrap {
	margin-bottom: 23px;
}
}
.accordion-wrap-q {
	display: flex;
	width: 90%;
	align-items: center;
}
.accordion-wrap-icon {
position: absolute;
right: 25px;
top: 30px;
}
@media (max-width: 767px) {
.accordion-wrap-icon {
	right: 13px;
}
}
.accordion-text {
display: none;
border-radius: 10px;
background: #DCFFFE;
padding: 10px 15px;
margin-top: 20px;
}
.fa {
transition: transform 300ms ease-in-out;
}
.rotate-fa {
transform: rotate(45deg);
}

i.fas.fa-plus {
	float: right;
	line-height: 0px;
	margin: auto;
	text-align: center;
	padding-top: 10px;
	color: #009E99;
}
@media (max-width: 767px) {
	i.fas.fa-plus {
		padding-top: 3px;
	}
}
@media (max-width: 767px) {
	.accordion-header .fa {
		line-height: 3px;
	}
}
i.fas.fa-minus::before{
	color: #009E99;
}
.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: 14px;
	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;
}
p.q-text {
	list-style-type: none !important;
    line-height: 1.7em;
	margin-bottom: 0rem;
	font-size: 14px;
}
@media (max-width: 991px) {
p.q-text {
	font-size: 13px;
}
}
span.qa_a {
	font-size: 15px;
	line-height: 1.5rem;
}
@media (max-width: 991px) {
span.qa_a {
	font-size: 13px;
	line-height: 1.3rem;
}
}
/*////////////////フッター//////////////*/
.footer {
    background: #fff;
    padding: 58px 0px 0px;
}
@media (max-width: 767px) {
.footer {
    padding: 34px 0px 0px;
}
}
.footer-text {
    color: #009E99;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
	margin-top: 10px;
}
a.footer-logo img{
	display: block;
	margin: auto;
	width: 294px;
    height: auto;
}
@media (max-width: 767px) {
a.footer-logo img{
	width: 60%;
	height: auto;
}
}
ul.footer-link-menu {
    margin-bottom: 30px;
    padding: 15px 0 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
}
@media (max-width: 767px) {
ul.footer-link-menu{
	display: block;
	line-height: 1.8em;
}
}
@media (max-width: 767px) {
ul.footer-link-menu li{
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 12px;
}
}
.footer-link-menu a {
    color: #716d6d;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}
.footer-link-menu a:hover{
    color: #268582;
    font-size: 14px;
    text-decoration: none;
}
/*ハンバーガーメニュー追加*/
ul.footer-link-menu-1.footer-link-menu-text li a {
    color: #716d6d !important;
    margin-bottom: 15px;
    font-size: 14px;
}
/*footer追加*/
.footer-link-menu-2 li{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}
.footer-link-menu-2 li a{
    color: #716d6d;
}
/*コピーライト*/
.cope-text {
	background: #848484;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 0rem;
    padding: 7px 0px;
    color: #fff;
}
@media (max-width: 991px){
p.cope-text {
	font-size: 12px;
}
}
@media (max-width: 767px){
p.cope-text {
	padding: 5px 0.5px;
}
}
@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: 8px;
	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: 11px;
    flex-shrink: 0;
    border-radius: 65px;
	background: #FFF;
}
@media screen and (max-width: 375px){
.footer-nav-item {
    width: 47%;
}
}
.footer-nav-itembox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}
.footer-nav-item img{
    width: 25px;
	height: 25px;
}
/*//////////////////////////下層//　////////////////////////*/
/*下層フッター*/
.footer.footer-kaso {
    background: #fff;
    margin-top: 110px;
}
@media screen and (max-width: 767px){
.footer.footer-kaso {
    padding: 60px 0px 0px;
    margin-top: 50px;
}
}
/*/////////会社概要/////////*/
.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: 120px 0px 0px;
}
}
/*下層タイトル*/
h2.h2-title-kaso {
    text-align: center;
    font-size: 21px;
    margin-top: 8px;
}
.company_box-contents {
    background-color: #fff;
    width: 65%;
    margin: 80px auto 110px;
}
@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: 30px auto 60px;
}
}
table.company_box {
    width: 90%;
	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: 29px 5% 20px 0px;
    vertical-align: middle;
    width: 30%;
}
table.company_box td{
    border: 0px solid transparent;
    text-align: left;
    padding: 30px 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(6) {
    border-bottom: solid  transparent;
    padding-bottom: 35px;
}
/*特定商法*/
tr.company-line.company-line-on:nth-of-type(6) {
    border-bottom: solid 1px #E6E6E6;;
}
tr.company-line.company-line-off:nth-of-type(9) {
    border-bottom: solid  transparent;
}
tr.company-line th.company-mt:nth-of-type(1),tr.company-line td.company-mt:nth-of-type(1){
    padding-top: 20px;
}
@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: 70px 0px 58px;
}
@media (max-width:767px){
.privacy-context {
    font-size: 13px;
    margin: 30px 0px 60px;
}
}
.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;
    text-align: right;
}
/*/////////利用規約/////////*/
.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 #FF4E34;;
    padding-left: 10px;
    margin-top: 47px;
}
@media (max-width:767px){
.terms-of-service-title {
    font-size: 16px;
    border-left: solid 3px #FF4E34;;
}
}
.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;
}

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;
}
/*フォーム*/
/*お問い合わせ*/
#mailform.mailform-mr-top{
	background-color: #fff;
	color: #000;
	width: 80%;
	margin: auto;
	margin-top: 80px;
    padding: 50px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
}
@media screen and (max-width:991px) {
#mailform.mailform-mr-top{
	width: 100%;
}
}
@media screen and (max-width:767px) {
#mailform.mailform-mr-top{
	margin-top: 30px;
    padding: 30px 10px 5px 10px;
}
}
.mailform-title {
    font-weight: 900;
    font-size: 20px;
    text-align: center;
	padding-bottom: 35px;
	border-bottom:dotted 1px #646464;
}
@media screen and (max-width:767px) {
.mailform-title {
    padding-bottom: 5px;
}
}
dl.contact-list {
    display: flex;
    justify-content: flex-start;
	border-bottom:dotted 1px #646464;
}
@media screen and (max-width:767px) {
dl.contact-list {
    flex-direction: column;
    align-items: flex-start;
}
}
dd.contact-list_content ul{
    margin-bottom: 0rem;
}
dl.contact-list dt{
    width: 30%;
    align-items: center;
	padding: 12px 0px 20px 20px;
	line-height: 1.3em;
}
@media screen and (max-width:767px) {
dl.contact-list dt{
    padding: 0px;
    width: 100%;
    font-size: 15px;
}
}
span.from-red {
    color: #FF4874;
    font-size: 13px;
}
@media screen and (max-width:767px) {
span.from-red {
    font-size: 11px;
}
}
dl.contact-list dd{
    margin-bottom: 0.5rem;
    padding: 10px;
    width: 70%;
}
@media screen and (max-width:767px) {
dl.contact-list dd{
    padding: 10px 0px;
    width: 100%;
    font-size: 13px;
}
}
input.small.yuubin_small {
    margin-bottom: 10px;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.small.yuubin_small {
    height: 35px;
}
}
@media screen and (max-width:767px) {
input.small.yuubin_small {
    height: 30px;
}
}
span.form-jidou {
    margin-left: 10px;
    font-size: 13px;
}
input.from-medium {
    width: 70%;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.from-medium {
    height: 35px;
}
}
@media screen and (max-width:767px) {
input.from-medium {
    width: 100%;
    height: 30px;
}
}
input.from-long {
    width: 100%;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.from-long {
	height: 35px;
}
}
textarea.js-form-required.from-textarea {
    width: 100%;
}
@media screen and (max-width:991px) {
textarea.js-form-required.from-textarea {
    height: 150px;
}
}
input.contact-btn {
    border-radius: 50px;
    border: solid 1px #000;
    background-color: #000;
    color: #fff;
    font-family: 'myfont-Poppins-medium';
    font-size: 18px;
    text-align: center;
    padding: 10px 15px;
    margin: 20px 15px 0px 15px;
    font-weight: 600;
}
@media screen and (max-width:1199px) {
input.contact-btn {
    font-size: 15px;
}
}
@media screen and (max-width:767px) {
input.contact-btn {
    margin: 10px 0px 10px;
	width: 100%;
}
}
/*フォーム*/
#mailform.mailform-mr-top{
	background-color: #fff;
	color: #000;
	width: 80%;
	margin: auto;
	margin-top: 80px;
    padding: 50px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500!important;
}
@media screen and (max-width:991px) {
#mailform.mailform-mr-top{
	width: 100%;
}
}
@media screen and (max-width:767px) {
#mailform.mailform-mr-top{
	margin-top: 30px;
    padding: 30px 10px 5px 10px;
}
}
.mailform-title {
    font-weight: 900;
    font-size: 20px;
    text-align: center;
	padding-bottom: 35px;
	border-bottom:dotted 1px #646464;
}
@media screen and (max-width:767px) {
.mailform-title {
    padding-bottom: 5px;
}
}
dl.contact-list {
    display: flex;
    justify-content: flex-start;
	border-bottom:dotted 1px #646464;
}
@media screen and (max-width:767px) {
dl.contact-list {
    flex-direction: column;
    align-items: flex-start;
}
}
dd.contact-list_content ul{
    margin-bottom: 0rem;
}
dl.contact-list dt{
    width: 30%;
    align-items: center;
	padding: 12px 0px 20px 20px;
	line-height: 1.3em;
    font-weight: 500!important;
}
@media screen and (max-width:767px) {
dl.contact-list dt{
    padding: 0px;
    width: 100%;
    font-size: 15px;
}
}
span.from-red {
    color: #FF4874;
    font-size: 13px;
}
@media screen and (max-width:767px) {
span.from-red {
    font-size: 11px;
}
}
dl.contact-list dd{
    margin-bottom: 0.5rem;
    padding: 10px;
    width: 70%;
}
@media screen and (max-width:767px) {
dl.contact-list dd{
    padding: 10px 0px;
    width: 100%;
    font-size: 13px;
}
}
input.small.yuubin_small {
    margin-bottom: 10px;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.small.yuubin_small {
    height: 35px;
}
}
@media screen and (max-width:767px) {
input.small.yuubin_small {
    height: 30px;
}
}
span.form-jidou {
    margin-left: 10px;
    font-size: 13px;
}
input.from-medium {
    width: 70%;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.from-medium {
    height: 35px;
}
}
@media screen and (max-width:767px) {
input.from-medium {
    width: 100%;
    height: 30px;
}
}
input.from-long {
    width: 100%;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.from-long {
	height: 35px;
}
}
textarea.js-form-required.from-textarea {
    width: 100%;
}
@media screen and (max-width:991px) {
textarea.js-form-required.from-textarea {
    height: 150px;
}
}
input.contact-btn {
    border-radius: 50px;
    border: solid 1px #000;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 10px 15px;
    margin: 20px 15px 0px 15px;
    font-weight: 500!important;
}
@media screen and (max-width:1199px) {
input.contact-btn {
    font-size: 15px;
}
}
@media screen and (max-width:767px) {
input.contact-btn {
    margin: 10px 0px 10px;
	width: 100%;
}
}
/*求職者に無料で学びの場を提供しています*/
.features-learning {
    background: #FF649C;
    margin: 70px 0px 57px;
    padding: 7.5px 0px;
    font-size: 30px;
    color: #FFF;
    text-align: center;
    font-weight: 500;
}
@media screen and (max-width:991px) {
.features-learning {
	font-size: 22px;
	margin: 50px 0px 23px;
}
}
@media screen and (max-width:576px) {
.features-learning {
	font-size: 4.83vw;
	margin: 13px 0px 23px;
	font-weight: 400;
}
}
@media screen and (max-width:576px) {
.container.container-sp-none {
    padding-right: 0px;
    padding-left: 0px;
    max-width: 100%;
}
}
.features-learning-contents {
    display: flex;
    gap: 62px;
}
@media screen and (max-width:991px) {
.features-learning-contents {
	flex-direction: column;
	gap: 16px;
}
}
@media screen and (max-width:767px) {
.features-learning-item-text.fadein.scrollin {
    width: 94%;
    margin: auto;
}
}
p.features-learning-title {
    color: #0B3C86;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0rem;
}
@media screen and (max-width:1199px) {
p.features-learning-title {
    font-size: 22px;
}
}
@media screen and (max-width:767px) {
p.features-learning-title {
	font-size: 4.83vw;
	font-weight: 500;
}
}
p.features-learning-text {
    margin: 28px 0px;
	font-weight: 400;
}
@media screen and (max-width:991px) {
p.features-learning-text {
    margin: 14px 0px;
    line-height: 160%;
}
}
.lineup-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 43px 0;
}
@media screen and (max-width:767px) {
.lineup-container {
	margin: 21px 0 21px;
}
}
.lineup {
  color: #FF649C;
  font-size: 25px;
  font-weight: 700;
  margin: 0 17px;
  white-space: nowrap;
}
@media screen and (max-width:991px) {
.lineup {
    text-align: center;
}
}
@media screen and (max-width:767px) {
.lineup {
	font-size: 5.59vw;
}
}
.line {
  flex-grow: 1;
  height: 3px;
  background-color: #FF649C;
}
@media screen and (max-width:767px) {
.line {
	display: none;
}
}
/*WorkWorkラーニングについて*/
.banner--btn.banner--btn-features-learning.about-workwork-learning {
    width: 329px !important;
    font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width:991px) {
.banner--btn.banner--btn-features-learning.about-workwork-learning {
	display: block;
    margin: auto;
    margin-top: 14px!important;
}
}
@media screen and (max-width:767px) {
.banner--btn.banner--btn-features-learning.about-workwork-learning {
	width: 100% !important;
}
}
.banner--btn.banner--btn-features-learning.about-workwork-learning  span.main-btn.main-btn-workwork-learning{
	border-radius: 55px;
	background: #00CEC8;
	width: 329px!important;
	height: 55px!important;
	font-size: 17px !important;
	font-weight: 500;
	color: #FFF;
}
@media screen and (max-width:767px) {
.banner--btn.banner--btn-features-learning.about-workwork-learning  span.main-btn.main-btn-workwork-learning{
	font-size: 4.32vw !important;
	width: 100% !important;
	font-weight: 400;
}
}
img.features-learning-icon {
    width: 15px;
    height: 11px;
}
/*入社後すぐ活かせる全200講座をラインナップ*/
.lineup-contents-fluid {
    margin: 0px 70px;
    display: flex;
    gap: 65px;
}
@media screen and (max-width:1440px) {
.lineup-contents-fluid {
	gap: 15px;
}
}
@media screen and (max-width:991px) {
.lineup-contents-fluid {
	gap: 10px;
	margin: 0px 40px;
}
}
@media screen and (max-width:767px) {
.lineup-contents-fluid {
	margin: 0px 10px;
    flex-direction: column;
	gap: 19px;
}
}
.lineup-contenus-item-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-learning-img {
  width: 100%;
}

.lineup-contenus-text-item-text {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
  width: 100%;
}

.lineup-contenus-text-item-text-l {
	border-radius: 41px;
	background: #FF649C;
	font-size: 22px;
	color: #fff;
	padding: 12px 3px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	text-align: center;
	height: 154px;
}
@media screen and (max-width:1199px) {
.lineup-contenus-text-item-text-l {
	gap: 15px;
	font-size: 18px;
	padding: 12px 0px;
}
}
.lineup-contenus-text-item-text-l .horizontal {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  display: inline-block;
}
.lineup-contenus-text-item-text-r {
  flex-grow: 1;
  margin-left: 12px;
}

.curriculum-text {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	margin-bottom: 0rem;
}
@media screen and (max-width:1199px) {
.curriculum-text {
	font-size: 13px;
}
}
@media screen and (max-width:767px) {
.curriculum-text {
	font-size: 3.81vw;
}
}
@media (max-width: 991px) {
.lineup-contenus-text-item-text {
	flex-direction: column;
	margin-top: 10px;
}
.lineup-contenus-text-item-text-r {
	margin-left: 0;
	margin-top: 5px;
}
}
@media (max-width: 991px) {
.lineup-contenus-text-item-text-l {
	text-orientation: upright;
	height: auto;
	width: 100%;
    writing-mode: unset;
    padding: 2.5px 0px;
}
}
@media (max-width: 767px) {
.lineup-contenus-text-item-text-l {
	width: 29%;
	font-size: 4.58vw;
	padding: 0.5px 0px;
}
}
img.main-100.img-main-wakuwaku-top.banner-icon{
    margin: 0;
}

@media (max-width: 767px) {
.banner_box img.main-100.img-main-wakuwaku-top.banner-icon{
    margin: 20px 0 0 0;
}
}

@media (max-width: 767px) {
img.main-100.img-main-wakuwaku-top.banner-icon{
    width: 100%;
    margin-top: -5px;
}
}