@charset "UTF-8";


/* reset ---------------------------------------*/

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
select,input,button,textarea{font-size:inherit;font-family:inherit;box-sizing: border-box;}
pre,code,kbd,samp{font-family:monospace;*font-size:108%;line-height:100%;}
figure{padding:0;margin:0;}
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {display: none;}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {outline-offset: -2px;}


/* base ---------------------------------------*/

*{box-sizing:border-box;}

html,body{height:100%;}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-weight: 400;
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	color: #000;
}

a{
	color: #000;
	text-decoration: none;
	transition: all .25s ease;
}

a:hover{}

img{
	vertical-align: bottom;
	line-height: 1;
	max-width:100%;
	height:auto;
}

.skyblue{color:#17c6cc;}

/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.ov-h{overflow: hidden;}


/* browser adjust ---------------------------------------*/

@media all and (-ms-high-contrast:none){
	.foo { color: green }
}


/* mask icon ---------------------------------------*/

.icon-arrow{
	-webkit-mask-image: url('../img/common/arrow.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/arrow.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	display: inline-block;
	vertical-align: middle;
	height: 24px;
	width: 24px;
	background: #ff0000;
}


/* layout ---------------------------------------*/

.wrapper{
	overflow: hidden;
	position: relative;
}

.inner{
	max-width: 900px;
	margin:0 auto;
}

.overlay{display: none;}


/* header ---------------------------------------*/

header{
	position: fixed;
	background: rgba(255,255,255,1);
	left:0;
	top:0px;
	width:100%;
	height:100px;
	z-index:10;
}

.header-inner{
	height:100%;
	margin:0 auto;
	position:relative;
}

.header-logo{
	position: absolute;
	left: 65px;
	top: 50%;
	transform: translateY(-50%);
}


/* gnav ---------------------------------------*/

.gnav{
	position:absolute;
	right: 65px;
	top: 50%;
	transform: translateY(-50%);
	width: calc(100% - 320px);
}

.gnav-list{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	gap: 42px;
}

.gnav-list > li{
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.025em;
}

.gnav-list > li a{
	display: block;
	position: relative;
	padding-right: 14px;
}

.gnav-list > li a::after{
	content: '';
	position:absolute;
	right: 0;
	top: 40%;
	width: 6px;
	height: 6px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	transform: translate(0, -50%) rotate(45deg);
}

.gnav-list > li a:hover{
	opacity:0.6;
}

#openmenu{display:none;}


/* btn ---------------------------------------*/
.btn {
	display: block;
	position: relative;
	z-index: 0;
	width: 100%;
	border-radius: 100px;
	box-shadow: 0 6px 10px rgba(0,0,0,0.2);
	overflow: hidden;
	transition: .4s all ease;
}

.btn:before {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: right center;
	background-color: rgba(255, 255, 255, 0.25);
	content: "";
	transition: inherit;
	transition-property: transform;
}

.btn.btn-download:before {background-color: rgba(255, 255, 255, 0.25);}
.btn.btn-contact:before {background-color: rgba(249, 82, 218, 0.2);}

.btn.btn-download:hover:before, .btn.btn-contact:hover:before {
	transform: scaleX(1);
	transform-origin: left center;
}

.btn-download {

}

.btn-contact {

}

/* kv ---------------------------------------*/
.kv {
	position: relative;
	z-index: 1;
	min-height: 565px;
	width: 100%;
	margin: 100px auto 0;
	padding: max(calc(50 / 1200 * 100%), 50px) 50px;
	background: url(../img/kv_bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 1200/565;
}

.kv-deco {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	margin: auto;
	width: max(calc(72 / 1200 * 100%), 72px);
	height: max(calc(80 / 1200 * 100%), 80px);
	animation: fuwafuwa 1.2s linear infinite;
}

@keyframes fuwafuwa {
	0% {transform: translate(0, 0);}
	25% {transform: translate(0, max(calc(5 / 1200 * 100%), 5px));}
	50% {transform: translate(0, 0);}
	75% {transform: translate(0, min(calc(-5 / 1200 * 100%), -5px));}
	100% {transform: translate(0, 0);}
}

.kv-deco img {
	width: 100%;
}


.kv-deco-01 {
	left: -56.5%;
	top: -77%;
}

.kv-deco-03 {
	left: -70%;
	top: 29%;
}

.kv-deco-04 {
	left: 66.5%;
	top: -14%;
}

.kv-image {
	width: max(calc(567 / 1200 * 100%), 567px);
	margin: 0 auto max(calc(26 / 1200 * 100vw), 26px);
}

.kv-image img {
	width: 100%;
}

.kv-title {
	margin-bottom: max(calc(70 / 1200 * 100vw), 70px);
}

.kv-title span {
	display: block;
	font-size: max(calc(26 / 1200 * 100vw), 26px);
	font-weight: 700;
	line-height: 1.69;
	text-align: center;
	letter-spacing: 0.15em;
	color: #fff;
	margin-bottom: max(calc(8 / 1200 * 100vw), 8px);
}

.kv-title b {
	display: block;
	font-size: max(calc(44 / 1200 * 100vw), 44px);
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	letter-spacing: 0.15em;
	color: #fff;
}

.kv-ctalist { 
	display: flex;
	justify-content: center;
	align-items: center;
	gap: calc(50 / 900 * 100%);
	max-width: 900px;
	margin: 0 auto;
}

.kv-ctalist > li { 
	width: calc(400 / 900 * 100%);
}

.kv-ctalist > li a img { 
	width: 100%;
}


/* fixedcta ---------------------------------------*/
.fixedcta{
	position:fixed;
	left:0;
	bottom:0;
	width:100%;
    background: rgba(0,0,0,0.7);
	padding:20px 20px 20px;
	text-align: center;
	z-index:100;
	transition: all 0.5s ease;
	transform: translate(0,105%);
	opacity:0;
}

.fixedcta.is-active{
	transform: translate(0,0);
	opacity:1;
}

.fixedcta-lead {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 10px;
	margin-bottom: 16px;
}

.fixedcta-lead img {
	display: block;
	width: 336px;
}

.fixedcta-lead span {
	display: block;
	font-size: 22px;
	font-weight: 500;
	line-height: calc(30 / 22);
	letter-spacing: 0.08em;
	color: #fff;
}

.fixedcta-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: calc(30 / 900 * 100%);
}

.fixedcta-list > li {

}

/* tiktok ---------------------------------------*/
.tiktok {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 70px 20px 400px;
	background: url(../img/bg_tiktok.jpg) no-repeat;
	background-size: cover;
	background-position: top center;
}

.tiktok-title {
	width: 400px;
	margin: 0 auto 26px;
}

.tiktok-block {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: calc(70 / 620 * 100%);
	max-width: 620px;
	margin: 0 auto 76px;
}

.tiktok-image {
	width: calc(200 / 620 * 100%);
	border-radius: 10px;
	overflow: hidden;
}

.tiktok-text {
	flex: 1;
	font-size: 18px;
	font-weight: 400;
	line-height: calc(30 / 18);
	letter-spacing: 0.02em;
}

.tiktok-list {
	display: flex;
	justify-content: center;
	gap: calc(calc(220 / 3) / 900 * 100%);
}

.tiktok-list > li {
	width: calc(170 / 900 * 100%);
}

.tiktok-list-title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	height: min(calc(60 / 940 * 100vw), 60px);
	font-size: min(calc(18 / 940 * 100vw), 18px);
	font-weight: 500;
	line-height: calc(24 / 18);
	text-align: center;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: min(calc(44 / 940 * 100vw), 44px);
}

.tiktok-list-title::before,
.tiktok-list-title::after {
	position: absolute;
	left: 50%;
	bottom: max(calc(-30 / 940 * 100vw), -30px);
	transform: translateX(-50%);
	z-index: 1;
	background: #fff;
	content: '';
}

.tiktok-list-title::before {
	width: 1px;
	height: min(calc(37 / 940 * 100vw), 37px);
}

.tiktok-list > li:first-of-type .tiktok-list-title::before {
	height: min(calc(27 / 940 * 100vw), 27px);
}

.tiktok-list-title::after {
	width: min(calc(5 / 940 * 100vw), 5px);
	height: min(calc(5 / 940 * 100vw), 5px);
	border-radius: 50%;
}

.tiktok-list-image {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}


/* buzz ---------------------------------------*/
.buzz {

}

.buzz01 {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: -300px auto 0;
	padding: 100px 20px 400px;
	background: linear-gradient(10deg, #ff5dd8 -100%, #fff 55%, #fff 100%);
	border-radius: 0 250px 0 0;
	box-shadow: 0 0 50px rgba(192,175,212,0.2);
}

.buzz01-title {
	max-width: 915px;
	margin: 0 auto 40px -14px;
}

.buzz-text {
	max-width: 845px;
	font-size: 18px;
	line-height: calc(30 / 18);
	letter-spacing: 0.025em;
}

.buzz01-text {
	margin: 0 auto 44px 0;
}

.buzz-image {
	width: 100%;
	margin: 0 auto;
}

.buzz-image img {

}

.buzz02 {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: -340px auto 0;
	padding: 104px 20px 126px;
	background: linear-gradient(-10deg, #6475fa -50%, #fff 50%, #fff 100%);
	border-radius: 250px 0 0 0;
	box-shadow: 0 0 50px rgba(229,204,223,0.2);
}

.buzz02-deco {
	display: block;
	position: absolute;
	bottom: 100%;
	right: 0px;
	width: 70px;
	height: 70px;
	overflow: hidden;
}

.buzz02-deco::after {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 200%;
	height: 200%;
	border-radius: 50%;
	box-shadow: 70px 70px 0 0 #fff;
	content: '';
}

.buzz02-title {
	max-width: 915px;
	margin: 0 -14px 40px auto;
}

.buzz02-text {margin: 0 1.8% 0 auto;}


/* feature ---------------------------------------*/
.feature {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0 0 300px;
	background: url(../img/bg_feature.jpg) no-repeat;
	background-size: cover;
	background-position: top center;
}

.feature01 {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 70px 20px 96px;
	background: url(../img/bg_feature01.png) no-repeat;
	background-size: 100% auto;
	background-position: bottom 162px center;
}

.feature01-title {
	position: relative;
	z-index: 1;
	text-align: center;
	margin: 0 auto 30px;
}

.feature01-title::before, .feature01-title::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	width: calc(50% - 120px);
	height: 1px;
	content: '';
}

.feature01-title::before {
	left: 0;
	background: #ff5dd8;
}

.feature01-title::after {
	right: 0;
	background: #6475fa;
}

.feature01-text {
	font-size: 18px;
	font-weight: 300;
	line-height: calc(30 / 18);
	text-align: center;
	letter-spacing: 0.025em;
	color: #fff;
	max-width: 753px;
	margin: 0 auto 40px;
}

.feature01-copy {
	max-width: 751px;
	width: 100%;
	margin: 0 auto 48px;
}

.feature01-list {
	display: flex;
	justify-content: center;
	gap: calc(30 / 900 * 100%);
	margin-bottom: 136px;
}

.feature01-list > li {
	width: calc(280 / 900 * 100%);
}

.feature01-lead {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: calc(20 / 900 * 100%);
}

.feature01-lead span {
	display: block;
	font-size: min(calc(18 / 940 * 100vw), 18px);
	font-weight: 300;
	line-height: calc(30 / 18);
	letter-spacing: 0.025em;
	color: #fff;
}

.feature01-lead img {
	display: block;
	width: calc(294 / 900 * 100%);
}

.feature02 {
	padding: 0 20px;
	margin-bottom: 70px;
}

.feature02-wrapper {
	padding: 70px 20px 100px;
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
	background: url(../img/bg_feature02.jpg) no-repeat;
	background-size: cover;
	background-position: top center;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 0 50px rgba(24, 24, 24, 0.2);
}

.feature02-title {
	position: relative;
	z-index: 1;
	margin-bottom: 90px;
}

.feature02-title::after {
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	width: 1px;
	height: 50px;
	background: #fff;
	content: '';
}

.feature02-title span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	line-height: calc(30 / 20);
	text-align: center;
	letter-spacing: 0.12em;
	color: #fff;
	margin-bottom: 10px;
}

.feature02-title img {
	display: block;
	max-width: 519px;
	width: 100%;
	margin: 0 auto;
}

.feature02-image {
	width: 100%;
}

.feature03 {
	padding: 0 20px;
	margin-bottom: 130px;
}

.feature03-wrapper {
	padding: 76px 20px 100px;
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
	background: url(../img/bg_feature03.jpg) no-repeat;
	background-size: cover;
	background-position: top center;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 0 50px rgba(24, 24, 24, 0.2);
}

.feature03-title {
	width: calc(942 / 900 * 100%);
	max-width: 942px;
	margin-left: -2.2%;
	margin-bottom: 30px;
}

.feature03-text {
	font-size: 18px;
	line-height: calc(30 / 18);
	text-align: center;
	letter-spacing: 0.08em;
	color: #fff;
	margin-bottom: 68px;
}

.feature03-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 36px calc(40 / 900 * 100%);
}

