@charset "UTF-8";

/*------------------------------------------------------------
	Common
------------------------------------------------------------*/
.l-header--scroll .p-logo-link__image-unscroll{
	display: block;
}
.l-header--scroll .p-logo-link__image-scroll{
	display: none;
}
@media(max-width:1000px){
	.p-logo-link__image-unscroll{
		display: block;
	}
	.p-logo-link__image-scroll{
		display: none;
	}
	.l-header--scroll .p-logo-link__image-unscroll{
		display: none;
	}
	.l-header--scroll .p-logo-link__image-scroll{
		display: block;
	}
	.l-header.open .p-logo-link__image-unscroll{
		display: block;
	}
	.l-header.open .p-logo-link__image-scroll{
		display: none;
	}
}

/*------------------------------------------------------------
	Home
------------------------------------------------------------*/

/* .pg-home-mv */
.pg-home-mv {
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.pg-home-mv-title-box{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 100px;
  box-sizing: border-box;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.pg-home-mv-title-box__text{
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 500;
}
.pg-home-mv-title-box__text .u-text-small{
  font-size: 1.8rem;
}
.pg-home-mv-title-box__text .u-text-medium{
  font-size: 3.2rem;
}
.pg-home-mv-title-box__text .u-text-large {
  display: inline-block;
  margin-top: 10px;
}
.pg-home-mv-title-box__text .u-text-large span{
  display: inline-block;
  padding: 0 10px 3px;
  background: var(--theme-main_color);
  font-size: 6rem;
  color: var(--theme-white_color);
  margin-bottom: 10px;
}
.pg-home-mv-slider{
  position: relative;
  z-index: 1;
}

/* .pg-home-news */
.pg-home-news {
  padding: 40px 0 55px;
  background: url(../images/home/news-bg.png)no-repeat center center / cover;
  background-color: #f1f5f5;
  text-align: center;
}
.pg-home-news__list{
  margin-bottom: 40px;
}
.pg-home-news__list-item{
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.pg-home-news__list-item a{
  display: flex;
  justify-content:flex-start;
  align-items: center;
  padding:25px 30px;
  border-radius: 100px;
  background: var(--theme-white_color);
  position: relative;
  transition: .3s;
}
.pg-home-news__list-item a::before{
  content:'';
  display: block;
  width: 42px;
  height: 42px;
  background: url(../images/common/arrow-right-white.svg)no-repeat right 16px center / 7px;
  background-color: var(--theme-main_color);
  border-radius: 100px;
  position: absolute;
  top:17px;
  right: 20px;
  transition: .3s;
}
.pg-home-news__list-item-date{
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--theme-main_color);
  margin-right: 35px;
}
.pg-home-news__list-item-title{
    font-size: 1.4rem;
    font-weight: 500;
}

/* .pg-home-services */
.pg-home-services {
  padding:80px 0 110px;
  background: var(--theme-main_color);
}
.pg-home-services__box{
  margin-bottom: 55px;
}
.pg-home-services__box-image{
  width:calc(100% - 490px);
}
.pg-home-services__box-cnt{
  width: 490px;
  padding-left: 40px;
}
.pg-home-services__box-cnt .p-title-box{
  margin-bottom: 20px;
}
.pg-home-services__box-text{
  line-height: 1.8;
  font-size: 1.5rem;
  color: var(--theme-white_color);
  margin-bottom: 35px;
}
.pg-home-services__box .p-title-box__text-eng img{
  width: 529px;
  max-width: inherit;
}


/* .pg-home-company */
.pg-home-company {
  padding: 105px 0;
  background: url(../images/home/company-bg01.jpg)no-repeat center center / cover;
}
.pg-home-company .l-section-inner{
  width: 670px;
  padding: 70px 60px 65px;
  background: var(--theme-main_color);
  color: var(--theme-white_color);
  margin: 0 0 0 auto;
}
.pg-home-company .p-title-box{
  margin-bottom: 25px;
}
.pg-home-company__text{
  width: 387px;
  max-width: 100%;
  line-height: 2;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 30px;
}

/* .pg-home-faq */
.pg-home-faq {
  padding: 70px 0 100px;
}
.pg-home-faq .p-title-box{
  margin-bottom: 42px;
}
.pg-home-faq .p-title-box__title{
  padding-left: 68px;
  position: relative;
}
.pg-home-faq .p-title-box__title:before{
  content:'';
  width: 61px;
  height: 64px;
  background: url(../images/common/icon-qa.svg)no-repeat center center / contain;
  position: absolute;
  top:-14px;
  left: 0;
}
.pg-home-faq .p-title-box__text-eng{
  bottom: 20px;
}

/* .pg-home-contact */
.pg-home-contact {
  padding: 0 25px 23px;
}


@media(min-width:769px){
	/* .pg-home-news */
	.pg-home-news__list-item a:hover{
		background: var(--theme-main_color);
		color: var(--theme-white_color);
	}
	.pg-home-news__list-item a:hover .pg-home-news__list-item-date{
		color: var(--theme-white_color);
	}
	.pg-home-news__list-item a:hover::before{
		background: url(../images/common/arrow-right-red.svg)no-repeat right 16px center / 7px;
		background-color: var(--theme-white_color);
	}
}

@media(max-width:1000px){

	/* .pg-home-mv */
	.pg-home-mv{
		height: 100vh;
	}
	.pg-home-mv-inner{
		height: 100%;
	}
	.pg-home-mv-title-box{
		justify-content: flex-start;
		padding: 20px;
	}
	.pg-home-mv-slider {
		height: 100%;
	}
	.pg-home-mv-slider li img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.pg-home-mv-title-box__text{
		line-height: 1.4;
		font-size: 1.8rem;
	}
	.pg-home-mv-title-box__text .u-text-small{
		font-size: 1.8rem;
	}
	.pg-home-mv-title-box__text .u-text-medium{
		font-size: 2.8rem;
	}
	.pg-home-mv-title-box__text .u-text-large span{
		padding: 0 10px 3px;
		font-size: 4rem;
	}

	/* .pg-home-news */
	.pg-home-news__list-item{
		margin-bottom: 15px;
	}
	.pg-home-news__list-item a{
		display: block;
		/* border-radius: 10px; */
		text-align: left;
		padding: 15px 50px 15px 25px;
	}
	.pg-home-news__list-item-date{
		display: block;
		width: 100%;
		font-size: 1.2rem;
		margin-right: 20px;
		margin-bottom: 5px;
	}
	.pg-home-news__list-item-title{
		font-size: 1.6rem;
	}
	.pg-home-news__list-item a::before{
		width: 24px;
		height: 24px;
		background: url(../images/common/arrow-right-white.svg)no-repeat right 9px center / 5px;
		background-color: var(--theme-main_color);
		top:calc(50% - 12px);
	}

	/* .pg-home-services */
	.pg-home-services{
		padding: 60px 0;
	}
	.pg-home-services__box{
		flex-wrap: wrap;
		flex-direction: column-reverse;
		max-width: 700px;
		margin:0 auto 40px;
	}
	.pg-home-services__box-cnt{
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
	.pg-home-services__box-image{
		/* width: calc(100% - 80px); */
		width: 100%;
		margin: 0 auto;
	}
	.pg-home-services__box .p-title-box__text-eng img{
		width: auto;
	}
	.pg-home-services__box-text{
		margin-bottom: 30px;
	}
	
	/* .pg-home-company */
	.pg-home-company{
		padding: 60px 0 60px 60px;
	}
	.pg-home-company .l-section-inner{
		width: 470px;
		max-width: 100%;
		padding:40px 20px 40px 40px;
	}

	/* .pg-home-faq */
	.pg-home-faq{
		padding: 60px 0;
	}

	/* .pg-home-contact */
	.pg-home-contact{
		padding: 0 20px 20px;
	}
	.p-contact-box{
		padding:40px 20px 35px;
		border-radius: 10px;
	}
	.p-contact-box .p-title-box{
		margin-bottom: 20px;
	}
	.p-contact-box__text{
		text-align: left;
	}
}