/*----------------------------------------------
	.c_search
---------------------------------------------*/
.c_search {
  position: absolute;
  top: 28px;
  left: 20%;
  height: 45px;
  color: #AAAAAA;
  font-size: 1.4rem;
  border: 1px solid #AAAAAA;
  border-radius: 5px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c_search_area {
  position: relative;
}
.c_search_area .modalOpen_area, .c_search_area .modalOpen_category {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}
.c_search .c_search_area input, .c_search .c_search_category input {
  width: 180px;
}
@media screen and (max-width:1420px) {
  .c_search .c_search_area input, .c_search .c_search_category input {
    width: 100px;
  }
}
.c_search .c_search_area, .c_search .c_search_category {
  position: relative;
  padding: 10px;
  border-right: 1px solid #AAAAAA;
}
.c_search .c_search_area::before {
  content: "";
  width: 12px;
  height: 16px;
  background: url("../images/icon_area.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 10px;
  top: 52%;
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
}
.c_search .c_search_category::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icon_category.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_search .c_search_area::after, .c_search .c_search_category::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #AAAAAA;
  border-right: solid 1px #AAAAAA;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
}
.c_search .c_search__area, .c_search .c_search__category {
  padding-left: 20px;
  border: none;
  outline: none;
}
.c_search .c_search_freeword {
  padding: 12px 10px;
}
.c_search .c_search_freeword .c_search_input {
  width: 200px;
  border: none;
  outline: none;
}
.is_station {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  font-weight: bold;
}
.is_station::before {
  content: "";
  width: 13px;
  height: 17px;
  background: url(../images/icon_station.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0px;
  top: 55%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}
.c_search .c_search_station {
  margin: 12px 10px;
}
.c_search_station {
  position: relative;
  width: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}
.c_station__button {
  display: block;
  width: 100%;
  height: 45px;
  margin-bottom: 10px;
  color: #FFFFFF;
  font-weight: bold;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #F49629;
  cursor: pointer;
}
.c_search__station {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #CCCCCC;
}
.c_station_tooltip {
  background: #fff;
  padding: 10px;
  position: absolute;
  width: 220px;
  box-shadow: 0 0 5px #33333330;
  border-radius: 5px;
  z-index: 9999;
  display: none;
}
.c_station_tooltip p {
  position: relative;
  padding: 5px;
}
.c_station_tooltip p:hover::before,
.c_station_tooltip p:hover::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 5px;
  translate: 0 -50%;
  width: 12px;
  height: 1px;
  background: #333;
  border-radius: 2px;
}
.c_station_tooltip p::before {
  transform: rotate(45deg);
}
.c_station_tooltip p::after {
  transform: rotate(-45deg);
}
.c_station_tooltip p:hover {
  background: hsla(205, 100%, 36%, 0.10);
}
.c_station_tooltip::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #ffffff;
  position: absolute;
  top: 0;
  left: 20px;
  translate: 0 -100%;
}
input:focus {
  outline: none;
}
.c_search__station_list {
  position: relative;
  z-index: 99;
  height: 300px;
  margin-top: -5px;
  border-top: 1px solid #CCC;
  list-style: none;
  overflow-y: auto;
  background: #fff;
}
.c_search__station_list li {
  padding: 14px 10px;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #333;
}
.c_search__station_list li:hover {
    color: #006cba;
    font-weight: bold;
}
.c_search__station_list li .suggest-highlight {
    font-weight: bolder;
}
.c_search__station_list li.selected {
    background-color: #eaf3f9;
}
@media screen and (max-width: 1300px) {
  .c_search .c_search_freeword .c_search_input {
    width: 150px;
  }
}
.c_search .c_search__button {
  padding: 5px;
  width: 60px;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 0 5px 5px 0;
  background: #006CBA;
  cursor: pointer;
}
.c_search .c_search__button:hover {
  opacity: 0.6;
}
.c_search .c_search__button img {
  width: 25px;
  height: auto;
}
.c_station_tag {
  margin-bottom: 20px;
}
.c_station_tag button {
  position: relative;
  margin: 0 2px 2px 0;
  padding: 2px 20px 2px 10px;
  border: none;
  background: #ccc;
  color: #333;
}
.c_station_tag button::before,
.c_station_tag button::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 5px;
  translate: 0 -50%;
  width: 12px;
  height: 1px;
  background: #333;
  border-radius: 2px;
}