.feature03-list > li {
	width: calc(430 / 900 * 100%);
}

.feature-cta {
	padding: 0 20px;
}

.feature-cta-lead {
	position: relative;
	z-index: 1;
	width: fit-content;
	margin: 0 auto 50px;
	font-size: 26px;
	font-weight: 500;
	line-height: calc(30 / 26);
	text-align: center;
	letter-spacing: 0.2em;
	color: #fff;
}

.feature-cta-lead::before, .feature-cta-lead::after {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 20px;
	height: 31px;
	background: url('../img/img_feature_line.png') no-repeat;
	background-size: contain;
	content: '';
}

.feature-cta-lead::before {left: -50px;}
.feature-cta-lead::after {
	right: -40px;
	transform: scaleX(-1);
}

.feature-cta-list {
	display: flex;
	justify-content: center;
	gap: calc(30 / 900 * 100%);
}

.feature-cta-list > li {
	width: calc(400 / 900 * 100%);
}


/* case ---------------------------------------*/
.case {
	position: relative;
	z-index: 1;
	padding: 96px 20px 300px;
	margin-top: -200px;
    margin-left: calc(-400 / 1200 * 100vw / 2);
	width: calc(1600 / 1200 * 100vw);
	background: linear-gradient(10deg, #6475fa -50%, #fff 43%, #fff 100%);
	border-radius: 50% 50% 0 0 / calc(150 / 1200 * 100vw) calc(150 / 1200 * 100vw) 0 0;
	overflow: hidden;
	box-shadow: 0 0 50px rgba(0,0,0,0.25);
}

.case-title {
	width: 100%;
	margin-bottom: 70px;
}

.case-list-wrapper {
	padding-bottom: 100px;
}

.case-list-wrapper::before,
.case-list-wrapper::after {
	position: absolute;
	bottom: -300px;
	z-index: 1;
	width: 20vw;
	height: calc(100% + 300px + 60px);
	content: '';
}

.case-list-wrapper::before {
	left: calc(50% - 50vw);
	background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
}

.case-list-wrapper::after {
	right: calc(50% - 50vw);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
}

.case-list {
}

.case-list > li {
	background: #fff;
	padding: 40px 50px;
	border-radius: 20px;
	box-shadow: 0 0 60px rgba(207,209,231,0.3);
}

.case-item-company {
	display: block;
	margin: 0 auto;
	padding:3px 36px 5px;
	width: fit-content;
	min-width: 370px;
	font-size: 22px;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.08em;
	color:#fff;
	border-radius: 20px;
	background: linear-gradient(140deg, #FF5DD8 0%, #6475FA 100%);
}

.case-item-image {
	margin-top: 40px;
	width: 100%;
	aspect-ratio: 600 / 300;
}

.case-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-item-body {
	text-align:left;
	padding:36px 10px 0;
	min-height:430px
}

.case-item-subtitle {
	font-size: 20px;
	font-weight: 700;
	line-height: calc(28 / 20);
	letter-spacing: 0.1em;
	padding-bottom: 30px;
}

.case-item-title {
	position: relative;
	z-index: 1;
	font-size: 26px;
	font-weight: 700;
	line-height: calc(36 / 26);
	letter-spacing: 0.05em;
	margin-bottom: 27px;
	padding-left: 30px;
}

.case-item-title::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, #FF5DD8 0%, #6475FA 100%);
	border-radius: 10px;
	content: '';
}

.case-item-title small{
	font-size: 20px;
}

.case-item-text {
	font-size: 16px;
	line-height: calc(30 / 16);
	letter-spacing: 0.05em;
	margin-bottom: 24px;
}

.case-item-link {
	text-align:left;
	letter-spacing: 0.05em;
}

.case-item-link a{
	display: inline-block;
	font-size: 16px;
	line-height: calc(30 / 16);
	letter-spacing: 0.075em;
	position: relative;
	color: #ff5dd8;
}

.case .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 12px;
}

