@charset "UTF-8";

/* common
========================= */
section{
	padding: 4rem 0;
}
h2.sec-tit{
	margin-bottom: 3rem;
}
h2.sec-tit span{
	display: block;
	line-height: 1.2;
}
h2.sec-tit span.f-robo{
	font-size: 3.5rem;
	font-weight: 900;
}
h2.sec-tit span.sub{
	font-weight: normal;
	font-size: 1.6rem;
}

/*PC*/
@media (min-width: 751px){
	section{
		padding: 10rem 0;
	}
	h2.sec-tit{
		margin-bottom: 6rem;
	}
	h2.sec-tit span{
		display: block;
		line-height: 1.2;
	}
	h2.sec-tit span.f-robo{
		font-size: calc(80 / 1920 * 100vw);
	}
}

/* main visual
========================= */

.main-area{
	width: 100%;
	height: calc(1000 / 750 * 100vw);
	background: #000;
	overflow: hidden;
}
.mv-slide, .mv-slide li{
	width: 100%;
	height: 100%;
}
.mv-slide img,
.mv-slide video{
  width: 100%;
  height: auto;
}
.mv-slide button{
	line-height: 30px;
}
.slick-prev, .slick-next{
	background: #ffe000;
	padding: 10px;
	width: 30px;
	height: 30px;
	z-index: 2;
	top: calc( 100% - 15px);
	display: flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
}
.slick-prev{
	left: auto;
	right: 31px;
}
.slick-next{
	right: 0;
}
.slick-next:before,
.slick-prev:before{
	display: none;
}
.slick-next:after,
.slick-prev:after{
	display: block;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{
	background: #000;
}
.slick-prev:hover:after, .slick-prev:focus:after, .slick-next:hover:after, .slick-next:focus:after{
  border-top: 1px solid #ffe000;
  border-right: 1px solid #ffe000;
}
/* next */
.slick-next::after {
  transform: rotate(45deg);
}
.slick-prev::after {
  transform: rotate(-135deg);
}
/*PC*/
@media (min-width: 751px){
	.main-area{
		width: 100%;
		height: calc(940 / 1920 * 100vw);
	}
}

/* about
========================= */

section#about{
	background: #ffe000;
	padding-top: 4rem;
}
section#about .logo{
	width: calc(585 / 750 * 100vw);
	margin-left: auto;
	margin-right: auto;
}
	section#about .text{
		font-size: 2rem;
		border-top: 2px solid #000;
		padding-top: 3rem;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
/*PC*/
@media (min-width: 751px){
	section#about{
		padding-top: 10rem;
	}
	section#about .text{
		font-size: 2rem;
	}
	section#about .logo{
		width: calc(585 / 1920 * 100vw);
	}
}

/* choose
========================= */

section#choose .slick-dots{
	bottom: -20px;
	display: flex;
	gap: 5px;
}
section#choose .slick-dots li{
	display: block;
	width: 100%;
	height: 2px;
}
section#choose .slick-dots li a{
	display: block;
}
section#choose .slick-dots li button{
	width: 100%;
	height: 2px;
	padding: 0;
}
section#choose .slick-dots li button:before{
	font-family: 'slick';
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	text-align: center;
	opacity: .25;
	background: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
section#choose .slick-dots li.slick-active button:before{
	opacity: .75;
	background: #000;
}
/*PC*/
@media (min-width: 751px){
	section#choose .slick-dots{
		max-width: 1000px;
		bottom: -40px;
		left: 50%;
		transform: translateX(-50%);
	}
	section#choose .bnr-slide li.slide-item{
		padding: .6rem;
	}
}


/* instagram
========================= */
section#instagram{
	padding: 6rem 0;
	position: relative;
}
section#instagram .bg{
	position: absolute;
	width: 100%;
	height: 60%;
	top: 0;
	left: 0;
	background: #ffe000;
	z-index: -1;
}
section#instagram .inner{
	position: relative;
}
section#instagram .insta-list{
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 10px;
}
section#instagram .insta-list li{
	width: calc(( 100% - 10px ) / 2);
}
section#instagram .btn{
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}
/*PC*/
@media (min-width: 751px){
	section#instagram{
		padding: 10rem 0;
	}
	section#instagram .bg{
		height: 70%;
	}
	section#instagram .insta-list li{
		width: calc(( 100% - 30px ) / 4);
	}
}

