@charset "utf-8";
/* CSS Document */

body {font-size: 14px;}

a {color: inherit;text-decoration: none;transition: 0.5s;}
a:hover {color:#BFB6B0;text-decoration: underline;}

@media (min-width: 768px) {
	.pn {
		display: none;
	}
	.sn {
		display: block ;
	}
}

.wrapper {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding: 60px 10px 60px;
}

.wrapper .container {
	margin-top:0;
	margin-bottom: 10px;
}

#form_wrap,
.info {
	width: 96%;
	margin: 0 auto;
}

.info p {
	margin: 0 20px 10px;
	line-height: 1.8em;
}

/* content: title */
.wrapper h1 {
	text-align: center;
	color: #796baf;
	font-size: 2rem;
    letter-spacing: 1px;
	line-height: 1.1em;
	font-weight: 600;
	vertical-align: baseline;
}

.txt {
	width: 90%;
	margin: 30px auto;
}
.txt p {
	width: 100%;
	margin:0 auto 15px;
	line-height: 2.0em;
}

h3 {
	width: 100%;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
h3 span {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin: 0 2.5em;
	padding: 0 1em;
	background-color: #fff;
	text-align: left;
}

h3::before {
	position: absolute;
  	top: 50%;
  	z-index: 1;
  	content: '';
  	display: block;
  	width: 100%;
  	height: 1px;
  	background-color: #796baf;
}

h4 {
	font-size: 1em;
	line-height: 1.2em;
	min-height: 80px;
}
h4.ht {
	height: 110px;
}

h4 .atn {
	font-size:0.8em;
}

.box {
	position: relative;
    margin: 2em 0;
    padding: 25px 10px 7px;
    border: solid 2px #796baf;
	font-size:0.86em;
}
.box .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    background: #796baf;
    color: #ffffff;
    font-weight: bold;
}
.box p {
	margin: 10px 0 0;
	padding: 0;
	line-height: 2em;
}

.shop_form {
	margin: 0 auto 50px;
    width: 96%;
    max-width: 600px;
}
.shop_form p {
	line-height: 2.0em;
}
.form {
	margin-top: 35px;
}
.item_form {
	margin-top: auto;
	padding-top: 20px;
}

.form > dt {
    padding-bottom: 8px;
	line-height: 1.5em;
}
.form_input {
	display: inline-block;
    padding: 0 1em;
    border: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    width: 96%;
    height: 60px;
    background: #eff0f2;
    outline: none;
}
.form_input.inshort {
	width: 38%;
}
.form_textarea {
	display: block;
    padding: 1em;
    border: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    width: 96%;
    min-height: 209px;
    background: #eff0f2;
    outline: none;
    resize: vertical;
}
select::-ms-expand {
	display: none;
}
.select_wrap,
.item_select_wrap {
	position: relative;
	display: inline-block;
}
.select_wrap {
	width: 38%;
}
.item_select_wrap {
	width: 100px;
}
.select_wrap::after,
.item_select_wrap::after {
	content: '';
  	width: 6px;
  	height: 6px;
  	font-family: "Font Awesome 5 Free";
	content: '\f107';
	font-weight: 600;
  	position: absolute;
  	top: 50%;
  	right: 13px;
  	margin-top: -4px;
}
.select_wrap:hover,
.item_select_wrap:hover {
	color:#BFB6B0;
}
.form_select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0 1em;
	line-height: 2em;
	border: none;
    border-radius: 4px;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
	width: 100%;
    height: 60px;
    background: #eff0f2;
    outline: none;
}
.form_select option {
	padding: 2px;
}
.form_button {
	width: 100px;
	height: 40px;
	margin-right: 20px;
}
.form_button_wrap {
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.form_input::placeholder {
	color: #ccc;
	font-size: 1.2em;
}
.formspan {
	margin-left: 10px;
    color: #ff7f7f;
    font-size: 0.8em;
}
.formspan_r {
	color:#f00;
	font-weight: bold;
	font-size: 0.9em;
}

/* 商品リスト */

.product_list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	margin: 20px 0 2em;
	justify-content: center;
	padding: 0;
}
.product_list > div {
	min-width: 0;
	max-width: 180px;
	flex-basis: 25%;
	background: #fff;
	border: thin solid #ddd;
	padding: 1em;
	margin: 8px;
}
@media (max-width: 766px) {
	.product_list > div {
		max-width: 220px;
		min-width: 140px;
		padding:10px;
		margin: 4px;
	}
}

.item {
	display: flex;
	flex-direction: column;
}
.item img {
    max-width: 100%;
	width: auto;
	margin-top: 6px;
    margin-bottom: 1em;
	flex-shrink: 0;
	object-fit: contain;
	z-index: 999;
}
.item p {
    font-size: 0.7em;
    padding: 0 0 8px;
	margin-bottom: 10px;
	line-height: 1.5em;
}
.item p a {
	color: #f00;
}
.price {
	font-size: 1em;
	font-weight: bold;
}
.teika {
	font-size: 0.8em;
	line-height:2em;
	color: #666;
}
.teika span {
	text-decoration: line-through;
}
.ko {
	font-size: 0.7em;
	margin-left: 6px;
}

.new_bx,
.renew_bx {
    position: relative;
    padding: 30px;
}
.new_bx::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 45px 45px 0 0;
    border-color: #f00 transparent transparent transparent;
}
.renew_bx::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 45px 45px 0 0;
    border-color: #B421FF transparent transparent transparent;
}
.new_bx::after {
    position: absolute;
    content: "NEW";
    transform: rotate(315deg);
    display: block;
    font-size: 11px;
    white-space: pre;
    color: #fff;
    top: 10px;
    left: 2px;
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}
.renew_bx::after {
    position: absolute;
    content: "Renewal";
    transform: rotate(315deg);
    display: block;
    font-size: 9px;
    white-space: pre;
    color: #fff;
    top: 11px;
    left: 0px;
    text-align: center;
    z-index: 2;
    line-height: 1.0;
}

@media (max-width: 766px) {
	.new_bx h4,
	.renew_bx h4  {
		padding-left: 10px;
	}
}