.case .swiper-pagination .swiper-pagination-bullet{
	width: 15px;
	height: 15px;
	margin:0 8px;
	background: #b5bdfb;
}

.case .swiper-pagination .swiper-pagination-bullet-active {
	background: #6475fa;
}

.case .swiper-button-prev,
.case .swiper-button-next{
	width:60px;
	height:60px;
	top:45%;
	transition: all .25s ease;
	z-index:60;
}

.case .swiper-button-prev{
	background: url(../img/icon_arrow_prev.svg) no-repeat center center;
	background-size: 100%;
	left:52%;
	margin-left: -500px;
}

.case .swiper-button-next{
	background: url(../img/icon_arrow_next.svg) no-repeat center center;
	background-size: 100%;
	right:52%;
	margin-right: -500px;
}

.case .swiper-button-prev:hover{
	transform: scale(1.05);
	opacity:1;

}
.case .swiper-button-next:hover{
	transform: scale(1.05);
	opacity:1;
}

.case .swiper-button-disabled{opacity:0;}


/* flow ---------------------------------------*/
.flow {
	position: relative;
	z-index: 1;
	padding: 100px 20px 500px;
	margin-top: -215px;
	background: linear-gradient(-10deg, #ff5dd8 -100%, #fff 48%, #fff 100%);
	border-radius: 250px 0 0 0;
	box-shadow: 0 0 50px rgba(207,209,231,0.2);
}

.flow-title {
	margin-bottom: 68px;
	text-align: center;
}

.flow-body {
	position: relative;
	padding-left: 128px;
}

.flow-list {}

.flow-list > li{position: relative;}

.flow-list > li:nth-child(1){z-index:5;}
.flow-list > li:nth-child(2){z-index:4;}
.flow-list > li:nth-child(3){z-index:3;}
.flow-list > li:nth-child(4){z-index:2;}
.flow-list > li:nth-child(5){z-index:1;}

.flow-item {
	position: relative;
	height:156px;
}

.flow-item::after{
	display:block;
	content:'';
	border-bottom:3px dotted #b4b4b4;
	width:calc(100% - 230px);
	height:0px;
	position:absolute;
	right:0px;
	bottom:0;
}

.flow-item-image {
	position: absolute;
	left:-24px;
	top:0;
	z-index:2;
	filter: drop-shadow(0 13px 27px rgba(40,40,40,0.2));
}

.flow-list > li:nth-child(5) .flow-item-image {top:-6px}

.flow-item-text {
	position: absolute;
	left:41.5%;
	top:50%;
	transform: translate(0,-50%);
	font-size: 16px;
	line-height: calc(30 / 16);
	letter-spacing: 0.05em;
	padding-right: 5%;
}

.flow-term{
	position: absolute;
	left:0;
	bottom:0;
	width:67px;
}

/* animation */

.flow-body.animation{
	opacity:1;
	transform: translate(0,0);
}

.animation .flow-item,
.animation .flow-term{
	transition: all .75s ease;
	opacity:0;
	transform: translate(0,30px);
}

.animation .flow-list > li:nth-child(2) .flow-item{transition-delay: 0.4s;}
.animation .flow-list > li:nth-child(3) .flow-item{transition-delay: 0.8s;}
.animation .flow-list > li:nth-child(4) .flow-item{transition-delay: 1.2s;}
.animation .flow-list > li:nth-child(5) .flow-item{transition-delay: 1.6s;}
.animation .flow-term{transition-delay: 2s;}

.animation.on .flow-item,
.animation.on .flow-term{
	opacity:1;
	transform: translate(0,0);
}


/* faq ---------------------------------------*/
.faq {
	position: relative;
	z-index: 1;
	padding: 98px 20px 460px;
	margin-top: -330px;
	background: linear-gradient(10deg, #6475fa -30%, #fff 50%, #fff 100%);
	border-radius: 0 250px 0 0;
	box-shadow: 0 0 50px rgba(229,204,223,0.2);
}

.faq-deco {
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0px;
	width: 70px;
	height: 70px;
	overflow: hidden;
}

.faq-deco::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 200%;
	height: 200%;
	border-radius: 50%;
	box-shadow: -70px 70px 0 0 #fff;
	content: '';
}

.faq-title {
	width: 100%;
	margin-bottom: 90px;
}

.faq-list {
	max-width:710px;
	margin:0 auto;
}

.faq-list > li:not(:last-child){
	margin-bottom: 40px;
}

.faq-item-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	padding-bottom: 17px;
	cursor:pointer;
	position: relative;
	letter-spacing: 0.06em;
	transition: all .25s ease;
}

