@charset "UTF-8";
/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  fill: transparent;
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 1.5s ease-in-out forwards;
          animation: stroke 1.5s ease-in-out forwards;
  fill: #fff;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  -webkit-animation: 3s upDown infinite;
          animation: 3s upDown infinite;
}

@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.parallax {
  overflow: hidden;
}
.parallax img {
  -webkit-transform: translateZ(0) scale(1.2, 1.2);
          transform: translateZ(0) scale(1.2, 1.2);
}

/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_n2 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@font-face {
  font-family: YuMincho;
  font-weight: 400;
  src: url("../fonts/YuMincho.woff2") format("woff2");
  font-display: swap;
}
html {
  margin-top: 0 !important;
}

body {
  font-family: "Zen Kaku Gothic Antique", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.111vw, 16px);
  color: #343434;
  line-height: 1.875;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #343434;
}

h2, h3, h4, h5, h6 {
  font-size: 16px;
}

ol, ul {
  list-style-type: none;
}

img, video, iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

.full-size {
  margin: 0 calc(50% - 50vw);
}

.coming {
  text-align: center;
  font-size: 1.333em;
  margin-bottom: 3em;
}

/* section common
====================================== */
.section__inner {
  width: 83.333%;
  padding: 5em 0;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__inner {
    width: 89.8667%;
  }
}
.section__inner.--s {
  max-width: 1000px;
}
.section__inner.--l {
  width: 88.889%;
  max-width: 1280px;
}
.section__inner.--center {
  text-align: center;
}
.section__title.--center {
  text-align: center;
}
.section__title-en {
  font-family: "Bodoni Moda", serif;
  font-size: 4.0625em;
  color: #565925;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .section__title-en {
    font-size: 2.5em;
    margin-bottom: 0.625rem;
  }
}
.section__title-jp {
  font-size: 1em;
  font-weight: 400;
  color: #565925;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .section__title-jp {
    font-size: 1em;
  }
}
.section__lead {
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-size: 0.875em;
}
.section__lead.--center {
  text-align: center;
}

.breadcrumbs {
  font-size: 0.875em;
  margin-bottom: 1.5rem;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
  color: #565925;
}
.breadcrumbs span {
  display: block;
  color: #E2E2E2;
}
.breadcrumbs span[property=name] {
  padding: 0;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* e_news
======================================= */
.news__item a:hover .news__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news__item a:hover .news__item-title {
  color: #565925;
}
.news__item-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.news__item-image::before {
  content: "";
  display: block;
  padding-top: 71%;
}
.news__item-image img, .news__item-image video, .news__item-image iframe, .news__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .news__item-image {
    position: relative;
  }
  .news__item-image::before {
    content: "";
    display: block;
    padding-top: 45.66%;
  }
  .news__item-image img, .news__item-image video, .news__item-image iframe, .news__item-image svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.news__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.news__item-title {
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.news__item-date {
  font-family: "Bodoni Moda", serif;
  font-size: 0.75em;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #E2E2E2;
  margin-bottom: 0.5rem;
}
.news__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
}
.news__item-cat {
  font-family: "Bodoni Moda", serif;
  display: inline-block;
  font-size: 0.6875em;
  color: #565925;
  padding: 0 0.5rem;
  height: 22px;
  line-height: 20px;
  border-radius: 20px;
  border: 1px solid #565925;
}

.pagination {
  margin-top: 4em;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 2em;
  }
}
.pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 0.5625rem;
}
.pagination .page-numbers {
  font-family: "Bodoni Moda", serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #8C8A82;
  display: block;
  text-align: center;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0 0.5em;
  text-align: center;
}
.pagination .page-numbers:hover {
  color: #565925;
}
.pagination .page-numbers.current {
  color: #565925;
  position: relative;
}
.pagination .page-numbers.current::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  width: 0.5rem;
  background-color: #565925;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  width: 1em;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    font-size: 0;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}
