@charset "UTF-8";
.remodal {
  padding: 2rem;
}

/* ============================================================
/* module
============================================================ */
/* clearfix */
.m-clearfix:before, .m-clearfix:after {
  content: " ";
  display: table;
}
.m-clearfix:after {
  clear: both;
}

/* align */
.m-ar {
  text-align: right !important;
}

.m-ac {
  text-align: center !important;
}

.m-al {
  text-align: left !important;
}

.m-aj {
  text-align: justify;
  text-justify: inter-ideograph;
}

/* display */
.m-inlineblock {
  display: inline-block !important;
}

/* margin padding
============================================================ */
.pd0 {
  padding: 0 !important;
}

.mg0 {
  margin: 0 !important;
}

/* over
============================================================ */
.m-over {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.m-over:hover {
  opacity: 0.7;
}
a.m-over {
  text-decoration: none;
}

button.m-over {
  outline: none;
  text-decoration: none;
}

.m-imgover {
  display: block;
  overflow: hidden;
}
.m-imgover img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.m-imgover:hover img {
  opacity: 1;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* font
============================================================ */
/* icon
============================================================ */
.m-icon-close, .m-icon-bars, .m-icon-arrow {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
.m-icon-close:before, .m-icon-bars:before, .m-icon-arrow:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.m-icon-arrow:before {
  background-image: url(../img/common/icon-arrow.svg);
}
.m-icon-arrow.right:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.m-icon-bars:before {
  background-image: url(../img/common/icon-bars.svg);
}

.m-icon-close:before {
  background-image: url(../img/common/icon-close.svg);
}

/* button
============================================================ */
.m-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  text-decoration: none !important;
}
.disable.m-btn {
  pointer-events: none;
  background: #999 !important;
}

.m-btn {
  width: 29rem;
  height: 5rem;
  border-radius: 0.75rem;
  font-weight: normal;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  border: 0.2rem solid;
}
a.m-btn {
  color: inherit;
  text-decoration: none;
}

.m-btn em {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  font-size: 150%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* arrow
============================================================ */
.m-arrow-d, .m-arrow-r {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
}
.m-arrow-d:after, .m-arrow-r:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.m-arrow-r:after {
  border-top: 0.2rem solid;
  border-right: 0.2rem solid;
}

.m-arrow-d:after {
  border-bottom: 0.2rem solid;
  border-right: 0.2rem solid;
}

/* text
============================================================ */
.m-text-underline {
  text-decoration: underline;
}
a.m-text-underline:hover {
  text-decoration: none;
}

.m-nowrap {
  white-space: nowrap;
}

.m-indent1 {
  padding-left: 1em;
  text-indent: -1em;
}
.m-indent1 > * {
  text-indent: 0;
}
.m-indent2 {
  padding-left: 2em;
  text-indent: -1em;
}
.m-indent-disc {
  padding-left: 1em;
  text-indent: -1em;
}
.m-indent-disc:before {
  content: "●";
  display: inline-block;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  text-indent: 0;
}
.m-indent-kome {
  padding-left: 1em;
  text-indent: -1em;
}
.m-indent-kome:before {
  content: "※";
  display: inline-block;
  text-indent: 0;
}

/* ============================================================
/* js
============================================================ */
/* accordion
============================================================ */
.js-accordion__content {
  display: none;
}
.js-accordion .m-arrow-d {
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}
.js-accordion.opened .m-arrow-d {
  -webkit-transform: translateY(30%) scale(1, -1);
  transform: translateY(30%) scale(1, -1);
}

/* slider
============================================================ */
.js-slider :focus {
  outline: none;
}

/* inview
============================================================ */
.js-inview-fadeup {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.js-inview-fadeup.inviewed {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.js-inview-fade {
  opacity: 0;
}
.js-inview-fade.inviewed {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.js-inview-delay1.inviewed {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

/* remodal
============================================================ */
.remodal-wrapper {
  padding: 0;
}

.remodal {
  font-family: Noto Sans JP, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  background: transparent;
}

/* ============================================================
/* layout
============================================================ */
html {
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 2.67vw;
  }
}

body {
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

#page {
  overflow: hidden;
}

#btn-f-top {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  width: 60px;
}

@media (max-width: 750px) {
  #btn-f-top {
    width: 10vw;
    right: 0.5em;
    bottom: 0.5em;
  }
}
#pageContents {
  position: relative;
  padding-bottom: 1px;
  font-family: Noto Sans JP, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #000;
  line-height: 1.7;
  background-attachment: fixed;
  -ms-font-feature-settings: "normal";
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow: hidden;
  max-width: 750px;
  margin: 0 auto;
}
#pageContents, #pageContents * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

/* l-footer
============================================================ */
.l-footer {
  margin-top: 4.5rem;
  padding-bottom: 1rem;
}
.l-footer .l-inner {
  padding: 0 1.75rem;
}
.l-footer .l-nav-top {
  margin: 0 auto 4.5rem;
}
.l-footer__note {
  font-size: 1.1rem;
}

/* l-gnav
============================================================ */
.l-gnav {
  margin: 4.5rem 0 5rem;
}
.l-gnav__ttl {
  margin-bottom: 3rem;
}
.l-gnav__list {
  margin: 0 1.75rem;
  border-top: 1px solid;
}
.l-gnav__item {
  border-bottom: 1px solid;
}
.l-gnav__item a, .l-gnav__item__link {
  color: inherit;
  text-decoration: none;
}
.l-gnav__item a:hover img, .l-gnav__item__link:hover img {
  opacity: 1;
}
.l-gnav__item__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 8.5rem;
}
.l-gnav__item__image {
  width: 7rem;
  margin-left: 0.5rem;
}
.l-gnav__item__ttl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.4;
  padding-left: 2rem;
  font-size: 1.7rem;
  font-weight: bold;
  white-space: nowrap;
}
.l-gnav__item__ttl small {
  font-size: 1.34rem;
}
.l-gnav__item__ttl em {
  font-weight: inherit;
  color: #FF5267;
}

/* l-hnav
============================================================ */
.l-hnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 5rem;
  background: #fff;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-hnav:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #88405A;
}
body.gnav-open .l-hnav {
  opacity: 1;
  visibility: visible;
}
.l-hnav__btn {
  position: absolute;
  top: 0;
  left: calc(50% + 13.75rem);
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 9999;
  background: #88405A;
}
body.header-fixed .l-hnav__btn {
  position: fixed;
}
.l-hnav__close {
  position: absolute;
  top: 1rem;
  left: calc(50% + 15rem);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
.l-hnav__outer {
  max-height: 100%;
  width: calc(100% + 100px);
  padding-right: 100px;
  overflow: auto;
}
.l-hnav__inner {
  margin: 0 auto;
  padding: 2rem 0;
}
.l-hnav .l-gnav {
  margin: 0;
}
.l-hnav .l-gnav__ttl {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  height: 1.4rem;
  line-height: 0;
  width: 37.5rem;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* l-sns
============================================================ */
.l-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-sns li {
  width: 5.25rem;
  margin: 0 1rem;
}
.l-sns li a {
  display: block;
}

/* sec-anchor
============================================================ */
.sec-anchor {
  margin-top: -5rem;
  padding-top: 5rem;
  height: 0;
  visibility: hidden;
}

/* ============================================================
/* extend
============================================================ */
/* ============================================================
/* top page content
============================================================ */
.top-mv {
  color: #fff;
  background: #88405A;
}
.top-mv .l-inner {
  padding: 1.75rem;
}
.top-mv__image {
  margin-bottom: 1.5rem;
}
.top-mv__info {
  margin-bottom: 0.5rem;
}
.top-mv__detail li {
  line-height: inherit;
  font-weight: bold;
}

.top-special {
  padding: 3.5rem 0 4rem;
  background: #F8F4ED;
}
.top-special__ttl {
  margin-bottom: 2.5rem;
}
.top-special__desc {
  padding: 0 1.75rem;
}
.top-special__desc p {
  line-height: 1.9;
  font-size: 1.4rem;
  text-align: justify;
}
.top-special__desc small {
  display: inline-block;
  font-size: 1.24rem;
}
.top-special__list li {
  margin-top: 2.5rem;
}

.top-line {
  padding-top: 6rem;
}
.top-line__ttl {
  margin-bottom: 2rem;
}
.top-line__list {
  width: 24rem;
  margin: 0 auto;
}
.top-line__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4.25rem;
  border-radius: 4.25rem;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  background: #08B700;
}
.top-line__list li + li {
  margin-top: 1rem;
}

/* ============================================================
/* sub page content
============================================================ */
.sec-sub__caption {
  width: 35rem;
  margin: 1rem auto 3.5rem;
  padding-right: 5rem;
}
.sec-sub__header {
  margin-bottom: 3rem;
}

.sec-product {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.sec-product__ttl {
  margin-left: -1.75rem;
  margin-right: -1.75rem;
  margin-bottom: 1.5rem;
}

.sec-product-item {
  padding: 2.5rem 0;
}
.sec-product-item + .sec-product-item {
  margin-top: 3rem;
}
.sec-product-item__image {
  margin: 0 auto 2rem;
}
.sec-product-item__inner {
  position: relative;
  padding: 0 2rem;
}
.sec-product-item__copy {
  font-size: inherit;
  font-weight: normal;
  line-height: inherit;
  color: #88405A;
  text-align: justify;
}
.sec-product-item__ttl {
  line-height: inherit;
}
.sec-product-item__detail li {
  line-height: inherit;
}
.sec-product-item__detail small {
  display: inline-block;
  line-height: inherit;
}
.sec-product-item__nav {
  position: absolute;
  top: 0;
  right: 1.75rem;
  width: 12rem;
}
.sec-product-item .m-btn {
  margin-top: 2rem;
}

.sec-present {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.sec-present__ttl {
  margin-left: -1.75rem;
  margin-right: -1.75rem;
  margin-bottom: 1.5rem;
}

.sec-present-item {
  padding: 2.5rem 0;
}
.sec-present-item + .sec-present-item {
  margin-top: 3rem;
}
.sec-present-item__image {
  margin: 0 auto 2rem;
}
.sec-present-item__inner {
  position: relative;
  padding: 0 2rem;
}
.sec-present-item__copy {
  font-size: inherit;
  font-weight: normal;
  line-height: inherit;
  text-align: justify;
}
.sec-present-item__ttl {
  line-height: inherit;
}
.sec-present-item__detail li {
  line-height: inherit;
}
.sec-present-item__detail small {
  display: inline-block;
  line-height: inherit;
}

.sec-event {
  position: relative;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-top: 2rem;
}
.sec-event + .sec-event {
  margin-top: 6rem;
}
.sec-event:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background: #88405A;
}
.sec-event__ttl {
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}

.sec-event-item {
  padding: 3rem 0;
  border-bottom: 0.1rem dashed;
}
.sec-event-item__ttl {
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}
.sec-event-item__ttl span {
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  z-index: 0;
}
.sec-event-item__ttl span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.6rem;
  background-color: #FADBD6;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.sec-event-item__image {
  margin: 0 auto 2rem;
  width: 21rem;
}
.sec-event-item__detail li {
  line-height: inherit;
  text-align: justify;
}
.sec-event-item__detail small {
  display: inline-block;
  line-height: inherit;
}

/* ============================================================
/* anniversary01 page content
============================================================ */
#pageContents.anniversary01 #product-content1 {
  padding-bottom: 5rem;
}
#pageContents.anniversary01 #product-content1 .sec-product-item {
  background: #F8F4ED;
}
#pageContents.anniversary01 #product-content2 {
  padding-bottom: 5rem;
}
#pageContents.anniversary01 #product-content2 .sec-product-item + .sec-product-item {
  margin-top: 0;
}
#pageContents.anniversary01 #product-content3 {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
  background: #F8F4ED;
}
#pageContents.anniversary01 #product-content3 .sec-product-item {
  background: #fff;
}

