@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Koulen&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* CSS Document */
.nopc {
  display: none;
}

main {
  width: 100%;
  background-color: #fffef1;
}

main * {
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 3エリア用パーツ */
:root {
  /* mv bg */
  --mv__coupon_bg--okinawa: url("../img/coupon/oka/bgmv_pc.jpg");
  --mv__coupon_bg--hokkaido: url("../img/coupon/hok/bgmv_pc.jpg");
  --mv__coupon_bg--kyushu: url("../img/coupon/kyu/bgmv_pc.jpg");
  --mv__coupon_bg--chugoku: url("../img/coupon/chu/bgmv_pc.jpg");
  --mv__coupon_bg--shikoku: url("../img/coupon/shi/bgmv_pc.jpg");
  /* nav li width */
  --nav__list_width--okinawa: calc(100% / 8);
  --nav__list_width--hokkaido: calc(100% / 6);
  --nav__list_width--kyushu: calc(100% / 6);
  --nav__list_width--chugoku: calc(100% / 6);
  --nav__list_width--shikoku: calc(100% / 5);
  /* area title bg*/
  --area__title_bg--okinawa: url("../img/coupon/oka/bg_headline.png");
  --area__title_bg--hokkaido: url("../img/coupon/hok/bg_headline.png");
  --area__title_bg--kyushu: url("../img/coupon/kyu/bg_headline.png");
  --area__title_bg--chugoku: url("../img/coupon/chu/bg_headline.png");
  --area__title_bg--shikoku: url("../img/coupon/shi/bg_headline.png");
  /* menu nav a bg */
  --menu__nav--icon: url("../img/coupon/arrow_oval.svg");
  /* menu card bg */
  --meau__card_bg: url("../img/coupon/bg_subT.png");
  /* coupon list icon*/
  --coupon__list_sight--icon: url("../img/coupon/icon_gate.svg");
  --coupon__list_food--icon: url("../img/coupon/icon_gourmet.svg");
  --coupon__list_exp--icon: url("../img/coupon/icon_trial.svg");
  --coupon__list_buy--icon: url("../img/coupon/icon_buy.svg");
  --coupon__list_ticket--icon: url("../img/coupon/icon_ticket.svg");
  --coupon__list_event--icon: url("../img/coupon/icon_event.svg");
  /* coupon list menu ballon*/
  --menu__ballon_sight--icon: url("../img/coupon/img_balloon_01.svg");
  --menu__ballon_ticket--icon: url("../img/coupon/img_balloon_02.svg");
  --menu__ballon_food--icon: url("../img/coupon/img_balloon_03.svg");
  --menu__ballon_buy--icon: url("../img/coupon/img_balloon_04.svg");
  --menu__ballon_exp--icon: url("../img/coupon/img_balloon_05.svg");
  --menu__ballon_event--icon: url("../img/coupon/img_balloon_06.svg");
}

/* MV */
.main-title {
  width: 100%;
  height: 220px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
}

.main-title img {
  width: auto;
  height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}

.okinawa__coupon_area .main-title {
  background-image: var(--mv__coupon_bg--okinawa);
}

.hokkaido__coupon_area .main-title {
  background-image: var(--mv__coupon_bg--hokkaido);
}

.kyushu__coupon_area .main-title {
  background-image: var(--mv__coupon_bg--kyushu);
}

.chugoku__coupon_area .main-title {
  background-image: var(--mv__coupon_bg--chugoku);
}

.shikoku__coupon_area .main-title {
  background-image: var(--mv__coupon_bg--shikoku);
}

/* nav */
.nav__container {
  width: 100%;
  border-top: 2px dashed #e5004f;
  border-bottom: 2px dashed #e5004f;
  background-color: #fff;
}
.area-list {
  display: flex;
  justify-content: space-between;
}

.area-list>li {
  border-left: 1px solid #e0e0e0;
}
.area-list>li:last-child{
  border-right: 1px solid #e0e0e0;
}
.area-list>li {
  width: calc(100% / 6);
  flex-grow: 1;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.area-list.hokkaido>li{
  font-size: 15px;
}
.area-list>li.is-active,
.area-list>li:hover {
  background: #e5004f;
  color: #fff;
}
.top-button{
  width: 120px;
  background-color: #faccdc;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  line-height: 65px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.link-button{
  width: 600px;
  margin: 30px auto 0;
}
.link-button>a{
  display: block;
  background: #e5004f;
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  padding: 16px;
  position: relative;
  transition: 0.3s;
}
.link-button>a:hover{
  opacity: 0.7
}
.link-button>a::after{
  content: "";
  background: url("/cmn/icon/icon_arrow_right_white.svg") no-repeat center center / cover;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: 0;
  margin: auto
}

/* area wrapper */

.area-wrapper {
  width: 100%;
  display: none
}

.area-wrapper.is-active {
  display: block
}

section {
  width: 100%;
  padding: 30px 0;
  border-bottom: 3px dashed #cecece;
}

section:first-child {
  border-bottom: none;
  padding-bottom: 0
}

section:nth-child(odd):not(:first-child) {
  background: #fff;
}
.hokkaido__coupon_area .area-wrapper section .innerbox{
  position: relative
}
/*.hokkaido__coupon_area .area-wrapper section .innerbox::before{
  content: "";
  background: url("../img/coupon/hok/bg_asobo_snowmiku-anime.png") no-repeat center center / contain;
  width: 309px;
  height: 600px;
  position: absolute;
  top: 0;
  left: -350px;
}
.hokkaido__coupon_area .area-wrapper section .innerbox::after{
  content: "";
  background: url("../img/coupon/hok/bg_asobo_chibimiku-anime.png") no-repeat center center / contain;
  width: 331px;
  height: 600px;
  position: absolute;
  bottom: 0;
  right: -350px;
}*/
.hokkaido__coupon_area .area-wrapper section:first-child .innerbox::before{
  content: none;
  background-color: #fffef1
}
.innerbox {
  width: 992px;
  margin: auto;
}

.head-wrapper {
  width: 992px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 40px;
}

.area-title {
  width: 370px;
  background-repeat: repeat;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding: 10px;
}
.area-title.s-size{
  font-size: 21px;
}
.okinawa__coupon_area .area-title {
  background-image: var(--area__title_bg--okinawa);
}

.hokkaido__coupon_area .area-title {
  background-image: var(--area__title_bg--hokkaido);
}

.kyushu__coupon_area .area-title {
  background-image: var(--area__title_bg--kyushu);
}

.chugoku__coupon_area .area-title {
  background-image: var(--area__title_bg--chugoku);
}

.shikoku__coupon_area .area-title {
  background-image: var(--area__title_bg--shikoku);
}

.area-title:after {
  content: "";
  width: 0;
  height: 0;
  border: 40px solid transparent;
  border-right: 30px solid #fffef1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.menu-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.menu-nav>li {
  margin-right: 10px;
}

.menu-nav>li:last-child {
  margin-right: 0;
}

.menu-nav>li a {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #1b1b1b;
  text-decoration: underline;
  margin-right: 30px;
  position: relative;
  line-height: 1.2em
}

.menu-nav>li a:after {
  content: "";
  background-image: var(--menu__nav--icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 28px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -24px
}

.menu-nav>li a:hover {
  text-decoration: none;
}

.coupon-list {
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap
}

.coupon-list>li {
  width: calc(98% / 3);
  margin-right: 1%;
  margin-bottom: 20px;
}

.coupon-list>li:nth-child(3n) {
  margin-right: 0
}

.menu-type {
  font-size: 20px;
  font-weight: bold;
  padding-left: 34px;
  margin-bottom: 5px;
  position: relative
}

.coupon-list>li.sight .menu-type {
  color: #e38600
}

.coupon-list>li.food .menu-type {
  color: #ed5db5
}

.coupon-list>li.exp .menu-type {
  color: #44bbff
}

.coupon-list>li.buy .menu-type {
  color: #17af1a
}

.coupon-list>li.ticket .menu-type {
  color: #00ada9
}

.coupon-list>li.event .menu-type {
  color: #b07fff
}

.menu-type::before {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.coupon-list>li.sight .menu-type::before {
  background-image: var(--coupon__list_sight--icon);
}

.coupon-list>li.food .menu-type::before {
  background-image: var(--coupon__list_food--icon);
}

.coupon-list>li.exp .menu-type::before {
  background-image: var(--coupon__list_exp--icon);
}

.coupon-list>li.buy .menu-type::before {
  background-image: var(--coupon__list_buy--icon);
}

.coupon-list>li.ticket .menu-type::before {
  background-image: var(--coupon__list_ticket--icon);
}

.coupon-list>li.event .menu-type::before {
  background-image: var(--coupon__list_event--icon);
}

.menu-type>span::before {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid;
}

.coupon-list>li.sight .menu-type span::before {
  content: "観光・入場";
}

.coupon-list>li.food .menu-type span::before,
.long-menu>li.food .menu-type span::before {
  content: "グルメ"
}

.coupon-list>li.exp .menu-type span::before {
  content: "体験・乗り物"
}

.coupon-list>li.buy .menu-type span::before {
  content: "買い物・お土産"
}

.coupon-list>li.ticket span::before {
  content: "チケット"
}

.coupon-list>li.event span::before {
  content: "イベント"
}

.coupon-list>li.sight .menu-ballon {
  background-image: var(--menu__ballon_sight--icon);
}

.coupon-list>li.food .menu-ballon {
  background-image: var(--menu__ballon_food--icon);
}

.coupon-list>li.exp .menu-ballon {
  background-image: var(--menu__ballon_exp--icon);
}

.coupon-list>li.buy .menu-ballon {
  background-image: var(--menu__ballon_buy--icon);
}

.coupon-list>li.ticket .menu-ballon {
  background-image: var(--menu__ballon_ticket--icon);
}

.coupon-list>li.event .menu-ballon {
  background-image: var(--menu__ballon_event--icon);
}

.menu-ballon {
  height: 110px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  font-size: 14px;
  font-weight: bold;
  padding: 10px;
  position: relative;
  z-index: 20
}

.menu-card {
  background-image: var(--meau__card_bg);
  background-repeat: repeat;
  padding: 5px;
  margin-top: -20px;
}

.menu-ph {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-ph img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.3;
  background: #fccf00;
  padding: 5px;
}

.menu-list {
  background: #FFF;
  padding: 5px;
}

.coupon-sheets {
  font-size: 16px;
  font-weight: bold;
  color: #e5004f;
  position: relative;
  padding-top: 2em;
  border-bottom: 2px dashed;
  margin-bottom: 10px;
}

.coupon-sheets::before {
  content: "クーポン";
  display: inline-block;
  background: #e5004f;
  padding: 3px;
  font-size: 14px;
  color: #FFF;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.coupon-sheets .sm-txt {
  font-size: 12px;
  font-weight: normal;
  color: #e5004f;
  display: inline-block;
  margin: 0 3px;
}

.coupon-sheets small {
  font-size: 12px;
  display: inline-block;
  margin: 0 3px;
}

.free-charge {
  display: block;
  font-size: 12px;
  padding-left: 1.0em;
  position: relative
}

.free-charge::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
}

.notice {
  display: block;
  position: relative;
  padding-left: 1.0em;
}

.coupon-note {
  margin: 5px auto;
}

.coupon-note>li {
  font-size: 12px;
}

.coupon-note>li.urgent {
  color: #C00;
  font-weight: bold;
  font-size: 14px;
}

.coupon-note>li.reserve {
  background: #e5004f;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
  padding: 3px;
  margin: 5px auto;
}

.coupon-note>li.asta {
  padding-left: 1.0em;
  position: relative;
}

.coupon-note>li.asta::before,
.notice::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.coupon-note>li a {
  text-decoration: underline;
  color: #1A0DAB;
}

.copyright__txt {
    font-size: 70%;
    font-weight: normal;
    display: block;
    position: relative;
    padding-left: 5em;
}

.copyright__txt::before {
    content: "画像提供：";
    position: absolute;
    top: 0;
    left: 0;
}

/***** 2021.06.18そらピカ追加 *****/
#sorapika {
  width: 100%;
  background: #f5aa00;
  padding: 30px 0;
}

.coupon-title {
  line-height: 60px;
  background: #e73820;
  position: relative;
  margin: 0 30px 20px;
  font-size: 32px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

.coupon-title::before,
.coupon-title::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
}

.coupon-title::before {
  top: 0;
  left: -30px;
  border: solid 30px #e73820;
  border-left: 30px solid transparent;
}

.coupon-title::after {
  top: 0;
  right: -30px;
  border: solid 30px #e73820;
  border-right: 30px solid transparent;
}

#sorapika .coupon-list>li .menu-type {
  color: #FFF !important;
}

#sorapika .menu-type::before {
  background: url("../../pikachu_project/images/coupon/ico_sorapika.png") no-repeat center center / contain;
}

