@charset "UTF-8";
/* メディアクエリ
========================================== */
/* 共通スタイル
========================================== */
/* font */
/* present-list */
.present-list__item {
  width: 100%;
  padding: 15px;
}

@media (max-width: 600px) {
  .present-list__item {
    padding: 10px;
  }
}

.present-list__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.present-item__flexbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.present-item__imgwrap {
  width: 33%;
}

@media (max-width: 992px) {
  .present-item__imgwrap {
    width: 35%;
  }
}

@media (max-width: 600px) {
  .present-item__imgwrap {
    width: 40%;
  }
}

.present-item__img {
  width: 100%;
  padding-top: 56.25%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.present-item__body {
  width: 62%;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .present-item__body {
    width: 58%;
  }
}

.present-item__title {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 2.4rem;
}

@media (max-width: 992px) {
  .present-item__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .present-item__title {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
}

.present-item__text {
  font-size: 1.8rem;
}

@media (max-width: 992px) {
  .present-item__text {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .present-item__text {
    font-size: 1.2rem;
  }
}

.present-item__data {
  margin-top: 15px;
  color: #555;
  font-size: 1.8rem;
}

@media (max-width: 992px) {
  .present-item__data {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .present-item__data {
    margin-top: 8px;
    font-size: 1rem;
  }
}

/* present-list display-sp_column */
@media (max-width: 600px) {
  .present-list.display-sp_column .present-item__flexbox {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .present-list.display-sp_column .present-item__imgwrap {
    width: 100%;
  }
  .present-list.display-sp_column .present-item__body {
    width: 100%;
    margin-top: 10px;
  }
}

/* present-list display-pc_column */
.present-list.display-pc_column .present-list__item {
  box-shadow: 0 4px rgba(196, 204, 205, 0.9);
  margin-top: 15px;
  border-radius: 10px;
  background-color: #fff;
}

@media (min-width: 993px) {
  .present-list.display-pc_column {
    display: flex;
    flex-wrap: wrap;
  }
  .present-list.display-pc_column .present-list__item {
    box-shadow: 0 8px rgba(196, 204, 205, 0.9);
    width: 32%;
    margin-top: 0;
  }
  .present-list.display-pc_column .present-list__item:not(:first-child) {
    margin-left: 2%;
  }
  .present-list.display-pc_column .present-list__item:nth-child(3n+1) {
    margin-left: 0;
  }
  .present-list.display-pc_column .present-list__item:nth-child(n+4) {
    margin-top: 25px;
  }
  .present-list.display-pc_column .present-item__flexbox {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .present-list.display-pc_column .present-item__imgwrap {
    width: 100%;
  }
  .present-list.display-pc_column .present-item__body {
    width: 100%;
    margin-top: 10px;
  }
}

/* contents-wrapper
========================================== */
.contents-wrapper {
  background: #fff;
}

@media (min-width: 993px) {
  .contents-wrapper a {
    transition: opacity .1s ease;
  }
  .contents-wrapper a:hover {
    opacity: 0.6;
  }
  .contents-wrapper [id^="ntv_setAD"] a:hover {
    opacity: 1;
  }
}

/* mainvisual
========================================== */
.mainvisual {
  background-color: #fee028;
  padding: 45px 10% 35px;
}

@media (max-width: 600px) {
  .mainvisual {
    padding: 20px 20px 15px;
  }
}

.mainvisual__inner {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .mainvisual__inner {
    max-width: 100%;
  }
}

.mainvisual__img {
  display: block;
  width: 100%;
  padding-top: 28.55263%;
  background-image: url("../images/main_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  font-size: 0;
}

@media (max-width: 600px) {
  .mainvisual__img {
    padding-top: 33.99694%;
    background-image: url("../images/main_sp.png");
  }
}

/* nav
========================================== */
.nav {
  width: 100%;
}

.nav__inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 20px 0;
}

@media (max-width: 600px) {
  .nav__inner {
    padding: 3% 0;
  }
}

/* nav__list
------------------------------ */
.nav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0 20px;
}

@media (max-width: 600px) {
  .nav__list {
    padding: 0;
  }
}

.nav__item {
  width: 200px;
}

.nav__item:not(:first-child) {
  margin-left: 1%;
}

.nav__item a {
  display: block;
  width: 100%;
  padding-top: 27%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .nav__item {
    width: 33%;
  }
  .nav__item a {
    padding-top: 66%;
  }
}

/* nav - contents */
.nav__item--recommend a {
  background-image: url("../images/nav_recommend_pc.png");
}

.nav__item--new-present a {
  background-image: url("../images/nav_new-present_pc.png");
}

.nav__item--regular a {
  background-image: url("../images/nav_regular_pc.png");
}

@media (max-width: 600px) {
  .nav__item--recommend a {
    background-image: url("../images/nav_recommend_sp.png");
  }
  .nav__item--new-present a {
    background-image: url("../images/nav_new-present_sp.png");
  }
  .nav__item--regular a {
    background-image: url("../images/nav_regular_sp.png");
  }
}

.nav__item a span {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  color: transparent;
}

/* special
========================================== */
.special {
  width: 100%;
  background-color: #feb832;
  position: relative;
}

.special__inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 80px 0 70px;
  padding: 35px 0 45px;
}

@media (max-width: 600px) {
  .special__inner {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  .special__inner {
    padding: 0 0 10px;
  }
}

@media (min-width: 993px) {
  .special__box {
    padding: 0 20px;
  }
}

.special__title {
  background-image: url("../images/special_bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  color: transparent;
  width: 59.66325%;
  min-width: 500px;
  max-width: 815px;
  height: 0;
  padding-top: 6.88141%;
}

@media (max-width: 600px) {
  .special__title {
    padding-top: 11.67582%;
    width: 95%;
  }
}

@media (max-width: 992px) {
  .special__content {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .special__content {
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .special__content {
    padding: 0 25px;
  }
}

.special .present-list__item {
  padding: 35px 15px;
}

@media (max-width: 992px) {
  .special .present-list__item {
    padding: 25px 0;
  }
}

.special .present-list__item:not(:first-child) {
  border-top: 1px solid rgba(254, 115, 39, 0.5);
}

.special .present-item__imgwrap {
  position: relative;
  z-index: 10;
  width: 36%;
}

@media (max-width: 600px) {
  .special .present-item__imgwrap {
    width: 100%;
  }
}

.special .present-item__imgwrap::after {
  content: "";
  background-size: 8px 8px;
  width: 100%;
  height: 100%;
  background-color: rgba(254, 115, 39, 0.3);
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.21), rgba(0, 0, 0, 0.21) 1px, transparent 0, transparent 6px);
  background-size: 8px 8px;
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: -10;
}

@media (max-width: 600px) {
  .special .present-item__imgwrap::after {
    background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.21), rgba(0, 0, 0, 0.21) 1px, transparent 0, transparent 3px);
    background-size: 4px 4px;
    right: -5px;
    bottom: -5px;
  }
}

.special .present-item__title {
  font-size: 2.6rem;
}

@media (max-width: 992px) {
  .special .present-item__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .special .present-item__title {
    font-size: 2rem;
  }
}

.special .present-item__body {
  width: calc((100% - 45px) - 36%);
}

@media (max-width: 600px) {
  .special .present-item__body {
    margin-top: 20px;
  }
}

.special .present-item__text {
  line-height: 1.44444;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .special .present-item__text {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .special .present-item__data {
    font-size: 1.2rem;
  }
}

.special .present-item__btn {
  width: 286px;
  margin-top: 7%;
  position: relative;
  z-index: 10;
  font-size: 1.6rem;
  letter-spacing: 0.4em;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 25px;
  text-align: center;
  padding: 11px 0;
  font-weight: 600;
}

@media (max-width: 600px) {
  .special .present-item__btn {
    margin: 20px auto 0;
    width: 69%;
  }
}

/* recommend
========================================== */
.recommend {
  width: 100%;
  background-color: #efefef;
  /* zip */
  /* preview */
  /* list */
}

.recommend__inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 80px 0 70px;
}

@media (max-width: 600px) {
  .recommend__inner {
    padding: 40px 0;
  }
}

@media (min-width: 993px) {
  .recommend__box {
    padding: 0 20px;
  }
}

.recommend__title {
  margin-bottom: 40px;
  background: url(../images/recommend_tit_pc.png) left no-repeat;
  background-size: cover;
  color: transparent;
  text-indent: -9999em;
  padding-top: 5.7%;
  height: 0;
}

@media (max-width: 992px) {
  .recommend__title {
    margin: 0 20px 40px;
  }
}

@media (max-width: 600px) {
  .recommend__title {
    padding-top: 12.333%;
    margin: 0 0 25px 10px;
    background-image: url(../images/recommend_tit_sp.png);
  }
}

@media (max-width: 992px) {
  .recommend__content {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .recommend__content {
    padding: 0 10px;
  }
}

.recommend-zip__title {
  width: 280px;
  padding: 7px;
  border-radius: 10px 10px 0 0;
  font-family: "M PLUS 1p", sans-serif;
  text-align: center;
  font-size: 2.4rem;
  background-color: #5cb6d1;
  color: #fff;
}

@media (max-width: 992px) {
  .recommend-zip__title {
    width: 27.21774%;
    min-width: 220px;
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .recommend-zip__title {
    width: 45.33333%;
    min-width: 160px;
    max-width: 210px;
    padding: 4px;
    border-radius: 5px 5px 0 0;
    font-size: 1.4rem;
    letter-spacing: -.05rem;
  }
}

.recommend-zip__content {
  box-shadow: 0 8px rgba(196, 204, 205, 0.9);
  background-color: #fff;
  border-radius: 0 10px 10px 10px;
}

@media (max-width: 992px) {
  .recommend-zip__content {
    box-shadow: 0 4px rgba(196, 204, 205, 0.9);
  }
}

@media (max-width: 600px) {
  .recommend-zip__content {
    border-radius: 0 5px 5px 5px;
  }
}

.recommend-preview__title {
  width: 280px;
  padding: 7px;
  border-radius: 10px 10px 0 0;
  font-family: "M PLUS 1p", sans-serif;
  text-align: center;
  font-size: 2.4rem;
  margin-top: 35px;
  background-color: #ffe029;
}

@media (max-width: 992px) {
  .recommend-preview__title {
    width: 27.21774%;
    min-width: 220px;
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .recommend-preview__title {
    width: 45.33333%;
    min-width: 160px;
    max-width: 210px;
    padding: 4px;
    border-radius: 5px 5px 0 0;
    font-size: 1.4rem;
    letter-spacing: -.05rem;
  }
}

@media (max-width: 600px) {
  .recommend-preview__title {
    margin-top: 20px;
  }
}

.recommend-preview__content {
  box-shadow: 0 8px rgba(196, 204, 205, 0.9);
  background-color: #fff;
  border-radius: 0 10px 10px 10px;
}

@media (max-width: 992px) {
  .recommend-preview__content {
    box-shadow: 0 4px rgba(196, 204, 205, 0.9);
  }
}

@media (max-width: 600px) {
  .recommend-preview__content {
    border-radius: 0 5px 5px 5px;
  }
}

.recommend .present-list__item {
  padding: 35px;
}

.recommend .present-list__item:not(:first-child) {
  border-top: 1px solid #c4cccd;
}

@media (max-width: 992px) {
  .recommend .present-list__item {
    padding: 15px;
  }
}

.recommend .present-list__item .present-item__title {
  font-size: 2.6rem;
}

@media (max-width: 992px) {
  .recommend .present-list__item .present-item__title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .recommend .present-list__item .present-item__title {
    font-size: 1.4rem;
  }
}

.recommend .present-list__item .present-item__text {
  font-size: 2rem;
}

@media (max-width: 992px) {
  .recommend .present-list__item .present-item__text {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .recommend .present-list__item .present-item__text {
    font-size: 1.2rem;
  }
}

/* new-present
========================================== */
.new-present {
  width: 100%;
}

.new-present__inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 80px 0 70px;
}

@media (max-width: 600px) {
  .new-present__inner {
    padding: 40px 0;
  }
}

@media (min-width: 993px) {
  .new-present__box {
    padding: 0 20px;
  }
}

.new-present__title {
  margin-bottom: 40px;
  background: url(../images/new-present_tit_pc.png) left no-repeat;
  background-size: cover;
  color: transparent;
  text-indent: -9999em;
  padding-top: 6%;
  height: 0;
}

@media (max-width: 992px) {
  .new-present__title {
    margin: 0 20px 40px;
  }
}

@media (max-width: 600px) {
  .new-present__title {
    padding-top: 12.333%;
    margin: 0 0 25px 10px;
    background-image: url(../images/new-present_tit_sp.png);
  }
}

@media (max-width: 992px) {
  .new-present__content {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .new-present__content {
    padding: 0 10px;
  }
}

/* tab */
.new-present__tab-area {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .new-present__tab-area {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .new-present__tab-area {
    margin-bottom: 20px;
  }
}

.new-present__tab {
  box-shadow: 0 4px rgba(196, 204, 205, 0.9);
  position: relative;
  width: 120px;
  padding: 6px;
  border: 1px solid #c4cccd;
  border-radius: 5px;
  line-height: 1.6rem;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 992px) {
  .new-present__tab {
    box-shadow: 0 2px rgba(196, 204, 205, 0.9);
  }
}

@media (max-width: 600px) {
  .new-present__tab {
    font-size: 1.4rem;
  }
}

.new-present__tab-closing {
  margin-left: 10px;
}

.new-present__tab.is-active {
  box-shadow: 0 4px rgba(115, 106, 107, 0.9);
  border-color: #e56674;
  background-color: #e56775;
  color: #fff;
}

.new-present__tab.is-active:before {
  content: "";
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: rgba(115, 106, 107, 0.9) transparent transparent transparent;
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -9px;
}

@media (max-width: 992px) {
  .new-present__tab.is-active {
    box-shadow: 0 2px rgba(115, 106, 107, 0.9);
  }
  .new-present__tab.is-active:before {
    border-width: 10px 7.5px 0 7.5px;
    bottom: -13px;
    margin-left: -6.5px;
  }
}

.new-present__tab.is-active::after {
  content: '';
  position: absolute;
  left: 52.5px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: #e56674 transparent transparent transparent;
}

/* list */
.new-present__list-area {
  display: none;
}

.new-present__list-area.is-show {
  display: block;
}

#new-present .present-list__item {
  display: none;
  position: relative;
  border: 1px solid #c4cccd;
}

#new-present .present-list__item.is-display {
  display: block;
}

#new-present .present-list__item.is-new::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  top: -25px;
  left: -20px;
  background-image: url("../images/new-present_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 600px) {
  #new-present .present-list__item.is-new::before {
    width: 40px;
    height: 40px;
    top: -15px;
    left: -10px;
  }
}

/* btn */
.new-present__btn-area {
  margin: 50px auto 0;
}

@media (max-width: 600px) {
  .new-present__btn-area {
    margin-top: 30px;
  }
}

.new-present__btn-more {
  box-shadow: 0 4px rgba(115, 106, 107, 0.9);
  width: 65%;
  margin: auto;
  padding: 10px;
  border-radius: 5px;
  background-color: #e56674;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  letter-spacing: -0.2rem;
  font-size: 1.4rem;
}

@media (min-width: 993px) {
  .new-present__btn-more {
    box-shadow: 0 6px rgba(115, 106, 107, 0.9);
    width: 450px;
    transition: opacity .1s ease;
    font-size: 2.6rem;
  }
  .new-present__btn-more:hover {
    opacity: 0.6;
  }
}

/* regular
========================================== */
.regular {
  width: 100%;
  background-color: #efefef;
  /* list */
}

.regular__inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 80px 0 70px;
}

@media (max-width: 600px) {
  .regular__inner {
    padding: 40px 0;
  }
}

@media (min-width: 993px) {
  .regular__box {
    padding: 0 20px;
  }
}

.regular__title {
  margin-bottom: 40px;
  background: url(../images/regular_tit_pc.png) left no-repeat;
  background-size: cover;
  color: transparent;
  text-indent: -9999em;
  padding-top: 6%;
  height: 0;
}

@media (max-width: 992px) {
  .regular__title {
    margin: 0 20px 40px;
  }
}

@media (max-width: 600px) {
  .regular__title {
    padding-top: 12.333%;
    margin: 0 0 25px 10px;
    background-image: url(../images/regular_tit_sp.png);
  }
}

@media (max-width: 992px) {
  .regular__content {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .regular__content {
    padding: 0 10px;
  }
}

.regular .present-item__title {
  color: #38a9dc;
}

/* for printer
========================================== */
@media print {
  .not_print {
    display: none;
  }
}

/* for banner
========================================== */
#ntv_setAD_SP_320_100 > div {
  width: 320px;
  margin: 0 auto;
  padding: 15px 0;
  line-height: 0;
  position: relative;
}
