@charset "utf-8";

/* container */
.container {
	width: 100%;
	padding: 0 30px;
}
@media screen and (min-width: 640px) {
	.container {
		width: 100%;
		max-width: 50%
	}
}
@media screen and (min-width: 900px) {
	.container {
		min-width: 900px;
		max-width: 1300px;
		margin: auto;
		padding: 0 25px;
	}
}


/* column */
.row {}
.row .column:not(:first-child) {
/*	margin-top: 20px; */
}
.row .column img {
	width: 100%;
}
@media screen and (min-width: 900px) {
	.row {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-align-content: flex-start;
		-ms-flex-line-pack: start;
		align-content: flex-start;
		margin: 10px 60px;
	}
	.row .column {
		padding: 0 50px;
	}
	.row .column:not(:first-child) {
		margin-top: 0;
	}
	.row .column.column-33 {
		width: 33%;
	}
	.row .column.column-75 {
		width: 75%;
	}
	.row .column.column-50 {
		width: 50%;
	}
	.row .column.column-25 {
		width: 25%;
	}
	.row .column.column-22 {
		width: 22%;
	}
	.row .column img {
		width: 110%;
	}
}


/* disp */
.disp__row {
	display: table;
}
.disp__row > * {
	display: table-cell;
	vertical-align: middle;
	overflow-wrap: break-word
}
.disp__sp {display: block;}
span.disp__sp {display: inline;}
.disp__pc {display: none;}
@media screen and (min-width: 900px) {
	.disp__sp {display: none;}
	.disp__pc {display: block;}
	span.disp__pc {display: inline;}
}

/* txt */
.txt {
	margin-top: 40px;
}


/* btn */
.btn {
	position: relative;
	z-index: 1;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	line-height: 1.1;
	padding: 10px 15px;
	text-decoration: none;
	color: #fff;
	background: rgba(0,0,0,.5);
}
.btn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 0px;
	height: 100%;
	background: rgba(0,0,0,.35);
	background: #333;
	-webkit-transition: all .15s ease-in-out;
	   -moz-transition: all .15s ease-in-out;
	    -ms-transition: all .15s ease-in-out;
	     -o-transition: all .15s ease-in-out;
	        transition: all .15s ease-in-out;
}
.btn:hover {
	color: #fff;
}
.btn:hover:before {
	width: 100%;
}

.btn.btn_gold {
	background: rgba(38,96,153,.6);
	-webkit-background-size: auto 50px;
	background-size: auto 50px;
	color: #fff;
}



/* color */
.gold {
	color: #efc17c;
}


/* line */
.line {
	border-left: 1px solid #fff;
	padding-left: 20px;
	margin-bottom: 20px;
    width: 40%;
    color: #000;
    animation-name: translate;
    animation-duration: 2s;
}

@keyframes translate {
  0%    { transform:  translate(-100%, 0%);   } 
  20%   { transform:  translate(-80%, 0%);   }
  40%   { transform:  translate(-60%, 0%);   }
  60%   { transform:  translate(-40%, 0%);   }
  80%   { transform:  translate(-20%, 0%);   }
  100%  { transform:  translate(0%, 0%);   }
}

.line.line-gold {
	border-left-color: #000000;
}


/* attention */
.attention {
	margin-top: 30px;
}
.attention .attention__title {
	margin-top: 0;
	font-size: 18px;
}
.attention .attention__column {
	margin-top: 20px;
	padding: 22px 20px 20px;	
	border: 1px solid #000000;
	font-size: 15px;
	line-height: 1.7;
}
@media screen and (min-width: 900px) {
	.attention .attention__column {
		padding: 22px 40px 20px;	
	}
}


/* lists */
.lists {}
.lists li {
	position: relative;
	margin-top: 15px;
	line-height: 1.5
}

.lists li::before {
	content: "■";
	color: #333;
	margin-right: 6px;
} 

.lists.lists__link {}
.lists.lists__link li p {
	margin-top: 15px;
}
@media screen and (min-width: 900px) {
	.lists.lists__link li {
		display: table;
	}
	.lists.lists__link li > * {
		display: table-cell;
		vertical-align: top;
	}
	.lists.lists__link li a {
		width: 10em;
	}
	.lists.lists__link li p {
		margin: 0;
		padding-left: 15px;
	}
}


/* tag */
.tag {
	min-width: 90px;
	height: 25px;
	padding: 3px 5px 0;
	text-align: center;
	font-size: 15px;
	background: #fff;
	border-radius: 30px;
	color: #333;
	line-height: 1;
	font-weight: bold;
}
.tag.tag__discount {
	background: url(../images/pat_gold.png) 0 0 no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}


/* lead */
.lead {
	margin: 70px auto 20px;
}


/* thumbnail */
.thumbnail + p {
	padding-top: 30px;
}


/* - arrow */
.slider__arrow {
	display: none;
	position: absolute;
	z-index: 10;
	top: 50%;
	margin-top: -25px;
	width: 70px;
	height: 50px;
	/*background: rgba(0,0,0,.75);*/
	padding-top: 4px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
.slider__arrow.swiper-button-disabled {
	opacity: .2;
	cursor: default;
}
.slider__arrow.slider__prev {
	left: 15px;
}
.slider__arrow.slider__next {right: 15px;}
.slider__arrow:not(.swiper-button-disabled):hover {
	opacity: .5;
}
@media screen and (min-width: 900px) {
	.slider__arrow {
		display: block;
	}
	.slider__arrow.slider__prev {
		left: 0;
		height: 30px;
		padding-left: 20px;
	}
	}
	.slider__arrow.slider__next {
		right: 0;
		height: 30px;
		padding-left: 30px;
	}
}