/* ============================================================
/* anniversary02 page content
============================================================ */
#pageContents.anniversary02 .sec-product {
  padding-bottom: 6rem;
}
#pageContents.anniversary02 .sec-product .sec-product-item {
  background: #F8F4ED;
}
#pageContents.anniversary02 .sec-product .sec-product-item .m-nowrap {
  letter-spacing: -0.05em;
}
#pageContents.anniversary02 .sec-present {
  position: relative;
  background: #FFBEBC;
  margin-bottom: 5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
#pageContents.anniversary02 .sec-present:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5rem;
  left: 0;
  bottom: calc(100% - 1px);
  background: url(../img/common/bg-present.png) repeat-x center bottom/auto 100%;
}
#pageContents.anniversary02 .sec-present .sec-product-item + .sec-product-item {
  margin-top: 0;
}
#pageContents.anniversary02 .sec-present + .m-btn {
  line-height: 1.2;
  height: 6rem;
  padding-right: 4rem;
}

/* ============================================================
/* special page content
============================================================ */
#pageContents.special .sec-product {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background: #F8F4ED;
}
#pageContents.special .sec-product__ttl {
  margin-bottom: 2.5rem;
}
#pageContents.special .sec-product-item {
  background: #fff;
}
#pageContents.special .sec-product-item__image {
  width: 27rem;
}
#pageContents.special .sec-product-item .m-btn {
  border: none;
  color: #fff !important;
  background: #88405A;
}
#pageContents.special .sec-product-item .m-btn em {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

