@charset "UTF-8";
/*----------------*/
/*----- base -----*/
/*----------------*/
html {
  font-size: 62.5%;
}

html body {
  font-family: "adobe-caslon-pro", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 1366px;
  margin: 0 auto;
  color: #2d1b0e;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #2d1b0e;
}

.section__title {
  font-size: 1.8rem;
  position: relative;
  margin-bottom: 40px;
  margin-left: 166px;
  text-transform: uppercase;
}

@media screen and (max-width: 414px) {
  .section__title {
    font-size: 1.2rem;
    margin-bottom: 18px;
    margin-left: 73px;
  }
}

.section__title::before {
  position: absolute;
  top: 3px;
  left: -82px;
  width: 60px;
  content: "";
  border: 1px solid #d3d3d3;
}

@media screen and (max-width: 414px) {
  .section__title::before {
    left: -48px;
    width: 40px;
  }
}

/*----------------*/
/*---- fvLoad ----*/
/*----------------*/
.fvLoad {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  opacity: 1;
  -webkit-transition: .6s 2.3s;
  transition: .6s 2.3s;
  background-color: #fff;
}

.fvLoad.showUp {
  opacity: 0;
  -webkit-transition: .6s 2.3s;
  transition: .6s 2.3s;
}

.fvLoad .load__title {
  font-size: 5rem;
  overflow: hidden;
  padding: 5px;
  text-transform: uppercase;
  -webkit-transition: 1.5s .1s;
  transition: 1.5s .1s;
  display: inline-block;
  opacity: 1;
  -webkit-transform: rotateX(90deg) rotateZ(0deg);
  transform: rotateX(90deg) rotateZ(0deg);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

@media screen and (max-width: 414px) {
  .fvLoad .load__title {
    font-size: 3rem;
  }
}

.fvLoad .load__title.show {
  opacity: 1;
  -webkit-transform: translateX(0) rotateZ(0);
  transform: translateX(0) rotateZ(0);
}

/*----------------*/
/*---- header ----*/
/*----------------*/
.header {
  position: relative;
  z-index: 3;
  padding: 45px 84px 93px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 39px 5.34vw;
  }
}

@media screen and (max-width: 414px) {
  .header {
    padding: 30px 23px;
  }
}

.header.fixed {
  position: fixed;
  z-index: 3;
  max-width: 1366px;
  margin: 0 auto;
  padding: 20px 84px;
  background-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .header.fixed {
    padding: 10px 40px;
  }
}

@media screen and (max-width: 414px) {
  .header.fixed {
    padding: 5px 26px;
  }
}

