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

/* contents */
/* ============================================ */

#coupon .cpn_text{
	line-height: 1.7;
}
#coupon .pen {
  background: linear-gradient(transparent 40%, #f7e374 40%);
  font-weight: bold;
}
#coupon .red{
	color: #CC0F12;
}
 #coupon .cpn_text .attend{
 	font-size: 14px;
 }
#coupon .cpn_img{
 	max-width: 480px;
	margin: 0 auto 20px;
 }
 #coupon .cpn_img img{
 	width: 100%;
 }

 
 #coupon h1 {
  position: relative;
  padding: 0.8em 0.8em 1em;
  background: #de7c37;
  color: #fff;
  margin: 40px auto 20px;
  max-width: 480px;
  font-size: 23px;
  text-align: center;
  font-weight: 700;

}
 #coupon h1::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #6c3a16;
}
 #coupon h1::after {
  position: absolute;
  content: '';
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-left: solid 20px #6c3a16;
}

 #coupon .faq{
	text-align: center;
	margin-top: 50px;
}
 #coupon .faq_child{
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  font-size: 23px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
 #coupon .faq_child:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 50px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #b19f97;
}

 #coupon .coupon {
  display: flex;
  border: 2px solid #333;
  width: 100%;
  max-width: 700px;
  background: #fffbf2;
  margin: 30px auto;
}
 #coupon .coupon .awardribbon_content {
	display: none;
}
 #coupon .price {
  font-size: 36px;
  font-weight: 900;
  color: #aa130a;
  margin-bottom: 16px;
}
 #coupon .date {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
 #coupon .left {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 40px 20px;
}
 #coupon .left .overview{
	margin-bottom: 8px;
	font-size: 18px;
}
 #coupon .left .number{
	margin-top: 20px;
	padding: 10px;
	background: #333;
	color: #fff;
	font-weight: 900;
	font-size: 18px;
	letter-spacing: 0.05em;
}
 #coupon .right {
  position: relative;
  display: flex;
  width: 200px;
  padding: 40px 10px;
  border-left: 2px dashed #333;
  justify-content: center;
  text-align: center;
}
 #coupon .right-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
 #coupon .right-inner .cpn_cord_title{
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
line-height: 1.5;
}
 #coupon .right-inner .cpn_cord{
	font-size: 36px;
	font-weight: 900;
	margin-top: 10px;
}
 #coupon .right-inner .sub{
	font-size: 15px;
	margin-top: 16px;
	line-height: 1.5;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* circle-css */

 #coupon .right::before,
 #coupon .right::after {
  position: absolute;
  border: 2px solid #333;
  display: block;
  content: "";
  border-radius: 100%;
  background: #fff;
  box-sizing: border-box;
  left: -12px;
  width: 22px;
  height: 22px;
}
 #coupon .right::before {
  top: -11px;
}
 #coupon .right::after {
  bottom: -11px;
}
 #coupon .right-inner::before,
 #coupon .right-inner::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 100%;
  background: #fff;
  z-index: 1;
  width: 24px;
  height: 24px;
  left: -13px;
}
 #coupon .right-inner::before {
  top: -19px;
}
 #coupon .right-inner::after {
  bottom: -19px;
}

 #coupon summary {
	list-style: none;
	position: relative;
	margin-bottom: 10px;
	padding: 20px 70px 20px 30px;
	cursor: pointer;
	background-color: #f4d5c6;
	line-height: 1.5;
}

 #coupon summary::-webkit-details-marker {
	display: none;
}

 #coupon summary:hover,