.pagination .page-numbers.prev::after, .pagination .page-numbers.next::after {
  display: none;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-right: 1px solid #343434;
  border-bottom: 1px solid #343434;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover {
  color: #565925;
}
.pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before {
  border-right: 1px solid #565925;
  border-bottom: 1px solid #565925;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before {
    border-right: 2px solid #565925;
    border-bottom: 2px solid #565925;
  }
}
.pagination .page-numbers.prev {
  text-align: right;
}
.pagination .page-numbers.prev::before {
  left: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.pagination .page-numbers.next {
  text-align: left;
}
.pagination .page-numbers.next::before {
  right: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.pagination2 {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .pagination2 {
    margin-top: 2em;
  }
}
.pagination2 .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.pagination2 .page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-weight: 500;
  text-align: center;
  color: #E2E2E2;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination2 .page-numbers:hover {
  color: #565925;
}
.pagination2 .page-numbers.current {
  color: #565925;
}
.pagination2 .page-numbers.prev, .pagination2 .page-numbers.next {
  border: 2px solid #565925;
  border-radius: 20px;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .pagination2 .page-numbers.prev, .pagination2 .page-numbers.next {
    font-size: 0;
  }
}
.pagination2 .page-numbers.prev::after, .pagination2 .page-numbers.next::after {
  display: none;
}
.pagination2 .page-numbers.prev::before, .pagination2 .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 3px solid #565925;
  border-bottom: 3px solid #565925;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination2 .page-numbers.prev:hover, .pagination2 .page-numbers.next:hover {
  color: #fff;
  background-color: #565925;
}
.pagination2 .page-numbers.prev:hover::before, .pagination2 .page-numbers.next:hover::before {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.pagination2 .page-numbers.prev::before {
  -webkit-transform: translate(-40%, -50%) rotate(135deg);
          transform: translate(-40%, -50%) rotate(135deg);
}
.pagination2 .page-numbers.next::before {
  -webkit-transform: translate(-60%, -50%) rotate(-45deg);
          transform: translate(-60%, -50%) rotate(-45deg);
}

.headline {
  height: 450px;
  background: rgba(226, 226, 226, 0.2) url(../img/common/bg.png) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .headline {
    height: 247px;
  }
}
.headline__inner {
  height: 100%;
  padding-top: 12.5em;
}
@media (max-width: 768px) {
  .headline__inner {
    padding-top: 6.25em;
  }
}
.headline__title-en {
  font-family: "Bodoni Moda", serif;
  font-size: 5em;
  font-weight: 400;
  line-height: 1;
  color: #565925;
  margin-bottom: 0.9375rem;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .headline__title-en {
    font-size: 3.125em;
  }
}
.headline__title-jp {
  font-size: 1em;
  color: #565925;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}

.contact__inner {
  padding-bottom: 6.25em;
}
.contact__title {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .contact__title {
    margin-bottom: 0.625em;
  }
}
.contact__lead {
  margin-bottom: 4.375em;
}
@media (max-width: 768px) {
  .contact__lead {
    line-height: 2;
    margin-bottom: 2.5em;
  }
}

.form__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__item:nth-child(n+2) {
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .form__item:nth-child(n+2) {
    margin-top: 1.875em;
  }
}
.form__item-title {
  width: 25%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  padding-top: 1.125em;
}
@media (max-width: 768px) {
  .form__item-title {
    width: 100%;
    padding-top: 0;
    margin-bottom: 0.625em;
  }
}
.form__item-title-required {
  font-size: 0.875em;
  color: #fff;
  background-color: #565925;
  padding: 0.25em 0.5em;
  line-height: 1;
}
.form__item-title-text {
  font-size: 1em;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.form__item-title-text.--l {
  font-size: 1.125em;
}
.form__item-input {
  width: 70%;
}
@media (max-width: 768px) {
  .form__item-input {
    width: 100%;
  }
}
.form__item-input input, .form__item-input textarea {
  font-size: 0.875em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 1.25em;
  background: rgba(226, 226, 226, 0.6);
}
.form__item-input input.middle, .form__item-input textarea.middle {
  width: 50%;
  max-width: 196px;
}
@media (max-width: 768px) {
  .form__item-input input.middle, .form__item-input textarea.middle {
    width: 100%;
  }
}
.form__item-input input::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  color: #AAAAAA;
}
.form__item-input input::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  color: #AAAAAA;
}
.form__item-input input:-ms-input-placeholder, .form__item-input textarea:-ms-input-placeholder {
  color: #AAAAAA;
}
.form__item-input input::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  color: #AAAAAA;
}
.form__item-input input::placeholder, .form__item-input textarea::placeholder {
  color: #AAAAAA;
}
.form__item-input textarea {
  resize: none;
}
.form__check {
  letter-spacing: 0.08em;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1em;
  margin-bottom: 2.625em;
}
.form__check label {
  vertical-align: text-top;
}
.form__check label input {
  margin-top: 0.25em;
  margin-right: 1.25em;
  -webkit-transform: scale(2.3);
          transform: scale(2.3);
  cursor: pointer;
}
.form__check a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form__check a:hover {
  opacity: 0.7;
}
.form__btn span {
  padding: 0;
}
.form__btn span > input {
  width: 100%;
  padding: 1.375em 1.5em;
  color: #fff;
  text-align: left;
}
.form__recaptcha {
  font-size: 0.75em;
  text-align: center;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .form__recaptcha {
    text-align: left;
  }
}
.form__recaptcha a {
  text-decoration: underline;
}

