@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Zen+Old+Mincho:wght@400;500&display=swap');

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
body {
  min-height: 100%;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
main {
  display: block;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  vertical-align: top;
}
svg,
img,
embed,
object,
iframe {
  vertical-align: top;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
select::-ms-expand {
  display: none;
}
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}
[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}
label[for] {
  cursor: pointer;
}
hr {
  height: 0;
  margin: 0.8rem 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
img[src$=".svg"] {
  width: 100%;
}

/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  font-family: 'Zen Old Mincho', "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  -webkit-font-smoothing: antialiased;
}
.serif {
  font-family: 'Cormorant Garamond';
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
a:hover {
  color: inherit;
  opacity: 0.5;
}

/*
 *  utility
 * ------------------------------------------------------------------- */
.wrap {
  /* max-width: 108.8rem; */
  position: relative;
  margin: 0 auto;
  padding-right: 3vw;
  padding-left: 3vw;
}
.inner {
  max-width: 80rem;
  margin: 0 auto;
}
/* display */
@media screen and (min-width:1280px) {
  .hide-pc-l {
    display: none;
  }
}
@media screen and (min-width:960px) {
  .hide-pc.show-tb {
    display: none;
  }
}
@media screen and (max-width:959px) {
  .hide-pc.show-tb {
    display: inline-block;
  }
}
@media screen and (min-width:768px) {
  .hide-pc {
    display: none;
  }
}
@media screen and (max-width:639px) {
  .hide-sp {
    display: none;
  }
}
/* heading */
.heading-a {
  margin-bottom: 6rem;
  line-height: 1.3;
  font-size: 6.8rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
.heading-b {
  margin-bottom: 0.4em;
  line-height: 1.3;
  font-family: 'Cormorant Garamond';
  font-size: 4.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
}
/* button */
.border__button {
  display: inline-block;
  width: 100%;
  max-width: 21rem;
  padding: 0.45em 0.5em 0.45em;
  border: 1px solid #666;
  border-radius: 1.3em;
  color: inherit;
  text-decoration: none !important;
  font-size: 1.6rem;
  text-align: center;
}
.border__button:hover {
  transform: scale(1.2);
}
.button__wrap {
  margin-top: 4rem;
  text-align: center;
}
/* scroll-top */
.scroll-top {
  position: absolute;
	right: 4rem;
	bottom: 4.2rem;
	z-index: 2;
  width: 3.5rem;
}
.scroll-top.js-scroll.is-active {
	animation: arrowmove 3s ease-in-out infinite;
}
.scroll-top.scroll-view:not(.is-hide) {
	opacity: 1;
	visibility: visible;
}
.scroll-top a {
  display: block;
  padding: 0 1rem;
}
.mv .scroll-top {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 4%;
  left: 0;
  margin: auto;
	z-index: 2;
  width: 3vw;
}
.mv .scroll-top a {
  padding-right: 0.5vw;
  padding-left: 1.3vw;
}
@keyframes fadeInDown {
  0% {
    transform: translate3d(0, -3rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes arrowmove{
  0%{ transform: translate3d(0, 0, 0); }
  33%{ transform: translate3d(0, 1rem, 0); }
  66%{ transform: translate3d(0, 0, 0); }
}

/* opening
 * ------------------------------------------------------------------- */
.opening {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  padding-bottom: 9%;
  background-color: #fff;
}
.opening__block {
  text-align: center;
  opacity: 0;
}
.opening__text {
  line-height: 1.88;
  font-size: 1.8rem;
  text-align: center;
}
.opening__logo {
  max-width: 14.8rem;
  margin: 4.5rem auto 0;
}

/* header
 * ------------------------------------------------------------------- */
 .l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 7rem;
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.4s ease 0s;
  opacity: 1;
}
.l-header .wrap {
  display: flex;
  align-items: center;
  max-width: none;
  height: 7rem;
  padding-right: 10.5rem;
}
.l-header.bg-opacity{
  background-color: rgba(255, 255, 255, 0.5);
}
.l-header.is-hide {
  top: -100%;
}
.l-header.is-back {
  top: 0 !important;
}
.is-pop-opend .l-header.front-header {
  top: -100% !important;
}
.is-pop-opend .l-header.back-header {
  top: 0 !important;
}
@media screen and (min-width: 1200px) {
 .l-header .wrap {
   padding-left: 3vw;
  }
}
.header__logo {
  width: 10.2rem;
  aspect-ratio: 102 / 27;
}
.header__brand__logo {
  width: 13.3rem;
  aspect-ratio: 133 / 34;
  margin-left: 4rem;
}
.header__brand__menu {
  display: flex;
  height: 100%;
  margin-left: auto;
}
.header__brand__menu > li {
  display: flex;
  position: relative;
}
.header__brand__menu > li:not(:first-child) {
  margin-left: 3em;
}
.header__brand__menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
  font-size: 2rem;
  font-family: 'Noto Serif JP', "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  text-decoration: none !important;
}
.header__brand__menu li a span {
  display: block;
  border-bottom: 1px solid transparent;
}
.header__brand__menu li a.current span {
  border-bottom-color: #333;
}
.header__menu {
  display: block;
  position: fixed;
  z-index: 101;
  top: 0.5rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  cursor: pointer;
  /*background-color: #444;*/
  transition: opacity 0.3s ease 0s;
}
.header__menu:hover {
  opacity: 0.5;
}
.header__menu span{
  display: inline-block;
  position: absolute;
  left: 1rem;
  width: 3rem;
  height: 1px;
	background: #000;
  transition: all .4s;
}
.header__menu span:nth-of-type(1) {
	top: 2rem;
}
.header__menu span:nth-of-type(2) {
	top: 2.9rem;
}
.header__menu span:nth-of-type(3) {
	top: 3.8rem;
}
.header__menu.is-active span:nth-of-type(1) {
  top: 2.9rem;
  left: 1.7rem;
  width: 2.8rem;
  transform: rotate(-135deg);
}
.header__menu.is-active span:nth-of-type(2) {
	opacity: 0;
}
.header__menu.is-active span:nth-of-type(3){
  top: 2.9rem;
  left: 1.7rem;
  width: 2.8rem;
  transform: rotate(135deg);
}

/* l-nav */
.l-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top:0;
  width:100%;
  height: 100%;
  padding-top: 10rem;
  background:#fff;
  transition: all 0.3s;
}
.l-nav.is-active {
	opacity: 1;
	z-index: 99;
}
.l-nav .l-nav-block {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #f9f9f9;
  -webkit-overflow-scrolling: touch;
}
.l-nav .l-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.l-nav .l-nav-inner::before,
.l-nav .l-nav-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 5rem;
  flex-shrink: 0;
}
.l-nav__list {
  text-align: center;
}
.l-nav__list > li {
  position: relative;
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
}
.l-nav__list > li:not(:first-child) {
}
.l-nav__list > li::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.3rem;
  height: 1px;
  background-color: #DBDBDB;
}
.l-nav__list p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.l-nav__list p.serif {
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}
.l-nav__list > li > ul {
  margin-top: 1em;
}
.l-nav__list > li > ul > li {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.l-nav__list > li > ul > li:not(:first-child) {
  margin-top: 0.8em;
}
.l-nav__share {
}
.l-nav__share .share__heading {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-align: center;
}
.l-nav__share .share__links li {
  width: 3.6rem;
}
.l-nav__share .share__links li:not(:first-child) {
  margin-left: 4rem;
}

/* footer
 * ------------------------------------------------------------------- */
.l-footer {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  font-family: YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  background: #f1f2f1;
}
.l-footer .wrap {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.l-footer a:hover {
  text-decoration: underline;
  opacity: 1;
}
/* footer__links */
.l-footer__links {
  padding-bottom: 2.5rem;
}
.l-footer__links p {
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.l-footer__links .footer__links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem 2.5rem;
}
.footer__links__list li:not(:first-child) {
  margin-left: 2.5rem;
}
.footer__links__list li a {
  font-size: 1.8rem;
}
/* l-footer__bottom */
.l-footer__bottom {
  display: flex;
  border-top: 1px solid #d6d6d6;
  padding-top: 2.5rem;
}
.l-footer__logo {
  margin-right: 2.5rem;
}
.l-footer__bottom__body {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 128px);
  margin-top: -6px;
  gap: 8px 1.5rem;
  font-size: 1.4rem;
}
.l-footer__nav a:not(:last-child) {
  margin-right: 1.5rem;
  position: relative;
}
.l-footer__nav a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: rgb(173, 173, 173);
  position: absolute;
  right: -1.5rem;
  top: 5px;
}
.l-footer__copyright {
  margin-top: 1.4rem;
  width: 100%;
  font-size: 12px;
}

/* main
* ------------------------------------------------------------------- */
.main__contents {
  position: relative;
  padding: 7rem 0 12.5rem;
}

/* mv
* ------------------------------------------------------------------- */
.mv {
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #F3F0EC 50%, #F3F0EC 100%);
}
.mv .wrap {
  position: relative;
}
.mv__img {
  position: relative;
}
.mv__img::before {
  content: '';
  display: block;
  padding-top: 56.73%;
}
.mv__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.mv__slider__wrap {
  position: relative;
}
.mv__slider__bottom {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: -3.2rem;
  z-index: 10;
  padding-right: 0.5rem;
}
.mv__slider__wrap .swiper-pagination-fraction {
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
  width: auto;
  color: #999;
  font-size: 1rem;
  white-space: nowrap;
}
.mv__slider__wrap .swiper-pagination-fraction .swiper-pagination-current {
  margin: 0 0.3em;
  color: #000;
}
.mv__slider__wrap .swiper-pagination-fraction .swiper-pagination-total {
  margin: 0 0.3em;
}
.progressbar {
  position: relative;
  width: 18.8rem;
  height: 1px;
  margin-right: 1.2rem;
  background: #ccc;
  overflow: hidden;
}
.progressbar .progressbar_in {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: #666;
  transform: scaleX(0);
  transition-timing-function: linear;
}
/* zoom anime */
@keyframes zoomOut {
  0% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(0.96);
  }
}
@keyframes zoomOutSp {
  0% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1.03);
  }
}
.mv__slider__wrap .mv__img img {
  transform: scale(1.03);
}
.mv__slider__wrap .swiper-slide-active .mv__img img,
.mv__slider__wrap .swiper-slide-duplicate-active .mv__img img,
.mv__slider__wrap .swiper-slide-prev .mv__img img {
  animation: zoomOut 6s linear 0s normal both;
}

