@charset "utf-8";

/*--- reset */

html {
	overflow-y: scroll; 
	font-size: 62.5%;　/*フォントサイズを10pxに設定*/
}

body,
html {  
    height: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
figure,
blockquote {
	margin: 0;
	padding: 0;
}
	
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size:100%;
}


caption {text-align: left;}

q:before,
q:after {
	content: '';}

object,
embed {vertical-align: top;}

h1,
h2,
h3,
h4,
h5,
h6 {font-size: 100%;}

img,
abbr,
acronym,
fieldset {border: 0;}

img{
	vertical-align: bottom;
	line-height: 0;
}

li {list-style-type: none;}
li img{vertical-align: bottom;}
p{
	text-justify: inter-ideograph;
}

a {color: #1d2088; text-decoration: none;}
a:hover{opacity:0.7;}
.underline{text-decoration:underline;}

/* clearfix */
.clear:before,
.clear:after {
    content: " ";
    display: table;
}

.clear:after {
    clear: both;
}

/*hr reset*/
hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}
.hr01{
	border-bottom:1px #ddd solid;
}

/*font*/
.f-marker {
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 75%, #fdd324 0%) repeat scroll 0 0;
}
.f-marker-wh {
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 94%, #fff 0%) repeat scroll 0 0;
}
.f-center{ text-align:center;}
.f-left{text-align: left;}
.f-right{text-align: right;}

.f-bold{font-weight: 700;}

.fs-14{font-size: 1.4rem;}
.fs-24{font-size: 2.4rem;}
.fs-36{font-size: 3.6rem;}
.fs-48{font-size: 4.8rem;}