.header__wrapper {
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  align-items: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__wrapper .header__title {
  font-size: 2.8rem;
  padding-top: 8px;
  text-transform: uppercase;
  color: #2d1d10;
}

@media screen and (max-width: 768px) {
  .header__wrapper .header__title {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 414px) {
  .header__wrapper .header__title {
    font-size: 2.1rem;
  }
}

.header__wrapper .header__title:hover {
  opacity: .5;
}

.header__wrapper .burger__btn {
  position: relative;
  z-index: 3;
  width: 65px;
  height: 42px;
}

@media screen and (max-width: 768px) {
  .header__wrapper .burger__btn {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 414px) {
  .header__wrapper .burger__btn {
    width: 40px;
    height: 40px;
  }
}

.header__wrapper .burger__btn .btn {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2d1d10;
}

@media screen and (max-width: 414px) {
  .header__wrapper .burger__btn .btn {
    background-color: #2f1d0f;
  }
}

.header__wrapper .burger__btn--top {
  margin-bottom: 10px;
}

.header__wrapper .burger__btn.active .burger__btn--top {
  -webkit-transform: rotate(45deg) translate(3px, 4px);
  transform: rotate(45deg) translate(3px, 4px);
}

.header__wrapper .burger__btn.active .burger__btn--bottom {
  -webkit-transform: rotate(-45deg) translate(3px, -4px);
  transform: rotate(-45deg) translate(3px, -4px);
}

.header .nav {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@media screen and (max-width: 414px) {
  .header .nav {
    width: 100%;
    max-width: 414px;
    background-color: transparent;
  }
}

.header .nav.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.header .nav__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-color: #fff;
}

@media screen and (max-width: 414px) {
  .header .nav__wrapper {
    width: 77%;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.header .nav__wrapper .nav__list {
  padding: 204px 0 0 100px;
}

@media screen and (max-width: 414px) {
  .header .nav__wrapper .nav__list {
    padding: 145px 0 0 61px;
  }
}

.header .nav__wrapper .nav__list-item {
  font-size: 4rem;
  display: block;
  margin-bottom: 24px;
  text-transform: uppercase;
}

@media screen and (max-width: 414px) {
  .header .nav__wrapper .nav__list-item {
    font-size: 2.4rem;
    margin-bottom: 42px;
  }
  .header .nav__wrapper .nav__list-item:nth-child(1) {
    display: none;
  }
}

.header .nav__wrapper .nav__list-item:hover {
  opacity: .5;
}

body.noScroll {
  overflow: hidden;
}

/*----------------*/
/*------ fv ------*/
/*----------------*/
.fv {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.fv__wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  align-items: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 414px) {
  .fv__wrapper {
    display: block;
  }
}

.fv__wrapper-left {
  width: 94%;
}

.fv__wrapper-left .fv__img {
  width: 100%;
  min-height: 600px;
  max-height: 800px;
}

.fv__wrapper-left .fv__img--top {
  width: 100%;
  height: 800px;
  background-image: url(../img/fvimg-01@2x.png);
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 414px) {
  .fv__wrapper-left .fv__img--top {
    height: 635px;
  }
}

.fv__wrapper-left .fv__img--bottom {
  width: 100%;
  height: 800px;
  background-image: url(../img/fvimg-2@2x.png);
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 414px) {
  .fv__wrapper-left .fv__img--bottom {
    height: 635px;
    background-position: 57% 30%;
  }
}

.fv__wrapper-left .fv__main-copy {
  font-size: 6.7rem;
  position: absolute;
  top: 425px;
  left: 135px;
  padding-top: 10px;
  white-space: nowrap;
  text-transform: uppercase;
}

@media screen and (max-width: 960px) {
  .fv__wrapper-left .fv__main-copy {
    font-size: 4rem;
    top: 320px;
    left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .fv__wrapper-left .fv__main-copy {
    font-size: 3.5rem;
    top: 340px;
    left: 30px;
    z-index: 2;
  }
}

@media screen and (max-width: 414px) {
  .fv__wrapper-left .fv__main-copy {
    font-size: 5rem;
    line-height: 1;
    top: 340px;
    left: 24px;
  }
}

.fv__wrapper-left .fv__main-copy .fvTop {
  -webkit-transition: -webkit-transform 1.5s 2.6s;
  transition: -webkit-transform 1.5s 2.6s;
  transition: transform 1.5s 2.6s;
  transition: transform 1.5s 2.6s, -webkit-transform 1.5s 2.6s;
  display: inline-block;
  opacity: 0;
  -webkit-transform: rotateX(90deg) rotateZ(-10deg);
  transform: rotateX(90deg) rotateZ(-10deg);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

.fv__wrapper-left .fv__main-copy .fvMid {
  -webkit-transition: -webkit-transform 1.5s 2.9s;
  transition: -webkit-transform 1.5s 2.9s;
  transition: transform 1.5s 2.9s;
  transition: transform 1.5s 2.9s, -webkit-transform 1.5s 2.9s;
  display: inline-block;
  opacity: 0;
  -webkit-transform: rotateX(90deg) rotateZ(-10deg);
  transform: rotateX(90deg) rotateZ(-10deg);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

.fv__wrapper-left .fv__main-copy .fvMid__sp {
  display: none;
}

@media screen and (max-width: 414px) {
  .fv__wrapper-left .fv__main-copy .fvMid__sp {
    display: inline-block;
  }
}

.fv__wrapper-left .fv__main-copy .fvTop.show, .fv__wrapper-left .fv__main-copy .fvMid.show {
  opacity: 1;
  -webkit-transform: translateX(0) rotateZ(0);
  transform: translateX(0) rotateZ(0);
}

.fv__wrapper-left .fv__lead-copy {
  font-size: 1.5rem;
  position: absolute;
  top: 507px;
  left: 133px;
  padding-top: 5px;
  letter-spacing: .05em;
}

@media screen and (max-width: 960px) {
  .fv__wrapper-left .fv__lead-copy {
    font-size: 1.4rem;
    top: 380px;
    left: 30px;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .fv__wrapper-left .fv__lead-copy {
    top: 400px;
    left: 30px;
  }
}

@media screen and (max-width: 414px) {
  .fv__wrapper-left .fv__lead-copy {
    line-height: 1.785;
    top: 455px;
    left: 23px;
  }
}

.fv__wrapper-left .downUp {
  opacity: 0;
  -webkit-transition: 2.4s 4s;
  transition: 2.4s 4s;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.fv__wrapper-left .downUp.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fv__wrapper-right {
  width: 6%;
  height: 800px;
}

@media screen and (max-width: 414px) {
  .fv__wrapper-right {
    display: none;
  }
}

.fv__wrapper-right .fv__sub-copy {
  font-size: 1.2rem;
  width: 10px;
  margin: 154px auto 203px;
  -ms-writing-mode: tb-rl;
  text-transform: uppercase;
  -webkit-text-orientation: sideways;
  text-orientation: sideways;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.fv__wrapper-right .fv__sub-num {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.fv__wrapper-right .fv__sub-num--start, .fv__wrapper-right .fv__sub-num--end {
  font-size: 1.4rem;
}

.fv__wrapper-right .fv__sub-num--line {
  width: 1px;
  height: 41px;
  margin: 0 auto 8px;
}

.fv__wrapper-right .fv__sub-num--line-percent {
  width: 100%;
  height: 0;
  background-color: #2d1b0e;
}

/*-----------------*/
/*----- about -----*/
/*-----------------*/
.about {
  width: 100%;
  margin-top: -197px;
  padding-bottom: 104px;
  background-color: #fff7f7;
}

@media screen and (max-width: 414px) {
  .about {
    padding-bottom: 135px;
  }
}

.about-ttl {
  padding-top: 347px;
}

@media screen and (max-width: 414px) {
  .about-ttl {
    padding-top: 300px;
  }
}

.about-ttl::before {
  top: 350px;
}

@media screen and (max-width: 414px) {
  .about-ttl::before {
    top: 303px;
  }
}

.about__wrapper {
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-align: start;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  align-items: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 414px) {
  .about__wrapper {
    display: block;
    padding: 0 23px;
  }
}

.about__wrapper-left {
  width: 50%;
}

@media screen and (max-width: 414px) {
  .about__wrapper-left {
    width: 100%;
  }
}

.about__wrapper-left .about__copy {
  font-size: 3.8rem;
  line-height: 1.3;
  margin-left: 83px;
  letter-spacing: .05em;
  color: #2e1d0f;
}

@media screen and (max-width: 768px) {
  .about__wrapper-left .about__copy {
    margin: 0 20px 0 40px;
  }
}

@media screen and (max-width: 414px) {
  .about__wrapper-left .about__copy {
    margin: 0;
    margin-bottom: 30px;
    font-family: a-otf-futo-go-b101-pr6n, sans-serif;
    font-size: 3rem;
    font-weight: bold;
  }
}

.about__wrapper-right {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .about__wrapper-right {
    padding-right: 4vw;
  }
}

@media screen and (max-width: 414px) {
  .about__wrapper-right {
    width: 100%;
  }
}

.about__wrapper-right .about__lead {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 150px;
  letter-spacing: .05em;
}

@media screen and (max-width: 768px) {
  .about__wrapper-right .about__lead {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 414px) {
  .about__wrapper-right .about__lead {
    margin-bottom: 40px;
  }
}

.about__wrapper-right .about__move {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 380px;
  cursor: pointer;
}

@media screen and (max-width: 414px) {
  .about__wrapper-right .about__move {
    width: 300px;
    height: 175px;
    margin-left: auto;
  }
}

.about__wrapper-right .about__move img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: .5s;
  transition: .5s;
}

.about__wrapper-right .about__move img:hover {
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.modal-video-body {
  max-width: 750px;
}

@media screen and (max-width: 414px) {
  .modal-video-body {
    width: 100vw;
  }
}

.modal-video-body .modal-video-movie-wrap {
  height: 100%;
  max-height: 500px;
}

.modal-video-body .modal-video-movie-wrap .modal-video-close-btn {
  top: -65px;
  right: 0;
  width: 65px;
  height: 65px;
}

/*-----------------*/
/*---- product ----*/
/*-----------------*/
.product {
  width: 100%;
  padding-bottom: 148px;
  background-color: #fff7f7;
}

@media screen and (max-width: 414px) {
  .product {
    padding-bottom: 50px;
  }
}

.product__text {
  font-size: 3.8rem;
  line-height: 1.3;
  margin-bottom: 100px;
  margin-left: 163px;
  letter-spacing: .05em;
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (max-width: 414px) {
  .product__text {
    margin-bottom: 0;
    margin-left: 23px;
  }
}

.product__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 23px;
}

@media screen and (max-width: 414px) {
  .product__wrapper {
    padding: 0;
    padding-top: 82px;
    overflow: hidden;
  }
}

.product__wrapper .product__inner {
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-align: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  align-items: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner {
    display: block;
  }
}

.product__wrapper .product__inner .product__list {
  position: relative;
  width: 29.24%;
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list {
    width: 100%;
    margin: 0 17px;
  }
}

.product__wrapper .product__inner .product__list-img {
  position: relative;
  margin-bottom: 34px;
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list-img {
    margin-bottom: 14px;
  }
}

.product__wrapper .product__inner .product__list-img--push {
  font-size: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 60%;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #00000066;
}

.product__wrapper .product__inner .product__list-img--push:hover {
  opacity: 1;
  -webkit-transition: .3s;
  transition: .3s;
}

.product__wrapper .product__inner .product__list-num {
  font-size: 1.2rem;
  line-height: 1.39;
  color: #848484;
}

.product__wrapper .product__inner .product__list-title {
  font-size: 2.8rem;
  line-height: 1.78;
  letter-spacing: .05em;
  color: #2e1d0f;
}

.product__wrapper .product__inner .product__list-price {
  font-size: 1.8rem;
  line-height: 1.39;
  text-align: end;
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list-price {
    margin-bottom: 10px;
  }
}

.product__wrapper .product__inner .product__list-text {
  font-size: 1.4rem;
  line-height: 1.42;
  letter-spacing: .05em;
  color: #2d1b0f;
}

.product__wrapper .product__inner .product__list:nth-child(3n+2) {
  margin-top: 60px;
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list:nth-child(3n+2) {
    margin-top: 0;
  }
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list:nth-child(2n) {
    margin-top: 20px;
  }
}

.product__wrapper .product__inner .product__list:nth-child(-n+2)::before {
  position: absolute;
  z-index: 1;
  top: -11%;
  right: -17%;
  width: 119px;
  height: 119px;
  content: "";
  border-radius: 50%;
  background-color: #f5d377;
}

@media screen and (max-width: 768px) {
  .product__wrapper .product__inner .product__list:nth-child(-n+2)::before {
    top: -6%;
    right: -15%;
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list:nth-child(-n+2)::before {
    display: none;
  }
}

.product__wrapper .product__inner .product__list:nth-child(-n+2)::after {
  position: absolute;
  z-index: 1;
  top: -1%;
  right: -7%;
  content: "";
  font-size: 1.8rem;
  content: "NEWS";
}

@media screen and (max-width: 768px) {
  .product__wrapper .product__inner .product__list:nth-child(-n+2)::after {
    font-size: 1.5rem;
    right: -12%;
  }
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list:nth-child(-n+2)::after {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list:nth-child(n+3):nth-child(-n+4)::before {
    position: absolute;
    z-index: 1;
    top: -7%;
    right: -11%;
    width: 75px;
    height: 75px;
    content: "";
    border-radius: 50%;
    background-color: #f5d377;
  }
}

@media screen and (max-width: 414px) {
  .product__wrapper .product__inner .product__list:nth-child(n+3):nth-child(-n+4)::after {
    position: absolute;
    z-index: 1;
    top: -1%;
    right: -8%;
    content: "";
    font-size: 1.8rem;
    content: "NEWS";
  }
}

/*----------------*/
/*----- gift -----*/
/*----------------*/
.gift {
  padding-bottom: 150px;
  background-color: #fff7f7;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 414px) {
  .gift {
    padding-bottom: 49px;
  }
}

@media screen and (max-width: 414px) {
  .gift__img {
    height: 250px;
  }
  .gift__img img {
    height: 100%;
  }
}

.gift__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-top: -154px;
  margin-left: auto;
  padding: 154px 0 152px;
  background-color: #fff;
}

@media screen and (max-width: 414px) {
  .gift__inner {
    margin-top: -80px;
    margin-left: 23px;
    padding: 40px 0 63px;
  }
}

.gift__inner .gift__flex {
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-align: start;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  align-items: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 414px) {
  .gift__inner .gift__flex {
    display: block;
    margin-bottom: 41px;
    padding: 0 23px;
  }
}

.gift__inner .gift__flex-copy {
  font-size: 3.8rem;
  line-height: 1.3;
  width: 44%;
  margin-left: 166px;
  letter-spacing: .05em;
  color: #2e1d0f;
}

@media screen and (max-width: 768px) {
  .gift__inner .gift__flex-copy {
    margin: 0 20px 0 40px;
  }
}

@media screen and (max-width: 414px) {
  .gift__inner .gift__flex-copy {
    font-size: 3rem;
    width: 100%;
    margin: 0 0 30px 0;
    font-family: a-otf-futo-go-b101-pr6n, sans-serif;
    font-size: 3rem;
    font-weight: bold;
  }
}

.gift__inner .gift__flex-text {
  font-size: 1.5rem;
  line-height: 2;
  width: 56%;
  padding-right: 83px;
  letter-spacing: .05em;
}

@media screen and (max-width: 768px) {
  .gift__inner .gift__flex-text {
    padding-right: 4vw;
  }
}

@media screen and (max-width: 414px) {
  .gift__inner .gift__flex-text {
    width: 100%;
    padding: 0;
  }
}

.gift__inner .gift__btn {
  font-size: 1.4rem;
  position: relative;
  display: block;
  overflow: hidden;
  width: 250px;
  height: 60px;
  margin-right: 83px;
  margin-left: auto;
  padding: 25px 0 0 10px;
  text-align: center;
  text-transform: uppercase;
  border: 2px solid #2e1d0f;
  border-radius: 130px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .gift__inner .gift__btn {
    margin-right: 4vw;
  }
}

@media screen and (max-width: 414px) {
  .gift__inner .gift__btn {
    width: 180px;
    height: 40px;
    margin-right: 23px;
    padding: 13px 0 13px 28px;
    border: 1px solid #2e1d0f;
  }
}

.gift__inner .gift__btn::after {
  z-index: -1;
  content: "";
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #222222;
}

.gift__inner .gift__btn-arrow {
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-left: 19px;
  background-color: #222222;
}

.gift__inner .gift__btn-arrow::after {
  position: absolute;
  top: 29px;
  right: 63px;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-width: 0 15px 6px 0;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #222222;
}

@media screen and (max-width: 414px) {
  .gift__inner .gift__btn-arrow::after {
    top: 18px;
    right: 18px;
    border-width: 0 12px 5px 0;
  }
}

.gift__inner .gift__btn:hover {
  color: #fff;
}

.gift__inner .gift__btn:hover.gift__btn::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.gift__inner .gift__btn:hover .gift__btn-arrow {
  background-color: #fff;
}

.gift__inner .gift__btn:hover .gift__btn-arrow::after {
  border-bottom-color: #fff;
}

/*----------------*/
/*----- blog -----*/
/*----------------*/
.blog {
  position: relative;
  background-color: #fff7f7;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 414px) {
  .blog {
    overflow: hidden;
    padding-right: 23px;
  }
}

.blog__wrapper {
  max-width: 1200px;
  margin-right: auto;
  padding-top: 154px;
  padding-bottom: 150px;
  background-color: #fff;
}

@media screen and (max-width: 414px) {
  .blog__wrapper {
    padding-top: 40px;
    padding-bottom: 99px;
  }
}

.blog__wrapper .blog__text {
  font-size: 3.8rem;
  margin-bottom: 94px;
  margin-left: 160px;
  letter-spacing: .05em;
  color: #2e1d0f;
}

@media screen and (max-width: 414px) {
  .blog__wrapper .blog__text {
    font-size: 3rem;
    margin: 0 0 9px 23px;
    font-family: a-otf-futo-go-b101-pr6n, sans-serif;
    font-size: 3rem;
    font-weight: bold;
  }
}

.blog__wrapper .blog__slide {
  max-width: 880px;
  margin: 0 auto;
}

.blog__wrapper .blog__slide .blog__list {
  margin: 0 20px 50px;
}

@media screen and (max-width: 414px) {
  .blog__wrapper .blog__slide .blog__list {
    width: 100%;
    max-width: 185px;
    margin: 0 10px;
  }
}

@media screen and (max-width: 414px) {
  .blog__wrapper .blog__slide .blog__list img {
    width: 100%;
    height: 140px;
  }
}

.blog__wrapper .blog__slide .blog__list-title {
  font-size: 1.8rem;
  line-height: 1.66;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0 3px;
  letter-spacing: .05em;
  color: #2d1b0f;
}

@media screen and (max-width: 414px) {
  .blog__wrapper .blog__slide .blog__list-title {
    margin-top: 10px;
    margin-bottom: 4px;
    padding: 5px 0 0;
    font-size: 16px;
    line-height: 1.187;
    position: relative;
    overflow: hidden;
    max-height: 37.984px;
    word-break: break-all;
  }
  .blog__wrapper .blog__slide .blog__list-title::before, .blog__wrapper .blog__slide .blog__list-title::after {
    position: absolute;
    background: #fff;
  }
  .blog__wrapper .blog__slide .blog__list-title::before {
    top: 18.992px;
    right: 0;
    width: 1.5em;
    content: "...";
  }
  .blog__wrapper .blog__slide .blog__list-title::after {
    width: 100%;
    height: 100%;
    content: "";
  }
  .blog__wrapper .blog__slide .blog__list-title::before {
    right: 6px;
  }
}

.blog__wrapper .blog__slide .blog__list-lead {
  font-size: 1.3rem;
  line-height: 1.77;
  padding: 0 3px;
  letter-spacing: .05em;
  color: #2d1b0f;
}

@media screen and (max-width: 414px) {
  .blog__wrapper .blog__slide .blog__list-lead {
    padding: 3px 0 0;
    font-size: 12px;
    line-height: 1.25;
    position: relative;
    overflow: hidden;
    max-height: 45px;
    word-break: break-all;
  }
  .blog__wrapper .blog__slide .blog__list-lead::before, .blog__wrapper .blog__slide .blog__list-lead::after {
    position: absolute;
    background: #fff;
  }
  .blog__wrapper .blog__slide .blog__list-lead::before {
    top: 30px;
    right: 0;
    width: 1.5em;
    content: "...";
  }
  .blog__wrapper .blog__slide .blog__list-lead::after {
    width: 100%;
    height: 100%;
    content: "";
  }
}

/*----------------*/
/*---- access ----*/
/*----------------*/
.access {
  background-color: #fff7f7;
  width: 100%;
  margin: 0 auto;
}

.access__wrapper {
  padding-top: 154px;
}

@media screen and (max-width: 414px) {
  .access__wrapper {
    padding-top: 100px;
  }
}

.access__wrapper .access__map {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media screen and (max-width: 414px) {
  .access__wrapper .access__map {
    max-width: 100%;
    height: 200px;
  }
}

.access__wrapper .access__map iframe {
  height: 550px;
}

.access__wrapper .access__area {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-top: -147px;
  margin-left: auto;
  padding: 147px 0 150px 125px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .access__wrapper .access__area {
    padding: 100px 4vw;
  }
}

@media screen and (max-width: 414px) {
  .access__wrapper .access__area {
    margin: -40px 0 0 23px;
    padding: 47px 0 73px;
  }
}

.access__wrapper .access__area .access__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 414px) {
  .access__wrapper .access__area .access__list {
    display: block;
    padding: 0 23px;
  }
}

.access__wrapper .access__area .access__list-item {
  font-size: 1.8rem;
  font-weight: 400;
  width: 130px;
  margin-right: 69px;
  margin-bottom: 21.5px;
  padding-right: 20px;
  padding-bottom: 10px;
  text-align: end;
  border-bottom: 1px solid #2d1d11;
}

@media screen and (max-width: 768px) {
  .access__wrapper .access__area .access__list-item {
    margin-right: 7%;
    white-space: nowrap;
  }
}

@media screen and (max-width: 414px) {
  .access__wrapper .access__area .access__list-item {
    margin-bottom: 14px;
    padding-bottom: 0;
    text-align: unset;
    border: none;
  }
}

.access__wrapper .access__area .access__list .lastItem {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

@media screen and (max-width: 414px) {
  .access__wrapper .access__area .access__list .lastItem {
    margin-bottom: 14px;
  }
}

.access__wrapper .access__area .access__list-text {
  font-size: 1.8rem;
  width: 650px;
  margin-bottom: 21.5px;
  padding-bottom: 10px;
  padding-left: 35px;
  color: #222222;
  border-bottom: 1px solid #d3d3d3;
}

@media screen and (max-width: 414px) {
  .access__wrapper .access__area .access__list-text {
    font-size: 1.4rem;
    width: 100%;
    margin-bottom: 25px;
    padding-left: 0;
  }
}

.access__wrapper .access__area .access__list .lastText {
  line-height: 2.4;
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

@media screen and (max-width: 414px) {
  .access__wrapper .access__area .access__list .lastText {
    line-height: 2;
  }
}

.access__wrapper .access__area .access__list .access_sp {
  display: none;
}

@media screen and (max-width: 414px) {
  .access__wrapper .access__area .access__list .access_sp {
    display: block;
  }
}

.access__wrapper .access__area .access__list .access__text--bottom {
  font-size: 1.2rem;
  display: block;
}

/*---------------*/
/*----- faq -----*/
/*---------------*/
.faq {
  background-color: #fff7f7;
  width: 100%;
  margin: 0 auto;
}

.faq__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 154px 0 150px;
}

@media screen and (max-width: 414px) {
  .faq__wrapper {
    padding: 80px 0 110px;
  }
}

.faq__wrapper .faq__accordion {
  width: 780px;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .faq__wrapper .faq__accordion {
    width: 100%;
    max-width: 768px;
    padding: 0 4vw;
  }
}

@media screen and (max-width: 414px) {
  .faq__wrapper .faq__accordion {
    max-width: 320px;
    margin-top: 51.8px;
    margin-right: 5.6%;
    padding: 0;
  }
}

.faq__wrapper .faq__accordion .faq__list-area {
  margin-bottom: 40px;
  border-bottom: 1px solid #d3d3d3;
}

@media screen and (max-width: 414px) {
  .faq__wrapper .faq__accordion .faq__list-area {
    margin-bottom: 25px;
  }
}

.faq__wrapper .faq__accordion .faq__list-area__title {
  font-size: 1.8rem;
  position: relative;
  margin-bottom: 35px;
  cursor: pointer;
  color: #222222;
}

@media screen and (max-width: 414px) {
  .faq__wrapper .faq__accordion .faq__list-area__title {
    font-size: 1.6rem;
    margin-bottom: 23.5px;
  }
}

.faq__wrapper .faq__accordion .faq__list-area__title::before, .faq__wrapper .faq__accordion .faq__list-area__title::after {
  position: absolute;
  width: 30px;
  height: 2px;
  content: "";
  background-color: #191919;
}

@media screen and (max-width: 414px) {
  .faq__wrapper .faq__accordion .faq__list-area__title::before, .faq__wrapper .faq__accordion .faq__list-area__title::after {
    width: 15px;
  }
}

.faq__wrapper .faq__accordion .faq__list-area__title::before {
  top: 5px;
  right: 7px;
}

.faq__wrapper .faq__accordion .faq__list-area__title::after {
  top: 5px;
  right: 7px;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq__wrapper .faq__accordion .faq__list-area__title.close::after {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq__wrapper .faq__accordion .faq__list-area__title .faq__space {
  font-family: serif;
  display: inline-block;
  margin-right: 16px;
}

@media screen and (max-width: 414px) {
  .faq__wrapper .faq__accordion .faq__list-area__title .faq__space {
    font-size: 1.4rem;
    margin-right: 2.8%;
  }
}

.faq__wrapper .faq__accordion .faq__list-area__text {
  padding: 5px 0 25px;
}

@media screen and (max-width: 414px) {
  .faq__wrapper .faq__accordion .faq__list-area__text {
    margin-top: -17px;
    padding-bottom: 18.5px;
  }
}

.faq__wrapper .faq__accordion .faq__list-area__text--bottom {
  font-size: 1.5rem;
  color: #222222;
}

@media screen and (max-width: 414px) {
  .faq__wrapper .faq__accordion .faq__list-area__text--bottom {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.faq__wrapper .faq__accordion .faq__list-area__text--bottom .faq__space {
  font-family: serif;
  display: inline-block;
  margin-right: 16px;
}

@media screen and (max-width: 414px) {
  .faq__wrapper .faq__accordion .faq__list-area__text--bottom .faq__space {
    font-size: 1.4rem;
    margin-right: 2.8%;
  }
}

.faq__img {
  width: 100%;
  height: 500px;
  background-image: url(../img/IMG_FOOTER@2x.png);
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 414px) {
  .faq__img {
    height: 200px;
    background-image: url(../img/IMG_FOOTER02@2x.png);
    background-size: cover;
  }
}

/*----------------*/
/*---- footer ----*/
/*----------------*/
.footer {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.footer__title {
  font-size: 3.6rem;
  margin: 157px 0 49px;
  text-transform: uppercase;
}

@media screen and (max-width: 414px) {
  .footer__title {
    font-size: 1.6rem;
    margin: 50px 0 20px;
  }
}

.footer__text {
  font-size: 1.3rem;
  margin-bottom: 52px;
  color: #151515;
}

@media screen and (max-width: 414px) {
  .footer__text {
    line-height: 2.833;
    width: 320px;
    margin: 0 auto 6px;
  }
}

@media screen and (max-width: 414px) {
  .footer__text a {
    margin-left: 8px;
  }
}

.footer__text-space {
  font-size: 1.2rem;
  margin-left: 8px;
}

.footer__foot {
  font-size: 1.2rem;
  padding-bottom: 139px;
  color: #848484;
}

@media screen and (max-width: 414px) {
  .footer__foot {
    padding-bottom: 54px;
  }
}
/*# sourceMappingURL=style.css.map */