/* ============================================================
/* event page content
============================================================ */
#pageContents.event #event2f .sec-event-item:last-child,
#pageContents.event #event3f .sec-event-item:last-child,
#pageContents.event #event4f .sec-event-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#pageContents.event .sec-product {
  margin-top: 9rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
  background: #F8F4ED;
}
#pageContents.event .sec-product__ttl {
  line-height: 0;
}
#pageContents.event .sec-product-item {
  padding: 0;
}

.sec-fair {
  padding: 5rem 1.75rem 0;
}
.sec-fair__header {
  margin-bottom: 2rem;
}
.sec-fair__ttl {
  text-align: center;
  font-size: 2.5rem;
  color: #DF7F8E;
  white-space: nowrap;
}
.sec-fair__info {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.sec-fair__desc {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  text-align: justify;
  line-height: inherit;
  letter-spacing: 0.05em;
}
.sec-fair__list__caption {
  margin-bottom: 1.5rem;
  text-align: center;
}
.sec-fair__list__caption span {
  display: inline-block;
  padding: 0 0.25em;
  font-size: 1.9rem;
  font-weight: bold;
  color: #fff;
  background: #DF7F8E;
}

.sec-fair-item + .sec-fair-item {
  margin-top: 1rem;
}
.sec-fair-item__ttl {
  line-height: inherit;
  font-size: 1.4rem;
  font-weight: bold;
  color: #DF7F8E;
}
.sec-fair-item__detail {
  font-size: 1.4rem;
}
.sec-fair-item__detail li {
  line-height: inherit;
}
.sec-fair-item__detail + .sec-fair-item__detail {
  margin-top: 0.5rem;
}