.c_station_tag button::before {
  transform: rotate(45deg);
}
.c_station_tag button::after {
  transform: rotate(-45deg);
}
/*----------------------------------------------
	.c_header_wrap
---------------------------------------------*/
.c_header_wrap {
  position: absolute;
  right: 20px;
  top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*----------------------------------------------
	.c_header_link
---------------------------------------------*/
.c_header_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c_header_link p {
  position: relative;
  margin-right: 20px;
  padding-left: 15px;
  font-size: 1.2rem;
}
.c_header_link p a {
  text-decoration: none;
}
.c_header_link p::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #313131;
  border-right: solid 1px #313131;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3px;
}
/*----------------------------------------------
	.c_mypage
---------------------------------------------*/
.c_btn_mypage, .c_btn_login {
  display: inline-block;
  position: relative;
  width: 135px;
  height: 45px;
  padding: 11px 0px 11px 20px;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none !important;
  color: #FFFFFF !important;
  border-radius: 5px;
}
.c_btn_mypage {
  background-color: #F49629;
}
.c_btn_login {
  background-color: #F49629;
}
.c_btn_mypage:hover, .c_btn_login:hover {
  opacity: 0.6;
}
.c_btn_mypage::after, .c_btn_login::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-size: 100% !important;
}
.c_btn_mypage::after {
  width: 15px;
  height: 16px;
  background: url("../images/icon_user.png") no-repeat center center;
}
.c_btn_login::after {
  width: 18px;
  height: 21px;
  background: url("../images/icon_login.png") no-repeat center center;
}
/*----------------------------------------------
	.c_btn_search_coupon
---------------------------------------------*/
p:has(.c_btn_search_coupon) {
  padding: 20px 10px 0 10px;
  background: #FFF;
}
.c_btn_search_coupon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 15px 20px;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none !important;
  color: #FFFFFF !important;
  background: #006CBA;
  border-radius: 5px;
}
.c_btn_search_coupon:hover {
    opacity: 0.6;
}
.c_btn_search_coupon::before, .c_btn_search_coupon::after {
    content: "";
    display: inline-block;
    background-size: 100% !important;
    background-repeat: no-repeat
}
.c_btn_search_coupon::before {
    width: 16px;
    height: 18px;
    margin-right: 15px;
    background-image: url("../images/icon_search_coupon.png");
}
.c_btn_search_coupon::after {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    background-image: url("../images/icon_search_side.png");
}
/*----------------------------------------------
	.c_slider_main
---------------------------------------------*/
.c_slider_main {
  width: 100%;
  margin: 0 auto;
}
.c_slider_main img {
  width: 60vw;
  height: auto;
}
.c_slider_main .slick-slide {
  transform: scale(1);
  transition: all .5s;
  opacity: 0.5;
}
.c_slider_main .slick-slide.slick-center {
  transform: scale(1);
  opacity: 1;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.c_slider_main .slick-prev, .c_slider_main .slick-next {
  position: absolute;
  top: 40%;
  width: 65px;
  height: 65px;
  cursor: pointer;
  outline: none;
}
.c_slider_main .slick-prev {
  background: url("../../images/top/btn_slider_main_left.png") no-repeat center center;
  z-index: 999;
}
.c_slider_main .slick-next {
  background: url("../../images/top/btn_slider_main_right.png") no-repeat center center;
  z-index: 999;
}
.c_slider_main .slick-prev:hover, .c_slider_main .slick-next:hover {
  opacity: 0.6;
}
.c_slider_main .slick-prev {
  left: 17.5%;
}
.c_slider_main .slick-next {
  right: 17.5%;
}
/*ドットナビゲーションの設定*/
.c_slider_main .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.c_slider_main .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.c_slider_main .slick-dots {
  display: none !important;
}
/*
.c_slider_main .slick-dots button {
    color: transparent;
    outline: none;
    width:10px;
    height:10px;
    display:block;
    border-radius:50%;
    background:#FFFFFF;
	border:none;
}
.c_slider_main .slick-dots .slick-active button{
    background:#006CBA;
}
*/
/*----------------------------------------------
	.c_btn_guide
---------------------------------------------*/
.c_btn_guide {
  display: inline-block;
  position: relative;
  width: 220px;
  height: 45px;
  margin-bottom: 20px;
  padding: 11px 0px 11px 20px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  color: #FFFFFF !important;
  background-color: #C50000;
  border-radius: 5px;
}
.c_btn_guide:hover {
  opacity: 0.6;
}
.c_btn_guide::after {
  content: "";
  width: 14px;
  height: 20px;
  background: url("../images/icon_guide.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*----------------------------------------------
	.c_search_side
---------------------------------------------*/
.c_search_side {
  margin-bottom: 20px;
  padding: 20px;
  border: 2px solid #CCCCCC;
  border-radius: 5px;
  background-color: #F2EFEA;
  font-size: 1.4rem;
}
.c_search_side .is_area, .c_search_side .is_category {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  font-weight: bold;
}
.c_search_side .is_area::before {
  content: "";
  width: 13px;
  height: 17px;
  background: url("../images/icon_area_black.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0px;
  top: 55%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}
.c_search_side .is_category::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/icon_category_black.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0px;
  top: 55%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}
.c_search_side .c_search_area::after, .c_search_side .c_search_category::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #AAAAAA;
  border-right: solid 1px #AAAAAA;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
}
.c_search_side .c_search_area, .c_search_side .c_search_category {
  position: relative;
  width: 180px;
  margin-bottom: 20px;
  border: 2px solid #CCCCCC;
  border-radius: 5px;
}
.c_search_side .c_search__area, .c_search_side .c_search__category {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
}
.c_search_side .c_search__button {
  position: relative;
  padding: 5px 5px 5px 15px;
  width: 100%;
  height: 45px;
  color: #FFFFFF;
  font-weight: bold;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #006CBA;
  cursor: pointer;
}
.c_search_side .c_search__button:hover {
  opacity: 0.6;
}
.c_search_side .c_search__button::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/icon_search_side.png") no-repeat center center;
  position: absolute;
  left: 40px;
  top: 55%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}
/*----------------------------------------------
	.c_nav_type01
---------------------------------------------*/
.c_nav_type01 {
  list-style: none;
  background: #FFFFFF;
}
.c_nav_type01 li:not(:last-of-type) a, .c_nav_type01 li:not(:last-of-type) span {
  border-bottom: 1px dotted #AAAAAA;
}
.c_nav_type01 li a, .c_nav_type01 li span {
  display: block;
  padding: 20px 15px 20px 45px;
  font-size: 1.4rem;
  text-decoration: none;
  text-align: left;
  position: relative;
  line-height: 1.3;
}
.c_nav_type01 li:hover a, .c_nav_type01 li.active a {
  font-weight: bold;
  color: #006CBA;
  background: #EAF3F9;
}
.c_nav_type01 li a::after {
  content: " ";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: 100% !important;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
}
.c_nav_type01 li.is_c060000 a:hover {
  color: #DD5F4F;
  background: #F9EEED;
}
.c_nav_type01 li.is_c060000 a::after {
  background: url("../images/icon_gourmet.png") no-repeat;
}
.c_nav_type01 li.is_c070000 a:hover {
  color: #E38EB4;
  background: #FAF3F7;
}
.c_nav_type01 li.is_c070000 a::after {
  background: url("../images/icon_beauty.png") no-repeat;
}
.c_nav_type01 li.is_c010000 a:hover {
  color: #6BB33F;
  background: #F0F7EC;
}
.c_nav_type01 li.is_c010000 a::after {
  background: url("../images/icon_shopping.png") no-repeat;
}
.c_nav_type01 li.is_c020000 a:hover {
  color: #E8A65D;
  background: #FBF5EF;
}
.c_nav_type01 li.is_c020000 a::after {
  background: url("../images/icon_lifestyle.png") no-repeat;
}
.c_nav_type01 li.is_c030000 a:hover {
  color: #66AAEC;
  background: #F0F6FC;
}
.c_nav_type01 li.is_c030000 a::after {
  background: url("../images/icon_play.png") no-repeat;
}
.c_nav_type01 li.is_c040000 a:hover {
  color: #D071B7;
  background: #F8F0F7;
}
.c_nav_type01 li.is_c040000 a::after {
  background: url("../images/icon_experience.png") no-repeat;
}
.c_nav_type01 li.is_c050000 a:hover {
  color: #C4A844;
  background: #F9F6ED;
}
.c_nav_type01 li.is_c050000 a::after {
  background: url("../images/icon_travel.png") no-repeat;
}
.c_nav_type01 li.is_c080000 a:hover {
  color: #E7A2A0;
  background: #FBF5F5;
}
.c_nav_type01 li.is_c080000 a::after {
  background: url("../images/icon_bridal.png") no-repeat;
}
.c_nav_type01 li.is_c090000 a:hover {
  color: #99C63D;
  background: #F5F9EC;
}
.c_nav_type01 li.is_c090000 a::after {
  background: url("../images/icon_sports.png") no-repeat;
}
.c_nav_type01 li.is_c100000 a:hover {
  color: #E0794F;
  background: #F9F1ED;
}
.c_nav_type01 li.is_c100000 a::after {
  background: url("../images/icon_kids.png") no-repeat;
}
.c_nav_type01 li.is_c110000 a:hover {
  color: #8EB97A;
  background: #F4F7F2;
}
.c_nav_type01 li.is_c110000 a::after {
  background: url("../images/icon_school.png") no-repeat;
}
.c_nav_type01 li.is_c120000 a:hover {
  color: #58599F;
  background: #EEEEF4;
}
.c_nav_type01 li.is_c120000 a::after {
  background: url("../images/icon_app.png") no-repeat;
}
.c_nav_type01 li.is_c130000 a:hover {
  color: #A387B9;
  background: #F5F2F7;
}
.c_nav_type01 li.is_c130000 a::after {
  background: url("../images/icon_car.png") no-repeat;
}
.c_nav_type01 li.is_c140000 a:hover {
  color: #C797D6;
  background: #F8F4FA;
}
.c_nav_type01 li.is_c140000 a::after {
  background: url("../images/icon_pet.png") no-repeat;
}

.c_nav_type01 li.is_c910000 a:hover {
  color: #FC6956;
  background: #FEF1ED;
}
.c_nav_type01 li.is_c910000 a::after {
  background: url("../images/icon_partnership.png") no-repeat;
}



.c_nav_type01 li.is_c990000 a:hover {
  color: #AAAAAA;
  background: #F6F6F6;
}
.c_nav_type01 li.is_c990000 a::after {
  background: url("../images/icon_other.png") no-repeat;
}
.c_nav_type01 li.is_mypage-top a::after {
  background: url("../../images/mypage/icon_maypage-top.png") no-repeat;
}
.c_nav_type01 li.is_mypage-fav a::after {
  background: url("../../images/mypage/icon_maypage-fav.png") no-repeat;
}
.c_nav_type01 li.is_mypage-his a::after {
  background: url("../../images/mypage/icon_maypage-his.png") no-repeat;
}
.c_nav_type01 li.is_mypage-pre a::after {
  background: url("../../images/mypage/icon_maypage-pre.png") no-repeat;
}
.c_nav_type01 li.is_mypage-info a::after {
  background: url("../../images/mypage/icon_maypage-info.png") no-repeat;
}
.c_nav_type01 li.is_mypage-pass a::after {
  background: url("../../images/mypage/icon_maypage-pass.png") no-repeat;
}
/*----------------------------------------------
	.c_side_right-box
---------------------------------------------*/
.c_side_right-box {
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 2px solid #CCCCCC;
  border-radius: 5px;
  background-color: #F6F6F6;
  font-size: 1.4rem;
}
.c_side_right-box .is_bold {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.c_side_right-box a {
  color: #006CBA;
}
.c_side_right-box a:hover {
  opacity: 0.6;
}
.c_side_right-box .c_favorite a {
  color: #313131;
}
.c_side_right-box .c_favorite a:hover {
  opacity: inherit;
}
.c_side_right-box .c_btn_orange {
  min-width: 100%;
  margin-top: 20px;
  color: #FFFFFF;
}
.c_side_right-box .c_btn_red {
  width: 100%;
  min-width: auto;
  padding: 20px 0;
  color: #FFFFFF;
  border: none;
  outline: none;
  cursor: pointer;
}
.c_side_right-box .c_btn_red:hover {
  opacity: 0.6;
}
.c_btn_red::placeholder {
  color: #FFFFFF;
  opacity: 1;
}
.c_side_right-box .c_btn_blue {
  color: #FFFFFF;
}
.c_btn_qr {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 15px 20px;
  min-width: 100%;
  ;
  text-align: center;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px;
}
.c_side_right-box .c_favorite .is_btn_favorite {
  width: 100%;
  margin-top: 15px;
  background-color: #FFFFFF;
}
.c_btn_qr img {
  width: 100%;
  height: auto;
}
.c_btn_qr-text {
  text-align: center;
  font-weight: bold;
  letter-spacing: -0.5px;
}
/*----------------------------------------------
  .c_premium
---------------------------------------------*/
.c_premium {
  margin-bottom: 20px;
}
.c_premium h2 {
  position: relative;
  width: 840px;
  margin: 0 0 30px 50px;
  padding: 5px 0 5px 1em;
  color: #A09050;
  font-size: 2.8rem;
  border-bottom: 3px solid #A09050;
}
.c_premium h2::before {
  content: "";
  width: 20px;
  height: 25px;
  background: url("../../images/top/icon_premium.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}
/*----------------------------------------------
  .c_slider_premium
---------------------------------------------*/
.c_slider_premium_box {
  position: relative;
  overflow: hidden;
  padding: 4px;
}
.c_slider_premium {
  width: 860px;
  margin: 0 auto;
}
.c_slider_premium .c_card {
  min-height: 500px;
  border: 2px solid #B8A45C;
  background-color: #FBFAF7;
  border-radius: 5px;
}
.c_slider_premium .c_card a {
  text-decoration: none;
  color: #313131;
}
.c_slider_premium .c_card a:hover img {
  opacity: 0.6;
}
.c_slider_premium img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  /* height: 233px;*/
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 5px 5px 0px 0px;
}
.c_slider_premium .slick-slide {
  margin: 6px;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.c_slider_premium .slick-prev, .c_slider_premium .slick-next {
  position: absolute;
  top: 40%;
  cursor: pointer;
  outline: none;
  height: 80px;
  width: 40px;
}
.c_slider_premium .slick-prev:hover, .c_slider_premium .slick-next:hover {
  opacity: 0.8;
}
.c_slider_premium .slick-prev {
  background: url("../../images/top/btn_slider_left.png") no-repeat center center;
  z-index: 999;
}
.c_slider_premium .slick-next {
  background: url("../../images/top/btn_slider_right.png") no-repeat center center;
  z-index: 999;
}
.c_slider_premium .slick-prev {
  left: -30px;
}
.c_slider_premium .slick-next {
  right: -30px;
}
/*ドットナビゲーションの設定*/
.c_slider_premium .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.c_slider_premium .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.c_slider_premium .slick-dots button {
  color: transparent;
  outline: none;
  width: 10px;
  height: 10px;
  display: block;
  border: none;
  border-radius: 50%;
  background: #E6E6E6;
}
.c_slider_premium .slick-dots .slick-active button {
  background: #AAAAAA;
}
.c_slider_premium .c_card_inner {
  font-size: 1.6rem;
  padding: 20px 15px;
}
.c_slider_premium .c_card__title {
  margin-bottom: 15px;
  font-size: 2.0rem;
}
.c_slider_premium .c_card__title span {
  display: inline-block;
  color: #C50000;
	font-weight: bold;
}

.c_slider_premium .c_card__title .is_ttl_present{
	display:block;
	color: #C50000;
	font-weight: bold;
	line-height: 1.3;
}

.c_slider_premium .c_card__title .is_ttl_present dt,
.c_slider_premium .c_card__title .is_ttl_present dd{
display: inline;
line-height: 30px;
background-position: 0px 0px;
background-size:30px 30px;
background-repeat: repeat;
background-image: linear-gradient(180deg, transparent 28px, #C50000 28px);
}

.c_slider_premium .c_card__title dl,
.c_slider_premium .c_card__text dl{
	display: flex;
	text-align: left;
}


.c_slider_premium .c_card__soon .is_soon {
    margin-bottom: 15px;
    font-size: 2.0rem;
    font-weight: bold;
	color: #C50000;
}

.c_slider_premium .c_card_member_only {
    width: 100%; height: 100%;
    background-image: url('../../images/top/img_p_coupon_m_only.jpg');
    background-position: center;
    background-repeat: repeat-x;
    background-size: auto 100%;
    overflow: hidden;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.c_slider_premium .c_card_member_only .head {
    margin-top: 5rem;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.9rem;
}
.c_slider_premium .c_card_member_only .title {
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    font-size: 2.5rem;
    white-space: nowrap;
    margin-top:0.2rem;
    margin-bottom: 0.7rem;
}
.c_slider_premium .c_card_member_only .note {
    font-size: 1.5rem;
    margin-bottom: 6.0rem;
}
.c_slider_premium .c_card_member_only a {
    font-size: 1.7rem;
    display: inline-block;
    white-space: nowrap;
    padding: 12px 70px;
    background-color: #b8a45c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.2s ease;
}
.c_slider_premium .c_card_member_only a:hover {
    background-color: #a38f4a;
}

/*----------------------------------------------
  .c_special_coupon
---------------------------------------------*/
.c_special_coupon {
  max-width: 840px;
  margin: 0 auto 20px;
}
.c_special_coupon h2 {
  position: relative;
  margin: 0 0 30px 0px;
  padding: 5px 0 5px 1.5em;
  color: #C50000;
  font-size: 2.8rem;
  border-bottom: 3px solid #C50000;
}
#special_coupon_detail .c_special_coupon h2 {
  border: none;
}
.c_special_coupon h2::before {
  content: "";
  width: 31px;
  height: 29px;
  background: url("../../images/top/icon_special_coupon.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 27px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c_special_coupon h3 {
  position: relative;
  margin: 0 0 10px 0px;
  padding: 0 0 0 1.5em;
  color: #006CBA;
  font-size: 2rem;
}
.c_special_coupon h3::before {
  content: "";
  width: 25px;
  height: 29px;
  background: url("../../common/images/icon_special_coupon_blue.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c_special_coupon h4 {
  position: relative;
  margin: 10px 0;
  color: #333333;
  font-size: 2rem;
}

.c_special_coupon section {
  margin-bottom: 30px;
}

.c_special_coupon .c_view_more {
  text-align: right;
}

.c_special_coupon .c_view_more a {
  padding: 0 16px 5px 0;
  text-decoration: none;
  border-bottom: 2px solid #ccc;
}
.c_special_coupon .c_view_more a:hover {
  color: #C50000;
  border-bottom: 2px solid #C50000;
}

.c_special_coupon .is_coupon_box {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.c_special_coupon .is_coupon_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 267px;
  height: 200px;
  margin-right: 15px;
  border: 1px solid #ccc;
}
.c_special_coupon .is_coupon_image img {
    max-width: 267px;
    max-height: 200px;
}
.c_special_coupon .is_coupon_detail {
  flex: 1;
}

.c_special_coupon .is_sub_category,
.c_special_coupon .is_area_category {
  padding: 2px 30px;
  border-radius: 50px;
  color: #FFF;
  font-size: 14px;
  line-height: 2;
}
.c_special_coupon .is_sub_category {
  margin-right: 5px;
  background: #00B8F0;
}
.c_special_coupon .is_area_category {
  background: #6BBB29;
}

.c_special_coupon .is_special_coupon {
  display: flex;
  width: 100%;
  background: #FFF3E9;
  border: 1px solid #FF740D;
  border-radius: 10px;
}
.c_special_coupon .is_coupon_name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  padding: 10px;
  color: #FFF;
  background: #FF740D;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}
.c_special_coupon .is_coupon_name span {
  font-size: 12px;
}
.c_special_coupon .is_coupon_name::before {
  content: "";
  width: 25px;
  height: 24px;
  margin-bottom: 2px;
  background: url("../../common/images/icon_coupon_gift.png") no-repeat center center;
  background-size: 100%;
}

.c_special_coupon .is_coupon_name_detail {
  margin: auto 0;
}

/*----------------------------------------------
  .c_special_coupon_bnr
---------------------------------------------*/
.c_special_coupon_bnr {
  display: grid;
  grid-template-columns: 267px 267px 267px;
  gap: 20px;
  margin-bottom: 20px;
}
.c_special_coupon_bnr div {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
}
#top .c_special_coupon_bnr div:nth-of-type(4) {
  display: none;
}
.c_special_coupon_bnr div img {
  max-width: 267px;
  max-height: 200px;
}

/*----------------------------------------------
  .c_special_coupon_txtbox
---------------------------------------------*/
.c_special_coupon_txtbox {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 10px;
  background: #FFF3E9;
}

/*----------------------------------------------
  .c_recommend
---------------------------------------------*/
.c_recommend {
  margin-bottom: 20px;
}
.c_recommend h2 {
  position: relative;
  width: 840px;
  margin: 0 0 30px 50px;
  padding: 5px 0 5px 1.5em;
  color: #006CBA;
  font-size: 2.4rem;
  border-bottom: 3px solid #006CBA;
}
.c_recommend h2::before {
  content: "";
  width: 31px;
  height: 25px;
  background: url("../../images/top/icon_recommend.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*----------------------------------------------
  .c_new
---------------------------------------------*/
.c_new {
  margin-bottom: 20px;
}
.c_new h2 {
  position: relative;
  width: 840px;
  margin: 0 0 30px 50px;
  padding: 5px 0 5px 1.5em;
  color: #006CBA;
  font-size: 2.4rem;
  border-bottom: 3px solid #006CBA;
}
.c_new h2::before {
  content: "";
  width: 36px;
  height: 36px;
  background: url("../../images/top/icon_new.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*----------------------------------------------
  .c_ranking
---------------------------------------------*/
.c_ranking {
  margin: 0 0 20px 50px;
  background: #FFF;
}

.c_ranking h2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 840px;
  margin-bottom: 16px;
  padding: 5px 0 5px 1.4em;
  color: #006CBA;
  font-size: 2.4rem;
  border-bottom: 3px solid #006CBA;
}
.c_ranking h2::before {
  content: "";
  width: 27px;
  height: 27px;
  background: url("../../images/top/icon_ranking_ribbon.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.is_ranking_data {
  font-size: 1.4rem;
  font-weight: normal;
  color: #006CBA;
}

.c_ranking_area {
  display: grid;
  width: 840px;
  column-gap: 16px;
  grid-template-columns: 1fr 1fr;
}


.c_ranking_box a {
  display: grid;
  grid-template-columns: 60px 1fr 80px;
  margin-bottom: 8px;
  text-decoration: none;
}
.c_ranking_box a:hover {
  color: #333;
  opacity: 0.7;
}
.c_ranking_box a:active,
.c_ranking_box a:focus {
  color: #333;
}

/* is_ranking_number */
.is_ranking_number {
  margin-right: 8px;
  width: 52px;
}
.is_ranking_number img {
  width: 100%;
  vertical-align: top;
}
.is_ranking_number.is_ranking_4,
.is_ranking_number.is_ranking_5,
.is_ranking_number.is_ranking_6,
.is_ranking_number.is_ranking_7,
.is_ranking_number.is_ranking_8,
.is_ranking_number.is_ranking_9,
.is_ranking_number.is_ranking_10 {
  position: relative;
  height: 52px;
  border-radius: 100%;
  background: #ccc;
}
.is_ranking_number.is_ranking_4::before,
.is_ranking_number.is_ranking_5::before,
.is_ranking_number.is_ranking_6::before,
.is_ranking_number.is_ranking_7::before,
.is_ranking_number.is_ranking_8::before,
.is_ranking_number.is_ranking_9::before,
.is_ranking_number.is_ranking_10::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-weight: bold;
  color: #FFF;
}
.is_ranking_number.is_ranking_4::before {
  content: "4";
}
.is_ranking_number.is_ranking_5::before {
  content: "5";
}
.is_ranking_number.is_ranking_6::before {
  content: "6";
}
.is_ranking_number.is_ranking_7::before {
  content: "7";
}
.is_ranking_number.is_ranking_8::before {
  content: "8";
}
.is_ranking_number.is_ranking_9::before {
  content: "9";
}
.is_ranking_number.is_ranking_10::before {
  content: "10";
}

/* is_ranking_text */
.is_ranking_text {
  max-width: 264px;
  width: 100%;
  margin-right: 8px;
}
.is_ranking_text h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.is_ranking_text p:nth-of-type(1) {
  margin-bottom: 8px;
  font-weight: bold;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.2rem;
  line-height: 1.1;
}
.is_ranking_text p:nth-of-type(2) {
  color: #C50000;
  font-size: 1.2rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* is_ranking_image */
.is_ranking_image {
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.is_ranking_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c_ranking_box .is_special_coupon {
  display: flex;
  align-items: center;
  width: 100%;
  background: #FFF3E9;
  border: 1px solid #FF740D;
  border-radius: 5px;
}
.c_ranking_box .is_coupon_name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin-bottom: 0!important;
  padding: 5px 10px;
  width: 45px!important;
  color: #FFF;
  background: #FF740D;
  font-size: 8px!important;
  font-weight: normal!important;
}

.c_ranking_box .is_coupon_name::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
  background: url("../../common/images/icon_coupon_gift.png") no-repeat center center;
  background-size: 100%;
}

.c_ranking_box .is_coupon_name_detail {
  flex: 1;
}

.c_ranking_box .is_coupon_name_detail p {
  margin-bottom: 0;
  font-size: 10px;
  white-space: inherit;
  overflow: inherit;
  text-overflow: inherit;
}

.c_ranking_box .c_btn_login {
  display: inline-block;
  width: 50px;
  height: inherit;
  padding: 5px 0;
  margin-right: 7px;
  margin-bottom: 0;
  font-size: 8px;
  font-weight: bold;
}
.c_ranking_box .c_btn_login::after {
  content: none;
}

#ranking_bottom_btn {
  display: none;
}

/*----------------------------------------------
  .c_ribbon
---------------------------------------------*/
.c_ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: 35px;
  transform: translate(calc((cos(39deg) - 1)*100%), -100%) rotate(-30deg);
  transform-origin: 100% 100%;
  background-color: #A09050;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  z-index: 999;
  text-align: center;
}
.c_ribbon::before,
.c_ribbon::after {
  content: "";
  position: absolute;
  background: #6F612B;
}

.c_ribbon::before {
  left: 27px;
  bottom: -2px;
  rotate: 30deg;
  padding: 4px;
  clip-path: polygon(100% 40%, 0% 100%, 100% 100%);
}
.c_ribbon::after {
  right: -9px;
  bottom: -5px;
  rotate: 30deg;
  padding: 8px;
  clip-path: polygon(50% 70%, 0% 100%, 50% 100%);
}

/*----------------------------------------------
  .c_slider_coupon
---------------------------------------------*/
.c_slider_coupon {
  width: 860px;
  margin: 0 auto;
}
.c_slider_coupon .c_card {
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  border-radius: 5px;
}
.c_slider_coupon .c_card a {
  text-decoration: none;
  color: #313131;
}
.c_slider_coupon .c_card a:hover img {
  opacity: 0.6;
}
.c_slider_coupon img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  /*  height: 135px;*/
  object-fit: contain;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDDDD;
  border-radius: 5px 5px 0px 0px;
  cursor: pointer;
}
.c_slider_coupon .slick-slide {
  margin: 0 10px;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.c_slider_coupon .slick-prev, .c_slider_coupon .slick-next {
  position: absolute;
  top: 110px;
  cursor: pointer;
  outline: none;
  height: 80px;
  width: 40px;
}
.c_slider_coupon .slick-prev:hover, .c_slider_coupon .slick-next:hover {
  opacity: 0.8;
}
.c_slider_coupon .slick-prev {
  background: url("../../images/top/btn_slider_left.png") no-repeat center center;
  z-index: 999;
}
.c_slider_coupon .slick-next {
  background: url("../../images/top/btn_slider_right.png") no-repeat center center;
  z-index: 999;
}
.c_slider_coupon .slick-prev {
  left: -30px;
}
.c_slider_coupon .slick-next {
  right: -30px;
}
/*ドットナビゲーションの設定*/
.c_slider_coupon .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.c_slider_coupon .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.c_slider_coupon .slick-dots button {
  color: transparent;
  outline: none;
  width: 10px;
  height: 10px;
  display: block;
  border: none;
  border-radius: 50%;
  background: #E6E6E6;
}
.c_slider_coupon .slick-dots .slick-active button {
  background: #AAAAAA; /*ドットボタンの現在地表示の色*/
}
.c_slider_coupon .c_card_inner {
  padding: 15px 15px 30px 15px;
}
.c_slider_coupon .c_card__genre {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #888888;
  display: flex;
  align-items: center;
}
/*
.c_slider_coupon .c_card__genre .is_card_area {
  position: relative;
  margin-right: 1em;
}
.c_slider_coupon .c_card__genre .is_card_area::after {
  content: "／";
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
  right: -1em;
}
*/
.c_slider_coupon .c_card__title {
  font-size: 1.6rem;
  font-weight: bold;
}

.c_slider_coupon .c_card__title .is_title {
	padding-top: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}
.c_slider_coupon .c_card__title span {
  display: inline-block;
  font-size: 1.4rem;
  color: #C50000;
}
.c_slider_coupon .c_card__lead {
  margin-top: 10px;
  font-size: 1.4rem;
}
/*----------------------------------------------
  	.c_search_results
  ---------------------------------------------*/
.c_search_results {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l_mypage .c_search_results {
  display: block;
}
.c_search_results .is_keyword span {
  font-weight: bold;
}
.c_search_results .is_number {
  margin-bottom: 0px;
}
.is_number {
  text-align: right;
}
/*----------------------------------------------
  	.c_coupon_list-card
  ---------------------------------------------*/
.c_coupon_list-card {
  margin-bottom: 30px;
  padding: 15px;
  border: 2px solid #CCCCCC;
  border-radius: 5px;
  background: #FFFFFF;
}
/*
.c_coupon_list-card:hover {
  border: 1px solid #F0EDE7;
  background: #F0EDE7;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 8px -2px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  cursor: pointer;
}
*/
/*----------------------------------------------
  	.c_coupon_empty
  ---------------------------------------------*/
.c_coupon_empty {
  margin-bottom: 40px;
  text-align: center;
}
.c_coupon_empty h2 {
  margin-bottom: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}
/*----------------------------------------------
  	.c_card__main
  ---------------------------------------------*/
.c_card__main {
  margin-bottom: 15px;
  display: flex;
}
.c_card__main .c_card__img {
  width: 350px;
  margin-right: 30px;
  flex-shrink: 0;
}
.c_card__main img {
  width: 100%;
  height: auto;
  /*  height: 230px;*/
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.c_card__main a img:hover {
  opacity: 0.6;
}
.c_card__main .c_card__text {
  width: 100%;
  overflow-wrap: anywhere;
}
.c_card__main .c_card__text .c_card__genre {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #888888;
  display: flex;
  align-items: center;
}
/*
.c_card__main .c_card__text .c_card__genre .is_card_category {
  position: relative;
  margin-right: 1em;
}
.c_card__main .c_card__text .c_card__genre .is_card_category::after {
  content: "／";
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
  right: -1em;
}
*/
.c_card__main .c_card__text h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}
.c_card__main .c_card__text h2 a {
  text-decoration: none;
}
.c_card__main .c_card__text p {
  font-size: 1.4rem;
}
.c_card__main .c_card__text .c_link_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
}
.c_card__main .c_card__text .c_link_box .is_btn_favorite {
  margin-top: 0;
}
.c_card__main .c_card__text .c_link_box .is_details {
  margin-top: 0;
}
/*----------------------------------------------
  	.c_card__ticket
  ---------------------------------------------*/
.c_card__ticket h3 {
  font-size: 1.6rem;
  color: #C50000;
  font-weight: bold;
}
.c_card__ticket .c_ticket-box {
  margin-top: 10px;
  background: #FCF5F5;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  text-decoration: none;
}
.c_card__ticket .c_ticket-box:last-of-type {
  margin-bottom: 0px;
}
.c_card__ticket .c_ticket-box:hover {
  color: #313131;
  background: #F8E1E1;
}
.c_card__ticket .c_ticket-box:hover span {
  color: #C50000;
}
.c_card__ticket .c_ticket-box .c_ticket__img {
  width: 120px;
  flex-shrink: 0;
}
.c_card__ticket .c_ticket__img img {
  width: 100%;
  height: auto;
  min-height: 70px;
  aspect-ratio: 16/9;
  object-fit: contain;
  /*  background:#E6E6E6;*/
  background: #FFF;
  border: 1px solid #ededed;
}
.c_card__ticket .c_ticket-box p {
  padding: 10px 10px 10px 15px;
  font-size: 1.4rem;
  font-weight: bold;
  align-self: center;
}
.c_card__ticket .c_ticket-box span {
  color: #C50000;
}
.is_details {
  position: relative;
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: right;
}
.is_details::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #313131;
  border-right: solid 1px #313131;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 145px;
  margin-top: -2px;
}
/*----------------------------------------------
  	.c_page-numbers
  ---------------------------------------------*/
.c_page-numbers {
  margin-top: 20px;
}
.c_page-numbers ul {
  display: block;
  text-align: center;
}
.c_page-numbers li {
  display: inline-block;
  margin-right: 5px;
  text-align: center;
}
.c_page-numbers li:last-of-type {
  margin-right: 0;
}
.c_page-numbers .is_nmber {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-top: 5px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  background: #fff;
  line-height: 38px;
  text-decoration: none;
}
.c_page-numbers .is_nmber:hover {
  border: 1px solid #006CBA;
  color: #FFFFFF;
  font-weight: bold;
  background: #006CBA;
}
.c_page-numbers .is_nmber.active {
  border: 1px solid #006CBA;
  color: #FFFFFF;
  font-weight: bold;
  background: #006CBA;
}
/*----------------------------------------------
  	.c_coupon_info-card
  ---------------------------------------------*/
.c_coupon_info-card {
  margin-bottom: 40px;
  display: flex;
}
.c_coupon_info-card .c_card__img {
  width: 350px;
  margin-right: 30px;
}
.c_coupon_info-card .c_card__img img {
  width: 100%;
  height: auto;
  /*  height: 230px;*/
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.c_coupon_info-card .c_card__text {
  width: 560px;
}
.c_coupon_info-card .c_card__text .c_card__genre {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #888888;
}
.c_coupon_info-card .c_card__text h2 {
  margin-bottom: 10px;
  font-size: 2.2rem;
}
.c_coupon_info-card .is_card_address, .c_coupon_info-card .is_card_tel {
  position: relative;
  padding-left: 1.2em;
}
.c_coupon_info-card .is_card_address::before {
  content: "";
  width: 12px;
  height: 15px;
  background: url("../images/icon_address.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_coupon_info-card .is_card_tel::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icon_tel.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*----------------------------------------------
  	.c_favorite
  ---------------------------------------------*/
.c_favorite .is_btn_favorite {
  display: inline-block;
  position: relative;
  width: 180px;
  height: 45px;
  padding: 11px 0px 11px 20px;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none !important;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  cursor: pointer;
}
.c_favorite .is_btn_favorite::before {
  content: "";
  width: 21px;
  height: 20px;
  background: url(../images/icon_star_o.png) no-repeat center center;
  background-size: 75%;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_favorite .is_btn_favorite.is_active, .c_favorite .is_btn_favorite:hover {
  color: #FFFFFF;
  font-weight: bold;
  background: #F49629;
  border: 1px solid #F49629;
}
.c_favorite .is_btn_favorite.is_active::before, .c_favorite .is_btn_favorite:hover::before {
  background: url(../images/icon_star_w.png) no-repeat center center;
  background-size: 75%;
}
.c_favorite .is_btn_favorite.is_active::before {
  left: inherit;
  margin-left: -25px;
}
/*----------------------------------------------
  	.c_ttl_section
  ---------------------------------------------*/
.c_ttl_section {
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 1px solid #313131;
}
/*----------------------------------------------
  	.c_ttl_type03
  ---------------------------------------------*/
.c_ttl_type03 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #006CBA;
  font-weight: bold;
}
/*----------------------------------------------
  	.c_ttl_type04
  ---------------------------------------------*/
.c_ttl_type04 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}
/*----------------------------------------------
  	.c_coupon_coverview
  ---------------------------------------------*/
.c_coupon_coverview .is_catch {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}
/*----------------------------------------------
  	.c_coupon_info-coupon
  ---------------------------------------------*/
.c_coupon_info-coupon {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #CCCCCC;
  display: flex;
}
.c_coupon_info-coupon:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.c_coupon_info-coupon .c_card__img {
  width: 350px;
  margin-right: 30px;
}
.c_coupon_info-coupon .c_card__img img {
  width: 100%;
  height: auto;
  /*  height: 230px;*/
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.c_coupon_info-coupon .c_card__img-sub {
  width: 350px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c_coupon_info-coupon .c_card__img-sub div {
  width: 165px;
}
.c_coupon_info-coupon .c_card__img-sub img {
  width: 100%;
  height: auto;
  /*  height: 105px;*/
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.c_coupon_info-coupon .c_card__text h2 {
  margin-bottom: 20px;
  font-size: 2.0rem;
}
.c_coupon_info-coupon .c_card__text h2 span {
  color: #C50000;
}
.c_coupon_info-coupon .is_limit {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
}
.c_coupon_info-coupon .is_expiry {
  margin-bottom: 20px;
}
.c_coupon_info-coupon .is_expiry span {
  color: #C50000;
}
.c_coupon_info-coupon .c_card__text .c_table_type01 {
  width: 530px;
}
.c_coupon_info-coupon .c_card__text .c_table_type01 th {
  width: 140px;
}
.l_coupon_info .is_note {
  margin-top: 20px;
  word-break: break-all;
}
.l_coupon_info .is_note-02 {
  margin-top: 40px;
  word-break: break-all;
}
.l_coupon_info .c_btn_red {
  margin-top: 20px;
}
.l_coupon_info .c_coupon_store {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.l_coupon_info .c_coupon_store:last-child {
  margin-bottom: 0;
}
.l_coupon_info .c_coupon_store .is_store-name {
  margin-bottom: 5px;
  font-weight: bold;
}
.l_coupon_info .c_coupon_store .is_store-address, .l_coupon_info .c_coupon_store .is_store-tel {
  position: relative;
  padding-left: 1.2em;
}
.l_coupon_info .c_coupon_store img {
  width: 112px;
}
.l_coupon_info .c_coupon_store div {
  width: 616px;
  margin-left: 2em;
  margin-right: 2em;
}
.l_coupon_info .c_coupon_store .is_store-address::before {
  content: "";
  width: 12px;
  height: 15px;
  background: url(../images/icon_address.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 5px;
}
.l_coupon_info .c_coupon_store .is_store-tel::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/icon_tel.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_coupon_info .coupon-shop-region-accordion-header {
    font-size: 1.3em;
    cursor: pointer;
}
.l_coupon_info .coupon-shop-region-accordion-header .accordion-mark {
    display: inline-block;
    margin-left: 0.2em;
    width: 1em;
    height: 1em;
    text-align: center;
    line-height: 1em;
    border-radius: 50%;
    background-color: #006cba;
    color: #ffffff;
    font-size: 0.9em;
    cursor: pointer;
}

/*----------------------------------------------
	.c_flash-message
---------------------------------------------*/
.c_flash-message {
  margin-bottom: 40px;
  padding: 20px 0;
  text-align: center;
  color: #006CBA;
  font-size: 2.0rem;
  font-weight: bold;
  background: #E7F0F7;
  border-radius: 5px;
}
/*----------------------------------------------
	.c_register_form
---------------------------------------------*/
.c_register_form .c_table_type01 {
  margin-bottom: 40px;
}
.c_register_form .c_table_type01 th {
  width: 200px;
  font-weight: bold;
}
.c_register_form .c_table_type01 input {
  width: 100%;
  padding: 10px;
  background: #F9F9FB;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
}
.c_register_form .c_table_type01 input.is_50{
  width:50%;
}

.c_register_form .c_table_type01 input::placeholder {
  color: #AAAAAA;
  opacity: 1;
}
.c_register_form .btn_submit {
  border: none;
  outline: none;
  cursor: pointer;
}
.c_register_form .btn_submit:hover {
  opacity: 0.6;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
::-ms-expand {
  display: none;
}
.c_register_form .c_table_type01 select {
  width: 35%;
  padding: 10px;
  background: #F9F9FB;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  background-image: url("../../images/mypage/form-arrow.png");
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: right 15px center;
  background-color: #fff;
}
.c_register_form .c_table_type01 .is_date-birth {
  width: 70px;
  padding: 5px 10px;
}
.c_register_form .c_table_type01 .is_date {
  width: 50px;
  padding: 5px 10px;
}
.c_register_form .c_table_type01 .is_category-check {
  margin:-1px -0.5px -0.5px -1px;
  display: flex;
  flex-wrap: wrap;
}
.c_register_form .c_table_type01 .is_category-check label {
	display: flex;
  width: 200px;
}
.c_register_form .c_table_type01 .is_category-check input {
  width: auto;
}
.c_register_form .c_table_type01 .is_category-check span {
  padding-left: 5px;
}

.c_register_form .c_table_type01 .is_menber-check {
  margin:-0.5px -0.5px -1px -1px;
  display: flex;
  flex-wrap: wrap;
}
.c_register_form .c_table_type01 .is_menber-check label {
	display: flex;
}
.c_register_form .c_table_type01 .is_menber-check label:first-child{
	margin-right: 20px;
}
.c_register_form .c_table_type01 .is_menber-check input {
  width: auto;
}
.c_register_form .c_table_type01 .is_menber-check span {
	margin-bottom: 0;
  padding-left: 5px;
}
.c_register_form .c_table_type01 textarea{
	width: 100%;
	min-height: 150px;
	padding:10px;
	background: #F9F9FB;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}




.c_register_form a {
  color: #006CBA;
}
.c_register_form a:hover {
  color: #C50000;
}
.c_register_form .is_error {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #F00000;
}
.c_register_form .is_error_login {
  margin-bottom: 20px;
  padding: 15px 0;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  color: #C50000;
  background: #F2DADA;
  border: 2px solid #C50000;
}
/*----------------------------------------------
	.c_btn_blue
---------------------------------------------*/
.c_btn_blue {
  display: inline-block;
  padding: 15px 20px;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  background: #006CBA;
  border-radius: 5px;
}
a.c_btn_blue:hover {
  color: #FFFFFF;
  opacity: 0.6;
}
span.c_btn_blue, .c_btn_blue.is_disable {
  background: #ccc;
  pointer-events: none;
}
.c_btn_blue span.is_red {
  display: inline-block;
  margin-right: 10px;
  padding: 3px 5px 3px 8px;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: normal;
  background: #C50000;
  border-radius: 5px;
  letter-spacing: 2px;
}
.l_mypage .c_btn_blue {
  min-width: 250px;
}
.l_register .c_btn_blue {
  min-width: 400px;
  color: #FFFFFF !important;
}
/*----------------------------------------------
	.c_btn_orange
---------------------------------------------*/
.c_btn_orange {
  display: inline-block;
  padding: 15px 20px;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  background: #F49629;
  border-radius: 5px;
}
a.c_btn_orange:hover {
  color: #FFFFFF;
  opacity: 0.6;
}
span.c_btn_orange, .c_btn_orange.is_disable {
  background: #ccc;
  pointer-events: none;
}
/*----------------------------------------------
	.c_btn_red
---------------------------------------------*/
.c_btn_red {
  display: inline-block;
  padding: 15px 20px;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  background: #C50000;
  border-radius: 5px;
}
a.c_btn_red:hover {
  color: #FFFFFF;
  opacity: 0.6;
}
span.c_btn_red, .c_btn_red.is_disable {
  background: #ccc;
  pointer-events: none;
}
/*----------------------------------------------
	.c_btn_gray
---------------------------------------------*/
.c_btn_gray {
  display: inline-block;
  padding: 10px 20px;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  background: #CCCCCC;
  border-radius: 5px;
}
a.c_btn_gray:hover {
  color: #FFFFFF;
  background: #888888;
}
/*----------------------------------------------
	.c_btn_loout
---------------------------------------------*/
.c_btn_loout {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  background: #C50000;
  border-radius: 5px;
}
a.c_btn_loout:hover {
  color: #FFFFFF;
  opacity: 0.6;
}
/*----------------------------------------------
	.c_btn_white
---------------------------------------------*/
.c_btn_white {
  display: inline-block;
  padding: 15px 20px;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  color: #006CBA;
  font-weight: bold;
  background: #FFFFFF;
  border: 1px solid #006CBA;
  border-radius: 5px;
}
a.c_btn_white:hover {
  color: #FFFFFF;
  background: #006CBA;
}
/*----------------------------------------------
	.c_coupon_login-box
---------------------------------------------*/
.c_coupon_login-box {
  margin-top: 10px;
  background: #FCF5F5;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  display: flex;
  justify-content:flex-start;
  align-items: center;
}

.c_coupon_login-box .c_ticket__img {
    width: 120px;
	margin-right:100px;
    flex-shrink: 0;
}

.c_coupon_login-box .c_ticket__img img{
width: 100%;
    height: auto;
    min-height: 70px;
    aspect-ratio: 16/9;
    object-fit: contain;
    background: #FFF;
    border:none;
	border-radius:5px 0 0 5px;
}


.c_coupon_login-box .c_login-inner{
  display: flex;
  justify-content:center;
  align-items: center;
}

.c_coupon_login-box p {
  font-weight: bold;
}

.c_coupon_login-box .c_btn_orange{
  margin-left: 20px;
}



/*クーポン詳細*/
.l_coupon_info .c_coupon_login-box {
    padding: 20px;
	justify-content: center;
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
  width: 100%;
  font-size: 1.4rem;
}
.c_table_type01 th {
  font-weight: normal;
  background: #F6F6F6;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.c_table_type01 th, .c_table_type01 td {
  padding: 15px;
  border: 1px solid #CCCCCC;
}

.c_table_type01 td span{
 display:block;
	margin-bottom: 5px;
}


.l_coupon_info .c_table_type01 td.u_pc-1024{
	display: table-cell !important;
}
.c_table_type01 a {
  color: #006CBA;
}
.c_table_type01 a:hover {
  color: #C50000;
}
/*----------------------------------------------
  .c_double_table
---------------------------------------------*/
.c_double_table {
  display: flex;
  flex-wrap: wrap;
}
.c_double_table th {
  width: 150px;
  margin: 0 0 -1px -1px;
}
.c_double_table td {
  width: 322px;
  margin: 0 0 -1px -1px;
  word-wrap: break-word;
}
/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
  vertical-align: top;
}
.c_list_type01 li {
  list-style: none;
  position: relative;
  padding-left: .8em;
}
.c_list_type01 li::before {
  color: #ffd14e;
  position: absolute;
  display: inline-block;
  width: 10px;
  vertical-align: middle;
  top: 8px;
  left: 0;
}
.c_list_type01.is_disc li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #313131;
  top: 10px;
}
.c_list_type01.is_decimal li {
  padding-left: 1.8em;
}
.c_list_type01.is_decimal {
  counter-reset: is_decimal_counter;
}
.c_list_type01.is_decimal li::before {
  counter-increment: is_decimal_counter;
  content: counter(is_decimal_counter) ".";
  font-weight: bold;
  text-align: right;
  width: 25px;
  margin-right: 5px;
  color: #313131;
  vertical-align: unset;
  top: 0;
}
.c_list_type01 p.is_indent {
  padding-left: 1em;
  text-indent: -1em;
}

/*----------------------------------------------
	.c_shop_result
---------------------------------------------*/
.c_shop_result ul {
    list-style: none;
}
.c_shop_result ul li {
    margin-bottom: 15px;
}
.c_shop_name {
    font-size: 18px;
    font-weight: bold;
}
.c_shop_detail {
    margin-bottom: 5px;
}
/*----------------------------------------------
	.c_shop_coupon
---------------------------------------------*/
.c_shop_coupon ul li a {
  display: grid;
  grid-template-columns: 25px 1fr 1em;
  align-items: center;
  padding: 8px;
  border-radius: 3px;
  background: #feddc5;
  font-weight: bold;
  text-decoration: none;
}
.c_shop_coupon ul li a:hover {
  color: #333;
  opacity: 0.7;
}
.c_shop_coupon ul li a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 13px;
  background-image: url("../images/icon_ticket.png");
  background-size: 100%;
  background-repeat: no-repeat;
}
.c_shop_coupon ul li a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fa5c21;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 2px solid #fa5c21;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

/*----------------------------------------------
	.c_bubble_box
---------------------------------------------*/
.c_bubble_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 250px;
    padding: 4px 10px;
}

/*----------------------------------------------
	.c_bubble_detail
---------------------------------------------*/
.c_bubble_detail {
  border: 1px solid #006CBA;
  border-radius: 7px;
  width: 220px;
}
.c_bubble_detail a {
  display: grid;
  grid-template-columns: 25px 1fr 1em;
  column-gap: 5px;
  align-items: center;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}
.c_bubble_detail a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 13px;
  background-image: url("/common/images/icon_ticket.png");
  background-size: 100%;
  background-repeat: no-repeat;
}
.c_bubble_detail a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: .6em;
  height: .6em;
  border: 1px solid #333;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

/*----------------------------------------------
	.c_btn_close
---------------------------------------------*/
.c_btn_close {
  position: absolute;
  top: -13px;
  right: -2px;
  width: 28px;
  height: 28px;
  border: 3px solid #FFF;
  border-radius: 100%;
  background: #006CBA;
  cursor: pointer;
  z-index:1000;
}
.c_btn_close span {
  display: block;
  width: 15px;
  height: 2px;
  background: #FFF;
  translate: 4px 10px;
}
.c_btn_close span:nth-child(1) {
  margin-bottom: -2px;
  rotate: 45deg;
}
.c_btn_close span:nth-child(2) {
  rotate: -45deg;
}

/*----------------------------------------------
	.c_btn_search_again
---------------------------------------------*/
.c_btn_search_again {
  position: absolute;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, calc(-100% - 20px));
}
.c_btn_search_again a {
  display: inline-block;
  width: 200px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  border-radius: 100px;
  background: hsla(205,100%,36%,0.90);
  color: #FFF;
  font-size: 14px;
}

/*----------------------------------------------
	.c_form_credit_label
---------------------------------------------*/
.c_form_credit_label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
/* タイトル */
.c_form_credit_label .is_ttl {
  font-size: 14px;
  font-weight: bold;
}
/* 必須 */
.c_form_credit_label .is_required {
  display: inline-block;
  margin-left: 10px;
  padding: 0px 10px 2px 10px;
  translate: 0 -1px;
  background: #FF0000;
  color: #fff;
  font-size: 12px;
  border-radius: 100px;
}
/* 枠組み */
.c_form_credit_label .is_select,
.c_form_credit_label .is_input {
  padding: 5px 15px;
  background: #EFF1F3;
  color: #333;
  border: none;
  border-radius: 3px;
}
/* select */
.c_form_credit_label select.is_select {
  appearance: auto!important;
}
.c_form_credit_label .is_select:focus {
  outline: none;
}
/* radio */
.c_form_credit_label .is_radio input {
  display: none;
}
.is_radio_span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #E2E4E7;
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
  background: #EFF1F3;
  translate: 0 -2px;
}
.is_radio_span::after {
  content: "";
  position: absolute;
  display: none;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0089c8;
}
.is_radio input:checked + .is_radio_span::after {
  display: block;
}
.is_radio input:checked + .is_radio_span {
  border-color: #0089c8;
}
.c_form_credit_label .is_radio label {
  margin-right: 30px;
}
/* checkbox */
.c_form_credit_label.is_kiyaku {
  padding: 25px;
  background: #EFF1F3;
  color: #333;
  border: none;
  border-radius: 3px;
}
.c_form_credit_label .is_check input {
  display: none;
}
.is_check_span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #E2E4E7;
  border-radius: 2px;
  position: relative;
  vertical-align: middle;
  margin-right: 10px;
  background: #fff;
  translate: 0 -2px;
}
.is_check_span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 13px;
  border: solid #0089c8;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}
.is_check input:checked + .is_check_span::after {
  display: block;
}

/*----------------------------------------------
	.c_registration_table
---------------------------------------------*/
.c_registration_table {
  width: 100%;
  margin-bottom: 20px;
  border-top: 1px solid #b5d6e5;
  border-left: 1px solid #b5d6e5;
  background: #F6FAFF;
  border-radius: 5px;
}
.c_registration_table th,
.c_registration_table td {
  padding: 10px 20px;
  border-right: 1px solid #b5d6e5;
  border-bottom: 1px solid #b5d6e5;
  color: #0089c8;
}
.c_registration_table th {
  width: 200px;
  text-align: left;
}
@media only screen and (max-width:768px) {
  .c_registration_table th {
    width: auto;
    text-align: left;
  }
}

/*----------------------------------------------
	.c_form_credit_btn_box
---------------------------------------------*/
.c_form_credit_btn_box {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.c_form_credit_btn_box .is_prev,
.c_form_credit_btn_box .is_next {
  max-width: 300px;
  width: 100%;
  padding: 15px 15px;
  font-weight: bold;
  border-radius: 100px;
  border: none;
  cursor: pointer;
}
.c_form_credit_btn_box .is_prev {
  color: #333!important;
  background: #EFF1F3;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.30));
}
.c_form_credit_btn_box .is_next {
  color: #fff!important;
  background: linear-gradient(300deg, #0089c8, #0093cb, #009dcb, #00a6ca, #00afc8, #00b8c4, #00c0bf, #15c8b9);
  filter: drop-shadow(1px 1px 1px rgba(13,87,118,0.52));
}
.c_form_credit_btn_box .is_prev:hover,
.c_form_credit_btn_box .is_next:hover {
  opacity: .7;
}
.c_form_credit_btn_box .is_prev a {
  color: #333;
}
.c_form_credit_btn_box a {
  display: block;
  text-decoration: none;
  color: #f00;
}
