@charset "UTF-8";
body {
  font-family: "Shippori Mincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 750px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 750px) {
  .u-mobile {
    display: none;
  }
}

h3, h4, h5, p, a {
  color: #040000;
}

input, select, textarea {
  font-size: 16px;
  font-size: 1rem;
}

body {
  -webkit-animation: fadein 3s forwards;
          animation: fadein 3s forwards;
  /*アニメーション指定*/
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  /*アニメーション開始時*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時*/
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  /*アニメーション開始時*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時*/
}
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 750px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 750px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 750px) {
  a:hover {
    opacity: 0.8;
  }
}

a {
  text-decoration: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input[type=submit],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input[type=text],
input[type=tel],
input[type=email] {
	border: none;
  border-radius: 0;
	outline: none;
	background: #EEEBE9 !important;
	font: inherit;
}
input:-webkit-autofill {
	box-shadow: 0 0 0 1000px #EEEBE9 inset;
}
textarea {
  resize: vertical;
}


input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.accordion-container {
  position: relative;
  width: 100%;
  cursor: pointer;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.accordion-container .accordion-title {
  line-height: 1;
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.1em;
  text-align: center;
  color: #4A2F14;
}
@media screen and (min-width: 550px) {
  .accordion-container .accordion-title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 750px) {
  .accordion-container .accordion-title {
    font-size: 0.875rem;
    font-weight: 300;
  }
}

.accordion-title {
  position: relative;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 550px) {
  .accordion-title {
    padding-bottom: 1.875rem;
  }
}
@media screen and (min-width: 750px) {
  .accordion-title {
    padding-bottom: 1.5rem;
  }
}

.accordion-title::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/accordion-btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  text-align: center;
  width: 20px;
  width: 1.25rem;
  height: 10px;
  height: 0.625rem;
}
@media screen and (min-width: 550px) {
  .accordion-title::before {
    width: 2.1875rem;
    height: 1.125rem;
  }
}
@media screen and (min-width: 750px) {
  .accordion-title::before {
    top: 20px;
    width: 1.4375rem;
    height: 0.75rem;
  }
}

.accordion-content {
  display: none;
  padding: 20px;
  padding: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (min-width: 550px) {
  .accordion-content {
    padding: 2.1875rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .accordion-content {
/*    padding: 1.5625rem 1.6875rem;*/
    padding: 1.5625rem 2.6875rem 1rem 1.8rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 750px) {
  .top-anchor-point {
    display: block;
    margin-top: -100px;
    padding-top: 100px;
  }
}

.anchor-point {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}

.btn {
  text-align: center;
}

.btn a {
  position: relative;
  display: block;
  color: #4A2F14;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 0;
  padding: 0.625rem 0;
  background-color: #EEEBE9;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  width: 100%;
  max-width: 160px;
  max-width: 10rem;
}
@media screen and (min-width: 550px) {
  .btn a {
    padding: 1.1875rem 0;
    font-size: 1.5rem;
    max-width: 19.6875rem;
  }
}
@media screen and (min-width: 750px) {
  .btn a {
    padding: 0.75rem 0;
    font-size: 1rem;
    max-width: 13.125rem;
  }
}

.btn a::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 55%;
  right: 15px;
  right: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  width: 0.25rem;
  height: 14px;
  height: 0.875rem;
}
@media screen and (min-width: 550px) {
  .btn a::before {
    width: 0.4375rem;
    height: 1.3125rem;
    right: 0.3125rem;
  }
}
@media screen and (min-width: 750px) {
  .btn a::before {
    width: 0.3125rem;
    height: 0.9375rem;
    right: 0.5625rem;
  }
}

.btn.btn--yellow a {
  background-color: #E6B43F;
}

.btn.btn--yellow a::before {
  background-image: url(../images/common/btn_arrow-white.svg);
}

.collection {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 550px) {
  .collection {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (min-width: 750px) {
  .collection {
    padding-top: 6.25rem;
    padding-bottom: 11.875rem;
  }
}

.new-items__container .second__title {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 550px) {
  .new-items__container .second__title {
    margin-top: 3.125rem;
  }
}
@media screen and (min-width: 750px) {
  .new-items__container .second__title {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 750px) {
  .inner.new-items__inner {
    max-width: 75rem;
    padding-right: 2.125rem;
    padding-left: 2.125rem;
  }
}

.new-items__inner {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 550px) {
  .new-items__inner {
    margin-top: 2.6875rem;
  }
}
@media screen and (min-width: 750px) {
  .new-items__inner {
    margin-top: 1.875rem;
  }
}

.category__container {
  margin-top: 43px;
  margin-top: 2.6875rem;
}
@media screen and (min-width: 550px) {
  .category__container {
    margin-top: 5.4375rem;
  }
}
@media screen and (min-width: 750px) {
  .category__container {
    margin-top: 7.125rem;
  }
}

.category__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 23px;
  margin-top: 1.4375rem;
  border-top: 2px solid #EEEBE9;
}
@media screen and (min-width: 550px) {
  .category__items {
    margin-top: 2.875rem;
  }
}
@media screen and (min-width: 750px) {
  .category__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 2.5rem;
    margin-top: 1.6875rem;
    border: none;
  }
}

@media screen and (max-width: 749px) {
  .category__items.inner {
    padding: 0;
  }
}
.category__item {
  position: relative;
  border-bottom: 2px solid #EEEBE9;
}
@media screen and (min-width: 750px) {
  .category__item {
    border: none;
  }
}

.category__item:nth-child(odd) {
  border-right: 2px solid #EEEBE9;
}
@media screen and (min-width: 750px) {
  .category__item:nth-child(odd) {
    border: none;
  }
}

@media screen and (min-width: 750px) {
  .category__item__image {
    border: 1px solid #B09F87;
    max-width: 13.75rem;
  }
}

.category__item__image figure {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
@media screen and (min-width: 750px) {
  .category__item__image figure {
    padding-top: 163.6363%;
  }
}

.category__item__image figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category__item .second__title {
  top: 21px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 550px) {
  .category__item .second__title {
    top: 43px;
  }
}
@media screen and (min-width: 750px) {
  .category__item .second__title {
    top: 55px;
  }
}

.category__container .btn {
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 550px) {
  .category__container .btn {
    margin-top: 3.25rem;
  }
}
@media screen and (min-width: 750px) {
  .category__container .btn {
    margin-top: 2.25rem;
  }
}

.category__container .btn a {
  margin: auto;
}

.concept {
  background-image: url(../images/top/concept-bgSP.jpg);
  background-size: cover;
  background-position: 100%;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}
@media screen and (min-width: 550px) {
  .concept {
    padding-top: 5rem;
    padding-bottom: 4.3125rem;
    background-position: 70%;
  }
}
@media screen and (min-width: 550px) {
  .concept {
    background-position: 65%;
  }
}
@media screen and (min-width: 650px) {
  .concept {
	  background-position:95%;
  }
}
@media screen and (min-width: 750px) {
  .concept {
    padding-top: 6.75rem;
    padding-bottom: 3.6875rem;
    background-image: url(../images/top/concept-bg.jpg);
	  background-position:80%;
  }
}
@media screen and (min-width: 1200px) {
  .concept {
    background-image: url(../images/top/concept-bg-big.jpg);
  }
}

@media screen and (min-width: 750px) {
  .concept__content {
    display: grid;
    grid-template-columns: 34.375rem;
  }
}

.concept__intro {
  margin: auto;
  width: 100%;
}
@media screen and (min-width: 750px) {
  .concept__intro {
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 749px) {
  .concept__intro {
    margin: 2.1875rem calc(50% - 50vw);
    width: 100vw;
  }
}
.concept__content__text {
  margin-top: 315px;
  margin-top: 19.6875rem;
}
@media screen and (min-width: 550px) {
  .concept__content__text {
    margin-top: 39.375rem;
  }
}
@media screen and (min-width: 750px) {
  .concept__content__text {
    margin-top: 2.25rem;
  }
}

.concept__content__text .text__bottom {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 550px) {
  .concept__content__text .text__bottom {
    margin-top: 1.9375rem;
  }
}
@media screen and (min-width: 750px) {
  .concept__content__text .text__bottom {
    margin-top: 1.4375rem;
  }
}

.concept__content__text .text__top .text-ja:not(:last-child),
.concept__content__text .text__bottom .text-en:not(:last-child) {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 550px) {
  .concept__content__text .text__top .text-ja:not(:last-child),
.concept__content__text .text__bottom .text-en:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .text-nowrap {
    white-space: nowrap;
  }
}

.concept__btn__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 750px) {
  .concept__btn__area {
    margin-top: 3.625rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.concept__btn__area .btn {
  width: 46%;
}
@media screen and (min-width: 750px) {
  .concept__btn__area .btn {
    width: 48%;
    max-width: 13.125rem;
  }
}

.concept__btn__area .btn a {
  padding: 7px 0 8px;
  padding: 0.4375rem 0 0.5rem;
  max-width: 100%;
}
@media screen and (min-width: 550px) {
  .concept__btn__area .btn a {
    padding: 0.875rem 0 1rem;
  }
}
@media screen and (min-width: 750px) {
  .concept__btn__area .btn a {
    padding: 0.5625rem 0 0.6875rem;
  }
}

.concept__btn__area .btn:first-child {
  margin-right: 23px;
  margin-right: 1.4375rem;
}
@media screen and (min-width: 550px) {
  .concept__btn__area .btn:first-child {
    margin-right: 2.875rem;
  }
}
@media screen and (min-width: 750px) {
  .concept__btn__area .btn:first-child {
    margin-right: 1.875rem;
  }
}

.event {
  margin-top: 52px;
  margin-top: 3.25rem;
  overflow: hidden;
}
@media screen and (min-width: 750px) {
  .event {
    margin-top: 6.8125rem;
    background-color: #EEEBE9;
    padding-bottom: 3.5rem;
  }
}

.event .section__title {
  margin-right: 0;
}
@media screen and (min-width: 750px) {
  .event .section__title {
    padding-top: 3.375rem;
  }
}

.event__inner {
  background-color: #EEEBE9;
  padding-bottom: 47px;
  padding-bottom: 2.9375rem;
}
@media screen and (min-width: 550px) {
  .event__inner {
    padding-bottom: 5.875rem;
  }
}
@media screen and (min-width: 750px) {
  .event__inner {
    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;
    margin-top: 3.8125rem;
    padding-bottom: 0;
  }
}
.event__image {
    margin-top: 2.5rem !important;
 }
@media screen and (min-width: 750px) {
  .event__image {
    max-width: 27.625rem;
    width: 100%;
    z-index: 1;
    margin-left: -4.375rem;
	 margin-top: 0 !important;
  }
}
/* 縦用スタイル */
@media screen and (min-width: 750px) {
  .event__inner.event__inner--height {
    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;
    padding-bottom: 0;
    margin-top: 4.1875rem;
    justify-content: space-around;
  }
}
.event__image--height {
    margin-top: 2.5rem !important;
    padding: 1rem 0rem;
}
@media screen and (min-width: 750px) {
  .event__image--height {
    max-width: 18.75rem;
    width: 100%;
    z-index: 1;
    margin-left: 1.5625rem;
    padding: 0;
    margin-top: 0 !important;
  }
}
@media screen and (min-width: 750px) {
  .event__list__items.event__list__items--height,
  .accordion-container.accordion--height {
    max-width: 100%;
    width: 42.1875rem;
  }
}
.event__list.event__list--height {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 750px) {
  .event__list.event__list--height {
    margin-top: 0;
  }
}
/* ここまで */

@media screen and (min-width: 550px) {
  .event__image--beside {
    margin-bottom: 3.4375rem;
  }
}
@media screen and (min-width: 750px) {
  .event__image--beside {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 749px) {
  .event__image--beside {
    margin: 0 calc(50% - 50vw) 2.5rem;
    width: 100vw;
  }
}
.event__image--vertical {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 550px) {
  .event__image--vertical {
    margin-bottom: 2.875rem;
  }
}
@media screen and (min-width: 750px) {
  .event__image--vertical {
    margin-bottom: 0;
  }
}

.event__image--vertical img {
  max-width: 67%;
  width: 100%;
  margin: auto;
}

.event__heading {
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 550px) {
  .event__heading {
    font-size: 2rem;
  }
}
@media screen and (min-width: 750px) {
  .event__heading {
    font-size: 1.375rem;
  }
}

.event__list__items,
.accordion-container {
  background-color: #FFF;
}
@media screen and (min-width: 750px) {
  .event__list__items,
.accordion-container {
    max-width: 100%;
    width: 39.5rem;
  }
}

.event__list__items {
  padding: 20px;
  padding: 1.25rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 550px) {
  .event__list__items {
    padding: 2.1875rem;
    margin-top: 1.6875rem;
  }
}
@media screen and (min-width: 750px) {
  .event__list__items {
    margin-top: 2.8125rem;
    padding-right: 4.375rem;
  }
}

.event__list__item:not(:last-child) {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.event__day,
.event__content {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.625;
}
@media screen and (min-width: 550px) {
  .event__day,
.event__content {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .event__day,
.event__content {
    font-size: 1rem;
    padding: 0;
  }
}

.event__day {
  padding-left: 7px;
  padding-left: 0.4375rem;
/*  padding-right: 15px;*/
/*  padding-right: 0.9375rem;*/
	    border-bottom: 1px solid #000;
    display: inline;
}
@media screen and (min-width: 550px) {
  .event__day {
    padding-left: 0.8125rem;
/*    padding-right: 1.875rem;*/
  }
}
@media screen and (min-width: 750px) {
  .event__day {
    padding-left: 0;
/*    padding-right: 1.375rem;*/
  }
}

.event__content {
  margin-top: 16px;
  margin-top: 1rem;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値では非表示 */
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

body.fadeout::after {
  opacity: 1;
}

body.fadeout article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.footer {
  background-color: #EEEBE9;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (min-width: 550px) {
  .footer {
    padding: 2.25rem 0;
  }
}
@media screen and (min-width: 750px) {
  .footer {
    padding: 2.75rem 0 3.1875rem;
  }
}

.footer .footer__logo {
  width: 60px;
  width: 3.75rem;
  margin: auto;
}
@media screen and (min-width: 550px) {
  .footer .footer__logo {
    width: 5rem;
  }
}
@media screen and (min-width: 750px) {
  .footer .footer__logo {
    margin-left: 0;
    margin-right: 3.8125rem;
  }
}

@media screen and (min-width: 750px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 750px) {
  .footer__nav__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 750px) {
  .footer__nav__area .footer__nav:first-child {
    margin-right: 1.25rem;
  }
}
@media screen and (min-width: 1030px) {
  .footer__nav__area .footer__nav:first-child {
    margin-right: 2.375rem;
  }
}

@media screen and (min-width: 750px) {
  .footer__nav__area .footer__nav:nth-child(2) {
    margin-right: 2.5rem;
  }
}
@media screen and (min-width: 1030px) {
  .footer__nav__area .footer__nav:nth-child(2) {
    margin-right: 4.3125rem;
  }
}

@media screen and (min-width: 750px) {
  .footer__nav__item {
    text-align: left;
  }
}

@media screen and (min-width: 750px) {
  .footer__nav__item:not(:first-child) {
    margin-top: 1.125rem;
  }
}

@media screen and (min-width: 750px) {
  .footer .footer__nav__item a {
    letter-spacing: 0.05em;
    line-height: 1;
    color: #040000;
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.footer .footer__nav__item span {
  font-family: "Libre Baskerville", serif;
}

@media screen and (min-width: 750px) {
  .footer__other {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 750px) {
  .footer__other li:first-child {
    margin-right: 0.3125rem;
  }
}

@media screen and (min-width: 750px) {
  .footer__other li:nth-child(2) {
    margin-right: 0.8125rem;
  }
}

@media screen and (min-width: 750px) {
  .footer__other a {
    color: #040000;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 750px) {
  .footer__other li:nth-child(2) img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media screen and (min-width: 750px) {
  .footer__other li:last-child img {
    width: 1.3125rem;
    height: 1rem;
  }
}

.copyright {
  text-align: center;
  line-height: 1;
  font-size: 8px;
  font-size: 0.5rem;
  font-family: "Libre Baskerville", serif;
  color: #040000;
  font-weight: 300;
  background-color: #FFF;
}
@media screen and (min-width: 550px) {
  .copyright {
    font-size: 1rem;
  }
}
@media screen and (min-width: 750px) {
  .copyright {
    font-size: 0.625rem;
    background-color: #EEEBE9;
  }
}

.footer__copy {
  background-color: #FFF;
  padding: 12px 0;
  padding: 0.75rem 0;
}
@media screen and (min-width: 750px) {
  .footer__copy {
    padding-top: 0;
    padding-bottom: 2.375rem;
    background-color: #EEEBE9;
  }
}

.fv {
  width: 100%;
  /* height: calc(100vh - 100px); */
  height: 100vh;
  background-image: url(../images/top/mv-bgSP.jpg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (min-width: 750px) {
  .fv {
    background-image: url(../images/top/mv-bg.jpg);
    display: grid;
    grid-template-rows: 85% 15%;
    grid-template-columns: 100%;
  }
}
@media screen and (min-width: 750px) {
  .fv .fv__inner {
    grid-row: 1;
    grid-column: 1;
    position: relative;
  }
}
.fv__container {
  padding-top: 62px;
  padding-top: 3.875rem;
}
@media screen and (min-width: 550px) {
  .fv__container {
    padding-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}
@media screen and (min-width: 750px) {
  .fv__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 749px) {
  .fv__slider {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
@media screen and (min-width: 750px) {
  .fv__slider__area {
    width: 50%;
    max-width: 43.4375rem;
  }
}

@media screen and (min-width: 750px) {
  .fv__catch {
    max-width: 29.375rem;
    width: 50%;
  }
}

.fv__catch .fv__logo {
  max-width: 100%;
  width: 73px;
  width: 4.5625rem;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}
@media screen and (min-width: 550px) {
  .fv__catch .fv__logo {
    width: 9.125rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 750px) {
  .fv__catch .fv__logo {
    width: 8.125rem;
    margin-bottom: 0;
  }
}

.fv__catch h2,
.fv__catch p {
  color: #4A2F14;
  text-align: center;
}

.fv__catch h2 {
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 550px) {
  .fv__catch h2 {
    margin-bottom: 3.125rem;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 750px) {
  .fv__catch h2 {
    margin-top: 3.25rem;
    margin-bottom: 0;
    font-size: 1.75rem;
  }
}

.fv__catch p {
  font-weight: 600;
  line-height: 1.875;
  letter-spacing: 0.3em;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 550px) {
  .fv__catch p {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 750px) {
  .fv__catch p {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.slider_fade {
  position: relative;
}

.slider_fade > li {
  position: absolute;
  visibility: hidden;
  top: 20px;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: slideAnime;
          animation-name: slideAnime;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}
@media screen and (min-width: 750px) {
  .slider_fade > li {
    top: 0;
  }
}

.slider_fade > li:nth-of-type(1) {
  right: -25px;
  top: 0;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@media screen and (min-width: 750px) {
  .slider_fade > li:nth-of-type(1) {
    right: 0;

  }
}
.slider_fade > li:nth-of-type(2) {
  top: 0;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.slider_fade > li:nth-of-type(3) {
  right: -15px;
  top: 40px;
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
@media screen and (min-width: 750px) {
  .slider_fade > li:nth-of-type(3) {
    right: 0;
  }
}
.slider_fade > li:nth-of-type(4) {
  -webkit-animation-delay: 30s;
          animation-delay: 30s;
}

@-webkit-keyframes slideAnime {
  0% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  10% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  28% {
    opacity: 0;
	  -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}

@keyframes slideAnime {
  0% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  10% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  28% {
    opacity: 0;
	  -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}

.hamburger {
  z-index: 9999;
}

.hamburger span {
  position: relative;
  display: block;
  height: 2px;
  height: 0.125rem;
  width: 27px;
  width: 1.6875rem;
  background: #4B3014;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
@media screen and (min-width: 550px) {
  .hamburger span {
    width: 3.375rem;
  }
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 7px 0;
  margin: 0.4375rem 0;
}
@media screen and (min-width: 550px) {
  .hamburger span:nth-child(2) {
    margin: 0.875rem 0;
  }
}

.hamburger span:nth-child(3) {
  top: 0;
}

/*is-OPEN時の動き*/
.hamburger.is-open span:nth-child(1) {
  top: 11px;
  top: 0.6875rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 550px) {
  .hamburger.is-open span:nth-child(1) {
    top: 1.5625rem;
  }
}

.hamburger.is-open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: -7px;
  top: -0.4375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header {
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
}

.header .header__inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0 10px 0 22px;
  padding: 0 0.625rem 0 1.375rem;
}
@media screen and (min-width: 750px) {
  .header .header__inner {
    padding-left: 2rem;
    padding-right: 0;
  }
}

.header .logo {
  width: 72px;
  width: 4.5rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
  position: relative;
}
@media screen and (min-width: 750px) {
  .header .logo {
    margin-top: 0;
    width: 5.875rem;
    height: 1.9375rem;
  }
}

.header .logo:hover {
  opacity: 0.7;
}

@media screen and (min-width: 750px) {
  .pc-header {
    padding: 2.125rem 0;
    background: #FFF;
    grid-row: 2;
    grid-column: 1;
    width: 100%;
  }
}

.pc-header .gNav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 750px) {
  .pc-header .gNav__item:not(:last-child) {
    padding-right: 3rem;
  }
}

.gNav__item a {
  position: relative;
  display: grid;
  place-items: center;
  color: #040000;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  -webkit-transition: 1s;
  transition: 1s;
}
@media screen and (min-width: 750px) {
  .gNav__item a {
    letter-spacing: 0.1em;
  }
}

.gNav__item:hover {
  opacity: 0.8;
}

.header__drawer {
  margin-left: auto;
  margin-top: 16px;
  margin-top: 1rem;
  margin-right: 6px;
  margin-right: 0.375rem;
}
@media screen and (min-width: 550px) {
  .header__drawer {
    margin-top: 2.0625rem;
    margin-right: 1.375rem;
  }
}

.sp-nav {
  position: fixed;
  z-index: 9995;
  top: 0;
  right: 0;
  background-color: #FFF;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  opacity: scroll;
}
@media screen and (min-width: 750px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav .sp-nav__logo {
  width: 44px;
  width: 2.75rem;
  margin: 5px auto 0 10px;
  margin: 0.3125rem auto 0 0.625rem;
}
@media screen and (min-width: 550px) {
  .sp-nav .sp-nav__logo {
    width: 5.5rem;
    margin: 0.625rem auto 0 1.25rem;
  }
}

.sp-nav .sp-nav__heading {
  font-family: "Libre Baskerville", serif;
  color: #EEEBE9;
  font-weight: 300;
  text-align: right;
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1;
  margin-bottom: -6px;
  margin-bottom: -0.375rem;
}
@media screen and (min-width: 550px) {
  .sp-nav .sp-nav__heading {
    font-size: 4.75rem;
    margin-bottom: -0.75rem;
  }
}

.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sp-nav {
  height: 100vh;
}

.sp-nav__items {
  background-color: #EEEBE9;
  margin-bottom: 21px;
  margin-bottom: 1.3125rem;
}
@media screen and (min-width: 550px) {
  .sp-nav__items {
    margin-bottom: 2.625rem;
  }
}

.sp-nav__item {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 20px 33px 20px;
  padding: 1.25rem 2.0625rem 1.25rem;
}
@media screen and (min-width: 550px) {
  .sp-nav__item {
    padding: 2.5rem 4.125rem 2.5rem;
  }
}

.sp-nav__item:not(:last-child) {
  border-bottom: 1px solid #FFF;
}

.sp-nav__item:hover {
  opacity: 0.8;
}

.sp-nav__item a {
  display: block;
  width: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  text-align: right;
  display: block;
  color: #040000;
  font-weight: 300;
}
@media screen and (min-width: 550px) {
  .sp-nav__item a {
    font-size: 1.5rem;
  }
}

.sp-nav__item span {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Libre Baskerville", serif;
}
@media screen and (min-width: 550px) {
  .sp-nav__item span {
    font-size: 2rem;
  }
}

.sp-nav__other {
  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;
}

.sp-nav__other a {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  color: #040000;
  font-weight: 300;
}
@media screen and (min-width: 550px) {
  .sp-nav__other a {
    font-size: 2rem;
  }
}

.sp-nav__other li:first-child {
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (min-width: 550px) {
  .sp-nav__other li:first-child {
    margin-right: 2.5rem;
  }
}

.sp-nav__other li img {
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
}
@media screen and (min-width: 550px) {
  .sp-nav__other li img {
    width: 3.0625rem;
    height: 3.0625rem;
  }
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 2;
}

.under-header {
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFF;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 750px) {
  .under-header {
    padding-top: 0.9375rem;
    padding-bottom: 0.625rem;
  }
}

.under-header__inner {
  width: 100%;
  padding-right: 10px;
  padding-right: 0.625rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 550px) {
  .under-header__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 750px) {
  .under-header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 73.5625rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

@media screen and (min-width: 750px) {
  .under-header__inner .gNav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 750px) {
  .under-header__inner .gNav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 750px) {
  .under-header .gNav__item:not(:last-child) a {
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .under-header .gNav__item:not(:last-child) a {
    padding-right: 60px;
    padding-right: 2.5rem;
  }
}

.under-header .gNav__item img {
  width: 24px;
  height: 24px;
  max-width: 100%;
}

.under-header .gNav__item a {
  color: #040000;
}

.under-header .inner.under-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 750px) {
  .under-header .inner.under-header__inner {
    max-width: 73.75rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.under-header .under-header__logo {
  max-width: 45px;
  max-width: 2.8125rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 550px) {
  .under-header .under-header__logo {
    max-width: 5.4375rem;
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 750px) {
  .under-header .under-header__logo {
    width: 4.0625rem;
    margin-top: 0;
  }
}

.under-header .header__drawer {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 550px) {
  .under-header .header__drawer {
    margin-top: 2.125rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 550px) {
  .inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media screen and (min-width: 750px) {
  .inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.s-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 750px) {
  .s-inner {
    max-width: 71.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.instagram {
  background-color: #C4B5AB;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 33px;
  padding-top: 2.0625rem;
}
@media screen and (min-width: 550px) {
  .instagram {
    padding-bottom: 5.0625rem;
    padding-top: 4.0625rem;
  }
}
@media screen and (min-width: 750px) {
  .instagram {
    padding-bottom: 4.125rem;
    padding-top: 4.375rem;
  }
}

.instagram__account {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 550px) {
  .instagram__account {
    margin-top: 2.5625rem;
  }
}
@media screen and (min-width: 750px) {
  .instagram__account {
    margin-top: 1.625rem;
  }
}

.instagram__account span {
  position: relative;
  color: #4A2F14;
  font-family: "Libre Baskerville", serif;
  font-weight: 300;
  letter-spacing: 0.1;
  padding-left: 26px;
  padding-left: 1.625rem;
}
@media screen and (min-width: 550px) {
  .instagram__account span {
    padding-left: 3.1875rem;
  }
}
@media screen and (min-width: 750px) {
  .instagram__account span {
    padding-left: 2.1875rem;
  }
}

.instagram__account span::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/ins-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 550px) {
  .instagram__account span::before {
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media screen and (min-width: 750px) {
  .instagram__account span::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* .instagram .btn {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 550px) {
  .instagram .btn {
    margin-top: 6.5625rem;
  }
}
@media screen and (min-width: 750px) {
  .instagram .btn {
    margin-top: 3.125rem;
  }
} */

.instagram .btn a {
  margin: auto;
}

.instagram__slider {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 550px) {
  .instagram__slider {
    margin-top: 2.375rem;
  }
}
@media screen and (min-width: 750px) {
  .instagram__slider {
    margin-top: 3.125rem;
  }
}

.instagram__slider .instagram__image {
  width: 100%;
  padding-right: 16px;
}
@media screen and (min-width: 550px) {
  .instagram__slider .instagram__image {
    padding-right: 30px;
  }
}
@media screen and (min-width: 750px) {
  .instagram__slider .instagram__image {
    padding-right: 16px;
  }
}

.instagram__slider .instagram__image figure {
  padding-top: 100%;
  position: relative;
  width: 100%;
}

.instagram__slider .instagram__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .category__items .category__item:nth-of-type(2){
      transition-delay: .1s;
  }
  .category__items .category__item:nth-of-type(3){
      transition-delay: .2s;
  }
}


.js-feadUps {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.js-feadUps.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-feadUps:nth-of-type(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.js-feadUps:nth-of-type(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.js-feadUps:nth-of-type(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-feadUps:nth-of-type(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* 左から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.js-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  background-image: url(../images/top/mv-bgSP.jpg);
  background-size: cover;
  background-position: center;
  -webkit-transition: opacity 0.8s, visibility 0.8s;
  transition: opacity 0.8s, visibility 0.8s;
  z-index: 10000;
}
@media screen and (min-width: 750px) {
  .js-loader {
    background-image: url(../images/top/mv-bg.jpg);
  }
}
.is-loaded .js-loader {
  visibility: hidden;
	opacity: 0;
}

.loader__image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader__image img {
  max-width: 11.875rem;
  display: block;
  width: 100%;
}
@media screen and (min-width: 750px) {
  .loader__image img {
    max-width: 100px;
    max-width: 6.25rem;
  }
}
.js-loader.loader-none {
	visibility: hidden;
	opacity: 0;
  transition: none;
}
@media screen and (min-width: 750px) {
  .loader__image img {
    max-width: 200px;
max-width: 12.5rem;
  }
}
.js-loader-progress {
  position: fixed;
  top: 80vh;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  height: 1px;
}
.is-loaded .js-loader-progress {
  visibility: hidden;
  opacity: 0;
}

.js-loader-progress-bar {
  background: #fff;
  height: 100%;
  width: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  opacity: 0;
}

.js-loader-progress-number {
  text-align: center;
  font-size: 10px;
  width: 100%;
  margin-top: 10px;
  opacity: 0;
}

.map--sepia iframe {
  -webkit-filter: brightness(90%) sepia(40%) saturate(20%);
  -moz-filter: brightness(90%) sepia(40%) saturate(20%);
  -o-filter: brightness(90%) sepia(40%) saturate(20%);
  -ms-filter: brightness(90%) sepia(40%) saturate(20%);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.9" /><feFuncG type="linear" slope="0.9" /><feFuncB type="linear" slope="0.9" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.7572 0.30760000000000004 0.0756 0 0 0.1396 0.8744000000000001 0.06720000000000001 0 0 0.10880000000000001 0.2136 0.6524 0 0 0 0 0 1 0" /><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.3704 0.572 0.0576 0 0 0.1704 0.774 0.0576 0 0 0.1704 0.572 0.2576 0 0 0 0 0 1 0" /></filter></svg>#filter');
  filter: brightness(90%) sepia(40%) saturate(20%);
}

/* モーダルウィンドウ */
.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10000;
  width: 95%;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .modal-window {
    width: auto;
  }
}

.modal-window iframe {
  max-width: 100%;
  height: 200px;
  height: 12.5rem;
}
@media screen and (min-width: 550px) {
  .modal-window iframe {
    height: 18.75rem;
  }
}
@media screen and (min-width: 750px) {
  .modal-window iframe {
    height: 19.6875rem;
  }
}

/* 閉じるボタン */
.button-close {
  position: absolute;
  bottom: -100px;
  bottom: -6.25rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200px;
  padding: 1em;
  background-color: #eeebe9;
  color: #4A2F14;
  font-family: "Libre Baskerville", serif;
  cursor: pointer;
}

/* オーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  z-index: 10;
}

.button-open {
  padding: 0;
}

.new-items__slider {
  margin: 0 auto;
  width: 80%;
}
@media screen and (min-width: 750px) {
  .new-items__slider {
    max-width: 63.125rem;
    width: 100%;
    border: none;
  }
}
@media screen and (min-width: 750px) {
  .new-items__slider .slider-img img {
  border: 1px solid #B09F87;
}
}
.slider-img img {
  height: auto;
  width: 100%;
}
.new-items__slider .slider-img:hover {
  cursor: pointer;
	opacity: 0.8;
}
.new-items__slider .slider-img img:hover {
  cursor: pointer;
}
.new-items__slider .slider-img {
  transition: 0.3s;
}
.slick-prev:before, .slick-next:before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 550px) {
  .slick-prev:before, .slick-next:before {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media screen and (min-width: 750px) {
  .slick-prev:before, .slick-next:before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .slick-prev:before {
    background-image: url(../images/common/arrow-l.png);
    left: -30px;
    left: -1.875rem;
  }
}
@media screen and (min-width: 550px) {
  .slick-prev:before {
    left: -4.0625rem;
  }
}
@media screen and (min-width: 750px) {
  .slick-prev:before {
    left: -0.625rem;
  }
}
@media screen and (max-width: 750px) {
  .slick-next:before {
    background-image: url(../images/common/arrow-r.png);
    right: -30px;
    right: -1.875rem;
  }
}
@media screen and (min-width: 550px) {
  .slick-next:before {
    right: -4.0625rem;
  }
}
@media screen and (min-width: 750px) {
  .slick-next:before {
    left: -0.625rem;
  }
}

@media screen and (min-width: 750px) {
  .new-items__slider .slick-slide {
    margin: 0 1.25rem;
  }
}

.news {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 750px) {
  .news {
    margin-top: 6.8125rem;
  }
}

@media screen and (min-width: 750px) {
  .news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 550px) {
  .news__inner.inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
@media screen and (min-width: 750px) {
  .news__inner.inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.news .section__title {
  margin-right: 0;
}
@media screen and (min-width: 750px) {
  .news .section__title {
    margin-right: 2.875rem;
  }
}

@media screen and (min-width: 750px) {
  .news__list {
    max-width: 840px;
    width: 100%;
  }
}

.news__list__item {
  border-bottom: 1px solid #B09F87;
  padding: 12px 0;
  padding: 0.75rem 0;
}
@media screen and (min-width: 550px) {
  .news__list__item {
    padding: 1.5rem 0;
  }
}
@media screen and (min-width: 750px) {
  .news__list__item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 0;
  }
}

.news__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 750px) {
  .news__list__item:first-child {
    padding-top: 1rem;
  }
}

.news__day,
.news__content {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.3333333333;
}
@media screen and (min-width: 550px) {
  .news__day,
.news__content {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .news__day,
.news__content {
    font-size: 1rem;
    padding: 0;
  }
}

.news__day {
  padding-left: 7px;
  padding-left: 0.4375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;

}
@media screen and (max-width: 549px) {
.news__content {
width:67%;
  }
}
	@media screen and (max-width: 549px) {
.news__day {
width:33%;
  }
}
@media screen and (min-width: 550px) {
  .news__day {
    padding-left: 0.8125rem;
    padding-right: 1.875rem;
width:160px;
  }
}
@media screen and (min-width: 750px) {
  .news__day {
    padding-left: 0;
    padding-right: 1.375rem;
width:120px;
  }
}

.accordion-content.accordion-content--news {
  padding: 20px 20px 0 0;
  padding: 1.25rem 1.25rem 0 0;
	    font-size: 0.9rem;
    letter-spacing: 0.05rem;
}
@media screen and (min-width: 550px) {
  .accordion-content.accordion-content--news {
    padding: 2.1875rem 2.1875rem 0 0;
	      font-size: 0.9rem;
    letter-spacing: 0.05rem;
  }
}
@media screen and (min-width: 750px) {
  .accordion-content.accordion-content--news {
    padding: 1.5625rem 1.6875rem 0 0;

  }
}

.pagetop {
  position: fixed;
  bottom: 41px;
  bottom: 2.5625rem;
  right: 21px;
  right: 1.3125rem;
  z-index: 99;
}
@media screen and (min-width: 750px) {
  .pagetop {
    bottom: 1.9375rem;
    right: 2rem;
  }
}

.pagetop a {
  /* background: #EEEBE9; */
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 550px) {
  .pagetop a {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media screen and (min-width: 750px) {
  .pagetop a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.pagetop a span {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-top: solid 1px #B09F87;
  border-left: solid 1px #B09F87;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pagetop a:hover span {
  border-top: solid 1px #040000;
  border-left: solid 1px #040000;
}

/* .parallax {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
} */
/* @media screen and (min-width: 750px) {
  .parallax {
    background-image: url(../images/top/para-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 320px;
    background-size: 168%;
    width: 100%;
  }
}
@media screen and (min-width: 1030px) {
  .parallax {
    background-size: 120%;
  }
}
@media screen and (min-width: 1200px) {
  .parallax {
    background-size: cover;
  }
} */

.red-link {
  color: #CF341C;
  text-decoration: underline;
}

.second__title {
  color: #4A2F14;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  font-family: "Libre Baskerville", serif;
}
@media screen and (min-width: 550px) {
  .second__title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .second__title {
    font-size: 1.25rem;
  }
}

.section__title.section__title--white h2 {
  color: #FFF;
}

.section__title h2 {
  color: #4A2F14;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-family: "Libre Baskerville", serif;
}
@media screen and (min-width: 550px) {
  .section__title h2 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 750px) {
  .section__title h2 {
    font-size: 2.1875rem;
  }
}

.section__title h3 {
  color: #4A2F14;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-family: "Libre Baskerville", serif;
}
@media screen and (min-width: 550px) {
  .section__title h3 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 750px) {
  .section__title h3 {
    font-size: 2.1875rem;
  }
}

.shop-atelier {
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
  padding-top: 39px;
  padding-top: 2.4375rem;
}
@media screen and (min-width: 550px) {
  .shop-atelier {
    padding-bottom: 2.875rem;
    padding-top: 4.875rem;
  }
}
@media screen and (min-width: 750px) {
  .shop-atelier {
    padding-bottom: 6rem;
    padding-top: 6.3125rem;
  }
}

.shop-atelier__container {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 550px) {
  .shop-atelier__container {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 750px) {
  .shop-atelier__container {
    margin-top: 4.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 750px) {
  .shop-atelier__box {
    max-width: 30rem;
    width: 100%;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 900px;
  }
}

.shop-atelier__heading {
  color: #4A2F14;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 550px) {
  .shop-atelier__heading {
    font-size: 1.5rem;
    margin-bottom: 3.0625rem;
  }
}
@media screen and (min-width: 750px) {
  .shop-atelier__heading {
    font-size: 1.25rem;
    margin-bottom: 2.625rem;
    text-align: left;
  }
}

.shop-atelier__box:first-child .shop-atelier__info .text-ja:not(:last-of-type) {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 550px) {
  .shop-atelier__box:first-child .shop-atelier__info .text-ja:not(:last-of-type) {
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 750px) {
  .shop-atelier__box:first-child .shop-atelier__info .text-ja:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }
}

.shop-atelier__box:first-child .shop-atelier__info .text-ja:last-of-type {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 550px) {
  .shop-atelier__box:first-child .shop-atelier__info .text-ja:last-of-type {
    margin-bottom: 2.125rem;
  }
}
@media screen and (min-width: 750px) {
  .shop-atelier__box:first-child .shop-atelier__info .text-ja:last-of-type {
    margin-bottom: 3.25rem;
  }
}

.shop-atelier__box:nth-child(2) .shop-atelier__info .text-ja:not(:last-of-type) {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 550px) {
  .shop-atelier__box:nth-child(2) .shop-atelier__info .text-ja:not(:last-of-type) {
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 750px) {
  .shop-atelier__box:nth-child(2) .shop-atelier__info .text-ja:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }
}

.shop-atelier__box:nth-child(2) .shop-atelier__info .text-ja:last-of-type {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 550px) {
  .shop-atelier__box:nth-child(2) .shop-atelier__info .text-ja:last-of-type {
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 750px) {
  .shop-atelier__box:nth-child(2) .shop-atelier__info .text-ja:last-of-type {
    margin-bottom: 1.875rem;
  }
}

.shop-atelier__box:first-child {
  margin-bottom: 43px;
  margin-bottom: 2.6875rem;
}
@media screen and (min-width: 550px) {
  .shop-atelier__box:first-child {
    margin-bottom: 5.375rem;
  }
}
@media screen and (min-width: 750px) {
  .shop-atelier__box:first-child {
    margin-right: 2.5rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 749px) {
  .shop-atelier__map {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.shop-atelier__map iframe {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .shop-atelier__map iframe {
    width: 100%;
  }
}

.slick-dots {
  display: none !important;
}

.text-ja {
  font-size: 12px;
  font-size: 0.75rem;
  color: #040000;
  font-weight: normal;
  line-height: 1.8181818182;
	word-break:keep-all;
}
@media screen and (min-width: 550px) {
  .text-ja {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 750px) {
  .text-ja {
    font-size: 1rem;
  }
}

.text-ja--s {
  font-size: 12px;
  font-size: 0.75rem;
  color: #040000;
  font-weight: normal;
  line-height: 2;
	word-break:keep-all;
}
@media screen and (min-width: 550px) {
  .text-ja--s {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .text-ja--s {
    font-size: 0.75rem;
    line-height: 2;
  }
}

.text-ja.text-ja--white {
  color: #FFF;
}

.text-en {
  font-size: 10px;
  font-size: 0.625rem;
  color: #040000;
  font-weight: medium;
  line-height: 2;
  font-family: "Libre Baskerville", serif;
	word-break:keep-all;
}
@media screen and (min-width: 550px) {
  .text-en {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 750px) {
  .text-en {
    font-size: 0.75rem;
  }
}

.text-en--s {
  font-size: 10px;
  font-size: 0.625rem;
  color: #040000;
  font-weight: medium;
  line-height: 1.5;
  font-family: "Libre Baskerville", serif;
	word-break:keep-all;
}
@media screen and (min-width: 550px) {
  .text-en--s {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 750px) {
  .text-en--s {
    font-size: 0.625rem;
  }
}

.text-en.text-en--white {
  color: #FFF;
}

.under-page__title h1 {
  font-family: "Libre Baskerville", serif;
  font-weight: 300;
  color: #EEEBE9;
  letter-spacing: 0.03em;
  line-height: 1;
  font-size: 70px;
  font-size: 4.375rem;
  text-align: left;
  display: inline-block;
}
@media screen and (min-width: 550px) {
  .under-page__title h1 {
    font-size: 8.75rem;
  }
}
@media screen and (min-width: 750px) {
  .under-page__title h1 {
    font-size: 9.375rem;
  }
}

.zoom-img {
  overflow: hidden;
  margin: auto;
}

.zoom-img figure {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.zoom-img figure:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.archive-page__top {
  margin-top: 3.125rem;
}
@media screen and (min-width: 550px) {
  .archive-page__top {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 750px) {
  .archive-page__top {
    margin-top: 120px;
  }
}

.archive-main {
  background-color: #EEEBE9;
  padding: 25px 0 18px;
  padding: 1.5625rem 0 1.125rem;
}
@media screen and (min-width: 550px) {
  .archive-main {
    padding: 3.125rem 0 2.25rem;
  }
}
@media screen and (min-width: 750px) {
  .archive-main {
    padding: 2.5rem 0 5rem;
  }
}

.inner.collection__inner {
  width: 100%;
  padding-right: 15px;
  padding-right: 0.9375rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 550px) {
  .inner.collection__inner {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 750px) {
  .inner.collection__inner {
    max-width: 67.5rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.inner.recommend__inner {
  width: 100%;
  padding-right: 15px;
  padding-right: 0.9375rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 550px) {
  .inner.recommend__inner {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 750px) {
  .inner.recommend__inner {
    max-width: 68.75rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.select__box {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-row-gap: 1.5rem;
     -moz-row-gap: 1.5rem;
          row-gap: 1.5rem;
}
@media screen and (min-width: 750px) {
  .select__box {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    max-width: 55rem;
    margin-right: auto;
    margin-left: 0;
  }
}

.select__item {
  border-bottom: 1px solid #040000;
  position: relative;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 750px) {
  .select__item {
    width: 27.5rem;
  }
}

.select__item::before {
  content: "▼";
  color: #4A2F14;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 10px;
  font-size: 0.625rem;
  z-index: -1;
}
@media screen and (min-width: 750px) {
  .select__item::before {
    font-size: 0.625rem;
    right: 10px;
  }
}

.select__item::before:hover {
  cursor: pointer;
}

.select__item select {
  color: #040000;
  max-width: 100%;
  width: 100%;
  font-size: 0.875rem;
}
@media screen and (min-width: 750px) {
  .select__item select {
    width: 27.5rem;
  }
}

.collection__container {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 550px) {
  .collection__container {
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 750px) {
  .collection__container {
    margin-top: 2.375rem;
  }
}

.collection__list__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 14px;
  row-gap: 0.875rem;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
}
@media screen and (min-width: 550px) {
  .collection__list__items {
    row-gap: 1.75rem;
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
  }
}
@media screen and (min-width: 750px) {
  .collection__list__items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    row-gap: 1rem;
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }
}

.collection__list__item {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  background-color: #fff;
  width: 100%;
	overflow: hidden;
  margin: auto;
}

.collection__list__item:hover {
  opacity: 0.8;
}

.collection__list__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.collection__list__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
	-webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.collection__list__image:hover {
	 -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.collection__list__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.details {
  position: absolute;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  text-align: center;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.recommend-area {
  background-color: #FFF;
  padding: 55px 0 50px;
  padding: 3.4375rem 0 3.125rem;
}
@media screen and (min-width: 550px) {
  .recommend-area {
    padding: 6.875rem 0 6.25rem;
  }
}
@media screen and (min-width: 750px) {
  .recommend-area {
    padding: 4.375rem 0 4.0625rem;
  }
	.recommend-area .section__title h2{
    font-size: 1.3125rem;
  }
}

.recommend__list__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 14px;
  row-gap: 0.875rem;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 550px) {
  .recommend__list__items {
    margin-top: 3.125rem;
    row-gap: 1.75rem;
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
  }
}
@media screen and (min-width: 750px) {
  .recommend__list__items {
    margin-top: 3.75rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }
}

.recommend__list__item {
  border: 1px solid #B09F87;
}

.recommend__list__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.recommend__list__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.recommend__list__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.biography-page {
  overflow: hidden;
}

.history__container {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 550px) {
  .history__container {
    margin-top: 2.8125rem;
  }
}
@media screen and (min-width: 750px) {
  .history__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 5.5rem;
    margin-top: 0;
  }
}

@media screen and (min-width: 750px) {
  .history__image {
    margin-top: -2.8125rem;
    margin-left: 3.125rem;
  }
}

@media screen and (max-width: 750px) {
  .history__image {
    margin: 2.8125rem calc(50% - 50vw) 0;
    width: 100vw;
  }
}
.history__image img {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .history__image img {
    max-width: 25rem;
  }
}
@media screen and (min-width: 750px) {
  .history__area {
    margin-top: 0.9375rem;
  }
}
.history__area .text-ja--s{
    word-break: normal;
 }
.history__list__items {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .history__list__items {
    max-width: 31.25rem;
  }
}

.history__list__items .history__list__item dt {
  max-width: 60px;
  max-width: 3.2rem;
  width: 100%;
}
@media screen and (min-width: 550px) {
  .history__list__items .history__list__item dt {
    max-width: 7.5rem;
  }
}
@media screen and (min-width: 750px) {
  .history__list__items .history__list__item dt {
    max-width: 3.875rem;
  }
}

.history__list__items.history__list__items--two .history__list__item dt {
  max-width: 48px;
  max-width: 3rem;
  width: 100%;
}
@media screen and (min-width: 550px) {
  .history__list__items.history__list__items--two .history__list__item dt {
    max-width: 6rem;
  }
}
@media screen and (min-width: 750px) {
  .history__list__items.history__list__items--two .history__list__item dt {
    max-width: 2.75rem;
  }
}

.history__list__items.history__list__items--two {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 550px) {
  .history__list__items.history__list__items--two {
    margin-top: 4.375rem;
  }
}
@media screen and (min-width: 750px) {
  .history__list__items.history__list__items--two {
    margin-top: 3.3125rem;
  }
}

.history__list__items.history__list__items--two .history__list__item:not(:first-child) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 550px) {
  .history__list__items.history__list__items--two .history__list__item:not(:first-child) {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 750px) {
  .history__list__items.history__list__items--two .history__list__item:not(:first-child) {
    margin-top: 1.125rem;
  }
}

.history__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.history__messege {
  margin-top: 21px;
  margin-top: 1.3125rem;
}
@media screen and (min-width: 550px) {
  .history__messege {
    margin-top: 2.625rem;
  }
}
@media screen and (min-width: 750px) {
  .history__messege {
    margin-top: 2.375rem;
  }
}

.history__movie__container {
  background-image: url(../images/inner/biography-bgSP.jpg);
  padding: 40px 0 32px;
  padding: 2.5rem 0 2rem;
  background-size: cover;
  background-position: center;
  margin-top: 3rem;
}
@media screen and (min-width: 550px) {
  .history__movie__container {
    padding: 5.0625rem 0 4.0625rem;
  }
}
@media screen and (min-width: 750px) {
  .history__movie__container {
    background-image: url(../images/inner/biography-bg.jpg);
    padding: 3.25rem 0 6.8125rem;
    margin-top: 0;
  }
}

.inner.movie__container__inner {
  width: 100%;
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}
@media screen and (min-width: 550px) {
  .inner.movie__container__inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media screen and (min-width: 750px) {
  .inner.movie__container__inner {
    max-width: 56.25rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.movie__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 18px;
  row-gap: 1.125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 550px) {
  .movie__list {
    margin-top: 4.375rem;
    row-gap: 2.25rem;
  }
}
@media screen and (min-width: 750px) {
  .movie__list {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 3.125rem;
       -moz-column-gap: 3.125rem;
            column-gap: 3.125rem;
    margin-top: 4.0625rem;
  }
}

.movie__list__item h4 {
  font-weight: normal;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .movie__list__item h4 {
    text-align: left;
  }
}

.movie__list__item img {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 550px) {
  .movie__list__item img {
    margin-top: 0.625rem;
  }
}

.contact-page {
  padding-top: 6px;
  padding-top: 0.375rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 550px) {
  .contact-page {
    padding-bottom: 4rem;
    padding-top: 0.6875rem;
  }
}
@media screen and (min-width: 750px) {
  .contact-page {
    padding-bottom: 6.125rem;
    padding-top: 0;
  }
}

.intro-en {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 550px) {
  .intro-en {
    margin-top: 2.25rem;
  }
}
@media screen and (min-width: 750px) {
  .intro-en {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 750px) {
  .contact__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contac__form {
  width: 100%;
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 550px) {
  .contac__form {
    margin-top: 2.8125rem;
  }
}
@media screen and (min-width: 750px) {
  .contac__form {
    max-width: 46.25rem;
    margin-top: -4.375rem;
  }
}

.contact__intro {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .contact__intro {
    max-width: 15.625rem;
    margin-right: 0.625rem;
  }
}
.contact__intro .text-en--s {
	white-space: nowrap;
}
@media screen and (min-width: 750px) {
  .form__item__inner {
    position: relative;
  }
}

.notice {
  color: #AC282C;
}
@media screen and (min-width: 750px) {
  .notice {
    position: absolute;
    top: -1.75rem;
    left: 0;
  }
}

@media screen and (min-width: 750px) {
  .form__item {
	  margin-bottom: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 750px) {
  .form__item.form__item--nomargin {
    margin-bottom: initial;
  }
}

@media screen and (min-width: 750px) {
  .form__item.form__item--fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 750px) {
	.form__item-body.form__item-body--flex {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		}
}

@media screen and (min-width: 750px) {
	.form__item-inner.form__item-inner--small {
		max-width: 10.625rem;
		}
}
.form__item-inner.form__item-inner--flex {
		display: flex;
		gap: 20px;
}

.form__label {
  max-width: 100%;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 550px) {
  .form__label {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 750px) {
  .form__label {
    text-align: right;
    margin-right: 1.25rem;
    width: 15rem;
    font-size: 0.875rem;
  }
  .form__label.form__label--hide {
    text-align: left;
    margin-right: initial;
	  max-width: 8.125rem;
  }
	.form__label.form__label--notice {
		max-width: 100%;
    width: 480px;
	}
}

.input__text,
.input__textarea {
  background: #EEEBE9;
  max-width: 100%;
  width: 100%;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
}
@media screen and (min-width: 550px) {
  .input__text,
.input__textarea {
    padding: 0.625rem;
  }
}
@media screen and (min-width: 750px) {
  .input__text,
.input__textarea {
    width: 20.8125rem;
  }
	.input__text.input__text--post {
		width: 121px;
	}
}

.input__text {
  height: 34px;
  height: 2.125rem;
}
@media screen and (min-width: 550px) {
  .input__text {
    height: 4.25rem;
  }
}
@media screen and (min-width: 750px) {
  .input__text {
    height: 2.625rem;
    width: 20.8125rem;
  }
}

@media screen and (min-width: 750px) {
  .input__textarea {
    max-width: 30rem;
	  width: 100%;
  }
}
/* チェックボックス縦並びにするため */
span.wpcf7-list-item {
	display: block;
	margin: 0 0 0 0;
}
/* 送信ボタンのajax-loaderを非表示にするため */
div.wpcf7 .ajax-loader {
	display: none !important;
}
.contact_privacy {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 550px) {
  .contact_privacy {
    font-size: 1.5rem;
    margin-top: 2.375rem;
  }
}
@media screen and (min-width: 750px) {
  .contact_privacy {
    font-size: 0.75rem;
    margin-top: 1.25rem;
  }
}

.submit-btn {
  position: relative;
  display: block;
  padding: 10px 0;
  padding: 0.625rem 0;
  background-color: #EEEBE9;
  width: 100%;
  max-width: 210px;
  max-width: 13.125rem;
  text-align: center;
}
@media screen and (min-width: 550px) {
  .submit-btn {
    padding: 1.1875rem 0;
    max-width: 26.25rem;
    margin-top: 2.625rem;
  }
}
@media screen and (min-width: 750px) {
  .submit-btn {
    padding: 0.6875rem 0;
    max-width: 13.125rem;
    margin-top: 1.375rem;
  }
}

.submit-btn input {
  color: #4A2F14;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
	width: 100%;
}
@media screen and (min-width: 550px) {
  .submit-btn input {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 750px) {
  .submit-btn input {
    font-size: 0.875rem;
  }
}

.submit-btn::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 55%;
  right: 15px;
  right: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  width: 0.25rem;
  height: 14px;
  height: 0.875rem;
}
@media screen and (min-width: 550px) {
  .submit-btn::before {
    width: 0.4375rem;
    height: 1.3125rem;
    right: 0.625rem;
  }
}
@media screen and (min-width: 750px) {
  .submit-btn::before {
    width: 0.3125rem;
    height: 0.9375rem;
    right: 0.5625rem;
  }
}

.prefectures,
.classify {
  position: relative;
  max-width: 100%;
  width: 100%;
}

.prefectures::before,
.classify::before{
  content: "▼";
  color: #4A2F14;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 750px) {
  .prefectures::before,
	.classify::before {
    font-size: 0.625rem;
    right: 10px;
  }
}

.item-page__top {
  margin-top: 80px;
  padding-bottom: 43px;
  padding-bottom: 2.6875rem;
  padding-top: 48px;
  padding-top: 3rem;
}
@media screen and (min-width: 550px) {
  .item-page__top {
    margin-top: 130px;
    padding-bottom: 5.375rem;
    padding-top: 6rem;
  }
}
@media screen and (min-width: 750px) {
  .item-page__top {
    margin-top: 120px;
    padding-bottom: 3.125rem;
    padding-top: 4.75rem;
  }
}

.inner.item-page__inner {
  padding-right: 15px;
  padding-right: 0.9375rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 550px) {
  .inner.item-page__inner {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 550px) and (min-width: 750px) {
  .inner.item-page__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}

.item__container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 26px;
  row-gap: 1.625rem;
  max-width: 100%;
}
@media screen and (min-width: 550px) {
  .item__container {
    row-gap: 3.25rem;
  }
}
@media screen and (min-width: 750px) {
  .item__container {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 3.875rem;
       -moz-column-gap: 3.875rem;
            column-gap: 3.875rem;
  }
}

.recommend__list__items.connection__list__items {
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 0.375rem;
     -moz-column-gap: 0.375rem;
          column-gap: 0.375rem;
  /* margin-top: 16px;
  margin-top: 1rem; */
  margin-top: 0.8rem;
}
@media screen and (min-width: 550px) {
  .recommend__list__items.connection__list__items {
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    /* margin-top: 2rem; */
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 750px) {
  .recommend__list__items.connection__list__items {
    -webkit-column-gap: 1.4375rem;
       -moz-column-gap: 1.4375rem;
            column-gap: 1.4375rem;
    /* margin-top: 1.1875rem; */
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 750px) {
  .item__container__image {
    max-width: 27.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .item__container__image {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.item-main__image figure {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.item-main__image figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 750px) {
  .item-main__image {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.ditail-slider .slick-arrow {
  position: absolute;
  top: 105%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  cursor: pointer;
}
.ditail-slider .slick-arrow {
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 750px) {
  .ditail-slider .slick-arrow {
    top: 50%;
  }
  .ditail-slider .slick-arrow {
    width: 1rem;
    height: 1rem;
  }
}

.ditail-slider .prev-arrow {
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 750px) {
  .ditail-slider .prev-arrow {
    left: -1.25rem;
  }
}
.ditail-slider .next-arrow {
  right: 0;
}
@media screen and (min-width: 750px) {
  .ditail-slider .next-arrow {
    right: -1.25rem;
  }
}


.item-name__en {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Libre Baskerville", serif;
  color: #040000;
  font-weight: 500;
	letter-spacing: 0.2em;
}
@media screen and (min-width: 550px) {
  .item-name__en {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 750px) {
  .item-name__en {
    font-size: 1.25rem;
  }
}

/* .item-name__ja {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 550px) {
  .item-name__ja {
    margin-top: 0.3125rem;
  }
}
@media screen and (min-width: 750px) {
  .item-name__ja {
    margin-top: 0.625rem;
  }
} */
/* 商品詳細ページテキスト */
.text-ja.text-ja--single {
	word-break: normal;
}
@media screen and (min-width: 750px) {
  .text-ja.text-ja--single {
    font-size: 0.75rem;
  }
}

.item__description {
  /* margin-top: 49px;
  margin-top: 3.0625rem; */
  margin-top: 1.5rem;
}
@media screen and (min-width: 550px) {
  .item__description {
    /* margin-top: 6.125rem; */
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .item__description {
    /* margin-top: 3.125rem; */
    margin-top: 1.5rem;
  }
}
/* .item__description:nth-of-type(3),
.item__description:nth-of-type(4) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 550px) {
  .item__description:nth-of-type(3),
.item__description:nth-of-type(4){
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 750px) {
  .item__description:nth-of-type(3),
.item__description:nth-of-type(4){
    margin-top: 1.5625rem;
  }
} */

.connection__area {
  /* margin-top: 45px;
  margin-top: 2.8125rem; */
  margin-top: 1.5rem;
}
@media screen and (min-width: 550px) {
  .connection__area {
    /* margin-top: 5.625rem; */
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .connection__area {
    /* margin-top: 3.125rem; */
    margin-top: 1.5rem;
  }
}

.connection__area h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 550px) {
  .connection__area h3 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .connection__area h3 {
    font-size: 1rem;
  }
}

.policy-page {
  overflow: hidden;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}
.policy-page .text-ja{
  word-break: normal;
}
@media screen and (min-width: 550px) {
  .policy-page {
    padding-bottom: 5.625rem;
  }
}
@media screen and (min-width: 750px) {
  .policy-page {
    padding-bottom: 6.6875rem;
  }
}
@media screen and (max-width: 550px) {
  .inner.policy__inner {
    padding-left: 18px;
	  padding-right: 18px;
  }
}
.policy__menu__items {
  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;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 550px) {
  .policy__menu__items {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 750px) {
  .policy__menu__items {
    margin-top: 3.125rem;
  }
}

.policy__menu__items li{
  border-left: 1px solid #dfdedd;
}
.policy__menu__items li:last-child{
  border-right: 1px solid #dfdedd;
}

.policy__menu__items li {
  padding: 0.4375rem 0;
}
.policy__menu__items li a {
  line-height: 1;
  font-size: 18px;
  font-size: 0.8rem;
  padding: 0 10px;
  padding: 0 0.95rem;
  display: block;
  transition: .3s;
}

.policy__menu__items li img {
  width: 1rem;
  margin: 0.625rem auto 0;
}

.policy__menu__items li:hover {
  background-color: #EEEBE9;
}
.selected {
  background-color: #EEEBE9;
}
@media screen and (min-width: 550px) {
  .policy__menu__items li a {
    font-size: 1.375rem;
    padding: 0 1.75rem;
  }
}
@media screen and (min-width: 750px) {
  .policy__menu__items li a {
    font-size: 1.25rem;
    padding: 0 2.1875rem;
  }
}

.policy__container__title h2 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  color: #4A2F14;
}
@media screen and (min-width: 550px) {
  .policy__container__title h2 {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 750px) {
  .policy__container__title h2 {
    font-size: 1rem;
  }
}

.policy__container {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 550px) {
  .policy__container {
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 750px) {
  .policy__container {
    margin-top: 3.125rem;
  }
}

.policy__container:not(:last-of-type) {
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 550px) {
  .policy__container:not(:last-of-type) {
    margin-bottom: 5.625rem;
  }
}
@media screen and (min-width: 750px) {
  .policy__container:not(:last-of-type) {
    margin-bottom: 5rem;
  }
}

.policy__container__title h2 span {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Libre Baskerville", serif;
}
@media screen and (min-width: 550px) {
  .policy__container__title h2 span {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 750px) {
  .policy__container__title h2 span {
    font-size: 1.5rem;
  }
}

.policy__container .policy__text__top {
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 550px) {
  .policy__container .policy__text__top {
    margin-top: 3.25rem;
  }
}
@media screen and (min-width: 750px) {
  .policy__container .policy__text__top {
    margin-top: 2.875rem;
  }
}

.policy__container .policy__text__bottom {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 750px) {
  .policy__container .policy__text__bottom {
    margin-top: 2.75rem;
  }
}

.policy__container .policy__text__top .text-ja:not(:last-child),
.policy__container .policy__text__bottom .text-en:not(:last-child) {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 550px) {
  .policy__container .policy__text__top .text-ja:not(:last-child),
.policy__container .policy__text__bottom .text-en:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}

.under-page__title__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
	margin-top: 5rem;
}
@media screen and (min-width: 550px) {
  .under-page__title__inner {
    margin-top: 8.4375rem;
  }
}
@media screen and (min-width: 750px) {
  .under-page__title__inner {
    width: 100%;
    max-width: 75rem;
	  margin-top: 8.125rem;
  }
}
.recommend__list__item:hover{
  opacity: 0.8;  
}

.recommend__list__item:hover .details{
opacity: 1;  
}
/*# sourceMappingURL=styles.css.map */



/*スライダー対応*/
.my-insta-box {
  width: 100%;
  overflow: hidden;
}
.my-insta-box .bx-viewport {
  overflow: visible !important;
}
.my-insta-box #sb_instagram {
  max-width: 100% !important;
  width: 100% !important;
	padding-bottom: 0 !important;
}
.my-insta-box .sbi_item {
  width: 213px !important;
  max-width: 55.3333333333vw !important;
}
@media (min-width: 1400px) {
  .my-insta-box .sbi_item {
    width: 15.2142857143vw !important;
  }
}
.my-insta-box .sbi_photo {
  /*height: 293px !important;*/
  max-height: 76vw !important;
}
@media (min-width: 1400px) {
  .my-insta-box .sbi_photo {
    /*height: 20.9285714286vw !important;*/
  }
}

.instagram__slider .slick-track{
	width:100%!important;
}

.instagram__slider .slick-slide{
	width:100%!important;
}

.bx-wrapper{
	border:none;
	background:none;
	margin-bottom: 0;
}


/* AOS移動距離 */
.item[data-aos="fade-up"] {
  transform: translateY(60px);
  transition-property: transform, opacity;
  opacity: 0;
}
.item[data-aos="fade-up"] .aos-animate {
  transform: translateY(0px);
  opacity: 1;
}
.item[data-aos="fade-left"] {
  transform: translateX(60px);
  transition-property: transform, opacity;
  opacity: 0;
}
.item[data-aos="fade-left"] .aos-animate {
  transform: translateX(0px);
  opacity: 1;
}
.item[data-aos="fade-right"] {
  transform: translateX(-60px);
  transition-property: transform, opacity;
  opacity: 0;
}
.item[data-aos="fade-right"] .aos-animate {
  transform: translateX(0px);
  opacity: 1;
}

.margin-center {
	margin-right: auto;
	margin-left: auto;
}








/*220512追加*/
h3.event__content {
    margin-top: 0.4rem!important;
}

@media (min-width:750px) {
  .history__image{margin-top:1rem!important;}
}
/* バッジ非表示 */
.grecaptcha-badge { visibility: hidden; }




