@charset "UTF-8";
/* 全体設定読み込み */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote,
table,
th,
td {
  margin: 0;
  padding: 0;
}

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

html {
  -webkit-text-size-adjust: 100%; /* モバイルでのフォントサイズ調整を無効化 */
  scroll-behavior: smooth; /* スムーズスクロールをデフォルトに */
}

img,
picture,
video,
canvas,
svg {
  display: block; /* デフォルトのインライン表示をブロックに変更 */
  max-width: 100%; /* 幅を親要素に合わせる */
  height: auto; /* 縦横比を維持 */
}

input,
button,
textarea,
select {
  font: inherit; /* フォントを親要素に継承 */
  color: inherit;
  background: none;
  border: none;
  outline: none; /* デフォルトのスタイルを初期化 */
}

a {
  text-decoration: none;
  color: inherit; /* リンクの色を継承 */
  cursor: pointer;
}

nav ul,
nav ol {
  list-style: none; /* リストのスタイルを初期化 */
}

table {
  border-collapse: collapse; /* セルの隙間を除去 */
  width: 100%; /* テーブルの幅を親要素に合わせる */
}

button {
  cursor: pointer;
}

textarea {
  resize: none; /* デフォルトのリサイズを無効化 */
}

::placeholder {
  color: #aaa; /* プレースホルダーの色を調整 */
  opacity: 1; /* 透明度を確保 */
}

html {
  line-height: 1.5;
  scroll-behavior: smooth; /* スムーズスクロールをデフォルトに */
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #232523;
  background-color: #f4f3ef;
  margin: 0;
  min-height: 100vh; /* 全画面の高さを確保 */
  text-rendering: optimizeSpeed; /* パフォーマンスを最適化 */
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

body:not(.home) {
  background-image: url("../images/bg-line-mobile.svg");
  background-repeat: no-repeat;
  background-size: 100vw;
  background-position: center top;
}
@media (min-width: 960px) {
  body:not(.home) {
    background-image: url("../images/bg-line.svg");
  }
}

.noScroll {
  overflow: hidden;
  scrollbar-gutter: stable;
}

body.menuOpen {
  overflow: hidden;
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .container {
    max-width: 1200px;
  }
}

.contents-wrapper {
  margin-top: 3vw;
}
@media (min-width: 960px) {
  .contents-wrapper {
    margin-top: 20px;
  }
}

#breadcrumbs {
  margin-bottom: 2vw;
}

.header-container {
  position: relative;
  pointer-events: none;
}

.header__divider {
  margin: 0 0 0.2rem;
  border-width: 0.5px;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 35%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2) 65%, rgba(11, 13, 17, 0.5));
  z-index: 10;
}
@media (min-width: 960px) {
  .home::before {
    width: 25%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.25) 45%, rgba(11, 13, 17, 0.5));
  }
}