.footer {
  background: rgba(226, 226, 226, 0.3) url(../img/common/bg.png) no-repeat center center/cover;
}
.footer__inner {
  padding-top: 6.25em;
  padding-bottom: 3.125em;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}
.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.8125em;
    margin-bottom: 3.125em;
  }
}
.footer__left {
  width: 65%;
  max-width: 640px;
}
@media (max-width: 768px) {
  .footer__left {
    width: 100%;
    max-width: 300px;
  }
}
.footer__logo {
  width: 160px;
  margin-bottom: 3.5em;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-bottom: 1.875rem;
  }
}
.footer__stores {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media (max-width: 768px) {
  .footer__stores {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25em;
  }
}
.footer__store {
  width: 50%;
}
@media (max-width: 768px) {
  .footer__store {
    width: 100%;
  }
}
.footer__store-name {
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .footer__store-name {
    margin-bottom: 5px;
  }
}
.footer__store-info {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .footer__store-info {
    margin-bottom: 0.625rem;
  }
}
.footer__store-info img {
  width: auto;
  margin-top: 0.5em;
}
.footer__store-map {
  position: relative;
}
.footer__store-map::before {
  content: "";
  display: block;
  padding-top: 54%;
}
.footer__store-map img, .footer__store-map video, .footer__store-map iframe, .footer__store-map svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer__right {
  width: 30%;
}
@media (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem 5%;
}
@media (max-width: 768px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
  }
}
.footer__nav-item {
  height: 100%;
}
.footer__nav-item > a {
  display: inline-block;
  font-family: "Bodoni Moda", serif;
  font-size: 1.375em;
  line-height: 1;
  font-weight: 400;
  color: #565925;
  padding: 0.5em 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__nav-item > a:hover {
  opacity: 0.7;
}
.footer__info-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__info-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0.5rem;
  }
}
.footer__info-item a {
  display: block;
  font-size: 0.75em;
  line-height: 1;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer__info-item a {
    line-height: 2;
  }
}
.footer__info-item a:hover {
  color: #565925;
}
.footer__copy {
  font-family: "Bodoni Moda", serif;
  font-size: 0.875em;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 122.62px;
}
@media (max-width: 1024px) {
  .header {
    height: 54.14px;
  }
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 3.47222%;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 1.5em;
  }
}
.header__logo {
  position: relative;
  z-index: 5;
}
.header__logo a {
  display: block;
  width: clamp(120px, 11.1111vw, 160px);
}
@media (max-width: 768px) {
  .header__logo a {
    width: 100px;
  }
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__nav {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 2vw, 30px);
}
@media (max-width: 768px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-item {
  height: 100%;
}
.header__nav-item > a {
  font-family: "Bodoni Moda", serif;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  padding: 0.5em 0;
}
.header__nav-item > a:hover {
  opacity: 0.7;
}
.header__btn {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 8;
  width: 30px;
  height: 15px;
}
@media (max-width: 768px) {
  .header__btn {
    display: block;
  }
}
.header__btn .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #565925;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__btn .bar:nth-child(1) {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__btn .bar:nth-child(3) {
  bottom: 0;
}
.header__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  background-color: #fff;
}
.header__menu-inner {
  margin: 54.14px auto 0;
  padding-top: 54.14px;
}
.header__menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.625rem;
}
.header__menu-item a {
  font-family: "Bodoni Moda", serif;
  font-size: 1em;
  line-height: 1.4;
  display: block;
  padding: 0.5rem 0;
}

