@charset "UTF-8";
#main_title_area{
	height: 300px;
}

@media screen and (max-width: 840px){
	#main_title_area{
		height: 260px;
	}	
}


/*.products_area*/
.products_area{
	padding: 70px 0;
	background: url(../img/index/bg01.jpg) repeat center top;
}
.products_area .flex{
	justify-content: space-between;
}
.products_area .products_image_slider{
	margin-bottom: 35px;
}
.products_area .products_image{
	width: 48%;
}
.products_area .thumbnail .slick-track {
  transform: unset !important;
}
.products_area .thumbnail-img{
	width: 138px;
  cursor: pointer;
}
.products_area .thumbnail-img + .thumbnail-img{
	margin-left: 1%;
}
.products_area .products_image_thumbnail{
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.slick-slide{
	height: auto;
}

/* slide */

.products_image_slider{
  position: relative;
  margin: 0;
  padding: 0;
}
.products_image_slider .slick-img{
  position: relative;
  height: 432px;
}
.products_image_slider .slick-img img{
	width: auto;
	max-height: 100%;
	margin: auto;
}
.products_image_slider > .slick-list,
.products_image_slider > .slick-list > .slick-track,
.products_image_slider > .slick-list > .slick-track > .slick-slide > div {
  position: relative;
  height: 100%;
}

/* products_image_thumbnail */

.products_image_thumbnail {
  position: relative;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.products_image_thumbnail .thumbnail-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 23.6273%;
  height: 100%;
  margin: 0.5%;
  padding: 0;
}
.products_image_thumbnail .thumbnail-img::before {
  display: block;
  padding-top: 70%;
  content: "";
}
.products_image_thumbnail .thumbnail-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
.products_image_thumbnail .current::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.5;
  background: #000;
}

.products_area .products_info{
	width: 48%;
}
.products_area .products_info h2{
	margin-bottom: 1em;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.5;
}
.products_area .products_info .tags{
	display: flex;
	flex-wrap: wrap;
}
.products_area .products_info .tags li{
	display: flex;
  justify-content: center;
  align-items: center;
  height: 2em;
  padding: 0 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.3rem;
  color: #fff;
  font-weight: bold;
  background: #08467F;
  border-radius: 2px;
}
.products_area .products_info table{
	width: 100%;
	border-collapse:  collapse;
	margin-top: 30px;
}
.products_area .products_info table th{
	width: 10em;
	padding: 1em;
	font-size: 1.6rem;
	font-weight: 500;
	background: #F6F6F6;
	border: 1px solid #E6E6E6;
}
.products_area .products_info table td{
	width: calc(100% - 10em);
	padding: 1em;
	font-size: 1.6rem;
	font-weight: normal;
	background: #fff;
	border: 1px solid #E5E5E5;
}
.info_box{
	margin-top: 55px;
}
.info_box h3{
	display: flex;
	align-items: center;
	width: 100%;
	height: 3em;
	padding: 0 1em;
	font-size: 2.2rem;
	color: #fff;
	font-weight: bold;
	background: #1E3F7B;
	border-radius: 10px 10px 0 0;
}
.info_box .in{
	width: 100%;
	margin-left: 0;
	padding: 1.5em 2em 2em;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.9;
	background: #fff;
	border: 2px solid #1E3F7B;
	border-radius: 0 0 10px 10px;
}
.info_box li{
	font-size: 1.5rem;
	font-weight: normal;
	line-height: 2.1;
}
.info_box ul{
	margin-left: 1em;
}
.info_box ol{
	margin-left: 1.5em;
}
.info_box ul li{
	list-style-type: disc;
}
.info_box ol li{
	list-style-type: decimal;
}
.info_box blockquote{
	padding: 1em;
	border: 1px double #2C2B2B;
}
#prev_next{
	justify-content: center;
	align-items: center;
	margin-top: 70px;
}
#prev_next li a span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 47px;
	height: 47px;
	background: #1E3F7B;
	border-radius: 50%;
}
#prev_next li a span:before{
	content: "";
	position: absolute;
	display: inline-block;
	height: 6px;
	width: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	opacity: 1;
}
#prev_next li:nth-child(1) a span:before{
	margin-left: 5px;
	transform: rotate(45deg);
}
#prev_next li:nth-child(3) a span:before{
	margin-right: 5px;
	transform: rotate(225deg);
}
#prev_next li:nth-child(2) a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 3em;
	margin: 0 30px;
	font-size: 1.7rem;
	color: #08467F;
	font-weight: bold;
	background: #fff;
	border: 2px solid #08467F;
	border-radius: 32px;
}

