﻿@charset "UTF-8";
:root {
  --imgpath: "/img/usr/design/";
  --notification-height: 48px;
  --scroll-x: 0;
  --scroll-y: 0;
  --header-height: 120px;
  --header-shrinkheight: 80px;
  --sp-header-height: 80px;
  --sp-header-shrinkheight: 60px;
}

html {
  overflow-y: scroll;
}

body {
  position: fixed;
  height: 100vh;
  overflow: hidden;
}
body.is-intro-end {
  position: initial;
  height: auto;
  overflow: auto;
}

#header,
.cmn-brandlist,
.top-message,
#block_of_event,
#block_of_top_free1,
#block_of_topic,
.pane-footer {
  opacity: 0;
}
.is-intro-end #header,
.is-intro-end .cmn-brandlist,
.is-intro-end .top-message,
.is-intro-end #block_of_event,
.is-intro-end #block_of_top_free1,
.is-intro-end #block_of_topic,
.is-intro-end .pane-footer {
  opacity: 1;
}

.page-top .wrapper {
  background-color: #fefcfb;
}
.page-top .wrapper .pane-contents {
  padding-bottom: 0;
}

.top-intro {
  position: fixed;
  inset: 0;
  left: calc(var(--scroll-x, 0) * -1);
  z-index: 1000;
  width: 100vw;
  max-width: calc(var(--vw, 1vw) * 100);
  height: 100vh;
  pointer-events: auto;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.26, 0.1, 0.7, 0.9);
  transition: opacity 0.8s cubic-bezier(0.26, 0.1, 0.7, 0.9);
}
.is-intro-end .top-intro {
  pointer-events: none;
  opacity: 0;
}
.top-intro::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.26, 0.1, 0.7, 0.9);
  transition: opacity 0.6s cubic-bezier(0.26, 0.1, 0.7, 0.9);
}
.top-intro.is-intro-complete::after {
  opacity: 1;
}
.top-intro__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-width: 1200px;
  height: 100%;
}
.top-intro__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.top-intro__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: -webkit-transform 4.5s linear;
  transition: -webkit-transform 4.5s linear;
  transition: transform 4.5s linear;
  transition: transform 4.5s linear, -webkit-transform 4.5s linear;
}
.is-intro .top-intro__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top-intro__since {
  position: absolute;
  top: 45px;
  right: 45px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2em;
}
.top-intro__line {
  position: absolute;
  top: 118px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: -webkit-transform 3.5s ease-in-out;
  transition: -webkit-transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  will-change: transform;
}
.top-intro.is-intro .top-intro__line {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.top-intro__desc {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 118px;
  padding-bottom: 50px;
  color: #fff;
}
.top-intro__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  line-height: 2.4;
  color: #fff;
  letter-spacing: 0.4em;
  opacity: 0;
  -webkit-transition: opacity 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
  transition: opacity 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
  transition: opacity 3.5s ease-in-out, transform 3.5s ease-in-out;
  transition: opacity 3.5s ease-in-out, transform 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  will-change: transform, opacity;
}
.top-intro__txt p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
.top-intro.is-intro .top-intro__txt {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.top-intro__logo {
  width: 182px;
  opacity: 0;
  -webkit-transition: opacity 3.5s ease-in-out;
  transition: opacity 3.5s ease-in-out;
  will-change: opacity;
}
.top-intro.is-intro .top-intro__logo {
  opacity: 1;
}

.top-message {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 680px;
  margin: 160px 0 0;
  overflow: hidden;
}
.top-message__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url(/img/usr/design/top/message-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.top-message__txt {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 3.85em;
  padding-right: 30%;
}
.top-message__txt p {
  font-size: 20px;
  line-height: 2.4;
  color: #fff;
  letter-spacing: 0.4em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

.top-gift {
  width: 100%;
  max-width: 1560px;
  margin: 120px auto 0;
  color: #424446;
  text-align: center;
}
.top-gift__hdg {
  margin-bottom: 40px;
  line-height: 1.3;
}
.top-gift__hdg span {
  display: block;
  font-family: "Ovo", sans-serif;
  font-size: 54px;
  font-weight: 500;
}
.top-gift__hdg small {
  display: block;
  font-size: 12px;
  text-indent: 0.25em;
  letter-spacing: 0.25em;
}
.top-gift__lead {
  margin-bottom: 40px;
  font-size: 26px;
}
.top-gift__lists a {
  color: #424446;
}
.top-gift__lists-img {
  position: relative;
}
.top-gift__lists-img img {
  width: 100%;
}
.top-gift__lists-img .cmn-btn-wrap {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-gift__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #efeae7;
}
.top-gift__list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-gift__list-item:nth-child(2n) {
  background-color: #f7f3f0;
}
.top-gift__list-item a {
  display: block;
  padding: 40px 60px 55px;
  font-size: 20px;
}
.top-gift__list-item a span {
  display: block;
  margin-top: 34px;
}
.top-gift__list-item a span .icn-arrow-s {
  top: -0.1em;
}
.top-gift__event-ttl {
  margin-top: 120px;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.top-story {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 680px;
  margin: 120px 0 0;
  overflow: hidden;
}
.top-story__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url(/img/usr/design/top/story-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.top-story__desc {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  color: #fff;
  text-align: center;
}
.top-story__hdg {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}
.top-story__hdg span {
  display: block;
  font-family: "Ovo", sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.1;
}
.top-story__hdg small {
  display: block;
  font-size: 12px;
  text-indent: 0.2em;
  letter-spacing: 0.2em;
}
.top-story__lead {
  margin-top: 44px;
  font-size: 32px;
  font-weight: 600;
}
.top-story__txt {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 600;
}
.top-story__btn {
  margin-top: 32px;
}

.cmn-column {
  position: relative;
}
.cmn-column .cmn-column__contents {
  position: relative;
}
.cmn-column .bx-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.cmn-column .bx-wrapper .bx-viewport {
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.cmn-column .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 35%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -20px;
  font-size: 0;
  background: #ece7de;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.cmn-column .bx-wrapper .bx-controls-direction a::before {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  border-top: 2px solid #424446;
  border-right: 2px solid #424446;
}
.cmn-column .bx-wrapper .bx-controls-direction a.bx-prev {
  left: -20px;
}
.cmn-column .bx-wrapper .bx-controls-direction a.bx-prev::before {
  margin-left: 3px;
  -webkit-transform: scaleY(0.45) translateX(24%) rotate(-135deg);
          transform: scaleY(0.45) translateX(24%) rotate(-135deg);
}
.cmn-column .bx-wrapper .bx-controls-direction a.bx-next {
  right: -20px;
}
.cmn-column .bx-wrapper .bx-controls-direction a.bx-next::before {
  margin-right: 3px;
  -webkit-transform: scaleY(0.45) translateX(-24%) rotate(45deg);
          transform: scaleY(0.45) translateX(-24%) rotate(45deg);
}
.cmn-column .bx-wrapper .bx-pager {
  position: relative;
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin-top: 32px;
}
.cmn-column .bx-wrapper .bx-pager-item a {
  display: block;
  width: 60px;
  height: 2px;
  margin: 0;
  background-color: #d1c4ab;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.cmn-column .bx-wrapper .bx-pager-item a:hover {
  opacity: 0.5;
}
.cmn-column .bx-wrapper .bx-pager-item a.active {
  background-color: #424446;
}

#block_of_topic.block-top-topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 120px 20px;
  color: #424446;
  background-color: #f7f3f0;
}
#block_of_topic.block-top-topic .block-top-topic--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-family: "Ovo", sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  border-top: 0;
}
#block_of_topic.block-top-topic .block-top-topic--header span {
  font-family: "Shippori Mincho B1", serif;
  font-size: 10px;
}
#block_of_topic.block-top-topic .block-top-topic--body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  max-width: 1600px;
  padding: 0 28px;
  margin: 20px auto 0;
}
#block_of_topic.block-top-topic .block-top-topic--items {
  display: block;
}
#block_of_topic.block-top-topic .block-top-topic--items li {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #d1ccc2;
}
#block_of_topic.block-top-topic .block-top-topic--items li:nth-child(2n) {
  margin: 0;
}
#block_of_topic.block-top-topic .block-top-topic--items li a {
  position: relative;
  display: block;
  padding: 20px 61px 20px 0;
  color: #424446;
  -webkit-transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#block_of_topic.block-top-topic .block-top-topic--items li a:hover {
  background-color: #e5e0d8;
  opacity: 1;
}
#block_of_topic.block-top-topic .block-top-topic--items li a:hover dd {
  text-decoration: none;
}
#block_of_topic.block-top-topic .block-top-topic--items li a::after {
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 16px;
  width: 60px;
  content: "";
  border-left: 1px solid #d1ccc2;
}
#block_of_topic.block-top-topic .block-top-topic--items li a::before {
  position: absolute;
  top: 50%;
  right: 24px;
  bottom: 0;
  width: 26px;
  height: 26px;
  content: "";
  border-right: 2px solid #424446;
  border-bottom: 2px solid #424446;
  -webkit-transition: right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transform: translateY(-50%) scaleY(0.3) rotate(-45deg);
          transform: translateY(-50%) scaleY(0.3) rotate(-45deg);
}
#block_of_topic.block-top-topic .block-top-topic--items li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#block_of_topic.block-top-topic .block-top-topic--items li dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #424446;
}
#block_of_topic.block-top-topic .block-top-topic--items li dl dd {
  width: 100%;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.3;
}
#block_of_topic.block-top-topic .block-top-topic--next-page {
  top: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 32px;
  text-align: center;
}
#block_of_topic.block-top-topic .block-top-topic--next-page a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  max-width: 100%;
  padding: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #424446;
  border-radius: 30px;
  -webkit-transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: opacity;
  font-size: 0;
}
#block_of_topic.block-top-topic .block-top-topic--next-page a::before {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  content: "もっと見る";
}
#block_of_topic.block-top-topic .block-top-topic--next-page a::after {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: middle;
  content: "";
  background: url("/img/usr/design/icn/arrow-circle_wh.svg") no-repeat center center/100% 100%;
  border-radius: 50%;
}
@media screen and (max-width: 1240px) {
  .top-message {
    max-width: 1240px;
    margin-inline: -20px;
  }
  #block_of_top_free1 {
    max-width: 1240px;
    margin-inline: -20px;
  }
  #block_of_topic.block-top-topic {
    margin-inline: -20px;
  }
  #block_of_topic.block-top-topic {
    max-width: 1240px;
    margin-inline: -20px;
  }
}
@media screen and (min-width: 1239px) {
  .top-message {
    max-width: calc(100% + var(--vw, 1vw) * 100 - 100%);
    margin-inline: calc((var(--vw, 1vw) * 50 - 50%) * -1);
  }
  #block_of_top_free1 {
    max-width: calc(100% + var(--vw, 1vw) * 100 - 100%);
    margin-inline: calc((var(--vw, 1vw) * 50 - 50%) * -1);
  }
  #block_of_topic.block-top-topic {
    max-width: calc(100% + var(--vw, 1vw) * 100 - 100%);
    margin-inline: calc((var(--vw, 1vw) * 50 - 50%) * -1);
  }
}