@charset "utf-8";
/* CSS Document */

/* 2020.0831-sakuma */
@import url(base-style.css);
@import url(google-fonts-style.css);
@import url(fontawesome-style.css);

/* root
-------------------------*/
:root {
--hogehoge: hoge;
--spring: #f5b6b9;
--summer: #82c7d7;
--autumn: #d5c74d;
--winter: #a7c7cf;
--eventColor01: rgba(239, 194, 227, 0.5);
--eventColor02: rgba(0, 212, 202, 0.5);
--eventColor03: rgba(78, 161, 209, 0.5);
}


body {
  background-image: url('../images/back-pattern.jpg');
}

.pc-style {
  display: inline-block;
}
.sp-style {
  display: none;
}
@media screen and (max-width: 660px) {
.pc-style {
  display: none;
}
.sp-style {
  display: inline-block;
}
}

.result-Box {
  max-width: 700px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  padding: 2rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.couponArea {
  width: 100%;
}

.result-Box__result-image img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 0 0 1rem;
}
.couponArea__coupon {
  width: 100%;
  text-align: center;
  background: #cb180f;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.couponArea__coupon strong {
  position: relative;
  top: 0.3rem;
  font-size: 2.0rem;
  letter-spacing: 0.1rem;
}

.couponArea__coupon p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.7rem;
}

.result-Box__result-title {
  color: #cb180f;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  line-height: clamp(2rem, 1.818rem + 0.91vw, 2.5rem);
  letter-spacing: clamp(0.05rem, 0.032rem + 0.09vw, 0.1rem);
  text-align: center;
  border-bottom: dotted 1px #fff;
  margin: 1rem 0 2rem;
  padding: 0 0 1rem;
}

.result-Box__result-text {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  line-height: 2.05rem;
  letter-spacing: clamp(0.05rem, 0.032rem + 0.09vw, 0.1rem);
  margin: 0 0 2rem;
}

.coupon-howto {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  margin: 1rem 0 0;
  padding: 0.5rem 1rem;
}

.couponArea__coupon-notes {
  font-size: 0.75rem;
}

.code-copy__bottan {
  display: block;
  cursor: pointer;
}
.products-link {
  text-align: center;
}
.products-link a {
  display: inline-block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  text-decoration: none;
  background: #cb180f;
  border: solid 1px #fff;
  border-radius: 0.5rem;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* box-shadow */
  box-shadow: 0px 10px 20px 2px rgba(0,0,0,0.4);
}
.products-link a:hover {
  transition: .8s;
  background: #e44434;
  /* box-shadow */
  box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.2);
}

/* ブレイクポイント
-------------------------*/
/*=========================================
〇max-width: 1076px: iPad Pro用
〇max-width: 768px: iPad用
〇max-width: 660px: iPad用
=========================================*/

@media screen and (max-width: 1076px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 860px) {
}
@media screen and (max-width: 768px) {
.result-Box {
  max-width: 100%;
  width: 100%;
  padding: 1rem;
}
}
@media screen and (min-width: 660px) {
}
@media screen and (max-width: 660px) {
}