.header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  padding: 10% 6%;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .header {
    padding: 8% 6%;
  }
}
.home .header {
  max-width: 1400px;
}
.home .header .hamburger__bar {
  background-color: #f4f3ef;
}
body:not(.home) .header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: inherit;
  height: auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0.5rem;
}
body:not(.home) .header .header__logo {
  order: 1;
}
body:not(.home) .header .header__hamburger {
  order: 2;
  position: relative;
  margin-bottom: 0;
  width: 8vw;
  min-width: 25px;
  max-width: 33px;
}
body:not(.home) .header .hamburger__bar {
  height: 2px;
  border-radius: 10%;
}
.header__logo {
  pointer-events: auto;
  order: 2;
}
.header__logo-frontPage {
  position: relative;
  z-index: 100;
  width: 45px;
}
.header__logoImage {
  width: 100%;
}
.header__hamburger {
  pointer-events: auto;
  display: block;
  order: 1;
  aspect-ratio: 20/11;
  width: 35px;
  position: relative;
  cursor: pointer;
  margin-bottom: 50px;
}
.header__hamburger.active .hamburger__bar {
  background-color: #f4f3ef;
}
.header__hamburger.active .hamburger__bar:nth-child(1) {
  top: 50%;
  transform: translate(15%, -50%) rotate(45deg);
}
.header__hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active .hamburger__bar:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header .hamburger__bar {
  background-color: #232523;
  display: block;
  height: 2px;
  position: absolute;
  transition: all 0.5s ease;
}
.header .hamburger__bar:nth-child(1) {
  top: 0;
  width: 100%;
}
.header .hamburger__bar:nth-child(2) {
  width: 80%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .hamburger__bar:nth-child(3) {
  width: 65%;
  right: 0;
  bottom: 0;
}
.header__drawer {
  color: #f4f3ef;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: right 0.8s ease, opacity 0.5s ease;
}
.header__drawer.open {
  pointer-events: initial;
  opacity: 1;
  right: 0;
}
.header__globalNav {
  position: absolute;
  top: 15%;
  left: 15%;
}
@media (min-width: 960px) {
  .header__globalNav {
    left: 50%;
    transform: translateX(-50%);
  }
}
.header__globalNavLists {
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .header__globalNavLists {
    display: flex;
  }
}
.header__globalNavLists > .menu-item:not(:last-child) {
  margin-bottom: 35px;
}
@media (min-width: 960px) {
  .header__globalNavLists > .menu-item:not(:last-child) {
    margin-right: 50px;
  }
}
.header__globalNavLists > .menu-item.menu-item-has-children .sub-menu {
  margin-left: 0.5em;
  margin-top: 1.5em;
  position: relative;
}
.header__globalNavLists > .menu-item.menu-item-has-children .sub-menu::before {
  content: url(../images/submenu-dot.svg);
  display: inline-block;
  width: 14px;
  height: 10px;
  vertical-align: middle;
  position: absolute;
  aspect-ratio: 2/1;
  top: -2rem;
  left: 1rem;
}
.header__globalNavLists > .menu-item.menu-item-has-children .sub-menu li {
  font-size: 80%;
}
.header__globalNavLists > .menu-item.menu-item-has-children .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}
.sns-nav {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translatex(-50%);
	margin-top: 20px;
}
@media (min-width: 960px) {
	.sns-nav {
		bottom: -80px;
	}
}
.sns-nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45%;
	margin: 0 auto;
}
.sns-nav ul li:not(:last-child) {
	margin-right: 10px;
}

body:not(.home) .header__drawer {
  background-color: rgba(0, 0, 0, 0.8);
}

body.home footer {
  display: none;
}

footer {
  margin-top: 5rem;
  margin-bottom: 2rem;
  text-align: center;
}

body.home {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
body.home header {
  pointer-events: none;
}

.swiper-cover__swiper {
  width: 100vw;
  height: 100vh;
}
.swiper-cover__swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  mix-blend-mode: plus-lighter;
}
.swiper-cover__swiper-slide img {
  transition: filter 0.5s ease, opacity 0.5s ease;
}
.swiper-cover__swiper-slide.grayscale {
  filter: grayscale(100%);
}
.swiper-cover__swiper-slide.grayscale img {
  opacity: 0.8;
}
.swiper-cover__swiper-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-cover__slide-text {
  position: absolute;
  bottom: 90px !important;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  z-index: 10;
  transition: opacity 0.5s ease;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6274509804);
  font-size: 16px;
}
.swiper-cover__pagination {
  font-size: 10px;
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  color: #f4f3ef !important;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.5s ease;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6274509804);
}
.swiper-cover__pagination .swiper-pagination-current {
  font-size: 16px;
  margin-right: 0.2rem;
}
.swiper-cover__pagination .swiper-pagination-total {
  opacity: 0.8;
}
.swiper-cover__button-prev, .swiper-cover__button-next {
  color: white;
  z-index: 10;
  width: 20% !important;
  height: 100vh !important;
  top: 0 !important;
  -webkit-tap-highlight-color: transparent; /* 強調をなくす */
}

.collection-lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.under-title {
  font-size: 1.5rem;
}

.collection-lists {
  position: relative;
}
.collection-lists-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #232523;
  bottom: 0;
}
@media (min-width: 960px) {
  .collection-lists-header::after {
    content: "";
    position: absolute;
    left: 0%;
    bottom: -2%;
    display: inline-block;
    width: 15%;
    height: 1px;
    background-color: #232523;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .collection-lists-header:hover::after {
    width: 105%;
    opacity: 0;
    right: 0;
  }
}
.collection-lists-header p {
  margin-right: 0.5rem;
  font-size: 1rem;
}
.collection-lists-toggle {
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
  display: flex;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.61, 1, 0.87, 1);
}
.collection-lists-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #232523;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.25s ease-in-out;
}
.collection-lists-toggle-line:first-child {
  transform: translate(-16%, -50%) rotate(135deg);
  width: 40%;
  opacity: 1;
}
.collection-lists-toggle-line:last-child {
  transform: translate(-85%, -50%) rotate(-135deg);
  width: 40%;
}
.collection-lists-toggle.is-open .collection-lists-toggle-line:last-child {
  opacity: 0;
}
.collection-lists-toggle.is-open .collection-lists-toggle-line:first-child {
  transform: translate(-50%, -50%) rotate(180deg);
  width: 60%;
}
.collection-lists-content {
  position: absolute;
  height: 0;
  top: 120%;
  right: 0;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.61, 1, 0.87, 1);
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  border: solid 1px #232523;
}
.collection-lists-content.is-open {
  display: block;
  height: auto;
  opacity: 1;
  max-height: 100vh;
  pointer-events: auto;
}
.collection-lists-content ul {
  width: 40vw;
  background-color: #f4f3ef;
  padding: 1rem;
  list-style: none;
}
@media (min-width: 960px) {
  .collection-lists-content ul {
    width: 300px;
  }
}
.collection-lists-content li {
  text-align: right;
  font-size: 1rem;
}
.collection-lists-content li:not(:last-child) {
  margin-bottom: 1.2rem;
  border-bottom: solid 1px #232523;
}
.collection-lists-content li a {
  display: block;
}

