.products_ttl{
	border-bottom: 3px solid #329637;
	padding-bottom: 10px;
	margin-bottom: 40px;
}
.products_ttl h3{
	font-size: 24px;
}
.products_ttl ul.ico_list li img{
	max-width: 40px;
	margin-right: 5px;
}

div.detail{
	flex-wrap: nowrap;
	align-items: flex-start;
}
div.photo{
	width: 30%;
	max-width: 380px;
	margin-right: 20px;
}
div.photo .thumb{
	justify-content: flex-start;
}
div.photo .main figure,
div.photo .thumb figure{
	position: relative;
  width: 100%;
  border: 1px solid #cccccc;
}
div.photo .main figure:before,
div.photo .thumb figure:before{
  content: "";
  display: block;
  padding-top: 100%;
}
div.photo .main figure{
	margin-bottom: 10px;
	cursor: zoom-in;
}
div.photo .thumb figure{
	width: calc(100% / 3 - 5px);
}
div.photo .thumb figure:not(:last-child){
	margin-right: 7px;
}
div.photo figure img{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  padding: 5px;
}
div.text{
	width: 70%;
}
div.text p.catch{
	font-size: 20px;
	font-weight: 400;
	line-height: 1.8;
}
div.text p.description{
	font-size: 15px;
	font-weight: 100;
	line-height: 2.0;
	margin-bottom: 15px;
}
div.text .ico_sale{
	display: inline-block;
	color: #fff;
  padding: 4px 15px;
  background: #d21923;
  margin-bottom: 20px;
}
div.text .price,
div.text .price span{
	font-weight: lighter;
}
div.text .price .bold{
	font-size: 200%;
	font-weight: bold;
}
div.text .price .bold.red{
	color: #d21923;
}
div.text .price .origin{
	text-decoration: line-through;
}
div.text ul.tag{
	justify-content: flex-start;
}
div.text ul.tag li{
	background-color: #979797;
	color: #fff;
	font-size: 15px;
	padding: 4px 15px;
	font-weight: 300;
	margin-bottom: 10px;
	border-radius: 15px;
}
div.text ul.tag li:not(:last-child){
	margin-right: 10px;
}
div.text table {
	width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #b4b4b4;
  margin-bottom: 30px;
}
div.text table th{
	width: 20%;
	min-width: 160px;
	text-align: left;
}
div.text table th,
div.text table td{
	padding: 25px;
	font-weight: 100;
	border-bottom: 1px solid #b4b4b4;
	font-size: 15px;
	overflow-wrap : break-word;
	word-break: break-all;
}
div.text table th{
	background: #f2f2f2;
}
div.text p.option{
	margin-bottom: 10px;
	padding-left: 10px;
	border-left: 5px solid;
	color: #4c4c4c;
	line-height: 1.4;
}
div.text .option_list{
	justify-content: flex-start;
}
.radio_btn .circle{
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #dcdcdc;
  vertical-align: middle;
  margin-right: 10px;
}
input[type="radio"].color{
	display: none;
}
input[type="radio"].color + label{
	display: block;
	border: 2px solid #dcdcdc;
	font-size: 14px;
	padding: 15px 20px;
	margin-bottom: 10px;
	cursor: pointer;
	background: #fff;
}
input[type="radio"].color:checked + label {
  	border: 2px solid #329637;
}
div.text .option_list .radio_btn:not(:last-child){
	margin-right: 10px;
}
a.next_btn{
	background: #329637;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-size: 120%;
	position: relative;
}
a.next_btn:hover{
	background: #322c2d;
	transition: .3s;
}
a.next_btn:after{
	content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border-top: solid 1px currentColor;
    border-right: solid 1px currentColor;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
a.next_btn.soldout{
	background: #b4b4b4;
	pointer-events: none;
}
.comment{
	background: #fff;
	border-radius: 5px;
	padding: 30px;
	max-width: 650px;
	margin: 0 auto;
}
.comment_mt{
	margin-top: 60px;
}
.video_area{
	position: relative;
	width: 100%;
  padding-top: 56.25%;
  margin-right: auto;
  margin-left: auto;
}
.video_area iframe{
	position: absolute;
  top: 0;
  right: 0;
	width: 100%;
  height: 100%;
}
@media screen and (max-width: 760px) {
	div.detail{
		flex-direction: column;
	}
	div.photo,
	div.text{
		width: 100%;
	}
	div.photo{
		margin: 0 auto 40px;
	}
}
@media screen and (max-width: 520px) {
	div.text table th,
	div.text table td{
		padding: 15px 10px;
		font-size: 14px;
	}
	div.text table th{
		min-width: 120px;
	}
}
section.promo .inr{
	max-width: 750px;
}

#modal_overlay{
	display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 3;
}
#modal_overlay figure:before{
  content: "";
  display: block;
  padding-top: 100%;
}
#modal_overlay figure img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  padding: 5px;
}
#modal_overlay figure{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 700px;
  width: auto;
  max-height: 700px;
  height: auto;
  padding: 10px;
  background: #fff;
}

.choise_area{
	padding: 30px 40px;
}
.size_area{
	justify-content: flex-start;
}
.size_area .radio_btn:not(:last-child){
	margin-right: 10px;
}
.size_area .radio_btn:last-child input[type="radio"].size + label{
	padding: 23px 15px;
}

input[type="radio"].size + label{
	display: block;
  border: 2px solid #dcdcdc;
  font-size: 14px;
  padding: 10px 15px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
  line-height: 2.0;
}
input[type="radio"].size{
	display: none;
}
input[type="radio"].size:checked + label {
  	border: 2px solid #329637;
}
input[type="radio"].size + label span{
	display: block;
	color: #d21923;
	font-weight: bold;
}
input[type="radio"].size + label span.tax{
	display: inline;
	font-size: 75%;
	margin-left: -0.3rem;
	font-weight: normal;
	color: #000;
}
@media screen and (max-width: 760px) {
	.choise_area{
		padding: 30px 10px;
	}
}