#sorapika .menu-type span::before {
  color: #FFF !important;
}

#sorapika .menu-ballon {
  background-image: url("../../pikachu_project/images/coupon/img_balloon_pika.png");
}

#sorapika .menu-card {
  background: #009fc9;
}

#sorapika .coupon-sheets {
  color: #e73820;
}

#sorapika .coupon-sheets::before {
  background: #e73820;
}

#sorapika .long-menu {
  width: 100%;
  margin-right: 0;
}

#sorapika .long-menu .menu-type {
  color: #fff !important;
}

#sorapika .long-menu .menu-card {
  display: flex;
  justify-content: space-between;
  background: #fff;
  margin-top: 0;
  padding: 10px;
}

#sorapika .long-menu .menu-card .menu-ph {
  width: 43%;
  height: 100%;
  margin-right: 1%;
}

#sorapika .long-menu .menu-card .menu-ph img {
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0, 0);
}

#sorapika .long-menu .menu-txt {
  font-size: 14px;
  font-weight: bold;
}

#sorapika .long-menu .menu-card .menu-list {
  flex: 1;
  padding: 0;
}

.innerbox.rights{
  padding: 20px 0;
}
.copy-right{
  text-align: center;  
}
.copy-right img{
  display: inline-block;
  margin-left: 10px;
}