.collection-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}
.collection-grid::after {
  content: "";
  display: block;
  width: 100%;
}
@media (min-width: 960px) {
  .collection-grid {
    flex-direction: row;
  }
  .collection-grid::after {
    width: 33.3333333333%;
  }
}

.collection-item {
  border: solid 1px #232523;
  padding: 2%;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.collection-item.border-next {
  margin-top: -1.1px;
  margin-left: -1.1px;
  width: calc(100% + 1px);
}
@media (min-width: 960px) {
  .collection-item {
    border: solid 1px #232523;
    padding: 1rem;
  }
  .collection-item.border-next {
    width: calc(33.3333333333% + 1px);
  }
}

.collection-thumbnail-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.collection-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 960px) {
  .collection-item:hover {
    padding: 0.5rem;
  }
}

.collection-item > a {
  position: relative;
  display: block;
}
@media (min-width: 960px) {
  .collection-item > a:hover .collection-info .collection-title {
    transform: scale(1.05);
    transform-origin: bottom right;
  }
  .collection-item > a:hover .collection-thumbnail-wrapper .collection-thumbnail {
    transform: scale(1.05);
    transform-origin: center;
  }
}

.collection-info {
  font-size: 1.5rem;
  white-space: nowrap;
  padding: 0.75% 0.2% 0 5%;
  padding-bottom: 0.25rem;
  padding-right: 0.25rem;
  position: absolute;
  right: 0;
  bottom: 0 !important;
  background-color: #f4f3ef;
  transform: translate(1px, -24.9531px);
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
/* _::-webkit-full-page-media, _:future, :root .collection-info {
    position: absolute;
} */

.collection-title {
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.title-and-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.grid-toggle-buttons {
  display: flex;
}
.grid-toggle-buttons .grid-toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
  opacity: 0.3;
}
.grid-toggle-buttons .grid-toggle-button img {
  width: 50px;
  height: auto;
}
.grid-toggle-buttons .grid-toggle-button.active {
  opacity: 1;
}
@media (min-width: 960px) {
  .grid-toggle-buttons {
    display: none;
  }
}

.collection-detail-photos::after {
  content: "";
  display: block;
  width: 0;
}
.collection-detail-photos .photo-wrapper {
  width: 48%;
  margin-bottom: 0.625rem;
}
@media (min-width: 960px) {
  .collection-detail-photos .photo-wrapper {
    width: 32%;
  }
}
.collection-detail-photos.one-column .photo-wrapper {
  width: 100%;
}

.photo-link {
  position: relative;
  display: block;
}

.photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(244, 243, 239, 0.4980392157);
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0.3rem 0.5rem;
  width: 100%;
}
.photo-info p {
  text-align: right;
  padding: 0;
  margin: 0;
}

@media(max-width: 959px) {
	.photo-link:hover .photo-info {
	  opacity: 1;
	}
}

.lb-caption {
  text-align: center;
  margin: 1rem 0;
  color: var(--color-text-white);
}

