@charset "utf-8";
/* ------------------------------------------ */
/* Product CSS */
/* ------------------------------------------ */
.area-pagettl::before {
	background-image: url(../img/product/bg.jpg);
}

/* sec-product
--------------------------------------------- */
#sec-product .p-lineup {
	position: relative;
	padding-top: 5px;
}
#sec-product .p-lineup .pl-box {
	position: relative;
	border: 5px solid #ddd;
	width: calc(50% + 2.5px);
	margin-top: -5px;
}
#sec-product .p-lineup .pl-box:nth-child(2n-1) {
	border-left: none;
}
#sec-product .p-lineup .pl-box:nth-child(2n) {
	border-right: none;
	margin-left: -5px;
}
#sec-product .p-lineup .p-name {
	position: relative;	
	padding-left: 4rem;
}
#sec-product .p-lineup .p-name:before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background-color: #136bc5;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#sec-product .p-lineup .pl-inner {
	display: table;
	table-layout: auto;
	width: 100%;
}
#sec-product .p-lineup .pl-inner .pl-img,
#sec-product .p-lineup .pl-inner .pl-txt {
	display: table-cell;
	vertical-align: top;
}

.pl-txt .t-ex {
	display: inline-block;
}

#sec-product .p-lineup .pl-inner .pl-img {
	width: 35%;
    min-width: 200px;
}

#sec-product .p-lineup .pl-inner .pl-img img{
	width: 100%;
}
#sec-product .p-lineup .pl-inner .pl-txt {
	width: 65%;
	padding-right: 20px;
}
#sec-product .p-lineup .btn-box {
	text-align: right;
}
#sec-product .p-lineup .btn {
	display: inline-block;
	margin-bottom: 0;
	max-width: 300px;
	cursor: pointer;
}
#sec-product .p-lineup .btn .f-bold {
	padding-left: 65px;
}
#sec-product .p-lineup .btn .i-plus {
	left: 14px;
	top: 50%;
	margin-top: -20px;
	background: transparent;
}
#sec-product .p-lineup .btn .i-plus span:before,
#sec-product .p-lineup .btn .i-plus span:after {
	background: #000;
}
#sec-product .p-lineup .btn .i-plus span:before {
	width: 18px;
	height: 4px;
}
#sec-product .p-lineup .btn .i-plus span:after {
	width: 4px;
	height: 18px;
}


/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
#sec-product .p-lineup .p-name::before {
    transform: translateY(-70%);
}

@media (max-width: 768px) {
	#sec-product .p-lineup .pl-inner .pl-img,
	#sec-product .p-lineup .pl-inner .pl-txt {
		display: block;
	}
	#sec-product .p-lineup .pl-inner .pl-img {
		width: 40%;
		margin: 0 auto;
	}
	#sec-product .p-lineup .pl-inner .pl-txt {
		width: 100%;
		padding-left: 25px;
	}
}
@media (max-width: 640px) {
	#sec-product .p-lineup .pl-box {
		width: 100%;
	}
	#sec-product .p-lineup .pl-box:nth-child(2n-1) {
		border-right: none;
	}
	#sec-product .p-lineup .pl-box:nth-child(2n) {
		border-left: none;
		margin-left: 0;
	}
}

@media (max-width: 480px) {
	#sec-product .p-lineup .pl-inner .pl-img {
		width: 50%;
	}
	#sec-product .p-lineup .pl-inner .pl-txt {
		padding-right: 5%;
		padding-left: 5%;
	}
	#sec-product .p-lineup .btn-box {
		width: 90%;
		margin: 0 auto;
	}
}


/* modal_wrap ---------------------*/
.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.85);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 30px 0 15px;
  box-sizing: border-box;
  line-height: 1.4em;
  transform: scale(0.3);
  transition: 0.5s;
  text-align: center;
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: scale(1);
}
.modal_content p {
  padding: 10px 15px;
  border-radius: 4px;
  background: #edf8ff;
  color: #003a70;
  border: 1px solid #003a70;
  font-size: 1.65rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 5px;
  display: inline-block;
}

.close_button {
  position: absolute;
  top: 0;
  right: -2%;
  width: 50px;
  height: 50px;
  background-color: #000;
  z-index: 4;
  color: #fff !important;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

.close_button:hover,
.modal_trigger:hover + .modal_content > .close_button {
  cursor: pointer;
/*  background: #0071be;*/
}

.close_button:before,
.close_button:after {
	content:"";
	width: 26px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 12px;
    top: 25px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.close_button:before {
    -webkit-transform: translateY(-9px);
    -ms-transform: translateY(-9px);
    transform: translateY(-9px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close_button:after {
    -webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    transform: translateY(9px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.modal_trigger:hover + .modal_content > .close_button:before,
.close_button:hover:before{
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);	
}

.modal_trigger:hover + .modal_content > .close_button:after,
.close_button:hover:after{
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);	
}

.popup__photo {
  height: auto;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.popup__photo img {
  width: auto;
  height: auto;
}

@media (max-width: 480px){
	.modal_content{
		width: 95%;
	}	
}


.modal_wrap .modal_content .slick-arrow {
  width: 52px;
  height: 52px;
  top: 50%;
  margin-top: -26px;
  position: absolute;
  z-index: 2500;
  background-color: transparent;
  border: none;
}

.modal_wrap .modal_content .slick-arrow::before {
  content:"";
  position: absolute;
  display: block;
  top: 0;
  background-color: rgba(0,0,0,1.0);
  width: 52px;
  height: 52px;	
}

.modal_wrap .modal_content .slick-prev::after,
.modal_wrap .modal_content .slick-next::after {
	content:"";
	position: absolute;
    width: 16px;
    height: 16px;
	top: 18px;
    box-sizing: border-box;
    display: block;
	transition: 0.2s all ease;
}
.modal_wrap .modal_content .slick-prev {
    left: 0;
}
.modal_wrap .modal_content .slick-next {
	right: 0;	
}
.modal_wrap .modal_content .slick-prev::after {
    bottom: 0;
    left: 22px;
    transform: rotate(-135deg);
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}
.modal_wrap .modal_content .slick-arrow.slick-prev::before{
	left: 0;
	transform: rotate(0deg);
}
.modal_wrap .modal_content .slick-next::after {
    right: 22px;
    transform: rotate(45deg);
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}

.modal_wrap .modal_content .slick-arrow.slick-next::before{
	right: 0;
	transform: rotate(0deg);	
}


