@charset "utf-8";
/* CSS Document */
/*common
=======================*/
html #main {
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  color: #333333;
  line-height: 1.7;
  margin: 0 auto;
}
#main img {
  vertical-align: top;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
.contents_inner {
  max-width: 1160px;
  margin: 0 auto;
}
section h1, section h2 {
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .spOnly {
    display: none;
  }
}
@media screen and (max-width:767.98px) {
  .pcOnly {
    display: none;
  }
  .contents_inner {
    padding: 0;
  }
}
/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
  .anim_scroll_sp {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s;
  }
}
/*=====================*/
/*mainArea
=======================*/
.mainArea {
  margin-top: 30px;
}
.mainArea h1 {
  margin: 0 auto;
  padding: 0 10px 5px;
  font-size: 2rem;
  line-height: 1.4;
  border-bottom: 2px solid #fff;
  display: inline-block;
}
.mainArea .tagBox {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}
.mainArea .tagBox .tagItem {
  margin-right: 15px;
  margin-bottom: 7px;
  padding: 2px 20px 3px;
  color: #fff;
  font-size: 1.8rem;
  background: #f3746b;
  border-radius: 30px;
}
.mainArea .tagBox .tagItem:last-of-type {
  margin-right: 0;
}
@media screen and (max-width:767.98px) {
  .mainArea {
    margin-top: 0;
  }
  .mainArea h1 {
    font-size: 1.6rem;
  }
  .mainArea .tagBox .tagItem {
    margin-right: 7px;
    padding: 2px 15px 3px;
    font-size: 1.5rem;
  }
}
/*=====================*/
p.caution {
  text-align: center;
  color: #cc0d21;
  font-size: 2.1rem;
  font-weight: 700;
  background-color: #fff;
  padding-bottom: 10px;
}
@media screen and (max-width:767.98px) {
  p.caution {
    font-size: 1.5rem;
  }
}
/*conditionsArea
=======================*/
.conditionsArea {
  overflow: hidden;
}
.conditionsArea .couponInfo {
  position: relative;
}
.conditionsArea .couponInfo .abtag {
  position: absolute;
  width: 80px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2657b0;
  background-color: #fff;
  top: 10px;
  left: 10px;
  text-align: center;
}
.conditionsArea .couponInfo .domtag {
  position: absolute;
  width: 80px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #009B63;
  background-color: #fff;
  top: 10px;
  left: 10px;
  text-align: center;
}
.conditionsArea .abSide .couponInfo_innerBox {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
  padding: 20px;
  color: #fff;
  text-align: center;
  background: #2657b0;
  width: 100%;
}
.conditionsArea .domSide .couponInfo_innerBox {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
  padding: 20px;
  color: #fff;
  text-align: center;
  background: #009B63;
  width: 100%;
}
.conditionsArea .couponInfo_innerBox .titTxt {
  text-align: center;
  width: 100%;
  font-size: 4.2rem;
  line-height: 1;
}
.conditionsArea .couponInfo_innerBox .titTxt .smallTxt {
  font-size: 2.8rem;
}
.conditionsArea h2 {
  margin: 20px 0;
  font-size: 2.4rem;
  text-align: center;
}
.conditionsArea .conditionsWrap {
  margin: 0 auto;
  background-color: #F1F1F1;
  padding: 40px;
}
.conditionsArea .conditionsBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}
.conditionsArea .note_point {
  margin-top: 20px;
}
.conditionsArea .txtBlock {
  margin-top: 25px;
  list-style: none;
  counter-reset: note-count;
  padding-left: 0;
}
.conditionsArea .txtBlock li {
  counter-increment: note-count;
  position: relative;
  padding-left: 38px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 1.4rem;
}
.conditionsArea .txtBlock li::before {
  content: "(※"counter(note-count) ")";
  position: absolute;
  left: 0;
  top: -1px;
}
.conditionsArea .txtBlock a {
  text-decoration: underline;
}
.conditionsArea .txtBlock a:hover {
  text-decoration: none;
}
.conditionsArea .conditionsItem {
  display: flex;
  /*align-items: center;*/
  width: calc((100% - 10px)/2);
  background: #fff;
  align-items: stretch;
}
.conditionsArea .conditionsItem:nth-of-type(n+3) {
  margin-top: 10px;
}
.conditionsArea .conditionsItem p {
  width: 100%;
  padding: 15px 10px;
}
.conditionsArea .conditionsItem .conditionsItem_tit {
  max-width: 150px;
  letter-spacing: -.5px;
  text-align: center;
  align-content: center;
}
.conditionsArea .conditionsItem .conditionsItem_content {
  letter-spacing: -.5px;
  border-left: 2px solid #ebebeb;
  align-content: center;
}
.conditionsArea .conditionsItem .conditionsItem_content span {
  font-size: 1.4rem;
}
.couponBlock {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}
.couponWrap .redTxt {
  color: #cc0d21;
  font-size: 2rem;
  text-align: center;
}
.couponBlock .codeBox, .couponBlock .passwordBox, .couponBlock .innerBox {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  flex-wrap: wrap;
}
.couponBlock .codeBox, .couponBlock .passwordBox {
  width: 550px;
  justify-content: center;
  gap: 10px;
}
.couponBlock .innerBox {
  border: 2px solid #fff0c7;
  width: 100%;
}
.couponBlock .innerBox p {
  width: calc(100%/2);
}
.couponBlock .codeBox .codeBox_tit, .couponBlock .passwordBox .passwordBox_tit {
  font-size: 2rem;
  padding: 0 10px;
}
.couponBlock .passwordBox .passwordBox_tit {
  letter-spacing: 3px;
}
.couponBlock .codeBox [id^="couponCode"], .couponBlock .passwordBox [id^="couponPassword"] {
  min-width: 190px;
  padding: 8px 10px 10px;
  color: #cc0d21;
  font-size: 2.6rem;
  font-weight: bold;
  background: #fff0c7;
}
.no_Code [id^="couponCode"], .no_Code [id^="couponPassword"] {
  font-size: 2.0rem !important;
}
.couponBlock .codeBox [id^="couponCode_button"], .couponBlock .passwordBox [id^="couponPassword_button"] {
  position: relative;
  padding: 7px 10px 6px 34px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background: #f3746b;
  border: none;
  border-radius: 10px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .2);
  transition: .2s;
  min-width: 230px;
}
.couponBlock .codeBox [id^="couponCode_button"]::after, .couponBlock .passwordBox [id^="couponPassword_button"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 22px;
  height: 24px;
  background: url("../img/detail/ic_clipborad.png") no-repeat;
  background-size: contain;
}
.couponBlock #clipBoard_message {
  display: none;
  position: absolute;
  top: auto;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width:768px) {
  .couponBlock .codeBox [id^="couponCode_button"]:hover, .couponBlock .passwordBox [id^="couponPassword_button"]:hover {
    background: #E36D65;
    background: #F16258;
    transform: translateY(-3px);
    transition: .2s;
  }
}
@media screen and (max-width:767.98px) {
  .conditionsArea {
    max-width: 700px;
    margin: 0 auto;
  }
  .conditionsArea .couponInfo .abtag {
    position: absolute;
    width: 50px;
    font-size: 1.4rem;
  }
	.conditionsArea .couponInfo .domtag {
    position: absolute;
    width: 50px;
    font-size: 1.4rem;
  }
  .conditionsArea .abSide .couponInfo_innerBox {
    display: block;
    padding: 40px 15px 10px;
  }
  .conditionsArea .domSide .couponInfo_innerBox {
    display: block;
    padding: 40px 15px 10px;
  }
  .conditionsArea .couponInfo_innerBox .titTxt {
    font-size: 3.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
  }
  .conditionsArea .conditionsArea_inner {
    display: block;
  }
  .conditionsArea h2 {
    font-size: 2rem;
    margin: 10px 0;
  }
  .conditionsArea .conditionsBox {
    display: block;
    margin-top: 0;
  }
  .conditionsArea .conditionsItem {
    width: 100%;
  }
  .conditionsArea .conditionsItem .conditionsItem_tit {
    max-width: 95px;
    font-size: 1.3rem;
  }
  .conditionsArea .conditionsItem .conditionsItem_tit small {
    display: block;
  }
  .conditionsArea .conditionsItem .conditionsItem_content {
    max-width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .conditionsArea .conditionsItem .conditionsItem_content span {
    font-size: 1.1rem;
  }
  .conditionsArea .conditionsItem:nth-of-type(n+2) {
    margin-top: 5px;
  }
  .conditionsArea .conditionsItem p {
    padding: 10px 10px;
  }
  .conditionsArea .txtBlock {
    margin-top: 17px;
    font-size: 1.3rem;
    padding: 0 10px;
  }
  .conditionsArea .txtBlock li {
    padding-left: 30px;
  }
  .couponWrap .redTxt {
    font-size: 1.7rem;
  }
  .couponBlock .codeBox, .couponBlock .passwordBox {
    display: block;
    max-width: 200px;
    margin: 0;
  }
  .couponBlock .codeBox {
    margin-top: 0;
  }
  .couponBlock .passwordBox {
    margin-top: 0;
  }
  .passwordBox, .couponBlock .innerBox {
    justify-content: space-between;
  }
  .couponBlock .codeBox .codeBox_tit, .couponBlock .passwordBox .passwordBox_tit {
    font-size: 1.6rem;
  }
  .couponBlock .passwordBox .passwordBox_tit {
    letter-spacing: 0;
  }
  .couponBlock .codeBox [id^="couponCode"], .couponBlock .passwordBox [id^="couponPassword"] {
    min-width: 100px;
    margin-right: 0;
    padding: 7px 5px;
    font-size: 1.8rem;
  }
  .no_Code .codeBox_tit, .no_Code .passwordBox_tit {
    width: 100%;
    text-align: left;
    margin-right: 10px !important;
  }
  .no_Code [id^="couponCode"], .no_Code [id^="couponPassword"] {
    font-size: 1.2rem !important;
  }
  .couponBlock .codeBox [id^="couponCode_button"], .couponBlock .passwordBox [id^="couponPassword_button"] {
    width: 95%;
    margin: 8px 0 0;
    font-size: 1.4rem;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .2);
    padding: 7px 5px 7px 27px;
    line-height: 1.3;
  }
  .couponBlock #clipBoard_message {
    top: 10px;
    right: 0;
	  bottom: auto;
    left: 50%;
    transform: translate(-50%);
    max-width: 275px;
    width: 100%;
    padding: 10px 16px;
  }
  .conditionsArea .conditionsWrap {
    padding: 5px;
  }
  .couponBlock .codeBox [id^="couponCode_button"]::after, .couponBlock .passwordBox [id^="couponPassword_button"]::after {
    left: 3px;
  }
}
@media screen and (min-width:600px) {
  .conditionsArea .couponInfo_innerBox {
    display: block;
    padding: 10px 15px 10px;
  }
}
@media screen and (max-width:359px) {
  .couponBlock .codeBox .codeBox_tit, .couponBlock .passwordBox .passwordBox_tit {
    font-size: 1.4rem;
  }
}
/*=====================*/
/*=====================*/
/*=====================*/
.couponWrap {}
.couponWrap h2 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
h2 p {
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}
h2 p:before, h2 p:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}
h2 p:before {
  left: 0;
}
h2 p:after {
  right: 0;
}
.couponWrap h3 {
  width: auto;
  padding: 10px;
  margin: 0 20px 20px;
  font-size: 2.3rem;
}
.couponWrap .couponTabi {
	width: 100%;
  margin-bottom: 30px;
	background: rgba(215, 14, 24, 0.1);
	padding: 20px 0 1px;
}
.couponWrap .couponTabi h3 {
	color: rgba(204, 13, 33, 0.9);
	padding-bottom: 5px;
	border-bottom:  rgba(204, 13, 33, 0.9) 2px solid;
}
.couponWrap .couponLook{
	width: 100%;
	background: rgba(255, 102, 0, 0.10);
	padding: 20px 0 1px;
}
.couponWrap .couponLook h3 {
	color: rgba(255, 102, 0, 0.9);
	padding-bottom: 5px;
	border-bottom: rgba(255, 102, 0, 0.9) 2px solid;
}
.couponWrap ul li {
  margin: 20px;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
background: #fff;
}
/*-----------------------------------------------------2カラム用-----------------------------------------------------------------*/
/*.couponWrap .couponLook ul{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px 20px 0;
}
.couponWrap .couponLook ul::after {
  content: "";
  width: calc(100% / 2 - 20px); 
}
.couponWrap .couponLook ul li{
	width: calc(100% / 2 - 20px);
	margin: 0;
}
.couponWrap .couponLook ul li .couponTxt p{
	padding: 0 20px;}
.couponWrap .couponLook ul li .couponTxt .price p{
	padding: 0;
}
.couponWrap .couponLook ul li .couponTxt .price p:nth-child(1){
	font-size: 1.8rem;
}
.couponWrap .couponLook .couponBlock .innerBox p {
	width: 100%;
}
@media screen and (max-width:767.98px) {
	.couponWrap .couponLook ul{
		margin: 20px 5px;
	}
	.couponWrap .couponLook ul li{
	width:100%;
}
}*/
/*----------------------------------------------------------------------------------------------------------------------*/
.couponWrap ul li h4 {
  display: flex;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
  padding: 10px;
  background-color: rgba(204, 13, 33, 0.9);
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  line-height: 1;
	min-height: 40px;
}
.couponWrap .couponTabi ul li h4 {
  background-color: rgba(204, 13, 33, 0.9);
}
.couponWrap .couponLook ul li h4 {
  background-color: rgba(255, 102, 0, 0.9);
}
.couponWrap ul li .couponTxt {
  margin: 20px 0 0;
  font-size: 1.6rem;
}
.couponWrap ul li .couponTxt p {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.3;
}
.couponWrap ul li .couponTxt .price {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  align-items: flex-end;
  line-height: 1;
}
.titTxt .custom-comma {
  font-size: 2.5rem;
}
.couponTxt p:nth-child(1) .custom-comma {
  font-size: 1.5rem;
}
.couponTxt .price p:nth-child(2) .custom-comma {
  font-size: 3rem;
}
.couponWrap ul li .couponTxt .price p:nth-child(1) {
  font-size: 2.2rem;
}
.couponWrap ul li .couponTxt .price p:nth-child(2) {
  font-size: 5rem;
  font-weight: bold;
  color: #cc0d21;
  line-height: 1;
}
.couponWrap ul li .couponTxt .price p:nth-child(2) small {
  font-size: 3rem;
}
@media screen and (max-width:767.98px) {
  .couponWrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .couponWrap ul li {
    margin: 10px 5px;
    max-width: 510px;
  }
  .couponWrap ul li .couponTxt {
    font-size: 1.4rem;
    margin: 10px 0 0;
    padding: 0 10px;
  }
  .couponWrap ul li .couponTxt .price {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
  }
  .couponWrap ul li .couponTxt .price p:nth-child(2) {
    font-size: 4.3rem;
  }
  .couponBlock {
    margin: 20px 5px;
    gap: 10px;
  }
  .couponBlock .innerBox p {
    width: 100%;
  }
  .couponWrap ul li .couponTxt p {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .couponWrap ul li .couponTxt .price p:nth-child(1) {
    font-size: 1.8rem;
  }
  .titTxt .custom-comma {
    font-size: 2rem;
  }
}
/*=====================*/
/*=====================*/
/*annotationArea
=======================*/
.annotationArea {
  margin-top: 40px;
  padding: 0 25px;
}
.annotationArea h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}
.annotationArea p {
  font-size: 1.4rem;
}
.annotationArea .indent {
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width:767.98px) {
  .couponWrap {
    max-width: 700px;
    margin: 0 auto;
  }
  .annotationArea {
    margin-top: 35px;
    padding: 0 10px;
  }
  .couponWrap h2 {
    margin: 10px 0;
  }
  .annotationArea .indent {
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .annotationArea p {
    font-size: 1.3rem;
  }
}
/*=====================*/
/*buttonBox
=======================*/
.buttonBox {
  display: flex;
  margin-top: 40px;
}
.buttonBox .buttonWrap {
  width: 50%;
  text-align: center;
}
.buttonBox button {
  padding: 0;
  background: #ecf9ff;
  border: 1px solid #cccccc;
  border-radius: 10px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .2);
  transition: .2s;
}
.buttonBox button a {
  position: relative;
  display: inline-block;
  color: #333333;
  font-size: 2rem;
  font-weight: bold;
  opacity: .9;
}
.buttonBox button.prevButton a {
  padding: 15px 25px 15px 50px;
}
.buttonBox button.nextButton a {
  padding: 15px 50px 15px 25px;
}
.buttonBox button.prevButton a::after, .buttonBox button.nextButton a::after {
  position: absolute;
  content: '';
  top: 50%;
  width: 13px;
  height: 13px;
  border-right: 3px solid #cccccc;
  border-bottom: 3px solid #cccccc;
}
.buttonBox button.prevButton a::after {
  left: 30px;
  transform: translateY(-50%) rotate(135deg);
}
.buttonBox button.nextButton a::after {
  right: 30px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (min-width:768px) {
  .buttonBox button:hover {
    background: #D2F0FF;
    transform: translateY(-3px);
    transition: .2s;
  }
}
@media screen and (max-width:767.98px) {
  .buttonBox {
    display: block;
  }
  .buttonBox .buttonWrap {
    width: 100%;
  }
  .buttonBox .buttonWrap:nth-of-type(n+2) {
    margin-top: 20px;
  }
  .buttonBox button {
    max-width: 240px;
    width: 100%;
  }
  .buttonBox button a {
    font-size: 1.5rem;
  }
  .buttonBox button.prevButton a {
    padding: 15px 20px 12px 38px;
  }
  .buttonBox button.nextButton a {
    padding: 15px 38px 12px 20px;
  }
  .buttonBox button.prevButton a::after {
    left: 20px;
  }
  .buttonBox button.nextButton a::after {
    right: 20px;
  }
}
/*=====================*/
/*area_button
=======================*/
.area_button {
  text-align: center;
  margin: 40px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.area_button .contents_wrap {
  justify-content: center;
  flex-wrap: wrap;
}
.area_button__titbox__fukidashi {
  position: relative;
  display: inline-block;
  border-bottom: solid 1px #cc0d20;
  padding: 5px 0;
  color: #cc0d20;
  font-weight: bold;
  font-size: 18px;
}
.area_button__titbox__fukidashi:before, .area_button__titbox__fukidashi:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area_button__titbox__fukidashi:before {
  border: solid 9px transparent;
  border-top: solid 14px #cc0d20;
}
.area_button__titbox__fukidashi:after {
  border: solid 11px transparent;
  border-top: solid 17px #fff;
  margin-top: -5px;
}
.area_button__titbox__tit {
  font-size: 2.4rem;
  color: #333333;
  margin: 15px 5px;
}
.area_button__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
}
.area_button__link li {
  width: 100%;
}
.area_button__link li a {
  text-align: center;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #cc0d20;
  border-radius: 5px;
  padding: 10px 36px 9px 9px;
  width: 100%;
  color: #333333;
  box-shadow: 0 1px 1px 1px rgb(0 0 0 / 10%);
}
.area_button__link li a:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #cc0d21;
  content: "";
  width: 27px;
}
.area_button__link li a:after {
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
  .area_button {
    margin-top: 0;
  }
  .area_button__link li {
    max-width: 138px;
  }
  .area_button__link li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width:767.98px) {
  .area_button__link {
    margin: 0 10px 0;
  }
  .area_button__link li a {
    padding: 10px 36px 9px 9px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}
/*=====================*/
/*pageTopBtn
=======================*/
.pageTopBtn {
  display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
  left: 93%;
  position: sticky;
  bottom: 30px;
  text-align: right;
  opacity: 0;
  z-index: 10;
}
.pageTopBtn_inner {
  margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
  background: #aaaaaa;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  cursor: default;
}
.pageTopBtn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pageTopBtn.-show {
  opacity: 1;
}
.pageTopBtn.-show a {
  cursor: pointer;
}
.pageTopBtn.-transition500 {
  transition: .2s ease;
}
@media screen and (min-width:768px) {
  .pageTopBtn a:hover {
    background: #c2c2c2;
  }
}
@media screen and (max-width:767.98px) {
  .pageTopBtn a {
    width: 45px;
    height: 45px;
  }
  .pageTopBtn a:before {
    width: 16px;
    height: 16px;
  }
}
/*=====================*/
@media screen and (max-width:767.98px) {
  .conditionsArea .couponInfo.abSide .couponInfo_innerBox .areaIcon span, .conditionsArea .couponInfo.domSide .couponInfo_innerBox .areaIcon span {
    display: inline-block;
  }
}