details[open] summary {
	background-color: #dbaa93;
}

 #coupon summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: transform 0.5s;
	font-size: 30px;
}
 #coupon summary .summary_Q{
	font-size: 22px;
	font-weight: 900;
	margin-right: 5px;
}

 #coupon details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

 #coupon .answer {
	padding: 20px 30px;
	line-height: 1.7;
}
 #coupon .answer a{
	color: #85513b;
}
 #coupon .answer img{
	max-width: 480px;
	margin: 0 auto 10px;
	width: 100%;
}


 #coupon details[open] .answer {
	animation: fadein 0.5s ease;
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

 #coupon .button {
  	max-width: 360px;
  	margin: 4% auto 0;
}
 #coupon a.btn_more {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 100%;
  	height: 80px;
  	position: relative;
  	background: #85513b;
  	border-radius: 5px;
  	box-sizing: border-box;
  	padding: 0 45px 0 25px;
  	color: #fff;
  	font-size: 18px;
	font-weight: 600;
  	line-height: 1.3;
  	text-align: left;
  	text-decoration: none;
  	transition-duration: 0.3s;
	letter-spacing: 0.05em;
}
 #coupon a.btn_more:before {
  	content: '';
  	width: 10px;
  	height: 10px;
  	border: 0;
  	border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
  	transform: rotate(45deg);
  	position: absolute;
  	top: 50%;
  	right: 25px;
  	margin-top: -5px;
}
 #coupon a.btn_more:hover {
  text-decoration: none;
  opacity: 0.6;
}
 #coupon a.btn_more .btn_txt{
	font-size: 14px;
}


@media only screen and (max-width: 767px) {
 #coupon h1 {
  padding: 1em 0.8em;
  max-width: 100%;
}
 #coupon .coupon {
  position: relative;
  display: block;
  width: 98%;
  border-radius: 10px;
}
 #coupon .coupon.cpn01 {
  border: 8px solid;
  border-image: linear-gradient(90deg, #daa520 0%, #fff9e6 50%, #daa520 100%);
  border-image-slice: 1;
}
 #coupon .coupon.cpn02 {
  border: 8px solid;
  border-image: linear-gradient(90deg, #afafb0 0%, #fff 50%, #afafb0 100%);
  border-image-slice: 1;
}
 #coupon .coupon.cpn03 {
  border: 8px solid;
  border-image: linear-gradient(90deg, #ab5226 0%, #fcefea 50%, #ab5226 100%);
  border-image-slice: 1;
}
 #coupon .coupon.cpn04 {
  border: 8px solid;
  border-image: linear-gradient(90deg, #e79999 0%, #fbe3e3 50%, #e79999 100%);
  border-image-slice: 1;
}
 #coupon .coupon .awardribbon_content {
display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  }
 #coupon .coupon .awardribbon {
  display: inline-block;
  position: absolute;
  padding: 12px 0;
  left: -24px;
  top: 20px;
  width: 200px;
  background: #daa520;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
 #coupon .coupon .awardribbon_content_sub {
display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  }
 #coupon .coupon .awardribbon_sub {
  display: inline-block;
  position: absolute;
  padding: 12px 0;
  right: -24px;
  bottom: 20px;
  width: 200px;
  background: #daa520;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
 #coupon .coupon .awardribbon.silver,
 #coupon .coupon .awardribbon_sub.silver{
	background: #afafb0;
	box-shadow: 0 0 0 2px #afafb0;
}
 #coupon .coupon .awardribbon.bronze,
 #coupon .coupon .awardribbon_sub.bronze{
	background: #ab5226;
	box-shadow: 0 0 0 2px #ab5226;
}
 #coupon .coupon .awardribbon.normal,
 #coupon .coupon .awardribbon_sub.normal{
	background: #e79999;
	box-shadow: 0 0 0 2px #e79999;
}


 #coupon .left{
	padding:40px 20px 30px;
}
 #coupon .right {
	width: 100%;
	border-top: 2px dashed #333;
	border-left:none;
	padding:40px 20px 30px;
}

/* circle-css */

 #coupon .right::before,
 #coupon .right::after {
  display: none;
}
 #coupon .right-inner::before,
 #coupon .right-inner::after {
  display: none;
}

 #coupon .button {
  	max-width: 100%;
  	margin: 4% auto 0;
}


}