.faq-item-title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	max-width: 705px;
	width: 100%;
	height: 3px;
	background: url('../img/img_faq_line.png') no-repeat;
	background-size: 100% auto;
	content: '';
}

.faq-item-title:hover {
	opacity:0.7;
}

.faq-item-open{
	display: block;
	width:24px;
	height:24px;
	position: absolute;
	right:4px;
	top:5px;
}

.faq-item-open::before,
.faq-item-open::after{
	display:block;
	content:'';
	background:linear-gradient(40deg, #FF5DD8 0%, #6475FA 100%);
	width:24px;
	height:4px;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	transition: all .25s ease;
}

.faq-item-open::after{
	transform:translate(-50%,-50%) rotate(90deg);
}

.faq-item-title.is-active .faq-item-open::after{transform:translate(-50%,-50%) rotate(0deg);}

.faq-item-body {
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: 0.07em;
	display: none;
}

.faq-item-body-inner {
	padding:13px 0 18px;
}


/* footer ---------------------------------------*/

footer {
	position: relative;
	z-index: 1;
	margin-top: -330px;
	background: linear-gradient(-5deg, #000 0%, #000 208px, #666 100%);
	padding:40px 40px 248px;
}

.footer-inner {
	max-width: 1070px;
	margin: 0 auto 42px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 50px;
}
.footer-onesite-wrapper{
	width: 420px;
	margin-top: 10px;
	transition: all .25s ease;
}
.footer-onesite-wrapper:hover{
	opacity:0.7;
}
.footer-onesite-wrapper img{
	width: 100%;
}

.footer-logo {
	display: inline-block;
	width:320px;
	margin-top: 12px;
}

.footer-body {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1070px;
	margin: 0 auto;
}

.footer-nav {
	margin-bottom: 0;
}

.footer-nav-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}

.footer-nav-list > li {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.footer-nav-list > li a{
	display: block;
	padding:0 21px;
	position: relative;
	line-height: 1;
	color:#fff;
}

.footer-nav-list > li:last-child a{
	padding-right: 0;
}

.footer-nav-list > li a::after{
	display:block;
	content:'';
	background:#fff;
	width:1px;
	height:13px;
	position:absolute;
	left:0;
	top:50%;
	transform:translate(0,-50%);
}

.footer-nav-list > li:first-child a::after{
	display: none;
}

.footer-subnav {
}

.footer-subnav-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	gap: 0px 10px;
	width: 670px;
	margin-left: auto;
}

.footer-subnav-list > li{
	font-size: 16px;
	letter-spacing: 0.1em;
}

.footer-subnav-list > li a {
	color:#fff;
}


/* animation ---------------------------------------*/

.animation{
	transition: all 1.2s ease;
	transform:translate(0,20px);
	opacity:0;
}

.animation.on{
	transform:translate(0,0px);
	opacity:1;
}

.animation.animation-step {
	transform:translate(0,0);
	opacity:1;
}
.animation.animation-step > li {
	transition: all 1.2s ease;
	transform:translate(0,20px);
	opacity: 0;
}
.animation.on.animation-step > li {
	transform:translate(0,0);
	opacity:1;
}
.animation.on.animation-step > li:nth-of-type(2) {transition-delay: 0.4s;}
.animation.on.animation-step > li:nth-of-type(3) {transition-delay: 0.8s;}
.animation.on.animation-step > li:nth-of-type(4) {transition-delay: 1.2s;}



/* pc only */
@media screen and (min-width: 768px){
	.sp{display: none !important;}
	.spbr{display: none;}
}


/* small pc */
@media screen and (min-width: 768px) and (max-width: 1198px){
	.feature01 {
		background-size: cover;
	}

}

@media screen and (min-width: 768px) and (max-width: 1160px){
	.header-logo {left: 40px;}
	.gnav{right:40px;}
	.gnav-list{gap:24px;}
	.gnav-list > li{font-size: 12px;}
	.footer-body{display: block;}
}




/* small pc */
@media screen and (min-width: 768px) and (max-width: 1000px){
	.header-logo {
		left: 20px;
		width: 120px;
	}
	.gnav{
		right: 20px;
		width: calc(100% - 180px);
	}
	.gnav-list{gap:15px 24px;}
	.buzz01 {border-radius: 0 150px 0 0;}
	.buzz02 {border-radius: 150px 0 0 0;}
	.flow {border-radius: 150px 0 0 0;}
	.faq {border-radius: 0 150px 0 0;}
	.case .swiper-button-prev{margin-left:-350px}
	.case .swiper-button-next{margin-right:-350px}

	.flow-item-text{left:300px}


}

/* sp only */
@media screen and (max-width: 767px){

	/* common item ---------------------------------------*/

	.pc{display: none !important;}
	.pcbr{display: none;}


	/* layout ---------------------------------------*/

	.header-inner,
	.footer-inner,
	.inner,
	.wrapper{
		min-width: 0;
		width: 100%;
	}

	.inner{
		max-width: 450px;
	}

	/* header ---------------------------------------*/

	header{
		position: fixed;
		height:60px;
		background: #fff;
	}

	.header-inner{
	}

	.header-logo{
		left:15px;
		width:80px;
	}

	.header-submenu {
		position: absolute;
		width:121px;
		right:60px;
		top:0;
	}

	.header-submenu-list{
		display: flex;
		gap:0;
		justify-content: flex-end;
		align-items: center;
		background: linear-gradient(135deg, #6475fa 0%, #6475fa 10%, #ff5dd8 90%, #ff5dd8 100%);
	}

	.header-submenu-list > li{
	}

	.header-submenu-list > li a{
		display: block;
		width:60px;
		height:60px;
		position: relative;
	}

	.header-submenu-list > li:not(:first-child) a::after{
		display:block;
		content:'';
		background:#fff;
		width:1px;
		height:calc(100% - 10px);
		position:absolute;
		left:-1px;
		top:5px;
		transform: translate(0,0);
		border-radius: 0;
		opacity:1;
	}

	.header-submenu-list > li a img{
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}

	.header-submenu-list > li.header-submenu-download a img{width: 45px;}
	.header-submenu-list > li.header-submenu-contact a img{ width: 49px;}

	.overlay{
		content:'';
		display: block;
		position:fixed;
		width:100%;
		height:300px;
		background: rgba(0,0,0,0.5);
		left:0;
		top:0;
		z-index:6;
	}

	#openmenu{
		display:block;
		width:60px;
		height:60px;
		overflow: hidden;
		position:absolute;
		right:0;
		top:0;
		background: #000;
		color:#fff;
	}

	#openmenu span{
		content:'';
		display: block;
		width:30px;
		height:1px;
		background: #fff;
		position: absolute;
		left:15px;
		transition: all .25s ease;
	}

	#openmenu span:nth-child(1){top:13px;}
	#openmenu span:nth-child(2){top:22px;}
	#openmenu span:nth-child(3){top:31px;}

	#openmenu p{
		position: absolute;
		left:0;
		bottom:13px;
		width:100%;
		text-align: center;
		font-size: 9px;
		line-height: 1;
		color:#fff;
	}

	#openmenu.is-open span:nth-child(1){
		transform:rotate(45deg);
		top:30px;
		left:15px;
	}

	#openmenu.is-open span:nth-child(2){
		opacity:0;
		left:-25px;
	}

	#openmenu.is-open span:nth-child(3){
		transform:rotate(-45deg);
		top:30px;
		left:15px;
	}

	#openmenu.is-open p {
		opacity: 0;
	}

	.bodyfixed{
		position: fixed;
		width: 100%;
		height: 100%;
	}

	/* gnav ---------------------------------------*/

	.gnav{
		position:fixed;
		right:0;
		top: 0;
		transform: unset;
		width: 100%;
		height: auto;
		background: #000;
		display: none;
	}

	.gnav-list{
		display: block;
		padding: 90px 34px 46px;
	}

	.gnav-list > li{
		font-size: 14px;
		font-weight:700;
		letter-spacing: 0.1em;
	}

	.gnav-list > li + li {
		margin-top: 28px;
	}

	.gnav-list > li a{
		display: block;
		position: relative;
		padding-right: 13px;
		color:#fff;
	}

	.gnav-list > li a::after{
		top: 52%;
		width: 10px;
		height: 10px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		transform: translate(0, -50%) rotate(-45deg);
	}

	.gnav-list > li a:hover{
		opacity:1;
	}


	/* btn ---------------------------------------*/
	.btn {
		box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	}


	/* kv ---------------------------------------*/
	.kv {
		min-height: unset;
		margin: 60px auto 0;
		padding: calc(24 / 375 * 100vw) 0 0;
		background: url(../img/kv_bg_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center;
		aspect-ratio: 750 / 939;
	}

	.kv-deco {
		width: calc(36 / 375 * 100%);
		height: calc(40 / 375 * 100%);
	}

	.kv-deco-01 {
		left: -47.5%;
		top: -84%;
	}

	.kv-deco-02 {
		left: 66.5%;
		top: 11%;
	}

	.kv-deco-03 {
		left: -69%;
		top: -14%;
	}

	.kv-deco-04 {
		left: 76%;
		top: -72%;
	}

	.kv-image {
		width: calc(142.5 / 375 * 100vw);
		margin: 0 auto calc(20 / 375 * 100vw);
	}

	.kv-title {
		margin-bottom: calc(34 / 375 * 100vw);
	}

	.kv-title span {
		font-size: calc(14 / 375 * 100vw);
		line-height: calc(46 / 28);
		margin-bottom: calc(4 / 375 * 100vw);
	}

	.kv-title b {
		font-size: calc(22 / 375 * 100vw);
		letter-spacing: 0.2em;
	}

	.kv-ctalist { 
		gap: calc(9 / 305 * 100%);
		max-width: 305px;
	}

	.kv-ctalist > li { 
		width: calc(148 / 305 * 100%);
	}


	/* fixedcta ---------------------------------------*/
	.fixedcta{
		padding: 13px 20px 12px;
	}

	.fixedcta-lead {
		display: block;
		margin-bottom: 10px;
	}

	.fixedcta-lead img {
		width: 180px;
		margin: 0 auto;
	}

	.fixedcta-lead span {
		font-size: 12px;
	}

	.fixedcta-list {
		gap: calc(9 / 305 * 100%);
		max-width: 305px;
		margin: 0 auto;
	}

	.fixedcta-list > li {
		width: calc(148 / 305 * 100%);
	}

	/* tiktok ---------------------------------------*/
	.tiktok {
		padding: 50px 50px 150px;
		background: url(../img/bg_tiktok_sp.jpg) no-repeat;
		background-size: cover;
		background-position: top center;
	}

	.tiktok-title {
		width: 215px;
		margin: 0 auto 28px;
	}

	.tiktok-block {
		display: block;
		max-width: 275px;
		margin: 0 auto 38px;
	}

	.tiktok-image {
		width: calc(151 / 275 * 100%);
		border-radius: calc(7.5 / 375 * 100vw);
		margin: 0 auto 32px;
	}

	.tiktok-text {
		width: 100%;
		font-size: 12px;
		line-height: calc(32 / 24);
	}

	.tiktok-list {
		flex-wrap: wrap;
		gap: 32px calc(31 / 275 * 100%);
	}

	.tiktok-list > li {
		width: calc(122 / 275 * 100%);
	}

	.tiktok-list-title {
		height: 27px;
		font-size: 11px;
		line-height: calc(31.81 / 22);
		margin-bottom: 25px;
	}

	.tiktok-list > li:nth-of-type(3) .tiktok-list-title,
	.tiktok-list > li:nth-of-type(4) .tiktok-list-title {
		height: unset;
	}

	.tiktok-list-title::before,
	.tiktok-list-title::after {
		bottom: -19px;
	}

	.tiktok-list-title::before {
		width: 1px;
		height: 13px;
	}

	.tiktok-list > li:first-of-type .tiktok-list-title::before {height: 13px;}
	.tiktok-list > li:nth-of-type(2) .tiktok-list-title::before {height: 23px;}

	.tiktok-list-title::after {
		width: 3.5px;
		height: 3.5px;
	}

	.tiktok-list-image {
		border-radius: calc(7.5 / 375 * 100vw);
	}

	.tiktok-list-image img {
		width: 100%;
	}



	/* buzz ---------------------------------------*/
	.buzz01 {
		margin: -92px auto 0;
		padding: 52px 35px 150px;
		background: linear-gradient(20deg, #ff5dd8 -100%, #fff 55%, #fff 100%);
		border-radius: 0 90px 0 0;
		box-shadow: 0 0 25px rgba(192,175,212,0.2);
	}

	.buzz01-title {
		max-width: unset;
		width: 100%;
		margin: 0 auto 16px;
	}

	.buzz-text {
		max-width: unset;
		width: 100%;
		font-size: 11px;
		line-height: calc(34 / 22);
		letter-spacing: 0.025em;
	}

	.buzz01-text {
		margin: 0 auto 20px;
		padding: 0 1.8%;
	}

	.buzz-image img {
		width: 100%;
	}

	.buzz02 {
		margin: -100px auto 0;
		padding: 52px 35px 46px;
		background: linear-gradient(-20deg, #6475fa -50%, #fff 55%, #fff 100%);
		border-radius: 90px 0 0 0;
		box-shadow: 0 0 25px rgba(229,204,223,0.2);
	}

	.buzz02-deco {
		width: calc(25 / 375 * 100vw);
		height: calc(25 / 375 * 100vw);
	}

	.buzz02-deco::after {
		box-shadow: calc(25 / 375 * 100vw) calc(25 / 375 * 100vw) 0 0 #fff;
	}

	.buzz02-title {
		margin: 0 auto 16px;
	}

	.buzz02-text {margin: 0 auto;}


	/* feature ---------------------------------------*/
	.feature {
		padding: 0 0 150px;
		background: url(../img/bg_feature_sp.jpg) no-repeat;
		background-size: 100% auto;
		background-position: top center;
	}

	.feature01 {
		padding: 28px 35px 34px;
		background: url(../img/bg_feature01_sp.png) no-repeat;
		background-size: 100% auto;
		background-position: bottom 115px center;
	}

	.feature01-title {
		margin: 0 auto 20px;
	}

	.feature01-title img {
		width: 149px;
	}

	.feature01-title::before, .feature01-title::after {
		top: 64%;
		width: calc(50% - 83px);
	}

	.feature01-text {
		font-size: 11px;
		line-height: calc(34 / 22);
		text-align: left;
		max-width: unset;
		width: 100%;
		margin: 0 auto 20px;
	}

	.feature01-copy {
		max-width: unset;
		margin: 0 auto 26px;
	}

	.feature01-list {
		display: block;
		margin-bottom: 80px;
	}

	.feature01-list > li {
		width: calc(215 / 305 * 100%);
		margin: 0 auto;
	}

	.feature01-list > li img {
		width: 100%;
	}

	.feature01-list > li + li {
		margin-top: 20px;
	}

	.feature01-lead {
		display: block;
	}

	.feature01-lead span {
		font-size: 11px;
		text-align: center;
		line-height: calc(30 / 22);
	}

	.feature01-lead img {
		width: calc(184 / 305 * 100%);
		margin: 8px auto;
	}

	.feature02 {
		padding: 0 20px;
		margin-bottom: 24px;
	}

	.feature02-wrapper {
		padding: 32px 30px 34px;
		max-width: 510px;
		margin: 0 auto;
		background: url(../img/bg_feature02_sp.jpg) no-repeat;
		background-size: cover;
		background-position: top center;
		border-radius: calc(15 / 375 * 100vw);
		box-shadow: 0 0 25px rgba(24, 24, 24, 0.2);
	}

	.feature02-title {
		margin-bottom: 30px;
		max-width: unset;
	}

	.feature02-title::after {
		top: calc(100% + 10px);
		width: 1px;
		height: 15px;
	}

	.feature02-title span {
		font-size: 11px;
		line-height: calc(30 / 22);
		letter-spacing: 0.07em;
		margin-bottom: 5px;
	}

	.feature02-title img {
		max-width: 100%;
	}

	.feature02-image img {
		width: 100%;
	}

	.feature03 {
		padding: 0 20px;
		margin-bottom: 48px;
	}

	.feature03-wrapper {
		padding: 34px 15px 34px;
		max-width: 510px;
		margin: 0 auto;
		background: url(../img/bg_feature03_sp.jpg) no-repeat;
		background-size: cover;
		background-position: top center;
		border-radius: calc(15 / 375 * 100vw);
		box-shadow: 0 0 25px rgba(24, 24, 24, 0.2);
	}

	.feature03-title {
		width: calc(280 / 305 * 100%);
		margin: 0 auto 10px;
	}

	.feature03-title img {
		width: 100%;
	}

	.feature03-text {
		font-size: 11px;
		line-height: calc(34 / 22);
		margin-bottom: 32px;
	}

	.feature03-list {
		gap: 20px calc(19 / 305 * 100%);
	}

	.feature03-list > li {
		width: calc(143 / 305 * 100%);
	}

	.feature03-list > li img {
		width: 100%;
	}

	.feature-cta {
		padding: 0 35px;
	}

	.feature-cta-lead {
		margin: 0 auto 24px;
		font-size: 13px;
	}

	.feature-cta-lead::before, .feature-cta-lead::after {
		width: 9px;
		height: 14px;
	}

	.feature-cta-lead::before {left: -25px;}
	.feature-cta-lead::after {right: -22px;}

	.feature-cta-list {
		gap: calc(9 / 305 * 100%);
		max-width: 305px;
		margin: 0 auto;
	}

	.feature-cta-list > li {
		width: calc(148 / 305 * 100%);
	}


	/* case ---------------------------------------*/
	.case {
		padding: 48px 35px 150px;
		margin-top: -100px;
		margin-left: calc(-450 / 750 * 100vw / 2);
		width: calc(1200 / 750 * 100vw);
		background: linear-gradient(20deg, #6475fa -50%, #fff 50%, #fff 100%);
		border-radius: 50% 50% 0 0 / calc(150 / 750 * 100vw) calc(150 / 750 * 100vw) 0 0;
		box-shadow: 0 0 25px rgba(0,0,0,0.25);
	}

	.case .inner {
		max-width: unset;
	}

	.case-title {
		max-width: 450px;
		width: calc(305 / 375 * 100vw);
		margin: 0 auto 34px;
	}

	.case-title img {
		width: 100%;
	}

	.case-list-wrapper {
		padding:0 42px 40px;
	}

	.case-list-wrapper::before,
	.case-list-wrapper::after {
		bottom: -200px;
		width: 15vw;
		height: calc(100% + 200px + 30px);
	}

	.case-list > li {
		padding:20px 10px 28px;
		border-radius: calc(10 / 375 *100vw);
		box-shadow: 0 0 30px rgba(207,209,231,0.3);
	}

	.case-item-company {
		padding:1px 14px 2px;
		min-width: unset;
		font-size: 13px;
		letter-spacing: 0.1em;
	}

	.case-item-image {
		margin-top: 18px;
		aspect-ratio: 460 / 250;
	}

	.case-item-body {
		padding:16px 2px 0;
		min-height:10px;
	}

	.case-item-subtitle {
		font-size: 11px;
		line-height: calc(30 / 22);
		letter-spacing: 0.08em;
		padding-bottom: 15px;
	}

	.case-item-title {
		font-size: 13px;
		line-height: 1.6;
		letter-spacing: 0.05em;
		margin-bottom: 10px;
		padding-left: 12px;
	}

	.case-item-title::before {
		width: 3px;
	}

	.case-item-title small{
		font-size: 10px;
	}

	.case-item-text {
		font-size: 11px;
		line-height: calc(34 / 22);
	}

	.case-item-link a{
		font-size: 11px;
	}

	.case .swiper-pagination .swiper-pagination-bullet{
		width: 10px;
		height: 10px;
		margin:0 13px;
	}

	.case .swiper-button-prev,
	.case .swiper-button-next{
		width:calc(30 / 375 * 100vw);
		height:calc(30 / 375 * 100vw);
		top:45%;
	}

	.case .swiper-button-prev{
		left: 18.4%;
		margin-left: 0;
	}

	.case .swiper-button-next{
		right: 18.4%;
		margin-right: 0;
	}

	.case .swiper-button-prev:hover{
		transform: scale(1);

	}
	.case .swiper-button-next:hover{
		transform: scale(1);
	}

	.case .swiper-button-disabled{opacity:0 !important;}

	/* flow ---------------------------------------*/

	.flow {
		padding: 50px 35px 150px;
		margin-top: -115px;
		background: linear-gradient(-10deg, #ff5dd8 -100%, #fff 55%, #fff 100%);
		border-radius: 90px 0 0 0;
		box-shadow: 0 0 50px rgba(207,209,231,0.2);
	}

	.flow-title {
		margin-bottom: 34px;
	}

	.flow-title img{
		width:100%;
	}

	.flow-body {
		padding-left: 24px;
	}

	.flow-list {}

	.flow-item {
		height:80px;
	}

	.flow-item::after{
		border-bottom:1px dotted #b4b4b4;
		width:calc(100% - 80px);
	}

	.flow-item-image {
		width:80px;
		left:0;
	}

	.flow-list > li:nth-child(5) .flow-item-image {top:0}

	.flow-item-text {
		left: 36%;
		top: 46%;
		font-size: 10px;
		line-height: calc(30 / 20);
		padding-right: 0;
	}

	.flow-term{
		left:0px;
		bottom:-2px;
		width:21.5px;
	}

	/* faq ---------------------------------------*/

	.faq {
		padding: 42px 35px 150px;
		margin-top: -80px;
		background: linear-gradient(20deg, #6475fa -50%, #fff 55%, #fff 100%);
		border-radius: 0 90px 0 0;
		box-shadow: 0 0 25px rgba(229,204,223,0.2);
	}

	.faq-deco {
		width: calc(25 / 375 * 100vw);
		height: calc(25 / 375 * 100vw);
	}
	
	.faq-deco::after {
		box-shadow: calc(-25 / 375 * 100vw) calc(25 / 375 * 100vw) 0 0 #fff;
	}

	.faq-title {
		margin-bottom: 30px;
	}

	.faq-title img{
		width:100%
	}

	.faq-list {
		max-width:unset;
		padding: 0 15px;
	}

	.faq-list > li:not(:last-child){
		margin-bottom: 30px;
	}

	.faq-item-title {
		font-size: 12px;
		line-height: calc(36 / 24);
		padding:0 20px 7px 1.5em;
		text-indent: -1.5em;
	}

	.faq-item-title::after {
		max-width: unset;
		height: 1.5px;
		background: url('../img/img_faq_line_sp.png') no-repeat;
		background-size: 100% auto;
	}

	.faq-item-title:hover {
		opacity:1;
	}

	.faq-item-open{
		width: 12px;
		height: 12px;
		top: 40%;
		right: 0;
		transform: translateY(-50%);
	}

	.faq-item-open::before,
	.faq-item-open::after{
		width:12px;
		height:2px;
	}

	.faq-item-body {
		font-size: 11px;
		line-height: calc(34 / 22);
		letter-spacing: 0.05em;
	}

	.faq-item-body-inner {
		padding:5px 0 0;
		margin-bottom: -3px;
	}


	/* footer ---------------------------------------*/

	footer{
		padding:30px 20px 136px;
		margin-top: -100px;
	}

	.footer-inner {
		display: block;
		margin: 0 auto 37px;
	}

	.footer-logo {
		display: block;
		margin:0 auto;
		width:200px;
		margin-bottom: 28px;
	}

	.footer-body {
	  display: block;
	}

	.footer-nav {
		margin-bottom: 20px;
	}

	.footer-nav-list {
		justify-content: center;
	}

	.footer-nav-list > li {
		font-size: 13px;
		letter-spacing: 0.04em;
	}

	.footer-nav-list > li a{
		padding:0 18px;
	}

	.footer-nav-list > li a::after{
		height:8px;
	}
	.footer-nav-list > li:first-child a::after{display: none;}

	.footer-nav-list > li:first-child a{
		padding-left: 0;
		border-left:none;
	}

	.footer-subnav-list {
		justify-content: center;
		gap:6px 15px;
		max-width: 100%;
		width: auto;
	}

	.footer-subnav-list > li{
		font-size: 12px;
		letter-spacing: 0.1em;
	}

	.footer-lang {
		justify-content: center;
		gap:3px;
	}

	.footer-lang > li a {
		font-size: 13px;
		width:48px;
		padding:2px 4px 4px;
	}


	.footer-onesite-wrapper {
		width: 72%;
		display: block;
		margin: 0 auto;
	}

	.footer-onesite-wrapper img {
		width: 100%;
	}

	.footer-onesite-wrapper:hover {
		opacity: 1;
	}

}




/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){
	.feature01 {
		background-size: cover;
	}
}