@media screen and (max-width: 840px){
	.products_area{
		padding: 5% 0;
	}
	.products_area .flex{
		display: block;
	}
	.products_area .products_image_slider{
		margin-bottom: 5%;
	}
	.products_image_slider .slick-img{
	  height: 280px;
	}
	.products_area .products_image{
		width: 100%;
		margin-bottom: 10%;
	}
	.products_area .thumbnail-img{
		min-width: 78px;
	}
	.products_area .products_info{
		width: 100%;
	}
	.products_area .products_info h2{
		font-size: 2rem;
	}
	.products_area .products_info table{
		margin-top: 5%;
	}
	.products_area .products_info table th{
		font-size: 1.5rem;
	}
	.products_area .products_info table td{
		font-size: 1.4rem;
	}
	.info_box{
		margin-top: 5%;
	}
	.info_box h3{
		font-size: 1.8rem;
	}
	.info_box .in{
		padding: 1em;
		font-size: 1.5rem;
	}
	#prev_next{
		display: flex;
		margin-top: 10%;
	}
	#prev_next li a span{
		width: 32px;
		height: 32px;
	}
	#prev_next li:nth-child(2) a{
		width: 220px;
		margin: 0 1em;
		font-size: 1.4rem;
	}
}


/*.shop_info*/
.shop_info{
	padding: 10% 0 70px;
}
.shop_info h2{
	position: relative;
  padding-bottom: 0.8em;
  margin-bottom: 1.5em;
  font-size: 4.5rem;
  color: #000;
  font-weight: bold;
  text-align: center;
}
.shop_info h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 1.5em;
  height: 3px;
  margin: auto;
  background: #1E3F7B;
}
.shop_info .flex{
	position: relative;
	margin-bottom: 100px;
}
.shop_info figure{
    position: absolute;
    top: 0;
    right: 52%;
    width: 50vw;
    max-width: 800px;
}
.shop_info figure img{
	width: 100%;
}
.shop_info .in{
    width: 50%;
    padding: 0 30px;
    margin-left: 50%;
}
.shop_info .in p{
	font-size: 1.8rem;
	color: #1E3F7B;
	font-weight: bold;
}
.shop_info .in h3{
	margin-bottom: 0.8em;
	font-size: 4rem;
	color: #1E3F7B;
	font-weight: bold;
}
.shop_info .in dl{
	position: relative;
	display: flex;
	padding: 30px 0;
}
.shop_info .in dl:after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image : linear-gradient(to right, #b4b4b4 1px, transparent 1px);
	background-size: 4px 1px;
	background-repeat: repeat-x;
	background-position: left bottom;
}
.shop_info .in h3 + dl:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image : linear-gradient(to right, #b4b4b4 1px, transparent 1px);
	background-size: 4px 1px;
	background-repeat: repeat-x;
	background-position: left bottom;
}
.shop_info .in dl dt{
	width: 7em;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.8;
}
.shop_info .in dl dd{
	width: calc(100% - 7em);
	font-size: 1.7rem;
	font-weight: normal;
	line-height: 1.8;
}
.shop_info .in dl dd .btn a{
	width: 185px;
	height: 3.2em;
	margin: 16px 0 0;
	font-size: 1.4rem;
	font-weight: 500;
	box-shadow: none;
}
.shop_info .in dl dd .btn a:before{
	display: none;
}
.shop_info .btn a{
	margin: 55px auto 0;
}

@media screen and (max-width: 840px){
	.shop_info{
		padding: 10% 0;
	}
	.shop_info h2{
		font-size: 2.5rem;
	}
	.shop_info .flex{
		display: block;
		margin-bottom: 10%;
	}
	.shop_info figure{
	    position: relative;
	    top: auto;
	    right: auto;
	    width: 100%;
	    max-width: none;
	    margin-bottom: 5%;
	}
	.shop_info .in{
	    width: 100%;
	    padding: 0 5%;
	    margin-left: 0;
	}
	.shop_info .in p{
		font-size: 1.5rem;
		text-align: center
	}
	.shop_info .in h3{
		font-size: 2.4rem;
	}
	.shop_info .in dl{
		padding: 20px 0;
	}
	.shop_info .in dl dt{
		font-size: 1.5rem;
	}
	.shop_info .in dl dd{
		font-size: 1.5rem;
	}
	.shop_info .in dl dd .btn a{
		width: 100%;
		margin: 1em 0 0;
		font-size: 1.4rem;
	}
	.shop_info .map{
		margin-bottom: 20%;
	}
	.shop_info .map iframe{
		height: 280px !important;
	}
	.shop_info .map .btn a{
		width: 70%;
		height: 3em;
		margin: 0 auto;
	}
}

/*sec02*/
#sec02{
	position: relative;
	padding: 100px 0;
}
#sec02:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	margin: auto;
	background: url(../img/index/bg02.jpg) repeat center top;
	z-index: -1;
}
#sec02 h2{
	position: relative;
  padding-bottom: 0.8em;
  margin-bottom: 1.5em;
  font-size: 4.5rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