.fc-blue{color: #1d2088;}
.fc-gray{color: #666;}
.fc-white{color: #fff;}
.fc-sky{color: #00adec;}

/*flex*/
.flex-bt, .flex-center, .flex-stand{
	display: -webkit-flex;
    display: flex; 	
}
.flex-bt{
	-webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex-center{
	-webkit-justify-content:center;
    justify-content:center;
}
.flex-stand{
	-webkit-justify-content:start;
    justify-content:start;
}
.flex-chuo{align-items: center;}
.flex-wrap{flex-wrap: wrap;}
.flex-order1{order:1;}
.flex-order2{order:2;}

/*margin*/
.mb20{margin: 0 0 2rem 0;}
.mb40{margin: 0 0 4rem 0;}
.mb60{margin: 0 0 6rem 0;}

/*padding*/
.pd40{padding: 4rem;}/*40px*/
.ptb120{padding: 12rem 0;}/*120px*/
.pt120{padding: 12rem 0 0 0;}

/*img*/
.img-auto{
	width:100%;
	height:auto;
}

/*animation*/
.animated{}
.aniBox{overflow:hidden;}
.invisible {
	transition: opacity 0.5s ease;
	opacity: 0.0;
}
.visible {
	transition: opacity 0.5s ease;
	opacity: 1.0;
}
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 100ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fade {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
.css-animate-fade{
	width:100%;
	height:200px;
	background:#F99;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*iphone reset*/
input[type="submit"],
input[type="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 {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*====================================
 default 
====================================*/
body {
	background: #fff;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size:1.8em ; /*bodyの指示はemに。chromeバグ対策 16px*/
	font-weight:400;
	line-height: 2;
	text-align: left;
}
#wrap{
	position:relative;
	height:auto;
}
#wrap:before {
    content: "";
    display: block;
}
.contents{
	max-width:1120px; /*コンテンツの幅指定*/
	margin:0 auto;
	padding: 12rem 0;
	position:relative;
}
.align-c{
	align-items: center;
}

@media screen and (min-width: 769px) {
	.pc-none{
		display:none !important;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
}


/*====================================
 header
====================================*/
header {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
	background:rgba(0, 0, 0, 0);
}

.flex-bt-nav{
	width: 96%;
	margin: 4rem auto 0;
    display: flex; 
    justify-content: space-between;
	align-items: center;
}
header ul{
    display: flex; 
    justify-content:start;
	align-items: center;
	gap: 3rem;
}
header ul li{
	font-size:1.6rem;
	font-weight: 700;
}
header ul li a{
	color: #fff;
}
header .contact-btn a {
	padding: 2rem;
    font-size: 1.8rem;
    display:block;
	font-weight: 900;
    line-height:1;
    text-align:center;
	color: #fff;
	position: relative;
	cursor: pointer;
	background:#00adec;
}

/*====================================
 midashi
====================================*/
/*H2*/
h2{
	margin: 0 0 6rem 0;
	font-size:5rem;
	line-height:1.3;
	letter-spacing: 0.1rem;
	text-align:center;
	color: #131559;
	font-weight:900;
	position: relative;
}
h2 .front{
	position: relative;
	z-index: 10;
}
h2::after{
	font-size: 12rem;
	color: rgba(0,173,236,0.1);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
h3{
	font-size: 3rem;
	line-height: 1.4;
	font-weight: 700;
}
.f-en{
	font-size: 2rem;
	line-height: 1;
	display: block;
	color: rgba(29,32,136,0.5);
	font-family: 'Roboto Condensed', sans-serif;
}

/*====================================
 contents
====================================*/
/*main*/
/**/
.main-visual {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
}
.background-slide {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 0;
}
.background-slide.active {
	opacity: 1;
	z-index: 1;
}
.main-01 { background-image: url("../images/main_01.jpg");}
.main-02 { background-image: url("../images/main_02.jpg");}
.main-03 { background-image: url("../images/main_03.jpg");}
.main-04 { background-image: url("../images/main_04.jpg");}
.main-05 { background-image: url("../images/main_05.jpg");}
.main-06 { background-image: url("../images/main_06.jpg");}


.main .contents{
	max-width: fit-content;
	margin: 0;
	padding: 15rem 0 10rem 4%;
	height: calc(100% - 15rem);
	color: #fff;
	line-height: 1.4;
	background: rgba(0,0,0,0.5);
	display: flex;
	z-index: 100;
}
.main .contents::after{
	width: 300px;
	height: 100%;
	right: -300px;
	top: 0;
	background: rgba(0,0,0,0.5);
	clip-path: polygon(100% 0, 0 0, 0 100%);
	position: absolute;
	content: '';
}
.main .sub{
	padding: 0.25rem 1rem;
	font-size: 3rem;
	font-weight: 900;
	box-sizing: border-box;
	border: 2px solid #fff;
	display: inline-block;
}
.main h2{
	margin: 1rem 0 3rem;
	font-size: 6.4rem;
	color: #fff;
	text-align: left;
}
.main .copy{
	font-size: 2.4rem;
	font-weight: 700;
}
.main ul{
	margin: 3rem 0 0 0;
	display: flex;
	justify-content:flex-start;
}
.main ul li .fs-48{
	font-size: 4rem;
}
.main ul li{
	width: 243px;
	height: calc(216px - 40px);
	padding: 40px 0 0 0;
	margin: 0 1rem;
	font-size: 2.2rem;
	line-height: 1.2;
	text-align: center;
	font-weight: 900;
	color: #fcee21;
	background:url("../images/badge.png") no-repeat 0 0;
	background-size: 243px auto;
	position: relative;
}
.main ul li::before{
	content: '';
	width: 37px;
	height: 24px;
	background: url("../images/crown.png") no-repeat 0 0;
	background-size: 37px auto;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}
	
/*cv*/
.cv, .cv2{
	background-image: linear-gradient(to right, #00adec 0%, #136bb2 100%);
	color: #fff;
	padding: 8rem 0;
	position: relative;
}
.cv::after,
.cv2::after{
	content: '';
	width: 730px;
	height: 235px;
	background: url("../images/logo_w.png") no-repeat 0 0;
	right: 5%;
	bottom: -22%;
	position: absolute;
}
.cv .contents,
.cv2 .contents{
	padding: 0;
	max-width: 960px;
	z-index: 1;
}
.cv li,
.cv2 li{
	width: 50%;
	box-sizing: border-box;
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.6;
}
.cv li:nth-child(1){
	padding: 0 0 0 6rem;
	position: relative;
}
.cv li:nth-child(1)::before{
	content: '';
	width: 40px;
	height: 40px;
	background: url("../images/arrow_w.png") no-repeat left center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.cv li a,
.cv2 li a{
	padding: 2.5rem 2rem;
    display:block;
    text-align:center;
	color: #131559;
	position: relative;
	cursor: pointer;
    background:#fcee21 url("../images/arrow_b.png") right 20px center no-repeat;
	box-shadow:10px 10px 20px rgba(0,0,0,0.2);
}
.cv2 h2{
	padding: 1rem 2rem;
	margin: 0;
	font-size: 2.8rem;
	display: inline-block;
	background: #fff;
	border-radius: 10px;
}
.cv2 h2::before{
	width: 22px;
	height: 14px;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	position: absolute;
	content: '';
}
.cv2 h3{
	font-size: 2rem;
	text-align: center;
}

/*rogos*/
.rogos{
	padding: 10rem 0;
	overflow: hidden;
}
.rogos h2{
	font-size: 4.2rem;
}
/* Marquee styles */
.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 20s linear infinite;
}

@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }
  to {
    transform: translateX(0);
  }
}

.marquee__content li {
  flex: 0 0 auto;
}
.marquee__content li img{
	width: auto;
	height: 80px;
}

/*lineup*/
.lineup{
	background: url("../images/lineup_bg.jpg") no-repeat left bottom 5%, linear-gradient(#dbecf1, 5%, #fff);
	background-size: contain, cover;
}
.lineup .contents{
	max-width: 1280px;
}
.lineup h2::after{
	content: 'LINEUP';
}
.lineup .box{
	margin: 0 0 3rem 0;
	width: 32%;
	background: #fff;
	box-shadow:10px 10px 20px rgba(0,0,0,0.1);
	position: relative;
}
.lineup .box dl{
	margin: -2.5rem 0 0 0;
	position: relative;
}
.lineup .box dt{
	font-size: 2.4rem;
	padding: 0 1.5rem;
	margin: 0 0 2rem 0;
	font-weight: 700;
	display: inline-block;
	background: #1d2088;
	color: #fff;
}
.lineup .box dd{
	margin: 0 2rem;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: 700;
	position: relative;
	font-feature-settings: "palt";
}
.lineup .box dd::after{
	content: '';
	width: 20px;
	height: 6px;
	background: url("../images/arrow_b.png") no-repeat 0 0;
	right: 0;
	bottom: 16%;
	position: absolute;
}
.lineup .box p{
	font-size: 1.6rem;
	padding: 2rem;
	line-height: 1.6;
}
.lineup ul{
	padding: 6rem;
	background: url("../images/lineup_bg2.jpg") no-repeat right center;
	background-size: cover;
}
.lineup li {
	padding: 2rem 0;
	width: 31%;
	font-size: 3rem;
	text-align: center;
	line-height: 1.4;
	font-weight: bold;
	position: relative;
}
.lineup li:nth-of-type(1){
	background: #00abf2;
}
.lineup li:nth-of-type(2){
	background: #2f33d8;
}
.lineup li:nth-of-type(3){
	background: #37c59e;
}
.lineup li::after{
	width: 20px;
	height: 6px;
	right:1rem;
	top: 50%;
	transform: translateY(-50%);
	background: url("../images/arrow_w2.png") no-repeat right center;
	position: absolute;
	content: '';
}
.lineup li a{
	color: #fff;
	display: block;
}
.lineup li span{
	padding: 0.5rem;
	font-size: 1.8rem;
	border: 1px solid #fff;
}

/*choice*/
.choice{
	background: #eff8ff;
}
.choice h2:after{
	content: 'CHOICE';
	color: rgba(255,255,255,0.5);
}
.choice dt{
	width: 50%;
	margin: 0 auto -3rem;
	font-size: 3rem;
	font-weight: 900;
	background: #1d2088;
	display: table;
	text-align: center;
}
.choice dt div{
	color: #fff;
	display: table-cell;
}
.choice dt div:first-child{
	padding-left: 1rem;
	font-size: 2.4rem;
	font-family: 'Roboto Condensed', sans-serif;
	background: #00abf2;
	position: relative;
}
.choice dt div:first-child::before{
	width: 25px;
	height: 100%;
	right: -25px;
	top: 0;
	background: #00abf2;
	clip-path: polygon(100% 0, 0 0, 0 100%);
	position: absolute;
	content: '';
}
.choice dt div:last-child{
	padding-left: 1rem;
}
.choice dd{
	padding: 6rem 4rem 4rem;
	border: 3px solid #1d2088;
	text-align: center;
	box-sizing: border-box;
}
.choice .box-white{
	padding: 4rem;
	background: #fff;
}


/*solution*/
.solution{
	background: url("../images/solution_bg.jpg") no-repeat left 20rem bottom;
}
.solution h2{
	font-size: 2.8rem;
}
.solution .youtube{
	margin: 0 auto 40px;
	max-width: 900px;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.solution .youtube iframe {
	width: 100%;
	height: 100%;
}

/*results*/
.results{
	background: #f5f5f5;
}
.results h2:after{
	content: 'REASON';
}
.results .contents{
	max-width: 1600px;
	width: 94%;
}
.results-list a:hover{
	opacity: 1;
}
.results-list {
	margin: 0 0 4rem 0;
	width: 32%;
	overflow: hidden;
	position: relative;	
}
.results-list img{
	object-fit: cover;
	width: 100%;
	height: 400px;
}
.results-list .caption {
	text-align: center;
	color: #fff;
	position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.results-list .mask {
	width:	90%;
	height: 90%;
	padding: 5%;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	opacity: 0;	
	background-color: rgba(0,0,0,0.5);
	transition: all 0.6s ease;
	cursor: pointer;
}
.results-list:hover .mask {
	opacity: 1;	
}
.results-list h5{
	margin: 1rem 0;
	padding: 0 0 1rem;
	font-size: 2.6rem;
	display: inline-block;
	border-bottom: 1px solid #fff;
	line-height: 1.4;
}
.results-list p{
	font-size: 1.4rem;
}
.results-list li{
	font-size: 1.4rem;
	padding: 0.5rem 1rem;
	margin:0  0.25rem 0.25rem 0;
	line-height: 1;
	border: 1px solid #fff;
	border-radius: 50px;
	display: inline-block;
}

/*voice*/
.voice h2::after{
	content: 'VOICES';
}
.voice dl{
	padding: 4rem;
	background: #eff9fb;
}
.voice h3{
	padding: 1.5rem;
	color: #fff;
	background: linear-gradient(90deg, #136bb2 0%, #1d2088 100%);
}
.voice dt p{
	margin: 2rem 0 4rem;
	padding: 1rem;
	font-size: 2rem;
	color: #131559;
	background: #fff;
}


/*comparison*/
.comparison h2::after{
	content: 'SUPPORT';
}
table{
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.4;
	text-align: center;
	border: 1px solid #1d2088;
}
table th, table td{
	padding: 2rem;
}
table th{
	width: 25%;
	font-size: 2.4rem;
	color: #fff;
	background: #ababc1;
	text-align: center;
}
table tr th:nth-of-type(1){
	background: #1d2088;
	border-left: 4px solid #1d2088;
	border-right: 4px solid #1d2088;
}
table tr th:nth-of-type(2){
	border-right: 1px solid #ddd;
}
table tr td:nth-of-type(1){
	width: 25%;
	font-size: 1.8rem;
	font-weight: 700;
}
table tr td:nth-of-type(2){
	border-left: 4px solid #1d2088;
	border-right: 4px solid #1d2088;
}
table tr .border-last{
	border-bottom: 4px solid #1d2088;
}
table tr td:nth-of-type(3){
	border-right: 1px solid #ddd;
}
table tr:nth-child(even) td {
	background: #f5f5f5;
}
.comparison .en1{
	font-size: 3.6rem;
	color: #f94d45;
}
.comparison .en2{
	font-size: 3.6rem;
	color: #8182a3;
}
.comparison h2{
	font-size: 4rem;
}
.comparison h2 span{
	font-size: 5rem;
}

/*reason*/
.reason{
	margin: 12rem 0;
}
.reason h2::after{
	content: 'REASON';
}
.reason02 .contents, .reason03 .contents{
	padding: 8rem 0;
}
.reason h4{
	font-size: 3.6rem;
	font-weight: 900;
	color: #131559;
	text-align: center;
}
/*reason01*/
.reason01{
	background: linear-gradient(to left, #ffffff 0%,#ffffff 5%,#eff8fb 5%, #eff8ff 100%);
}
.reason li{
	margin: 6rem 0;
}
.reason img, .reason dl{
	box-shadow:10px 10px 20px rgba(0,0,0,0.1);
}
.reason figure{
	max-width: 48%;
	position: relative;
	z-index: 2;
}
.reason li dl{
	width:52% ;
	top: 4rem;
	background: #fff;
	position: relative;
	z-index: 1;
}
/**/
.reason01-box{
	width: 48%;
}
.reason .reason01-box figure{
	max-width: 100%;
}
.reason .reason01 li{
	margin: 3rem 0;
}
.reason .reason01 .reason01-box dl{
	width: calc(100% - 8rem);
	padding: 4rem;
	top:0 ;
}
.reason .reason01 li:nth-child(odd) dl{
	margin: 0;
}
.reason .reason01-box dl dt{
	padding: 0;
	margin: 0 0 2rem;
	font-size: 2.8rem;
}
/**/
.reason li:nth-child(odd) dl{
	right: 0;
	margin: 0 0 0 -8rem;
	padding: 4rem 4rem 4rem 12rem;
}
.reason li:nth-child(even) dl{
	left: 0;
	margin: 0 -8rem 0 0;
	padding: 4rem 12rem 4rem 4rem;
}
.reason dl dt{
	padding: 0 0 0 4rem;
	font-size: 3.6rem;
	line-height: 1.4;
	color: #131559;
	font-weight: 900;
	position: relative;
}
.reason dl dt::before{
	content: '';
	width: 20px;
	height: 2px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #1d2088;
	position: absolute;
}
.reason dl dt span{
	font-size: 2.8rem;
	font-weight: 700;
}
/*reason02*/

/*reason03*/
.reason03{
	background: linear-gradient(to right, #ffffff 0%,#ffffff 5%,#eff8fb 5%, #eff8ff 100%);
}
.reason h3 {
	position: relative;
	text-align: center;
	color: #00adec;
}
.reason h3:after {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background: #00adec;
}
.reason h3::before{
	font-family: 'Roboto', sans-serif;
	font-size: 4rem;
	color: #fff;
	background: #00adec;
	padding: 0.5rem;
	position: relative;
	z-index: 1;
	border: 10px solid #eff8ff;
}
.reason h3 span {
	position: relative;
	background: #eff8ff;
	padding: 0 1rem 0 0;
	z-index: 2;
}
.reason .reason01 h3::before{
	content: '01';
}
.reason .reason02 h3::before{
	content: '02';
	border: 10px solid #fff;
}
.reason .reason02 .fs-14{
	vertical-align: text-top;
}
.reason .reason02 h3 span {
	background: #fff;
}
.reason .reason03 h3::before{
	content: '03';
}

/*seisaku*/
.seisaku{
	background: linear-gradient(#dbecf1, 5%, #fff);
}
.seisaku-ph{
	width: 100%;
	height: 420px;
	background: url("../images/seisaku_bg.jpg") no-repeat center 0;
	background-size: cover;
}
.seisaku h2{
	font-size: 4.2rem;
	margin: 0 0 4rem 0;
}
.seisaku .contents{
	padding: 8rem 0 12rem 0;
}
.seisaku dl{
	padding: 0 4rem 2rem 0;
	border: 5px solid #efeff7;
	box-sizing: border-box;
}
.seisaku dt span{
	padding: 1rem 2rem;
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background-image: linear-gradient(to left, #1d2088 0%, #136bb2 100%);
}
.seisaku dd{
	width: 80%;
	margin: -5rem 0 0 20%;
}

/*signage*/
.signage{
	background: linear-gradient(90deg, #42b796 0%, #50b631 100%);
	color: #fff;
}
.signage h2{
	margin: 0 0 3rem;
	font-size: 4.2rem;
	color: #fff;
}
.signage p{
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

/*flow*/
.flow{
	background:#efeff7;
}
.flow h2::after{
	content: 'FLOW';
	color: rgba(255,255,255,0.5);
}
.flow ul li{
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 0 0 7rem 0;
}
.flow ul li::after{
	content: '';
	width: 10px;
	height: 30px;
	background: url("../images/arrow_down.png") no-repeat 0 0;
	position: absolute;
	left: 8rem;
	bottom: -5rem;
}
.flow ul li:last-child{
	margin: 0;
}
.flow ul li:last-child::after{
	content: none;
}
.flow .num{
	width: 15%;
	font-size: 4rem;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	color: #fff;
	background-image: linear-gradient(120deg, #136bb2 0%, #1d2088 100%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.flow .box{
	padding: 4rem;
	width: calc(85% - 8rem - 20px);
	background: #fff;
}
.flow .box figure{
	width: 13%;
}
.flow .box dl{
	width: 85%;
}
.flow .box dt{
	padding: 0 0 0 3rem;
	font-size: 2.8rem;
	font-weight: 700;
	color: #1d2088;
	position: relative;
}
.flow .box dt::before{
	content: '';
	width: 20px;
	height: 2px;
	background: #1d2088;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/*faq*/
.faq h2::after{
	content: 'FAQ';
}
.faq .toggle {
	display: none;
}
.faq .Label {	
	padding:2rem;
	display: block;
	background:#f5f5f5;
	border-radius: 10px;
	cursor: pointer;
}
.faq .Label::before{	
	content:"＋";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 2rem;
	font-weight: 700;
	color: #1d2088;
}
.faq .Label span{
	padding: 0 0 0 5rem;
	font-size: 2.2rem;
	font-weight: 700;
	position: relative;
}
.faq .Label span::before{
	content: 'Q';
	font-size: 2.4rem;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	width: 40px;
	height:40px;
	line-height: 40px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	background: #1d2088;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.faq .Label, .faq .faqtxt {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.faq .faqtxt {	
	height: 0;
	margin: 0 0 2rem 0;
	padding:0 2rem;
	overflow: hidden;
}
.faq .faqtxt p{
	padding: 0 0 0 5rem;
	position: relative;
}
.faq .faqtxt p::before{
	content: 'A';
	font-size: 2.4rem;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	width: 40px;
	height:40px;
	line-height: 40px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
}
.faq .toggle:checked + .Label + .faqtxt {
	height: auto;
	padding:2rem ;
	transition: all .3s;
}
.faq .toggle:checked + .Label::before {
	content:"－";
}
.faq a{
	text-decoration: underline;
}

/*showroom*/
.showroom{
	background-image: linear-gradient(to right, #1d2088 0%, #136bb2 100%);
	margin: 0 0 -18rem 0;
}
.showroom h2{
	color: #fff;
}
.showroom h2::after{
	content: 'SHOWROOM';
}
.showroom ul li{
	width: 48%;
	background: #fff;
	box-shadow:10px 10px 20px rgba(0,0,0,0.2);
}
.showroom ul li h3{
	padding: 4rem;
	font-size: 2.8rem;
	font-weight: 900;
	color: #1d2088;
	text-align: center;
}
.showroom ul li dl{
	margin: 0 4rem;
	padding: 2rem 0;
	border-top: 2px #000 dotted;
	line-height: 1.6;
}
.showroom ul li .border-last{
	border-bottom: 2px #000 dotted;
}
.showroom ul li dt{
	width: 20%;
	color: #292c8c;
	font-weight: 700;
}
.showroom ul li dd{
	width: 80%;
}
.showroom ul li .gmap{
	margin: 2rem 4rem 4rem 4rem;
}


/*contact*/
.contact .contents{
	padding: 17rem 0 12rem 0;
}
.contact h2::after{
	content: 'CONTACT';
}
.contact{
	background:#f5f5f5;
}
#wrap .satori__custom_form{
	width: calc(100% - 4rem);
	padding: 2rem;
}
.contact .mktoForm{
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0 auto;
}
.contact .mktoForm .mktoLabel{
	font-size: 1.6rem;
	font-weight: bold !important;
}
input#Company, input#Department, input#Department, input#LastName, input#LAST_Furigana, input#Email, input#Phone, select#State, input#City{
	font-size: 1.6rem;
}
.mktoButtonRow{
	margin: 0 auto;
	display: block !important;
	text-align: center !important;
}
input#Company, input#Department, input#Department, input#LastName, input#LAST_Furigana, input#Email, input#Phone, select#State, input#City,
.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm select.mktoField, .mktoForm textarea.mktoField,
.mktoForm input[type=checkbox] + label:before, .mktoForm input[type=radio] + label:before{
	border-radius: 0 !important	;
	box-shadow: none !important;
}
/*form初期化*/
.entry_form input[type="text"], .entry_form button,
.entry_form textarea {
	margin: 0;
	border: none;
	appearance: none;
	box-sizing:border-box;
	padding:2rem;
	font-size:1.6rem;
	outline: none;
	background:#fff;
	border-radius: 10px;
	transition: all .3s;
}
.plcentry{width:100%;}
::placeholder {  color:#bbb;}
/* 旧Edge対応 */
::-ms-input-placeholder {color: #bbb;}
/* IE対応 */
:-ms-input-placeholder {  color: #bbb;}
.entry_form input[type="text"]:focus,
.entry_form textarea:focus {
	border: 1px solid #ccc;
	background:#fff;
}
.contact .pribox {
    border: 1px solid #eee;
    height: 160px;
    margin: 25px 0 50px 0;
    background: none repeat scroll 0 0 #fff;
    overflow: auto;
    padding: 2%;
	font-size:85%;
}
#button01, #button02 {
	font-size:1.8rem;
	padding:0 8rem;
	line-height:6rem;
	border-radius:80px;
	display: inline-block;
	font-weight:700;
	outline: none;
	background-color: #ee275f;
	color: #fff;
	border:none;
	cursor: pointer;
}
#button02 {
	background-color: #ddd;
	color: #000;
}
#button01:hover, #button02:hover {
	border: none;
	opacity: 0.7;
}
#button01,
#button01::before,
#button01::after,
#button02,
#button02::before,
#button02::after{
	-webkit-transition: all .3s;
	transition: all .3s;
}


/*====================================
 FOOTER
====================================*/
footer {
	padding: 2rem 0;
	background:#000;
	color:#fff;
}

footer .copy{
	font-size: 1.4rem;
	text-align:center;
}

/*pagescroll*/
#scrollUp {
    bottom:0;
    right: 0;
}