/* message
* ------------------------------------------------------------------- */
.message {
  margin-top: -5rem;
  padding-top: 14.6rem;
  padding-bottom: 7.5rem;
  background-color: #F3F0EC;
}
.message__inner {
  position: relative;
  max-width: 39rem;
  margin: 0 auto;
  padding: 2rem 3rem 2.5rem 5.5rem;
}
.message__title {
  max-width: 63.8rem;
  line-height: 1.67;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  opacity: 0;
}
.message__copy {
  margin-top: 1.3em;
  line-height: 2;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  opacity: 0;
}
.message__inner .bracket--left {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.4rem;
  height: 3.4rem;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
  opacity: 0;
}
.message__inner .bracket--right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.4rem;
  height: 3.4rem;
  border-bottom: 1px solid #666;
  border-right: 1px solid #666;
  opacity: 0;
}
/* bracket-anime */
.bracket-anime.active .message__title,
.bracket-anime.active .message__copy {
  opacity: 0;
  animation: bracketAnime 3s ease forwards;
}
.bracket-anime.active .bracket--left {
  opacity: 0;
  animation: bracketLeftAnime 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.bracket-anime.active .bracket--right {
  opacity: 0;
  animation: bracketRightAnime 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes bracketAnime {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bracketLeftAnime {
  0% {
    opacity: 0;
    top: 35%;
    left: 40%;
  }
  50% {
    opacity: 1;
    top: 35%;
    left: 40%;
  }
  100% {
    opacity: 1;
    top: 0;
    left: 0;
  }
}
@keyframes bracketRightAnime {
  0% {
    opacity: 0;
    bottom: 35%;
    right: 40%;
  }
  50% {
    opacity: 1;
    bottom: 35%;
    right: 40%;
  }
  100% {
    opacity: 1;
    bottom: 0;
    right: 0;
  }
}

/* about
* ------------------------------------------------------------------- */
.about {
  position: relative;
  padding-top: 12.7rem;
  padding-bottom: 11.6rem;
  background-color: #F3F0EC;
  overflow: hidden;
}
.about__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50.6rem;
  background-color: #fff;
}
.about .side__hd__line {
  top: 14.3%;
}
.about__precious {
  max-width: 25rem;
  margin: 6.2rem auto 4rem;
}
.about__precious p {
  margin-bottom: 1.1em;
  padding: 1px 0;
  line-height: 1;
  text-align: center;
  background-color: #fff;
}
.about .text {
  max-width: 56rem;
  margin: 0 auto;
  line-height: 2;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.hd__img {
  display: block;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.hd__img::before {
  content: '';
  display: block;
}
.hd__img .hd__img__inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hd__img.img--m {
  width: 56.73%;
}
.hd__img.img--m::before {
  padding-top: 67.5%;
}
.hd__img.img--s {
  width: 46.8%;
}
.about__concept .hd__img.img--s::before {
  padding-top: 109.09%;
}
.about__quality .hd__img.img--s::before {
  padding-top: 59.09%;
}
.about__concept {
  margin-top: 11rem;
}
.about__quality {
  margin-top: 10rem;
}
.about__hd__block {
  margin-bottom: 3.5rem;
}
.about__concept .about__hd__block {
  margin-top: 4.5rem;
}
.about__quality .about__hd__block {
  margin-top: 3.8rem;
}
.about__hd__block .hd__en__img {
  margin: 0 auto 0.3em;
  text-align: center;
}
.about__concept .about__hd__block .hd__en__img {
  max-width: 30.6rem;
}
.about__quality .about__hd__block .hd__en__img {
  max-width: 22.4rem;
}
.about__hd__block .hd__text {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
}

/* lineup
* ------------------------------------------------------------------- */
.lineup {
  position: relative;
  padding-top: 11.2rem;
  padding-bottom: 17.6rem;
  overflow: hidden;
}
.lineup__bg {
  position: absolute;
  top: 42.9rem;
  left: 0;
  width: 100%;
  height: 48.7rem;
  background-color: #F3F0EC;
  transform-origin: 0 0;
}
.lineup .side__hd__line {
  top: 14%;
}
.lineup .text {
  max-width: 56rem;
  margin: 3rem auto 0;
  line-height: 2;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
/* lineup__outline */
.lineup__outline {
  margin-top: 16.8rem;
}
.lineup__outline ul {
  display: flex;
  justify-content: center;
}
.lineup__outline ul li {
  display: flex;
  width: 15.6%;
  min-width: 22rem;
  margin: 0 2rem;
}
.lineup__outline ul li a {
  display: block;
  position: relative;
  padding-bottom: 4.8rem;
}
.lineup__outline ul li a::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  left: 0;
  margin: auto;
  width: 2.4rem;
  height: 1rem;
  background: url('../img/link_arrow.svg') 50% 50% no-repeat;
  background-size: contain;
}
.lineup__outline .lineup__logo {
  margin-bottom: 1em;
  text-align: center;
}
.lineup__outline .lineup__logo img {
  width: auto;
  height: 2.1rem;
}
.lineup__outline .lineup__copy {
  margin: 1em auto;
  line-height: 1.56;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.1em;
}
.lineup__outline .lineup__text {
  line-height: 1.71;
  font-size: 1.4rem;
}
/* lineup__item */
.lineup__item__frame{
  display: flex;
  justify-content: space-evenly;
}
.lineup__item__frame #frame001, .lineup__item__frame #frame002{
  width: 40%;
}
.lineup__item {
  margin-top: 12.5rem;
}
.lineup__item__title {
  margin-bottom: 2rem;
  text-align: center;
}
#frame.lineup__item__title {
  margin-bottom: 6rem;
}
.lineup__item__title img {
  width: auto;
  height: 3rem;
}
.lineup__item__frame p.txt{
  margin-top: 3.5rem;
  line-height: 1.71;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 1;
  transition: opacity 0.6s ease 0s;
}
/* lineup-slider frame*/
.lineup__item__frame .lineup-slider .swiper-slide {
  width: 75%;
}
.lineup__item__frame .lineup-slider .swiper-button-next,
.lineup__item__frame .lineup-slider .swiper-button-prev {
  top: 50%;
  width: 8%;
  height: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, 0);
}
.lineup__item__frame .lineup-slider .swiper-button-prev {
  left: 50%;
  margin-left: -38.3%;
  background-image: url('../img/icon_arrow_prev.png');
}
.lineup__item__frame .lineup-slider .swiper-button-next {
  right: 50%;
  margin-right: -46.2%;
  background-image: url('../img/icon_arrow_next.png');
}
.lineup__item__frame .swiper-pagination{
  position: initial;
  margin-top: 1rem;
}

/* lineup-slider */
.lineup-slider {
  font-size: 1.4rem;
}
.lineup-slider .swiper-slide {
  width: 29.66%;
}
.lineup-slider .lineup__img {
  position: relative;
}
.lineup-slider .lineup__img::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.lineup-slider .lineup__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.lineup-slider .swiper-slide p {
  margin-top: 5.5rem;
  line-height: 1.71;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.6s ease 0s;
}
.lineup-slider .swiper-slide.swiper-slide-active p {
  opacity: 1;
}
.lineup-slider.swiper-horizontal>.swiper-pagination-bullets {
  bottom: 6em;
  font-size: 1.2rem;
}
.lineup-slider .swiper-pagination-bullet {
  width: 2.7rem;
  height: 1px;
  border-radius: 0;
  background: #D5D5D5;
  opacity: 1;
}
.lineup-slider .swiper-pagination-bullet-active {
  background: #707070;
}
.lineup-slider.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.2rem;
}
.lineup-slider .swiper-button-next,
.lineup-slider .swiper-button-prev {
  top: 41%;
  width: 3.1%;
  height: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, 0);
}
.lineup-slider .swiper-button-prev {
  left: 50%;
  margin-left: -15.3%;
  background-image: url('../img/icon_arrow_prev.png');
}
.lineup-slider .swiper-button-next {
  right: 50%;
  margin-right: -18.2%;
  background-image: url('../img/icon_arrow_next.png');
}
.lineup-slider .swiper-button-next::before,
.lineup-slider .swiper-button-prev::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.lineup-slider .swiper-button-next::after,
.lineup-slider .swiper-button-prev::after {
  display: none;
}