#sec02 h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 1.5em;
  height: 3px;
  margin: auto;
  background: #fff;
}
#sec02 ul.newarrival_slider{
	padding-bottom: 10px;
	overflow: hidden;
}
#sec02 ul.newarrival_slider li{
	max-width: 340px;
	margin: 0 10px;
}
#sec02 ul.newarrival_slider li a{
	position: relative;
	display: block;
	padding: 10px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 8px 0px rgba(0, 0, 0, 0.16);
}
#sec02 ul.newarrival_slider li a:before{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	border: 4px solid transparent;
	border-radius: 5px;
	transition: border-color 0.2s;
	z-index: 2;
}
#sec02 ul.newarrival_slider li a:hover{
	opacity: 1;
}
#sec02 ul.newarrival_slider li a:hover:before {
	border-color: #FED63B;
}
#sec02 ul.newarrival_slider li .shop{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 2.3em;
	padding: 0 1em;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	background: #FED63B;
	border-radius: 5px 0 5px 0;
}
#sec02 ul.newarrival_slider li .in{
	padding: 0 10px 16px;
}
#sec02 ul.newarrival_slider li .date{
	margin: 1em 0;
	font-size: 1.4rem;
	color: #B9B9B9;
}
#sec02 ul.newarrival_slider li h3{
	font-size: 1.5rem;
	line-height: 1.6;
	text-decoration: underline;
}
#sec02 ul.newarrival_slider li img{
	height: auto;
}
#sec02 .slick-prev,
#sec02 .slick-next{
	display: block;
	left: 0;
	right: 0;
	width: 64px;
	height: 64px;
	margin: 0 auto;
	background: #CE1223;
	border-radius: 50%;
	z-index: 3;
}
#sec02 .slick-list{
	overflow: unset;
}
#sec02 .slick-prev{
	transform: translateX(-545px) translateY(-50%);
}
#sec02 .slick-next{
	transform: translateX(545px) translateY(-50%);
}
#sec02 .slick-prev:hover,
#sec02 .slick-next:hover{
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#sec02 .slick-prev:before,
#sec02 .slick-next:before{
	content: "";
  display: inline-block;
  width: 14.5px;
  height: 9.32px;
  opacity: 1;
}
#sec02 .slick-prev:before{
  background: url(../img/common/icon_btn_slide_prev.svg) no-repeat center center;
  background-size: cover;
  transform: rotate(180deg);
}
#sec02 .slick-next:before{
  background: url(../img/common/icon_btn_slide_next.svg) no-repeat center center;
  background-size: cover;
}
#sec02 .btn a{
	width: 400px;
	margin: 60px auto 0;
	color: #fff;
	background: #254D9E;
	border: 2px solid #fff;
}
#sec02 .btn a:hover{
	color: #254D9E;
	background: #fff;
}
#sec02 .btn a:before{
	background: url(../img/common/icon_btn_arrow02_on.svg) no-repeat center center;
	background-size: cover;
}
#sec02 .btn a:hover:before{
	background: url(../img/common/icon_btn_arrow02.svg) no-repeat center center;
	background-size: cover;
}
#sec02 .tag_box{
	max-width: 1100px;
	padding: 35px 40px 25px;
	margin: 42px auto 0;
	background: #00A8DB;
	border: 2px dashed #01467F;
	border-radius: 15px;
}
#sec02 .tag_box ul{
	display: flex;
	flex-wrap: wrap;
}
#sec02 .tag_box ul li{
	margin-right: 10px;
	margin-bottom: 10px;
}
#sec02 .tag_box ul li a{
	display: flex;
	justify-content: center;
	align-items: center; 
	height: 2em;
	padding: 0 0.8em;
	font-size: 1.4rem;
	color: #01467F;
	background: #fff;
	border-radius: 14px;
}
#sec02 .tag_box ul li a:before{
	content: "#";
	margin-right: 0.5em;
}
#sec02 .tag_box ul li a:hover{
	color: #fff;
	background: #08467F;
	opacity: 1;
}

@media screen and (max-width: 840px){
	#sec02{
		padding: 70px 0 50px;
	}
	#sec02 h2{
	  font-size: 2.5rem;
	}
	.tit_slider{
		top: 60px;
	}
	#sec02 ul.newarrival_slider li{
		width: 286pxpx;
	}
	#sec02 ul.newarrival_slider li a{
		box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.16);
	}
	#sec02 ul.newarrival_slider li a:before{
		width: calc(100% - 4px);
		height: calc(100% - 4px);
		border: 2px solid transparent;
	}
	#sec02 ul.newarrival_slider li .date{
		margin: 1em 0 0.5em;
	}
	#sec02 ul.newarrival_slider li h3{
		font-size: 1.5rem;
		line-height: 1.6;
	}
	#sec02 .slick-prev,
	#sec02 .slick-next{
		width: 38px;
		height: 38px;
	}
	#sec02 .slick-prev{
		transform: translateX(-170px) translateY(-50%);
	}
	#sec02 .slick-next{
		transform: translateX(170px) translateY(-50%);
	}
	#sec02 .btn a{
		width: 75%;
		margin: 30px auto 0;
		color: #254D9E;
		background: #fff;
	}
	#sec02 .btn a:before{
		background: url(../img/common/icon_btn_arrow02.svg) no-repeat center center;
		background-size: cover;
	}
	#sec02 .tag_box{
		padding: 20px 5% 12px;
		margin: 30px 5% 0;
	}
	#sec02 .tag_box ul li{
		margin-right: 8px;
		margin-bottom: 8px;
	}
	#sec02 .tag_box ul li a{
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 380px){
	#sec02 .slick-prev{
		transform: translateX(-150px) translateY(-50%);
	}
	#sec02 .slick-next{
		transform: translateX(150px) translateY(-50%);
	}
}