@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');

@font-face {
	font-family: 'satoshi';
	src: url(src/font/Satoshi-Black.ttf) format("truetype");
	font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
}

html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 100;
	font-size: 1.6rem;
}
a {
	display: block;
	text-decoration: none;
	transition: ease 0.5s;
	color: #000;
}
li {
	list-style: none;
}
img {
	width: 100%;
	height: auto;
}
.sp, .tb {
	display: none;
}
::selection {
    background-color: #000;
    color: #fff;
}

/*--------------------------------------------------
common
---------------------------------------------------*/
main {
	position: relative;
	padding-top: 100vh;
	z-index: 9;
}
.en {
	font-family: 'satoshi';
}
section {
	width: 100%;
}
h2 {
	font-size: 3.3rem;
    font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}
.flex {
	display: flex;
}
.shadow {
	filter: drop-shadow(-3px 3px 3px rgba(0,0,0,0.5));
}
.common_inr {
	max-width: 1000px;
	width: 85%;
	margin: auto;
}
.common_title {
	text-align: center;
}
.common_title h2 {
	font-size: 3.3rem;
    font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}
.common_title p {
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.03em;
}
.common_title p:after {
	content: '';
	display: block;
	position: absolute;
	bottom: -13px;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 35px;
	height: 3px;
	border-radius: 20%;
}
.LightBlue {
	color: #00B5ED;
}
.LightBlue:after {
	background-color: #00B5ED;
}
.Purple {
	color: #6129F0;
}
.Purple:after {
	background-color: #6129F0;
}
.Pink {
	color: #DF087A;
}
.Pink:after {
	background-color: #DF087A;
}
.common_title h2 span {
	font-size: 5rem;
	line-height: 1;
}
.bor {
	border: 1px solid;
	border-image: linear-gradient(90deg, #4BE3EF, #6129F0, #DF087A) 1;
	transition: ease 0.5s;
}
.common_btn {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding: 15px 45px 15px 40px;
	background: #000;
	color: #fff;
	transition: ease 0.5s;
}
.common_btn:hover {
	transition: ease 0.5s;
	background: linear-gradient(90deg, #4BE3EF 0%, #6129F0 40%, #DF087A 100%);
}
.common_btn::before,
.common_btn::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 11px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.arrow::before {
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #fff;
	transition: ease 0.5s;
}
.arrow::after {
	right: 12px;
	width: 3px;
	height: 3px;
	border: 3px solid transparent;
	border-left: 3px solid #000;
	transition: ease 0.5s;
}
.sp, .opa {
	display: none;
}
.is-hidden {
	visibility: hidden;
	opacity: 0;
}
.bgBase {
	animation-name:bgBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;
	opacity:0;
}
@keyframes bgBase {
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}
.bgappear {
	animation-name:bgBaseSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes bgBaseSecond {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
.bgLRextend::before {
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4BE3EF 0%, #6129F0 40%, #DF087A 100%);
	z-index: 1;
}
@keyframes bgLRextendAnime {
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}
@media screen and ( min-width:1024px) {
	.mv_right h1 .bgextend:first-of-type {
		animation-delay: 0.2s;
	}
	.mv_right h1 .bgLRextend:first-of-type::before {
		animation-delay: 0.2s;
	}
	.mv_right h1 .bgextend:last-of-type {
		animation-delay: 0.4s;
	}
	.mv_right h1 .bgLRextend:last-of-type::before {
		animation-delay: 0.4s;
	}
	.mv_txt .bgextend:last-of-type {
		animation-delay: 0.6s;
	}
	.mv_txt .bgLRextend:last-of-type::before {
		animation-delay: 0.6s;
	}
	.del {
		animation-delay: 0.6s;
	}
}

@media screen and ( max-width:1024px) {
.common_inr {
	width: 80%;
}
h2 {
    font-size: 2.5rem;
}
}
@media screen and ( max-width:480px) {
h2 {
	font-size: 2.2rem;
	margin-bottom: 30px;
}
.common_inr {
	width: 85%;
}
.pc {
	display: none;
}
.sp {
	display: block;
}
.common_title h2 span {
    font-size: 3.5rem;
}
}
/*--------------------------------------------------
header
---------------------------------------------------*/
header {
	width: 100%;
	color: #fff;
}
.logo {
	position: fixed;
	top: 0;
	left: 0;
	padding: 50px 0 0 50px;
	z-index: 1;
}
.logo span {
	display: block;
	width: 400px;
}
.logo p {
	margin-bottom: 10px;
	font-size: 1.4rem;
}
.hd_btn {
	position: fixed;
	top: 0;
	right: 0;
	padding: 50px 50px 0 0;
	z-index: 999;
}
@media screen and ( max-width:1550px) {
.logo span {
	width: 300px;
}
}
@media screen and ( max-width:1024px) {
.logo p {
	font-size: 1.2rem;
}
.logo span {
    width: 280px;
}
.hd_btn {
    padding: 30px 30px 0 0;
}
}
@media screen and ( max-width:896px) {
.logo {
	align-items: flex-start;
	flex-direction: column;
	padding: 30px 0 0 30px;
}
.logo span {
	max-width: 240px;
    width: 100%;
}
.logo p {
    font-size: 1.1rem;
}
.common_btn {
    padding: 15px 35px 15px 30px;
    font-size: 1.4rem;
}
}
@media screen and ( max-width:480px) {
.hd_btn {
	padding: 20px 20px 0 0;
}
.logo span {
	width: 67.5%;
}
.common_btn {
    padding: 7px 30px 7px 15px;
    font-size: 1rem;
}
.arrow::before {
    width: 10px;
    height: 10px;
}
.arrow::after {
    right: 11px;
    width: 2px;
    height: 2px;
}
.logo {
    padding: 15px 0 0 15px;
}
.logo p {
    font-size: 0.8rem;
	margin-bottom: 3px;
}
}

/*--------------------------------------------------
mv
---------------------------------------------------*/
.mv {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #000;
	background-image: url(src/images/common_bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}
.mv_right_wrap {
	width: auto;
	height: 100%;
}
.mv_right {
	max-width: 760px;
	width: 40%;
	height: 100%;
	position: relative;
	z-index: 2;
	flex-direction: column;
	justify-content: center;
	padding-left: 70px;
	color: #fff;
	transform: translateY(6%);
}
.mv_right h1 img:last-child {
	margin-top: 10px;
}
.mv_right h1 span, .mv_txt span, .mv_subtitle span {
	display: inline-block;
	width: 100%;
}
.mv_right h1 span {
	font-size: 0;
}
.mv_subtitle {
	margin-bottom: 10px;
}
.mv_right h1 span:first-child {
	margin-bottom: 5px;
}
.mv_txt {
	margin-top: 20px;
	width: 90%;
}
.mv_point {
	width: 90%;
    margin-top: 10%;
}
.mv_left {
	position: absolute;
	top: 0;
	right: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    clip-path: polygon(55% 0, 100% 0, 100% 100%, 35% 100%);
	animation: mvclip .4s both;
    animation-delay: 0.6s;
	z-index: 1;
}
@keyframes mvclip {
	0% {
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	}
	100% {
		clip-path: polygon(55% 0, 100% 0, 100% 100%, 35% 100%);
	}
}
.mv_left video {
	position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: left;
}
.mark {
	max-width: 300px;
	width: 18%;
	position: absolute;
	right: 3%;
    bottom: 10%;
	z-index: 2;
}
@media screen and ( max-width:1550px) {
.mv_subtitle, .mv_right h1 span:first-child {
	margin-bottom: 0;
}
.mv_txt {
	margin-top: 10px;
}	
}
@media screen and ( max-width:1024px) {
.mv_right {
    width: 46%;
    padding-left: 40px;
}
.mv_left {
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
}
@keyframes mvclip {
	0% {
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	}
	100% {
		clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
	}
}
.mark {
    width: 20%;
    bottom: 5%;
}
.mv_point {
    width: 95%;
    margin-top: 13%;
}
}
@media screen and ( max-width:896px) {
.mv_left {
	clip-path: polygon(90% 0, 100% 0, 100% 100%, 25% 100%);
}
@keyframes mvclip {
	0% {
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	}
	100% {
		clip-path: polygon(90% 0, 100% 0, 100% 100%, 25% 100%);
	}
}
.mv_right {
    width: 59%;
    padding-left: 40px;
	transform: translateY(-5%);
}
.mv_point {
    margin-top: 10%;
}
.mark {
    width: 27%;
}
.mv_right h1 img:last-child {
    margin-top: 0;
}
.mv_txt {
	margin-top: 7px;
    width: 95%;
}
}
@media screen and ( max-width:480px) {
.mv_right {
	width: 93%;
	padding-left: 30px;
	transform: translateY(-10%);
}
.mv_point {
    width: 100%;
}
.mark {
    width: 50%;
	bottom: 12%;
	right: 5%;
}
.mv_left {
    clip-path: polygon(140% 0, 100% 0, 100% 100%, -10% 100%);
}
@keyframes mvclip {
	0% {
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	}
	100% {
		clip-path: polygon(140% 0, 100% 0, 100% 100%, -10% 100%);
	}
}
}

/*--------------------------------------------------
reserve
---------------------------------------------------*/
.bg1 {
	background: #000;
}
.reserve {
	position: relative;
	color: #fff;
	padding: 3% 0;
}
.reserve .common_inr {
	position: relative;
	z-index: 2;
}
.reserve p {
	font-size: 2.2rem;
	font-weight: 100;
	text-align: center;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
.reserve p span {
	position: relative;
	padding: 0 30px;
}
.reserve p span::before,
.reserve p span::after{
  content: "";
  display: inline-block;
  background: #fff;
  width: 2px;
  height: 25px;
  position: absolute;
  bottom: 3px;
}
.reserve p span::before{
  left: 0;
  transform: rotate(-30deg);
}
.reserve p span::after{
  right: 10px;
  transform: rotate(30deg);
}
.reserve_btn {
	justify-content: space-between;
}
.reserve_btn a {
	width: 48%;
}
.reserve_btn a span {
	display: block;
	text-align: center;
}
.reserve_btn a span:first-child {
	font-size: 2.5rem;
}
.reserve_btn a span:last-child {
	font-size: 1.4rem;
	margin-top: 7px;
}
.reserve_btn a:first-child span:first-child:before {
	content: '';
	display: inline-block;
	background-image: url(src/images/tel_icon.svg);
	background-size: contain;
	width: 25px;
	height: 25px;
	vertical-align: middle;
	transform: translateY(-3px);
}
.reserve_btn a:last-child span:first-child:before {
	content: '';
	display: inline-block;
	background-image: url(src/images/mail_icon.svg);
	background-size: contain;
	width: 25px;
	height: 25px;
	margin-right: 5px;
	vertical-align: middle;
	transform: translateY(-3px);
}
.reserve_btn .arrow::before {
    width: 17px;
    height: 17px;
}
.reserve_btn .arrow::after {
    right: 12px;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-left: 5px solid #000;
}
.reserve.bg_white {
	padding: 5% 0;
	background-color: #fff;
	margin-top: -2px;
}
.reserve.bg_white p {
	color: #000;
}
.reserve.bg_white p span::before, .reserve.bg_white p span::after {
	background: #000;
}
.reserve p br {
	display: none;
}
@media screen and ( max-width:1024px) {
.reserve {
	padding: 5% 0;
}
.reserve p {
	font-size: 1.8rem;
}
.reserve p span::before, .reserve p span::after {
    height: 18px;
}
.reserve p span::before {
    left: 3%;
}
.reserve p span::after {
    right: 3%;
}
.reserve_btn a span:first-child {
    font-size: 2.2rem;
}
.reserve_btn a:first-child span:first-child:before, .reserve_btn a:last-child span:first-child:before {
    transform: translateY(0px);
}
.reserve.bg_white {
    padding: 7% 0;
}
}
@media screen and ( max-width:896px) {
.reserve_btn a span:first-child {
	font-size: 1.8rem;
}
}
@media screen and ( max-width:480px) {
.reserve p {
	font-size: 1.6rem;
	line-height: 1.7;
	margin-bottom: 15px;
}
.reserve p br {
	display: block;
}
.reserve p span {
	padding: 0 0;
}
.reserve p span::before, .reserve p span::after {
    height: 25px;
}
.reserve p span::before {
    left: -15%;
}
.reserve p span::after {
    right: -8%;
}
.reserve_btn {
	flex-direction: column;
}
.reserve_btn a {
	width: 100%;
	margin-bottom: 7%;
}
.reserve_btn .common_btn {
    padding: 10px 0;
}
.reserve_btn a span:last-child {
    margin-top: 5px;
	font-size: 1.2rem;
}
.reserve_btn .arrow::before {
    width: 15px;
    height: 15px;
}
.reserve_btn .arrow::after {
    right: 10px;
}
.reserve {
    padding: 7% 0;
}
.reserve.bg_white p span::before, .reserve.bg_white p span::after {
	height: 17px;
}
.reserve.bg_white p span::before {
    left: -10%;
}
}
/*--------------------------------------------------
cont1 LEDビジョンを設置したいけど…
---------------------------------------------------*/
.cont1 {
	position: relative;
	color: #fff;
	padding: 3% 0 5% 0;
}
.cont1_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(src/images/cont1_bg.webp);
	background-size: cover;
	background-position: top center;
	z-index: 1;
	mix-blend-mode: exclusion;
}
.cont1 .common_inr {
	position: relative;
	z-index: 2;
}
.cont1 ul {
	justify-content: space-between;
	flex-wrap: wrap;
}
.cont1 ul li {
	width: 48%;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: 1.8rem;
	letter-spacing: 1px;
	border-bottom: solid 1px #fff;
}
.cont1 ul li:before {
	content: '';
	display: inline-block;
	background-image: url(src/images/check_icon.svg);
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 7px;
	transform: translateY(5px);
}
@media screen and ( max-width:1024px) {
.cont1 ul li {
	font-size: 1.6rem;
}
}
@media screen and ( max-width:896px) {
.cont1 ul {
	flex-direction: column;
	width: 80%;
    margin: auto;
}
.cont1 ul li {
	font-size: 1.6rem;
	width: 100%;
}
.cont1 ul li:before {
    width: 15px;
    height: 17px;
}
}
@media screen and ( max-width:480px) {
.cont1 {
	padding: 10% 0 10% 0;
}
.cont1 ul {
    width: 100%;
}
.cont1 ul li {
	margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 1.4rem;
	line-height: 1.7;
}
.cont1 h2 {
	font-size: 1.9rem!important;
}
}
/*--------------------------------------------------
cont2 安心してお任せください！
---------------------------------------------------*/
.cont2, .cont3 {
	background-color: #fff;
}
.cont2 .common_inr, .cont3 .common_inr {
	position: relative;
	z-index: 2;
}
.cont2 {
	position: relative;
	padding-bottom: 5%;
}
.cont2_bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 30%;
	left: 0;
	z-index: 1;
}
.cont2_bg img {
	min-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.cont2_lead {
	width: 100%;
	position: relative;
	display: inline-block;
	padding: 30px 0;
	color: #fff;
	background: linear-gradient(90deg, #4BE3EF 0%, #6129F0 40%, #DF087A 100%);
}
.cont2_lead:before {
	content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    margin-left: -15px;
    background: linear-gradient(90deg, #6129F0 10%, #8500F9 100%);
    height: 30px;
    width: 70px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.cont2_lead p {
	font-size: 3rem;
	text-align: center;
}
.cont2_title {
	text-align: center;
	margin-top: 3%;
}
.cont2_title span {
	display: inline-block;
	margin-bottom: 15px;
	font-size: 2.2rem;
	border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #4BE3EF 0%, #6129F0 40%, #DF087A 100%);
    border-image-slice: 1;
}
.cont2_title h2 {
	font-size: 5rem;
	margin-bottom: 20px!important;
}
.cont2_title p {
	line-height: 1.7;
}
.cont2_img {
	width: 100%;
	margin: auto;
	padding: 5% 0 7% 0;
}
.cont2_img.shadow {
	filter: drop-shadow(-3px 3px 7px rgba(0,0,0,0.2));
}
.cont2 .common_title p {
	margin-bottom: 10px;
}
.cont2 ul {
	justify-content: space-between;
	flex-wrap: wrap;
}
.cont2 ul li {
	width: 48.5%;
	margin-bottom: 3%;
	padding: 2.5%;
	background-color: #fff;
	border: solid 1px #00B5ED;
	filter: drop-shadow(-3px 3px 7px rgba(0,0,0,0.2));
}
.cont2_item_title {
	align-items: flex-start;
	margin-bottom: 15px;
	padding-bottom: 5px;
	border-bottom: solid 1px #00B5ED;
}
.point_icon {
	display: block;
	width: 37px;
    margin-right: 7px;
}
.cont2 ul li h3 {
	font-size: 2.2rem;
}
.cont2 ul li h3 br {
	display: none;
}
.cont2 ul li p {
	line-height: 1.7;
}
.cont2_lead p br {
	display: none;
}
@media screen and ( max-width:1024px) {
.cont2 {
	padding-bottom: 7%;
}
.cont2_lead p {
	font-size: 2.5rem;
}
.cont2_title {
    margin-top: 6%;
}
.cont2_title h2 {
    font-size: 4.5rem;
}
.cont2 ul li h3 {
    font-size: 1.8rem;
}
.point_icon {
    width: 30px;
}
}
@media screen and ( max-width:896px) {
.cont2_lead p {
	font-size: 2rem;
}
.cont2_lead {
    padding: 20px 0;
}
.cont2_lead:before {
    height: 20px;
}
.cont2 ul {
	flex-direction: column;
}
.cont2 ul li {
	width: 100%;
}
.cont2_title span {
    font-size: 1.8rem;
}
.cont2_title h2 {
    font-size: 3.5rem;
}
.cont2 .common_title h2 {
	margin-bottom: 30px;
}
}
@media screen and ( max-width:480px) {
.cont2_lead p {
	font-size: 1.8rem;
	line-height: 1.7;
}
.cont2_lead p br {
	display: block;
}
.cont2_lead:before {
    left: 48%;
    height: 15px;
    width: 50px;
}
.cont2_title span {
    font-size: 1.6rem;
}
.cont2_title h2 {
    font-size: 2.5rem;
}
.cont2_title {
	width: 90%;
    margin: auto;
    margin-top: 10%;
}
.cont2_title p {
	font-size: 1.4rem;
}
.cont2_title p br {
	display: none;
}
.cont2_img.shadow {
    filter: drop-shadow(-3px 3px 2px rgba(0,0,0,0.2));
}
.cont2_img {
    padding: 8% 0 12% 0;
}
.cont2 ul li {
    margin-bottom: 7%;
    padding: 5%;
}
.cont2 ul li p {
	font-size: 1.4rem;
}
.cont2_item_title {
	align-items: center;
	margin-bottom: 10px;
}
.cont2_bg {
	top: 15%;
    height: 90em;
}
.cont2 {
    padding-bottom: 10%;
}
.point_icon {
    width: 40px;
	margin-right: 10px;
}
.cont2 ul li h3 br {
	display: block;
}
}
/*--------------------------------------------------
cont3 設置事例
---------------------------------------------------*/
.cont3_video {
	justify-content: space-between;
	flex-wrap: wrap;
}
.cont3 .common_title {
	position: relative;
	z-index: 3;
}
.cont3_video .js-modal-open {
	width: calc(100% / 3.2);
}
.js-modal-open {
	position: relative;
	cursor: pointer;
	transition: ease 0.5s;
}
.video_img {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.video_img .video_img_item {
	min-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: ease 0.5s;
}
.js-modal-open:hover .video_img_item {
	transform: scale(1.1);
}
.video_icon {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,-50%);
	width: 65px;
}
 .modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999;
	overflow: auto;
}
video {
	width: 100%;
}  
.modal-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
}
.modal-content {
	max-width: 750px;
    width: 95%;
    height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 997;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
.cls_btn {
    position: fixed;
    top: 0.3em;
    right: 0.3em;
    z-index: 999;
    color: #fff;
    font-size: 2.8rem;
    line-height: 1;
}
.js-modal-close {
	transition: ease 0.3s;
	cursor: pointer;
}
.cont3_video_txt {
	margin-top: 10px;
}
.cont3_video_txt p span {
	display: inline-block;
	margin-right: 5px;
	padding: 1px 7px;
	background-color: #6129F0;
	color: #fff;
}
.cont3_video_txt p:last-child {
	margin-top: 5px;
}
.modal-content .cont3_video_txt {
	margin-top: 0;
	padding: 10px;
	color: #fff;
	background: linear-gradient(90deg, #4BE3EF 0%, #6129F0 40%, #DF087A 100%);
}
.modal-content .cont3_video_txt p {
	display: inline-block;
}

@media screen and ( max-width:896px) {
.cont3_video_txt p {
	font-size: 1.4rem;
}
.cont3 .common_title h2 {
	margin-bottom: 30px;
}
.video_icon {
    width: 45px;
}
}
@media screen and ( max-width:480px) {
.cont3_video .js-modal-open {
	width: calc(100% / 1);
	margin-bottom: 7%;
}
.video_icon {
    width: 65px;
}
.modal-content .cont3_video_txt {
	font-size: 1.2rem;
	padding: 5px;
}
.video_img {
    height: 12em;
}
.cls_btn {
    top: 0.1em;
}
}

/*--------------------------------------------------
cont4 人の興味を惹く効果は絶大
---------------------------------------------------*/
.cont4 {
	padding-bottom: 5em;
	color: #fff;
	background-color: #000;
	overflow: hidden;
}
.cont4 .common_inr {
	max-width: 900px;
}
.cont4_lead {
	position: relative;
}
.cont4_lead h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	letter-spacing: 1px;
	width: 90%;
}
.cont4_lead_img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.cont4_lead_img img {
	min-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.cont4_item {
	position: relative;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 7%;
}
.cont4_item:after {
	content: '';
	position: absolute;
	bottom: -10%;
	width: 165%;
	height: 1px;
	background: linear-gradient(90deg, #4BE3EF 0%, #6129F0 40%, #DF087A 100%);
}
.cont4_item:nth-child(odd):after {
	left: -65%;
}
.cont4_item:nth-child(even):after {
	right: -65%;
}
.cont4_item:nth-child(even) {
	flex-direction: row-reverse;
}
.cont4_item_img {
	width: 40%;
}
.cont4_item_txt {
	width: 55%;
}
.cont4_item_txt p {
	line-height: 1.7;
}
.cont4_item_txt h3 {
	margin: 25px 0;
	font-size: 2.7rem;
	letter-spacing: 1px;
}
.cont4_item_txt span span {
	display: inline-block;
    margin-left: 5px;
	font-size: 4rem;
    line-height: 1;
}
@media screen and ( max-width:1024px) {
.cont4 {
	padding-bottom: 5em;
}
.cont4 .common_inr {
	width: 70%;
}
.cont4_item {
    margin-bottom: 10%;
}
.cont4_item_txt h3 {
    font-size: 2.2rem;
}
.cont4_item_txt p {
    font-size: 1.4rem;
}
.cont4_item_txt p br {
	display: none;
}
.cont4_item:after {
    bottom: -13%;
}
}
@media screen and ( max-width:896px) {
.cont4_item_txt span span {
	font-size: 3rem;
}
.cont4_item_txt h3 {
    font-size: 1.8rem;
	margin: 10px 0;
}
.cont4 {
    padding-bottom: 3em;
}
}
@media screen and ( max-width:480px) {
.cont4_lead_img {
	height: 22em;
}
.cont4_lead h2 {
    font-size: 2rem;
    width: 90%;
}
.cont4_item, .cont4_item:nth-child(even) {
    flex-direction: column-reverse;
	margin-bottom: 20%;
}
.cont4_item div {
	width: 100%;
}
.cont4 .common_inr {
    width: 85%;
}
.cont4_item_txt h3 {
    margin: 15px 0;
}
.cont4_item_img {
    margin-top: 7%;
}
.cont4_item:after {
    bottom: -7%;
}
.cont4 {
    padding-bottom: 1em;
}
}

/*--------------------------------------------------
cont5 活用例
---------------------------------------------------*/
.cont5 {
	position: relative;
	padding-top: 4%;
	color: #fff;
	background-color: #fff;
	overflow: hidden;
}
.cont5 .common_title, .cont5_txt {
	position: relative;
	z-index: 3;
}
.cont5_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 85%;
	background-color: #000;
	background-image: repeating-linear-gradient(to bottom, #1E1E1E, #1E1E1E 1px, transparent 0, transparent 80px), repeating-linear-gradient(to right,#1E1E1E, #1E1E1E 1px, transparent 0, transparent 80px);
	z-index: 1;
}
.cont5_txt {
	text-align: center;
	margin-bottom: 3%;
	line-height: 1.7;
}
.cont5_txt br {
	display: none;
}
.cont5_slider .swiper-slide {
	background-color: #fff;
}
.cont5_slider_txt h3 {
	display: inline-block;
	padding: 5px 10px;
	font-size: 2rem;
	background-color: #000;
	transform: translateY(-20px);
}
.cont5_slider_txt p {
	padding: 0 20px 20px 20px;
    line-height: 1.7;
	color: #000;
}
@media screen and ( max-width:1024px) {
.cont5 .common_title h2 {
	margin-bottom: 30px;
}
.cont5_txt {
    margin-bottom: 5%;
}
.cont5_slider_txt p {
	padding: 0 15px 15px 15px;
}
.cont5_slider_txt h3 {
    font-size: 1.8rem;
}
}
@media screen and ( max-width:896px) {
.cont5 {
	padding-top: 7%;
}
}
@media screen and ( max-width:480px) {
.cont5 {
	padding-top: 10%;
}
.cont5_txt {
	font-size: 1.4rem;
    width: 85%;
    margin: auto;
	margin-bottom: 10%;
}
.cont5_txt br {
	display: block;
}
.cont5_slider_txt p {
    padding: 0 10px 10px 10px;
    font-size: 1.4rem;
}
.cont5_slider_txt h3 {
	transform: translateY(-15px);
}
}

/*--------------------------------------------------
cont6 取り扱い商品
---------------------------------------------------*/
.cont6 {
	padding-top: 7%;
	background-color: #fff;
}
.cont6 .cont6_slider {
	overflow: hidden;
}
.cont6 .cont6_slider .swiper-wrapper {
	flex-wrap: wrap;
	gap: 4%;
}
.cont6 .cont6_item {
	position: relative;
	width: calc(100% / 3.3);
	margin-bottom: 3%;
}
.cont6 .cont6_item_txt {
	position: absolute;
	left: 50%;
	bottom: 7%;
	transform: translate(-50%,0);
	z-index: 1;
	width: 90%;
	color: #fff;
	z-index: 2;
}
.cont6 .cont6_item_txt p {
	margin-top: 10px;
	font-size: 1.4rem;
}
.cont6 .cont6_item_bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80%;
	z-index: 1;
	background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1));
}
@media screen and ( max-width:1024px) {
.cont6 .cont6_item_txt h3 {
	font-size: 1.6rem;
}
}
@media screen and ( max-width:896px) {
.cont6 {
	padding-top: 10%;
}
.cont6 .cont6_item {
    width: calc(100% / 2.1);
    margin-bottom: 5%;
}
}
@media screen and ( max-width:480px) {
.cont6 {
	padding-top: 15%;
	padding-bottom: 5%;
}
.cont6 .cont6_item_txt h3 {
    font-size: 1.9rem;
}
.cont6 .cont6_slider .swiper-wrapper {
	flex-wrap: initial;
	gap: 0;
}
.cont6 .cont6 .common_inr {
	width: 100%!important;
}
}
/*--------------------------------------------------
cont7 導入までの流れ
---------------------------------------------------*/
.cont7 {
	padding: 3% 0;
	color: #fff;
	background-color: #000;
	background-image: repeating-linear-gradient(to bottom, #1E1E1E, #1E1E1E 1px, transparent 0, transparent 80px), repeating-linear-gradient(to right,#1E1E1E, #1E1E1E 1px, transparent 0, transparent 80px);
}
.cont7_inr {
	max-width: 1000px;
	width: 85%;
	margin: auto;
}
.cont7_inr ul {
	align-items: center;
	gap: 4%;
}
.cont7_item {
	position: relative;
	width: calc(100% / 5.3);
	pointer-events: none;
}
.cont7_item:after {
	content: '';
	position: absolute;
	top: 50%;
	right: -30%;
    transform: translate(-50%,-50%);
    background-image: url(src/images/arrow.svg);
    background-size: contain;
    width: 15%;
    height: 15%;
}
.cont7_item:last-child:after {
	content: '';
	display: none;
}
.cont7_item p {
	font-size: 1.8rem;
	text-align: center;
	margin-top: 5px;
}
@media screen and ( max-width:1024px) {
.cont7 {
	padding: 5% 0;
}	
}
@media screen and ( max-width:896px) {
.cont7_item p {
	font-size: 1.6rem;
}
}
@media screen and ( max-width:480px) {
.cont7_inr ul {
justify-content: space-between;
flex-wrap: wrap;
}
.cont7_item {
    width: calc(100% / 2.2);
	margin-bottom: 10%;
}
.cont7_item p {
    font-size: 1.8rem;
}
.cont7_item:after {
    display: none;
}
.cont7 {
    padding: 10% 0;
}
.cont7 .common_title h2 {
	margin-bottom: 50px;
}
}

/*--------------------------------------------------
cont8 よくある質問
---------------------------------------------------*/
.cont8 {
	padding: 5% 0;
	background-color: #F8F8F8;
}
.cont8_inr {
	max-width: 900px;
	width: 85%;
	margin: auto;
}
.accordion-area li {
	cursor: pointer;
}
.acod_title {
	position: relative;
	font-size: 1.8rem;
	margin-top: 20px;
	padding-bottom: 20px;
	border-bottom: solid 1px #000;
}
.acod_title span {
	display: inline-block;
	margin-right: 5px;
}
.acod_title::before {
    position: absolute;
    top: 10%;
    right: 2%;
    content: '';
    display: inline-block;
    vertical-align: middle;
    color: #6129F0;
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(135deg);
    transition: all .5s ease;
}
.acod_title.close::before{
	transform: rotate(-43deg);
}
.acod_txtbox {
    display: none;
	padding: 20px;
	background-color: #fff;
}
.acod_txtbox p {
	font-size: 1.8rem;
}
.kochira {
display: inline;
text-decoration: underline;
transition: none;
}

@media screen and ( max-width:1024px) {
.acod_title, .acod_txtbox p {
	font-size: 1.6rem;
}
.cont8_inr, .cont9_inr {
    width: 75%;
}
}
@media screen and ( max-width:896px) {
.cont8 {
	padding: 7% 0;
}
.acod_title {
	padding-right: 45px;	
}
}
@media screen and ( max-width:480px) {
.cont8 {
	padding: 10% 0;
}
.cont8_inr, .cont9_inr {
    width: 85%;
}
.cont8 .common_title h2 {
	margin-bottom: 35px;
}
.acod_title::before {
    top: 7px;
    width: 8px;
    height: 8px;
}
.acod_title {
	margin-top: 15px;
    padding-bottom: 15px;
    padding-right: 30px;
}
.acod_txtbox {
    padding: 15px;
}
.acod_title, .acod_txtbox p {
	font-size: 1.4rem;
}
}
/*--------------------------------------------------
cont9 お申込み・お問い合わせ
---------------------------------------------------*/
.cont9 {
	padding: 5% 0;
	background-color: #fff;
}
.cont9_inr {
	position: relative;
	max-width: 900px;
	width: 85%;
	margin: auto;
	margin-top: 3%;
	padding: 3%;
	background-color: #F8F8F8;
}
.cont9_txt {
	text-align: center;
	line-height: 1.7;
}
.cont9 .common_title h2 {
	margin-bottom: 30px;
}
form {
	width: 100%;
}
.area {
	margin: 10px 0 20px 0;
}
.area input, .area textarea {
	width: 100%;
	background-color: #fff;
	border: solid 1px #D6D6D6;
	padding: 10px;
}
.privacy {
	padding: 15px;
	background-color: #D6D6D6;
}
.privacy a {
	display: inline-block;
	text-decoration: underline;
}
input[type=checkbox] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.check {
    cursor: pointer;
    display: inline-block;
    padding: 5px 0 5px 30px;
    position: relative;
    width: auto;
}
.check::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.check::after {
    border-right: 6px solid #DF087A;
    border-bottom: 3px solid #DF087A;
    content: '';
    display: block;
    height: 20px;
    left: 10px;
    margin-top: -12px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .check::before {
    border-color: #666;
}
input[type=checkbox]:checked + .check::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}
button {
	position: relative;
	display: block;
	max-width: 350px;
	width: 50%;
    margin: auto;
	margin-top: 5%;
    padding: 15px;
	font-size: 2.2rem;
}
button.common_btn {
	display: block!important;
}
.contact-result {
	display: none;
    width: 100%;
    height: 100%;
    padding: 8px 0;
    background-color: #F8F8F8;
    text-align: left;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* .contact-result_null {
	display: none;
} */

.contact-result_inner {
	width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-result_txt {
	width: 80%;
    font-size: 1.5rem;
	line-height: 1.8;
}
.contact-result_txt a {
	display: inline;
	color: #6129F0;
	text-decoration: underline;
}

@media screen and ( max-width:896px) {
.cont9_txt {
	font-size: 1.4rem;
}
button.common_btn {
	font-size: 1.6rem;
}
.cont9 {
    padding: 7% 0;
}
}
@media screen and ( max-width:480px) {
.cont9 {
	padding: 10% 0;
}
.cont9_txt {
    width: 85%;
    margin: auto;
	text-align: left;
}
.cont9_inr {
	margin-top: 10%;
	padding: 5% 5% 8% 5%;
}
form {
	font-size: 1.4rem;
}
.area input, .area textarea {
    padding: 5px;
}
.area {
    margin: 10px 0 15px 0;
}
.privacy {
    padding: 10px;
}
button {
    width: 70%;
    margin-top: 8%;
    padding: 15px 0!important;
}
.contact-result p {
	font-size: 1.4rem;
}
}

/*--------------------------------------------------
footer
---------------------------------------------------*/
#footer {
	padding: 3% 0;
	background: #000;
	background-image: url(src/images/common_bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
}
.ft_inr {
	width: 90%;
	margin: auto;
}
.ft_logo {
	max-width: 350px;
	width: 50%;
	margin-bottom: 15px;
}
.ft_inr p {
	line-height: 1.7;
}
.copy {
	text-align: right;
}
@media screen and ( max-width:1024px) {
#footer {
	padding: 5% 0;
}
}
@media screen and ( max-width:896px) {
#footer {
	padding: 7% 0;
}
.ft_inr p, .copy {
	font-size: 1.4rem;
}
.copy {
	margin-top: 15px;
}
}
@media screen and ( max-width:480px) {
#footer {
	padding: 10% 0;
}
.ft_logo {
    width: 80%;
}
.copy {
    margin-top: 30px;
}
}
.btn_block{
	text-align: center;
}
.common_btn01{
	display: inline-block;
	position: relative;
	max-width: 350px;
    width: 50%;
	margin-top: 5%;
}
.common_btn01 input{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding: 15px 45px 15px 40px;
	background: #000;
	color: #fff;
	transition: ease 0.5s;
	max-width: 350px;
    width: 100%;
    margin: auto;
    margin-top: 0%;
    padding: 15px;
    font-size: 2.2rem;
	
}
.common_btn01::before,.common_btn01::after{
	position: absolute;
    top: 0;
    bottom: 0;
    right: 11px;
    margin: auto;
    content: "";
    vertical-align: middle;
	z-index: 1;
	
}
.common_btn01 input:hover {
    transition: ease 0.5s;
    background: linear-gradient(90deg, #4BE3EF 0%, #6129F0 40%, #DF087A 100%);
}
.thanks__content{
	max-width: 900px;
    width: 85%;
    margin: auto;
}
.btn__block{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding: 15px 45px 15px 40px;
	background: #000;
	color: #fff;
	transition: ease 0.5s;
	max-width: 350px;
    width: 100%;
    margin: auto;
    margin-top: 0%;
    padding: 15px;
    font-size: 2.2rem;
}
.btn__block--thanks{
	text-align: center;
	margin-top: 5%;
}






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

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

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

}