@media (min-width: 960px) {
  .page-about-contents {
    display: flex;
    position: relative;
  }
  .page-about-contents > div {
    width: 50%;
  }
  .page-about-contents::after {
    content: "";
    display: block;
    width: 75px;
    height: 30px;
    border-bottom: solid 1px #232523;
    border-left: solid 1px #232523;
    position: absolute;
    bottom: -40px;
    left: -80px;
  }
  .page-about-contents::before {
    content: "";
    display: block;
    width: 75px;
    height: 30px;
    border-bottom: solid 1px #232523;
    border-right: solid 1px #232523;
    position: absolute;
    bottom: -40px;
    right: -80px;
  }
  .page-about-contents .page-about-image {
    width: 50%;
    margin-left: auto;
  }
  .page-about-contents .page-about-name {
    width: 50%;
    margin-left: auto;
    padding: 0.5rem 0.3rem;
    border-bottom: solid 1px #232523;
  }
  .page-about-contents .page-about-base-location {
    width: 23%;
    margin-left: auto;
    padding: 0.5rem 0.3rem;
    text-align: right;
  }
  .page-about-contents .page-about-text-box {
    display: flex;
    justify-content: space-between;
  }
  .page-about-contents .page-about-text {
    width: 49%;
    padding: 0.5rem;
    border-top: 1px solid var(--color-text-black);
    border-left: 1px solid var(--color-text-black);
    height: fit-content;
  }
  .page-about-contents .page-about-text-ja {
    order: 2;
  }
  .page-about-contents .page-about-text-en {
    margin-top: 5em;
    order: 1;
  }
  .page-about-contents .page-about-contents-left {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
  }
  .page-about-contents .page-about-links-lists ul {
    display: flex;
    justify-content: right;
    list-style: none;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  .page-about-contents .page-about-links-lists ul {
    flex-direction: row;
  }
  .page-about-contents .page-about-links-lists ul li:not(:last-child) {
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

.page-about-image {
  aspect-ratio: 16/9;
  width: 100%;
}

.page-about-name {
  margin-top: 0.2rem;
}
.page-about-name h2 {
  font-size: 1rem;
}

.page-about-base-location {
  font-size: 0.9rem;
  font-weight: bold;
  text-align: left;
}
.page-about-base-location br {
  display: none;
}

.page-about-text-box {
  margin-top: 1rem;
  margin-bottom: 5rem;
}
.page-about-text-box .page-about-text {
  border-top: solid 1px #232523;
  border-left: solid 1px #232523;
  padding: 0.2rem 0 0 0.5rem;
  width: 80%;
}
@media (min-width: 960px) {
  .page-about-text-box .page-about-text {
    width: 48%;
  }
}
.page-about-text-box .page-about-text-ja {
  margin-left: auto;
  margin-bottom: 1rem;
}

.page-about-links-lists ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.page-about-links-lists li:not(:last-child) {
  margin-bottom: 2rem;
}

.contact-text {
  margin-bottom: 2rem;
}

@media (min-width: 960px) {
  body.page-template-page-contact .contents-wrapper {
    display: flex;
    justify-content: space-between;
  }
  body.page-template-page-contact .contents-wrapper .contact-text,
  body.page-template-page-contact .contents-wrapper .wpcf7 {
    width: 49%;
  }
  body.page-template-page-contact .contents-wrapper .contact-text {
    text-align: right;
  }
}

form.wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
}
form.wpcf7-form input:not([type=submit]),
form.wpcf7-form textarea {
  padding: 0.8rem;
  line-height: 2;
  background-color: #f7f7f7;
  width: 100%;
  position: relative;
  display: block;
}
form.wpcf7-form .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  margin-bottom: 1rem;
}
form.wpcf7-form .wpcf7-form-control-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 30px;
  border-top: solid 1px #232523;
  border-left: solid 1px #232523;
  z-index: 100;
}
form.wpcf7-form .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  display: block;
  width: 50px;
  height: 30px;
  border-bottom: solid 1px #232523;
  border-right: solid 1px #232523;
  z-index: 100;
}
form.wpcf7-form .wpcf7-form-control-wrap:has(> textarea)::after {
  top: 315px;
}
form.wpcf7-form input[type=submit] {
  display: block;
  cursor: pointer;
  margin: 0 auto;
}
@media (min-width: 960px) {
  form.wpcf7-form input[type=submit] {
    margin: 2em 0 0 auto;
  }
}
form.wpcf7-form .wpcf7-spinner {
  position: absolute;
}

.button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #232523;
  color: #f4f3ef;
  text-decoration: none;
  transition: all 0.3s ease;
  border: solid 1px #232523;
}
.button:hover {
  background-color: #f4f3ef;
  color: #232523;
}
.button.button-line {
  position: relative;
  padding-right: 5rem;
}
.button.button-line::after {
  content: "";
  position: absolute;
  display: block;
  width: 30%;
  height: 1px;
  background-color: #f4f3ef;
  top: 50%;
  right: 9%;
  transition: all 0.3s ease;
}
.button.button-line:hover::after {
  width: 15%;
  background-color: #232523;
}

/*# sourceMappingURL=style.css.map */