/* contact-area
========================= */
section#contact-area{
	background: #f9f9f9;
}
section#contact-area .wrap a{
	display: block;
	color: #000;
	padding: 3rem;
	border: 2px solid #ffe000;
	-webkit-border-radius: 10px;
	        border-radius: 10px;
	display: flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	transition: .3s ease-in;
}
section#contact-area .wrap .tit{
	font-size: 3rem;
}
section#contact-area .contact-wrap{
	margin-bottom: 2rem;
}
section#contact-area .contact-wrap .icon{
	width: 69px;
	height: 50px;
	background: url("../img/icon-mail-yel.svg") no-repeat left top;
	-webkit-background-size: 100%;
	     -o-background-size: 100%;
	        background-size: 100%;
	transition: .3s ease-in;
}
section#contact-area .quotation-wrap .icon{
	width: 64px;
	height: 65px;
	background: url("../img/icon-quotation-yel.svg") no-repeat left top;
	-webkit-background-size: 100%;
	     -o-background-size: 100%;
	        background-size: 100%;
	transition: .3s ease-in;
}
/*PC*/
@media (min-width: 751px){
	section#contact-area .dispflex{
		gap: 3%;
	}
	section#contact-area .wrap a{
		height: 100%;
		border: 4px solid #ffe000;
	}
	section#contact-area .wrap{
		width: 100%;
	}
	section#contact-area .contact-wrap{
		margin-bottom: 0;
	}
	section#contact-area .wrap a{
		padding: calc(60 / 1920 * 100vw);
	}
	section#contact-area .contact-wrap .icon{
		width: calc(138 / 1920 * 100vw);
		height: calc(100 / 1920 * 100vw);
	}
	section#contact-area .quotation-wrap .icon{
		width: calc(131 / 1920 * 100vw);
		height: calc(133 / 1920 * 100vw);
	}
	section#contact-area .wrap a:hover{
		background: #ffe000;
	}
	section#contact-area .contact-wrap a:hover .icon{
		background: url("../img/icon-mail-wh.svg") no-repeat left top;
		-webkit-background-size: 100%;
		     -o-background-size: 100%;
		        background-size: 100%;
	}
	section#contact-area .quotation-wrap a:hover .icon{
		background: url("../img/icon-quotation-wh.svg") no-repeat left top;
		-webkit-background-size: 100%;
		     -o-background-size: 100%;
		        background-size: 100%;
	}
	section#contact-area .wrap .tit{
		font-size: 4rem;
		line-height: 1.2;
	}
	section#contact-area .wrap .f-small{
		font-size: 1.6rem;
	}
}

/* flow
========================= */
section#flow h3 span{
	background: #ffe000;
	font-size: 2.2rem;
}
section#flow .flow-area-first{
	margin-bottom: 6rem;
}
section#flow .flow-box{
	border: 2px solid #ffe000;
	padding: 2rem;
	position: relative;
	margin-bottom: 2rem;
}
section#flow .flow-box .num{
	width: 36px;
	height: 36px;
	display: flex;
	-webkit-align-items: center;
	        align-items: center;
	-webkit-justify-content: center;
	        justify-content: center;
	background: #ffe000;
	position: absolute;
	left: 0;
	top: 0;
}
section#flow .flow-box .num span{
	line-height: 1;
	font-size: 2.2rem;
}
section#flow .flow-box .top{
	padding-bottom: 2rem;
	border-bottom: 2px solid #ffe000;
}
section#flow .flow-box h4{
	font-size: 2rem;
}
section#flow .flow-box .icon{
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}
section#flow p.arrow{
	display: block;
	margin-left: auto;
	margin-right: auto;
	vertical-align: middle;
	color: #ff9600;
	line-height: 1;
	width: 20px;
	height: 20px;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: rotate(135deg);
	margin-bottom: 2rem;
}
/*PC*/
@media (min-width: 751px){
	section#flow h3 span{
		font-size: 3rem;
	}
	section#flow .flow-area.dispflex{
		-webkit-justify-content: space-between;
		        justify-content: space-between;
		-webkit-align-items: stretch;
		        align-items: stretch;
	}
	section#flow .flow-box{
		border: 2px solid #ffe000;
		padding: calc(30 / 1920 * 100vw);
		margin-bottom: 0;
		width: calc(( 100% - 40px) / 2);
	}
	section#flow li.arrow-area{
		width: 40px;
		position: relative;
	}
	section#flow li p.arrow{
		transform: rotate(45deg);
		margin-bottom: 0;
		margin-left: auto;
		margin-right: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-top: -10px;
		margin-left: -15px;
	}
}
/*PC*/
@media (min-width: 1279px){
	section#flow .flow-box{
		width: calc(( 100% - 120px) / 4);
	}
}

/* pont-area
========================= */
section#pont-area{
	background: #ffe000;
}
section#pont-area ul{
	display: flex;
	gap: 5px;
}
section#pont-area li{
	width: 100%;
}
section#pont-area li .icon{
	height: 60px;
	text-align: center;
}
section#pont-area li .icon1 img{
	display: block;
	width: 76px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
section#pont-area li .icon2 img{
	display: block;
	width: 46px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
section#pont-area li .icon3 img{
	display: block;
	width: 64px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
section#pont-area li .bold{
	font-size: 1.5rem;
}
section#pont-area li .f-small{
	font-size: 1.2rem;
}

/*PC*/
@media (min-width: 751px){
	section#pont-area{
		padding: 4em 0;
	}
	section#pont-area ul{
		gap: 40px;
		-webkit-align-items: center;
		        align-items: center;
	}
	section#pont-area li .icon{
		height: 120px;
		text-align: center;
	}
	section#pont-area li .icon1 img{
		width: 152px;
	}
	section#pont-area li .icon2 img{
		width: 92px;
	}
	section#pont-area li .icon3 img{
		width: 128px;
	}
	section#pont-area li .bold{
		font-size: 2.6rem;
	}
	section#pont-area li .f-small{
		font-size: 1.6rem;
	}
}