.header.is-open {
  height: 100vh;
}

.is-open .header__inner {
  height: 54.14px;
}
.is-open .header__menu {
  display: block;
}
.is-open .header__btn {
  display: block;
}
.is-open .header__btn .bar:nth-child(1) {
  -webkit-transform: translateY(7.5px) rotate(45deg);
          transform: translateY(7.5px) rotate(45deg);
}
.is-open .header__btn .bar:nth-child(2) {
  opacity: 0;
}
.is-open .header__btn .bar:nth-child(3) {
  -webkit-transform: translateY(-7.5px) rotate(-45deg);
          transform: translateY(-7.5px) rotate(-45deg);
}

/* btn 
========================================= */
.btn {
  position: relative;
}
.btn > a, .btn > span, .btn > input {
  font-size: 0.9375rem;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__arrow a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 180px;
  font-family: "Bodoni Moda", serif;
  line-height: 1;
  padding-top: 0.625em;
  padding-bottom: 0.625em;
  padding-right: 0.2em;
  border-bottom: 1px solid #565925;
}
.btn__arrow a::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #565925;
  border-right: 1px solid #565925;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn__arrow a:hover {
  opacity: 0.7;
}
.btn__olive a, .btn__olive span {
  display: block;
  background-color: #565925;
  color: #fff;
  max-width: 300px;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
  position: relative;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(52, 52, 52, 0.15);
          box-shadow: 5px 5px 5px 0px rgba(52, 52, 52, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.btn__olive a::after, .btn__olive span::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 1.375em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-box-shadow: 5px 5px 5px 0px rgba(52, 52, 52, 0.15);
          box-shadow: 5px 5px 5px 0px rgba(52, 52, 52, 0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn__olive a:hover, .btn__olive span:hover {
  opacity: 0.7;
}
.btn__olive a {
  padding: 1.375em 0;
}

/* splide
========================================= */
.splide__track {
  height: 100%;
}
.about__splide .splide__pagination {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.625em;
  bottom: 1.25em;
  padding: 0 1.875em;
}
@media (max-width: 768px) {
  .about__splide .splide__pagination {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 1em;
    gap: 0.25em;
  }
}
.about__splide .splide__pagination .splide__pagination__page {
  width: 1.25em;
  height: 3px;
  background: #E2E2E2;
  border-radius: 0;
  margin: 0;
  opacity: 1;
}
@media (max-width: 768px) {
  .about__splide .splide__pagination .splide__pagination__page {
    width: 0.75em;
    height: 2px;
  }
}
.about__splide .splide__pagination .splide__pagination__page.is-active {
  background: #565925;
  -webkit-transform: inherit;
          transform: inherit;
}

/* tab
========================================= */
.tab1 {
  cursor: pointer;
}

.panel1 {
  display: none;
}
.panel1.is-active {
  display: block;
}