/* lineup__item__gift */
.lineup__item__gift .lineup__item__title img{
  height: 4rem;
}
.lineup__item__gift h4.lineup__item__title img{
  height: 3rem;
  margin-top: 3rem;
}
.lineup__item__gift .hd__img.img--s::before {
    padding-top: 59.09%;
}
.lineup__item__gift p{
  text-align: center;
}

.frame_lineup p{
  text-align: center;
  margin-bottom: 3.5rem;
}
/* my-kofukuron
* ------------------------------------------------------------------- */
.kofukuron {
  padding-top: 13.5rem;
  padding-bottom: 12rem;
  border-top: 1px solid #F5F5F5;
}
.kofukuron__block {
  margin: 0 auto;
}
.kofukuron__hd {
  max-width: 26.6rem;
  margin: 0 auto;
}
.kofukuron__copy {
  margin-top: 3.5rem;
  font-size: 1.9rem;
  text-align: center;
}
.kofukuron__img {
  width: 12.55%;
  position: relative;
  left: 1.1%;
  margin: 3.2rem auto 0;
  text-align: center;
}
.kofukuron__block .button__wrap {
  margin-top: 7.5rem;
}

/* bottom-precious
* ------------------------------------------------------------------- */
.bottom-precious {
  position: relative;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  background: linear-gradient(180deg, #F3F0EC 0%, #F3F0EC 50%, transparent 50%, transparent 100%);
}
.side__hd__line {
  position: absolute;
  top: 50%;
  left: 1.3vw;
  width: 1.2vw;
  transform: translate(0, -50%);
}
.bottom-precious .img {
  position: relative;
  overflow: hidden;
}
.bottom-precious .img::before {
  content: '';
  display: block;
  padding-top: 59.57%;
}
.bottom-precious .img .img__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* page__bottom
* ------------------------------------------------------------------- */
.page__bottom {
  margin-top: 2.4rem;
}
.share__heading {
  margin-bottom: 2.8rem;
  font-size: 1.7rem;
  text-align: center;
}
.share__links {
  display: flex;
  justify-content: center;
}
.share__links li {
  width: 3.6rem;
}
.share__links li:not(:first-child) {
  margin-left: 4rem;
}
.share__links img {
  width: 100%;
}

/* フェードイン・アップ */
.fade-in-up {
  opacity: 0;
}
.fade-in-up.active {
  animation: fadeInUp 1.6s ease-out forwards;
}
@keyframes fadeInUp {
  0% {
    transform: translate3d(0, 3rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* modal
* ------------------------------------------------------------------- */
.modal-close {
  display: none;
  position: fixed;
  top: -13rem;
  right: -8.4rem;
  z-index: 1000;
  top: 1rem;
  right: 1rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.modal-close.is-active {
  display: block;
}
.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5rem;
  height: 1px;
  background-color: #000;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}
body.is-pop-opend {
  position: fixed;
  width: 100%;
}

/* -----------------------------------------
 レスポンシブ
------------------------------------------- */
/* small pc size */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .header__logo {
    width: 12.2rem;
  }
  .header__brand__logo {
    width: 16.3rem;
    margin-left: 3rem;
    padding-top: 0.2em;
  }
  .header__brand__menu li a {
    font-size: 1.6rem;
  }
}
/* tablet size */
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw/37.5);
  }
  body {
    font-size: 1.4rem;
  }
  a:hover {
    opacity: 1;
  }
  .wrap {
    padding-right: 6vw;
    padding-left: 6vw;
  }
  /* heading */
  .heading-a {
    margin-bottom: 3.5rem;
    font-size: 2.9rem;
  }
  .heading-b {
    margin-bottom: 0.2em;
    font-size: 3.9rem;
  }
  /* button */
  .border__button {
    font-size: 1.6rem;
  }
  .border__button:hover {
    transform: scale(1);
  }
  .button__wrap {
    margin-top: 3rem;
  }
  /* scroll-top */
  .scroll-top {
    right: 2rem;
    bottom: 3rem;
    width: 3.3rem;
  }
  .mv .scroll-top {
    top: 0;
    bottom: 4%;
    width: 6vw;
  }
  .mv .scroll-top a {
    padding-right: 1vw;
    padding-left: 1.17vw;
  }
  /* header */
   .l-header{
    height: 9rem;
  }
  .l-header .wrap {
    flex-wrap: wrap;
    padding: 2.2rem 2.2rem 0;
    height: auto;
    min-height: 9rem;
  }
  .header__logo {
    width: 6.6rem;
    padding-top: 0.2em;
  }
  .header__logo img {
    display: block;
  }
  .header__brand__logo {
    width: 9.1rem;
    margin-left: 2rem;
    padding-top: .1rem;
  }
  .header__brand__logo img {
    display: block;
  }
  .header__brand__menu {
    width: 100%;
    height: auto;
    margin-left: 0;
    transition: all 0.3s;
  }
  .is-pop-opend .header__brand__menu {
    opacity: 0;
    visibility: hidden;
  }
  .header__brand__menu > li {
    display: flex;
  }
  .header__brand__menu > li:not(:first-child) {
    margin-left: 3em;
  }
  .header__brand__menu li a {
    padding: 1em 0;
    font-size: 1.2rem;
  }
  .header__menu {
    top: .7rem;
    right: 1rem;
    width: 4.8rem;
    height: 4.8rem;
  }
  .header__menu:hover {
    opacity: 1;
  }
  .header__menu span{
    left: 1.4rem;
    width: 2rem;
  }
  .header__menu span:nth-of-type(1) {
    top: 1.6rem;
  }
  .header__menu span:nth-of-type(2) {
    top: 2.3rem;
  }
  .header__menu span:nth-of-type(3) {
    top: 3.0rem;
  }
  .header__menu.is-active span:nth-of-type(1),
  .header__menu.is-active span:nth-of-type(3){
    top: 2.4rem;
    left: 1.1rem;
    width: 2.6rem;
  }
  /* l-nav */
  .l-nav {
    padding-top: 5.5rem;
  }
  .l-nav .l-nav-inner {
    min-height: 0;
  }
  .l-nav__list > li {
    position: relative;
    margin-bottom: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .l-nav__list p {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  .l-nav__list p.serif {
    font-weight: 600;
    font-size: 2.1rem;
    letter-spacing: 0.05em;
  }
  .l-nav__list > li > ul {
    margin-top: 1em;
  }
  .l-nav__list > li > ul > li {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  .l-nav__list > li > ul > li:not(:first-child) {
    margin-top: 0.8em;
  }
  
  /* footer
   * ------------------------------------------------------------------- */
  .l-footer {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .l-footer .wrap {
    padding: 0 3.2rem;
  }
  /* footer__links */
  .l-footer__links {
    padding-bottom: 4rem;
  }
  .l-footer__links p {
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
  }
  .footer__links__list li:not(:first-child) {
    margin-left: 0;
    margin-top: 1.4rem;
  }
  .footer__links__list li a {
    font-size: 1.4rem;
  }
  /* l-footer__bottom */
  .l-footer__bottom {
    display: block;
    padding-top: 4rem;
  }
  .l-footer__logo {
    display: block;
    margin-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
  .l-footer__logo img {
    width: 15.2rem;
  }
  .l-footer__bottom__body {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer__nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0;
    margin-bottom: 1.6rem;
    gap: 8px 2.4rem;
    font-size: 1.4rem;
  }
  .l-footer__nav a:not(:last-child) {
    margin-right: 2.4rem;
  }
  .l-footer__nav a:not(:last-child)::after {
    right: -2.4rem;
  }
  .l-footer__copyright {
    margin-top: 0;
    font-size: 1.2rem;
  }
  /* main */
  .main__contents {
    padding: 9rem 0 16.6rem;
  }
  .opening {
    padding-bottom: 29%;
  }
  /* mv */
  .mv__img::before {
    padding-top: 156.06%;
  }
  .progressbar {
    width: 8.4rem;
  }
  .mv__slider__wrap .mv__img img {
    transform: scale(1.12);
  }
  .mv__slider__wrap .swiper-slide-active .mv__img img,
  .mv__slider__wrap .swiper-slide-duplicate-active .mv__img img,
  .mv__slider__wrap .swiper-slide-prev .mv__img img {
    animation: zoomOutSp 6s linear 0s normal both;
  }
  /* message */
  .message {
    padding-top: 15.2rem;
    padding-bottom: 8rem;
  }
  .message__inner {
    width: 88%;
    padding: 2.5rem 2.0rem 2.5rem 3.2rem;
  }
  .message__title {
    font-size: 2.2rem;
    letter-spacing: 0.2em;
  }
  .message__copy {
    margin-top: 1.3em;
    font-size: 1.5rem;
    letter-spacing: normal;
  }
  .message__inner .bracket--left {
    position: absolute;
    top: 0;
    left: 0;
    width: 3.4rem;
    height: 3.4rem;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
  }
  .message__inner .bracket--right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3.4rem;
    height: 3.4rem;
    border-bottom: 1px solid #666;
    border-right: 1px solid #666;
  }
  /* about */
  .about {
    padding-top: 8.8rem;
    padding-bottom: 10.2rem;
  }
  .about__bg {
    top: 0;
    height: 30.4rem;
  }
  .about .side__hd__line {
    top: 12.5%;
  }
  .about__precious {
    max-width: 20rem;
    margin: 5.5rem auto 4rem;
  }
  .about__precious p {
    margin-bottom: 1.3em;
    font-size: 1.2rem;
  }
  .about .text {
    margin: 0 4vw;
    font-size: 1.4rem;
  }
  .hd__img.img--m {
    right: -1.3rem;
    width: 103.03%;
  }
  .hd__img.img--s {
    width: 103.03%;
    margin-left: -6vw;
  }
  .hd__img.img--s img{
    width: 100%;
    max-width: none;
  }
  .hd__img.img--s.img--right {
    right: -1.3rem;
    margin-left: auto;
  }
  .about__concept {
    margin-top: 8.7rem;
  }
  .about__quality {
    margin-top: 8.3rem;
  }
  .about__hd__block {
    margin-bottom: 3.8rem;
  }
  .about__concept .about__hd__block {
    margin-top: 4rem;
  }
  .about__quality .about__hd__block {
    margin-top: 4rem;
  }
  .about__concept .about__hd__block .hd__en__img {
    max-width: 25.3rem;
  }
  .about__quality .about__hd__block .hd__en__img {
    max-width: 18.5rem;
  }
  .about__hd__block .hd__text {
    font-size: 1.4rem;
  }
  /* lineup */
  .lineup {
    padding-top: 10rem;
    padding-bottom: 11.7rem;
  }
  .lineup__bg {
    top: 25.8rem;
    height: 43rem;
  }
  .lineup .side__hd__line {
    top: 12%;
    left: 1vw;
  }
  .lineup .text {
    margin: 3rem 4vw 0;
    line-height: 2;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  /* lineup__outline */
  .lineup__outline {
    margin-top: 15.6rem;
  }
  .lineup__outline ul {
    gap: 0 2.2rem;
  }
  .lineup__outline ul li {
    width: calc((100% - 2.2rem) / 2);
    min-width: 0;
    margin: 0;
  }
  .lineup__outline ul li a {
    padding-bottom: 3.2rem;
  }
  .lineup__outline ul li a::before {
    bottom: 0.5rem;
    width: 2.2rem;
    height: 0.9rem;
  }
  .lineup__outline .lineup__logo img {
    width: auto;
    height: 1.9rem;
  }
  .lineup__outline .lineup__copy {
    margin: 1.3em auto 1.1em;
    font-size: 1.2rem;
  }
  .lineup__outline .lineup__text {
    line-height: 1.7;
    font-size: 1.0rem;
  }
  /* lineup__item */
  .lineup__item {
    margin-top: 10rem;
  }
  .lineup__item__title {
    margin-bottom: 2.2rem;
  }
  #frame.lineup__item__title {
    margin-bottom: 3rem;
  }
  .lineup__item__title img {
    width: auto;
    height: 2.5rem;
  }
  /* lineup-slider */
  .lineup-slider {
    font-size: 1.2rem;
  }
  .lineup-slider .swiper-slide {
    width: 88%;
  }
  .lineup-slider .lineup__img {
    position: relative;
  }
  .lineup-slider .swiper-slide p {
    margin-top: 5rem;
  }
  .lineup-slider.swiper-horizontal>.swiper-pagination-bullets {
    bottom: 5.5em;
  }
  .lineup-slider .swiper-button-next,
  .lineup-slider .swiper-button-prev {
    display: none;
  }
  /*lineup frame*/
  .lineup__item__frame{
    display: block;
  }
  .lineup__item__frame #frame001, .lineup__item__frame #frame002 {
    width: 100%;
    min-width: 0;
    margin: 0 auto;
  }
  .lineup__item__frame #frame002{
    margin-top: 5rem;
  }
  .lineup__item__frame p.txt{
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
  .lineup__item__frame .button__wrap {
        margin-top: 1.5rem;
  }
  /* my-kofukuron */
  .kofukuron {
    padding-top: 9.3rem;
    padding-bottom: 11.5rem;
  }
  .kofukuron__hd {
    max-width: 23.2rem;
  }
  .kofukuron__copy {
    margin-top: 3.3rem;
    font-size: 1.9rem;
  }
  .kofukuron__img {
    width: 40.3%;
    margin: 3.4rem auto 0;
  }
  .kofukuron__block .button__wrap {
    margin-top: 4.7rem;
  }

  /* bottom-precious */
  .bottom-precious {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
  .side__hd__line {
    left: 1.8vw;
    width: 3.73vw;
  }
  .bottom-precious .img::before {
    padding-top: 142.42%;
  }
  /* page__bottom */
  .page__bottom {
    margin-top: 4.5rem;
  }
  .share__heading {
    margin-bottom: 2.8rem;
    font-size: 1.7rem;
  }
  
  /*for gift*/
  .lineup__item__gift .hd__img.img--s {
    width: auto;
    margin-left: auto;
    margin: 0 6vw;
  }
  .lineup__item__gift .lineup__item__title{
    font-size: 3.9rem;
  }
  .lineup__item__gift h4.lineup__item__title{
    font-size: 2.8rem;
  }
  
  
} /* query end */