@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css?family=Inconsolata");
@font-face {
  font-family: "AptosSans";
  src: url("https://dl.dropbox.com/s/ksvty15r0lmh0n8/AptosSansVF.ttf?dl=1") format("truetype");
}

.animation,
.fadeInUp,
.fadeInLeft,
.fadeInRight {
  opacity: 0;
}

.animate__animated {
  opacity: 1;
}

@media (min-width: 769px) {
  .pc_animation_delay_02 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .pc_animation_delay_04 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: .3px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 400;
  font-style: normal;
  background: #ebebed;
}

.overflow-hidden {
  overflow: hidden;
}

.now-printing {
  width: 100%;
  height: 100%;
  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;
}

.galley-wrapper .g-img,
.galley-wrapper .g-img * {
  background: #fff !important;
}

.loading-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
}

/* フェードアウトアニメーション */
.fade-out {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.display-none {
  display: none;
}

.arc {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-top: 2px solid white;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  -webkit-animation: rt 2s infinite linear;
          animation: rt 2s infinite linear;
}

.arc::before {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top: 2px solid white;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  animation: rt 4s infinite linear reverse;
  content: "";
}

.arc::after {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  border-top: initial;
  border-left: initial;
  border-right: initial;
  -webkit-animation: cw 1s infinite;
          animation: cw 1s infinite;
  content: "";
  background: snow;
}

h1 {
  position: absolute;
  height: 40px;
  margin: auto;
  top: 200px;
  left: 0;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: lighter;
  color: white;
}

h1 span {
  display: none;
}

h1::after {
  -webkit-animation: txt 5s infinite;
          animation: txt 5s infinite;
  content: "";
}

@-webkit-keyframes rt {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rt {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes cw {
  0% {
    width: 0;
    height: 0;
  }
  75% {
    width: 40px;
    height: 40px;
  }
  100% {
    width: 0;
    height: 0;
  }
}

@keyframes cw {
  0% {
    width: 0;
    height: 0;
  }
  75% {
    width: 40px;
    height: 40px;
  }
  100% {
    width: 0;
    height: 0;
  }
}

@-webkit-keyframes txt {
  0% {
    content: "LOADING.";
  }
  50% {
    content: "LOADING..";
  }
  100% {
    content: "LOADING...";
  }
}

@keyframes txt {
  0% {
    content: "LOADING.";
  }
  50% {
    content: "LOADING..";
  }
  100% {
    content: "LOADING...";
  }
}

#cursor {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: multiply;
  background: black;
  opacity: 0.6;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

::-moz-selection {
  background: black;
  /* 選択時の背景色を黒に */
  color: white;
  /* 選択時のテキスト色を白に */
}

::selection {
  background: black;
  /* 選択時の背景色を黒に */
  color: white;
  /* 選択時のテキスト色を白に */
}

::-moz-selection {
  background: black;
  /* Firefox用 */
  color: white;
}

/* ヘッダーの高さを考慮したビューポートの高さ */
:root {
  --viewport-height-adjusted: calc(100vh - 70px);
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

.site-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 90px;
}

.mobile {
  display: none;
}

body {
  font-family: sans-serif;
}

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

header {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10000;
  padding-bottom: 10px;
}

header .news-banner {
  text-align: center;
  font-size: 13px !important;
  background: #222 !important;
}

header .news-banner p {
  color: #fff;
  background: transparent !important;
}

header .header-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  height: 48px;
  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;
  margin-top: 15px;
}

header .logo-img {
  width: 129px;
  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;
}

header .logo-img img {
  display: block;
  width: 76%;
  height: auto;
}

header .header-menu-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 40px;
}

header .header-menu-wrapper ul li a {
  font-size: 15px !important;
  font-weight: bold;
  color: #888888;
}

header .header-menu-wrapper ul li p {
  font-size: 15px !important;
  font-weight: bold;
  color: #888888;
}

header .header-menu-wrapper ul li.current-page a {
  color: #000;
}

header .header-menu-wrapper ul li.current-page p {
  color: #000;
}

/* ヘッダーの背景色変更用のクラス */
.header-background-change {
  background: #ebebed;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  /* 背景色の変化を滑らかに */
}

.current-page-item {
  color: #000 !important;
}

.current-page-item a {
  color: #000 !important;
}

@media (max-width: 768px) {
  header .header-menu-wrapper ul li a {
    font-size: 15px !important;
  }
  .mobile a img {
    display: block;
    width: 85px;
  }
  body > div.site-wrapper > header > div > nav > ul > li.mobile > a > img {
    width: 50px;
  }
}

.footer-wrapper {
  width: 70vw;
  max-width: 1110px;
  padding-top: 30px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.footer-logo a img {
  width: 67.5px;
}

.footer-logo img {
  width: 100%;
}

.mobile .sns-logos {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sns-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px;
}

.sns-logos .logo-wrapper {
  width: 15px;
}

.sns-logos .logo-wrapper img {
  width: 100%;
}

.sns-logos .logo-wrapper:nth-child(3) {
  width: 16px;
}

.footer-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 200px;
}

.footer-navigation .footer-logo {
  width: 200px;
}

.footer-navigation .footer-logo a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-navigation .footer-menu ul {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1pt;
}

.footer-navigation .footer-menu ul li {
  margin-bottom: 15px;
}

.copyright {
  width: 100%;
  padding: 25px 0;
  font-size: 13px;
}

.copyright small {
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 12px !important;
}

.copyright small span {
  font-size: 12px !important;
}

@media (max-width: 768px) {
  .footer-logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 200px;
  }
  .footer-navigation .footer-logo {
    width: 200px;
  }
  .footer-navigation .footer-logo a img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer-navigation .footer-menu ul {
    display: inherit;
    text-align: center;
  }
  .footer-navigation .footer-menu ul li {
    display: inline-block;
    padding: 4px 10px 4px 6px;
    position: relative;
  }
  .footer-navigation .footer-menu ul li a,
  .footer-navigation .footer-menu ul li p {
    font-size: 12px !important;
  }
  .footer-navigation .footer-menu ul li::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4px;
    width: 1px;
    height: 8px;
    background-color: #757575;
  }
  .footer-navigation .sns-logos {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
}

.page-ttl {
  text-align: center;
  margin-top: 50px;
  font-size: 24px;
  letter-spacing: 4pt;
}

.sub-ttl {
  font-weight: bold !important;
  letter-spacing: .3pt;
  font-size: 18px;
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  text-align: left;
  margin-top: 40px;
}

.bold {
  font-weight: bold !important;
}

.news-page-ttl {
  margin-bottom: 50px;
}

.hero-img-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
  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;
  overflow: hidden;
  aspect-ratio: 1000 / 667;
}

.hero-img-wrapper img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* コンテナに収まるように調整しつつ、比率を維持 */
}

.news-list-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  margin-bottom: 50px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
}

.news-list-wrapper .sub-ttl {
  margin-bottom: 25px;
}

.news-list-content-wrapper {
  width: 100%;
}

.news_list_item {
  padding: 25px 0;
  border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
  border-top: 1px solid #E6E6E6;
}

.news_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}

.news_list_date {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
}

.news-list-ttl {
  font-size: 13px;
}

.news_item {
  border: #000 solid 2px;
  border-radius: 3px;
  width: 6em;
  color: #000;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  margin-left: 20px;
}

@media screen and (max-width: 1024px) {
  .news_list_item a {
    display: block;
  }
}

@media screen and (max-width: 769px) {
  .news_list_item a {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .arrow {
    display: none;
  }
  .news_list_item a {
    padding-right: 0;
  }
}

.more-news-button {
  margin-top: 25px;
}

.text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 100%;
}

.text-wrapper .text-ttl-ja {
  font-size: 16.5px;
  font-weight: 700 !important;
  font-size: 17px !important;
  margin-bottom: 40px;
}

.text-wrapper .text-ja {
  font-size: 13.5px;
  margin-bottom: 30px;
  letter-spacing: .3px;
}

.text-wrapper .text-ttl-en,
.text-wrapper .text-en {
  font-size: 13px;
  letter-spacing: .3px;
}

.text-wrapper .text-ttl-en {
  margin-bottom: 20px;
}

.text-wrapper .text-wrapper-en .text-ttl-ja {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .text-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .text-wrapper .text-ttl-ja {
    margin-bottom: 30px;
  }
  .text-wrapper .text-ja {
    margin-bottom: 0;
  }
  .text-wrapper-en,
  .text-wrapper-ja {
    width: 100%;
  }
  .text-wrapper-en .text-ttl-ja,
  .text-wrapper-en .text-ja {
    font-size: 12px !important;
  }
  .text-wrapper-en .text-ttl-ja {
    margin-bottom: 0;
  }
  .en-small {
    font-size: 12px !important;
  }
  .news-list-wrapper {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .hero-img-wrapper {
    margin-bottom: 0;
  }
  .galley-wrapper {
    margin: 0 auto;
    margin-top: 30px;
  }
  .galley-wrapper .g-img {
    margin: 0;
  }
  .hero-img {
    margin-bottom: 30px;
  }
}

/*== ボタン共通設定 */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #000 !important;
  /* ボーダーの色と太さ */
  padding: 0px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease .2s;
  transition: ease .2s;
  font-size: 14px;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #000;
  font-size: 12px !important;
  background: transparent;
  -webkit-transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  /* 文字色の遷移アニメーション */
}

.btn:hover span {
  color: #fff;
}

.location-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
}

.location-wrapper .locatoin-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 30px;
  margin-bottom: 30px;
}

.location-wrapper .locatoin-card .lc-img {
  width: 80%;
  aspect-ratio: 1000/1000;
  margin-bottom: 20px;
}

.location-wrapper .locatoin-card .lc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1000/1000;
}

.location-wrapper .locatoin-card .lc-name {
  width: 60%;
  font-weight: bold !important;
  margin-bottom: 20px;
}

.location-wrapper .locatoin-card .lc-disc {
  font-size: 13.5px;
  width: 100%;
}

.galley-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  gap: 30px;
}

.galley-wrapper .g-img {
  margin-bottom: 30px;
  aspect-ratio: 1000/667;
  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;
}

.galley-wrapper .g-img img {
  width: 100%;
}

.project-logo {
  width: 70vw;
  max-width: 1110px;
}

.project-logo img {
  display: block;
  margin: 0 auto;
  width: 300px;
}

@media (max-width: 768px) {
  .project-logo img {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 200px;
  }
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #000;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.next-page-banner-1 {
  width: 100vw;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
}

.next-page-banner-1 .next-page-banner-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  padding: 30px 0;
  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;
  gap: 70px;
}

.next-page-banner-1 .left-box {
  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;
  gap: 50px;
}

.next-page-banner-1 .text-next-page {
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.next-page-banner-1 .next-page-disc-wrapper {
  font-size: 15px;
  font-weight: bold;
}

.next-page-banner-1 .next-page-disc-wrapper .next-page-disc-ja {
  margin-bottom: 7px;
}

.next-page-banner-1 .next-page-disc-wrapper .next-page-disc-en {
  font-size: 16px;
  font-weight: initial;
}

.next-page-banner-1 .next-page-button {
  letter-spacing: 2pt;
  font-weight: bold;
}

.next-page-banner-1 .right-box {
  width: 400px;
}

.next-page-banner-1 .right-box img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.next-page-banner-2 {
  display: none;
  width: 100%;
  background-image: url(../img/S__2105348.jpg);
  background-size: cover;
  /* 画像を要素の大きさに合わせて調整 */
  background-position: center;
  /* 画像を中央に配置 */
  background-repeat: no-repeat;
  /* 画像の繰り返し無し */
  padding-top: 30px;
  padding-bottom: 30px;
}

.next-page-banner-2 .next-page-banner-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.next-page-banner-2 .text-next-page {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  letter-spacing: 3pt;
}

.next-page-banner-2 .next-page-disc-wrapper {
  font-size: 18px;
  font-weight: bold;
}

.next-page-banner-2 .next-page-disc-wrapper .next-page-disc-en {
  font-size: 16px;
  font-weight: initial;
}

.news-all-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  margin-bottom: 50px;
}

#pagination {
  margin-top: 20px;
  text-align: center;
  padding-bottom: 30px;
}

#pagination button {
  margin: 0 10px;
  background: transparent;
  font-size: 20px;
  font-weight: bold;
  border: none;
}

.contact-disc {
  width: 70vw;
  margin: 0 auto;
  max-width: 1110px;
}

.contact-disc .sub-ttl {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .contact-disc {
    width: 90vw;
  }
  .contact-disc .sub-ttl {
    margin-bottom: 10px;
  }
}

.contact-form .sub-ttl {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  color: #fff;
}

.contact-form-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  padding: 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-form-wrapper .form-part p {
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-form-wrapper .form-part input,
.contact-form-wrapper .form-part textarea {
  background: #F9FAFB;
  border: none;
  width: 100%;
  line-height: 1.5;
  font-size: 16px;
  padding: 0.75em 0;
}

.contact-form-wrapper .form-part textarea {
  resize: none;
}

.contact-form-wrapper .btn-wrapper input {
  background: transparent;
  color: black;
  border: #333 2px solid;
  font-weight: bold;
  letter-spacing: 3px;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 3px 30px;
}

.btn-wrapper p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form-wrapper .btn-wrapper input {
  letter-spacing: inherit;
}

.wpcf7-spinner {
  display: none !important;
}

.inter-logo {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
}

.company-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  padding: 15px 0;
  font-size: 14px;
  font-weight: bold;
}

.company-wrapper table {
  display: block;
  width: 100%;
}

.company-wrapper table tbody {
  width: 100%;
  display: block;
}

.company-wrapper table tr {
  width: 100%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company-wrapper table th {
  padding: 15px;
}

.company-wrapper table th:nth-child(1) {
  display: block;
  width: 15%;
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  font-size: 12px;
}

.company-wrapper table th:nth-child(2) {
  display: block;
  width: 70%;
}

.company-profile .company-wrapper table th:nth-child(2) {
  text-align: left;
}

.pp {
  width: 100vw;
  font-weight: bold;
}

.pp .pp-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  padding: 50px 0;
}

/* モバイルビュー用のスタイル */
@media (max-width: 768px) {
  .site-wrapper {
    overflow: hidden;
  }
  main {
    margin-top: 90px;
  }
  header {
    position: fixed;
    top: 0;
    /* 画面の上端に固定 */
    z-index: 1000;
    /* 他の要素より上に表示 */
  }
  header .header-wrapper {
    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: 100vw;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }
  header .logo-img {
    width: 105px;
  }
  header .header-menu-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: translateY(calc(-100vh - 30px));
            transform: translateY(calc(-100vh - 30px));
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  header .header-menu-wrapper.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header .header-menu-wrapper ul {
    width: 100%;
    height: 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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .header-menu-wrapper ul li {
    display: block;
  }
  header .hamberger_btn {
    width: 30px;
    height: 15px;
    display: block;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    /* ポインターを手形に */
    /* アクティブ時のスタイル */
  }
  header .hamberger_btn span {
    display: block;
    width: 30px;
    height: 1.5px;
    background: #000;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  header .hamberger_btn.active .span1 {
    -webkit-transform: translateY(6.2px) rotate(45deg);
            transform: translateY(6.2px) rotate(45deg);
    width: 20px;
  }
  header .hamberger_btn.active .span2 {
    opacity: 0;
  }
  header .hamberger_btn.active .span3 {
    -webkit-transform: translateY(-7.5px) rotate(-45deg);
            transform: translateY(-7.5px) rotate(-45deg);
    width: 20px;
  }
  header .header-menu-wrapper ul li a {
    color: #333;
  }
  .sub-ttl {
    width: 90vw;
    margin-top: 0;
  }
  .news-page-ttl {
    margin-bottom: 17px;
  }
  .hero-img-wrapper {
    width: 90vw;
  }
  .news-list-wrapper {
    width: 90vw;
    padding: 0;
  }
  .n
.next-page-banner-1 .next-page-banner-wrapper {
    width: 90vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .next-page-banner-1 .next-page-banner-wrapper {
    width: 90vw;
  }
  .next-page-banner-1 .right-box {
    display: none;
  }
  .next-page-banner-1 .right-box img {
    display: none;
  }
  .footer-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .footer-navigation .footer-logo {
    margin-bottom: 30px;
  }
  .news_list_date {
    margin-bottom: 5px;
  }
  .news-all-wrapper {
    width: 90vw;
  }
  .news_item {
    font-size: 10px;
  }
  .contact-form-wrapper {
    width: 90vw;
  }
  .company-wrapper {
    width: 90vw;
  }
  .company-wrapper table th:nth-child(1) {
    width: 30%;
  }
  .pp .pp-wrapper {
    width: 90vw;
  }
  .location-wrapper {
    width: 90vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .location-wrapper .locatoin-card {
    margin-bottom: 40px;
  }
  .galley-wrapper {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .galley-wrapper .g-img {
    width: 90vw;
  }
  .project-logo {
    width: 90vw;
  }
  .page-nation-wrapper .prev-btn,
  .page-nation-wrapper .next-btn {
    text-align: center;
  }
  .page-nation-wrapper .prev-btn a,
  .page-nation-wrapper .next-btn a {
    width: 130px;
    padding: 0;
  }
  .footer-wrapper {
    width: 90vw;
  }
}

.header-menu-wrapper ul li a,
.footer-menu ul li a {
  -webkit-transition: .4s;
  transition: .4s;
}

.header-menu-wrapper ul li a:hover,
.footer-menu ul li a:hover {
  color: #000 !important;
}

@media (min-width: 800px) {
  .hamberger_btn {
    display: none;
  }
}

/* ウェブページ全体のスクロールバーを非表示にするが、スクロール機能は保持する */
html {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

html::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.page-nation-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  margin-top: 75px;
  margin-bottom: 100px;
  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;
  gap: 30px;
}

.page-nation-wrapper .next-arrow,
.page-nation-wrapper .prev-arrow {
  position: relative;
}

.page-nation-wrapper .next-arrow {
  left: 5px;
}

.page-nation-wrapper .prev-arrow {
  right: 5px;
}

.page-nation-wrapper .prev-btn,
.page-nation-wrapper .next-btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #000;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*== 背景が流れる（右から左） */
.bgright:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #000;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/*hoverした際の形状*/
.bgright:hover:before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media (max-width: 768px) {
  .page-nation-wrapper {
    width: 90vw;
    gap: 12px;
  }
  .page-nation-wrapper .prev-btn,
  .page-nation-wrapper .next-btn {
    position: relative;
  }
  .page-nation-wrapper .next-arrow a span,
  .page-nation-wrapper .prev-arrow a span {
    display: none;
  }
  .page-nation-wrapper .next-btn::after {
    content: "Next";
    display: block;
    position: absolute;
    top: -29px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .page-nation-wrapper .prev-btn::after {
    content: "Prev";
    display: block;
    position: absolute;
    top: -29px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.yoko-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70vw;
  max-width: 1110px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  gap: 40px;
  margin-bottom: 60px;
}

.yoko-box .left img,
.yoko-box .left .now-printing {
  width: 325px;
}

.yoko-box .left .now-printing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid #000 1px;
  aspect-ratio: 1000 / 667;
}

.yoko-box .left .sub-ttl {
  width: initial;
  margin-top: 0;
}

.yoko-box .right .yoko-ttl {
  margin-bottom: 30px;
}

.yoko-box .right .yoko-ttl .en {
  margin-bottom: 5px;
}

.yoko-box .right .yoko-copy {
  margin-bottom: 30px;
}

.yoko-box .right .yoko-copy .en {
  margin-bottom: 5px;
}

.yoko-box .right .yoko-disc {
  margin-bottom: 30px;
}

.yoko-box .right .yoko-disc-en {
  font-size: 12px !important;
}

.yoko-box .right .herb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.yoko-box .right .herb-mobile {
  display: none;
}

.yoko-box .right .yoko-img {
  width: 100%;
}

.yoko-box .right .yoko-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .yoko-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90vw;
  }
  .yoko-box .left img,
  .yoko-box .left .now-printing {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .yoko-box .left .now-printing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .yoko-box .herb-l,
  .yoko-box .herb-r {
    display: none;
  }
  .yoko-box .right .herb-mobile {
    display: block;
  }
}

.entry-content {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
}

.post-title {
  font-size: 17px;
  margin-bottom: 20px;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .entry-content {
    width: 90vw;
  }
}

.info-grid-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.info-card {
  margin-bottom: 30px;
}

.info-thumbnail {
  width: 100%;
  aspect-ratio: 1000 / 667;
  margin-bottom: 15px;
  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;
}

.info-thumbnail img {
  width: 100%;
  height: 100%;
}

.info-ttl {
  margin: 5px 0;
}

.info-date {
  color: #b7b7b7;
}

@media (max-width: 768px) {
  .info-grid-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.text-wrapper .yoko-ttl {
  margin-bottom: 30px;
}

.text-wrapper .yoko-copy {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 60px !important;
}

.hs-grid-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.hs-grid-wrapper .ha-name {
  margin-bottom: 10px;
}

.hs-grid-wrapper .hs-img {
  width: 100%;
  background-color: #fff !important;
  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;
  aspect-ratio: 1000 / 667;
}

.hs-grid-wrapper .hs-img img {
  width: 100%;
}

.hs-grid-wrapper .hs-disc {
  width: 100%;
}

@media (max-width: 768px) {
  .hs-grid-wrapper {
    width: 90vw;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 15px;
  }
}

.hs-yoko {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
}

.bg-w {
  background: #fff !important;
}

.accordion-button {
  color: #444;
  border: none;
  text-align: center;
  outline: none;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  float: right;
  /* ボタンを右に配置 */
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* アクティブ状態でのボタンスタイル（90度回転） */
.accordion-button.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.panel {
  display: none;
  background-color: white;
  overflow: hidden;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: block;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0;
  /* 初期状態では完全に透明 */
  visibility: hidden;
  /* 初期状態では非表示 */
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  /* 初期状態では少し上にずらす */
  -webkit-transition: opacity 0.5s ease, visibility 0s linear 0.5s, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s, -webkit-transform 0.5s ease;
  /* opacityとtransformの変化にアニメーションを適用 */
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: #b7b7b7 solid 1px;
  width: 100%;
  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;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  /* ホバー時は不透明に */
  visibility: visible;
  /* ホバー時は表示に */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /* ホバー時は元の位置に */
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  /* ホバー時の遅延を無くす */
}

main.site-main .more-news-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dropdown p .dropdown-icon::after,
.accordion-button .accordion-icon::after {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  content: "\f107";
}

.project-ttl {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  margin-top: 30px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.project-ttl h2 {
  font-size: 20px !important;
  font-weight: bold !important;
  margin-bottom: 30px;
}

.report-yoko {
  margin-bottom: 0;
}

.partners-wrapper {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.partners-wrapper .partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}

.partners-wrapper .partner .partner-img {
  width: 160px;
  aspect-ratio: 1000/667;
}

.partners-wrapper .partner .partner-img img {
  width: 100%;
  aspect-ratio: 1000/667;
}

.partners-wrapper .partner .partner-name {
  font-size: 15px !important;
  font-weight: bold !important;
}

.partners-wrapper .partner .partner-disc {
  font-size: 12px !important;
  color: #808080 !important;
}

@media (max-width: 768px) {
  .partners-wrapper {
    width: 90vw;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.genre-list {
  width: 70vw;
  max-width: 1110px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(160px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.genre-list p {
  display: block;
  width: 160px;
}

.more-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .5s;
  transition: .5s;
  color: #888;
}

.accordion-button .accordion-icon::after {
  color: #888 !important;
  -webkit-transition: .5s;
  transition: .5s;
}

.more-info:hover {
  color: #000 !important;
}

.more-info:hover .accordion-button .accordion-icon::after {
  color: #000 !important;
}

.youtube-grid {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .youtube-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

iframe.youtube-card {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.store-topics {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.store-list-all {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.page-nation-wrapper .prev-btn a, .page-nation-wrapper .next-btn a {
  width: 130px;
}

.btn {
  padding: 0;
}

.more-news-button .btn {
  width: initial;
  padding: 0 30px;
}

@media (max-width: 768px) {
  .mobile_img {
    width: 100vw !important;
  }
  .locatoin-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .location-wrapper .locatoin-card .lc-img {
    width: 100%;
  }
  .store-topics {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .store-list-all {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.small-ttl {
  font-size: 15px;
  font-weight: bold !important;
}

header .header-menu-wrapper ul li a {
  font-weight: 400;
  color: #000 !important;
}

header .header-wrapper {
  width: initial;
  top: 200px;
  --right: 78;
  position: absolute;
  right: calc(var(--right)* 1em / 16);
  text-align: left;
}

header .header-wrapper .header-menu-wrapper ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  gap: 30px;
}

.color_fade::after {
  position: absolute;
  content: "";
  z-index: 2;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(235, 235, 237, 0)), to(#ebebed));
  background: linear-gradient(to bottom, rgba(235, 235, 237, 0) 0%, #ebebed 100%);
}

.logo_and_concept {
  z-index: 3;
  background: transparent;
}

.logo_and_concept * {
  background: transparent;
}

.now-printing {
  z-index: 1;
}

.hero-img-wrapper {
  position: relative;
}

.hero-img-wrapper .logo_and_concept {
  position: absolute;
  bottom: 200px;
  left: 15vw;
}

.hero-img-wrapper .logo_and_concept * {
  font-family: YakuHanJP,"Shippori Mincho",serif;
}

.hero-img-wrapper .logo_and_concept img {
  width: 150px;
  margin-bottom: 20px;
}

.hero-img-wrapper .logo_and_concept .p_top_concept {
  margin-bottom: 50px;
  font-size: 16px;
}

.hero-img-wrapper .logo_and_concept .p_top_concept2 {
  font-size: 16px;
}

.concept-disc {
  width: 370px;
  margin: 0 auto;
  margin-top: 150px;
}

.concept-disc p {
  font-size: 16px !important;
  line-height: 2.5 !important;
  font-weight: bold !important;
}

.concept_GALLERY {
  width: 80vw;
  margin: 0 auto;
  margin-top: 200px;
  height: 1500px;
}

.concept_GALLERY * {
  line-height: 2.5;
  font-weight: bold;
  background: transparent;
}

.concept_GALLERY .concept-wrapper1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 70%;
}

.concept_GALLERY .concept-wrapper1 .concept_ttl {
  margin-top: 55px;
  font-size: 25px;
}

.concept_GALLERY .concept-wrapper1 .concept_disc {
  width: 100%;
}

.concept_GALLERY .concept-wrapper1 .concept_disc .concept-img {
  width: 100%;
}

.concept_GALLERY .concept-wrapper1 .concept_disc .concept-img img {
  width: 100%;
}

.concept_GALLERY .concept-wrapper1 .concept_disc p {
  display: block;
  width: 50%;
}

.concept_GALLERY .concept-wrapper2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 30%;
}

.concept_GALLERY .concept-wrapper2 .concept_ttl {
  margin-top: 55px;
  font-size: 25px;
}

.concept_GALLERY .concept-wrapper2 .concept_disc {
  width: 100%;
}

.concept_GALLERY .concept-wrapper2 .concept_disc .concept-img {
  width: 100%;
  aspect-ratio: 9 / 16;
}

.concept_GALLERY .concept-wrapper2 .concept_disc .concept-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept_GALLERY .concept-wrapper2 .concept_disc p {
  display: block;
}

.concept_GALLERY .concept-wrapper1 {
  position: relative;
}

.concept_GALLERY .concept-wrapper2 {
  position: absolute;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  right: 10vw;
  /* 必要に応じて調整 */
}

.concept_GALLERY .concept-wrapper3 {
  position: absolute;
  left: 15vw;
  /* 必要に応じて調整 */
}

.concept_GALLERY .concept-wrapper3 .concept_disc .concept-img {
  width: 25vw;
  height: 150px;
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
}

.concept_GALLERY .concept-wrapper3 .concept_disc .concept-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-all .sub-ttl {
  margin-bottom: 30px;
  font-size: 25px;
  width: 80vw;
  max-width: initial;
}

.news-all .news-all-wrapper {
  width: 80vw;
  max-width: initial;
}

.access-wrapper {
  width: 80vw;
  margin: 0 auto;
  margin-top: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.access-wrapper .sub-ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
  margin-top: 0;
  font-size: 25px;
}

.access-wrapper .access-info {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.access-wrapper .access-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.access-wrapper .access-info dl.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.access-wrapper .access-info dl.column dt {
  width: 200px;
  margin-bottom: 15px;
}

.access-wrapper .access-info dt {
  width: 120px;
  font-weight: bold;
}

.access-wrapper .access-info dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.access-wrapper .access-info dd span {
  display: block;
}

.access-wrapper .access-info dd a {
  color: inherit;
  text-decoration: none;
}

.gallery-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.gallery-wrapper .sub-ttl {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.gallery-wrapper .gallery-grid {
  width: 80vw;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  -ms-grid-rows: (1fr)[4];
      grid-template-rows: repeat(4, 1fr);
  gap: 20px;
}

.photo {
  overflow: hidden;
  -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;
}

.photo img {
  width: 100%;
  height: 100%;
  -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;
}

.photo:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.photo1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 1 / 1 / 3 / 3;
}

.photo2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: 1 / 3 / 2 / 5;
}

.photo3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-area: 1 / 5 / 2 / 7;
}

.photo4 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2 / 3 / 3 / 4;
}

.photo5 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 2 / 4 / 3 / 5;
}

.photo6 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 3 / 1 / 4 / 3;
}

.photo7 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: 3 / 3 / 4 / 5;
}

.photo8 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-area: 3 / 5 / 5 / 7;
}

.photo9 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 4 / 1 / 5 / 3;
}

.photo10 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: 4 / 3 / 5 / 5;
}

@media (max-width: 768px) {
  header .header-wrapper {
    width: 90vw;
    position: initial;
    top: 0px;
    right: 0px;
    padding: 0;
  }
  header .header-wrapper .header-menu-wrapper ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    gap: 35px;
  }
  .concept-disc {
    width: 90vw;
  }
  .concept_GALLERY {
    width: 90vw;
    margin: 0 auto;
    margin-top: 200px;
    height: initial;
    margin-bottom: 100px;
  }
  .concept_GALLERY * {
    line-height: 2.5;
    font-weight: bold;
  }
  .concept_GALLERY .concept-wrapper1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  .concept_GALLERY .concept-wrapper1 .concept_ttl {
    margin-top: 55px;
    font-size: 25px;
  }
  .concept_GALLERY .concept-wrapper1 .concept_disc {
    width: 100%;
  }
  .concept_GALLERY .concept-wrapper1 .concept_disc .concept-img {
    width: 100%;
  }
  .concept_GALLERY .concept-wrapper1 .concept_disc .concept-img img {
    width: 100%;
  }
  .concept_GALLERY .concept-wrapper1 .concept_disc p {
    display: block;
    width: 100%;
  }
  .concept_GALLERY .concept-wrapper2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    width: 30%;
  }
  .concept_GALLERY .concept-wrapper2 .concept_ttl {
    margin-top: 55px;
    font-size: 25px;
  }
  .concept_GALLERY .concept-wrapper2 .concept_disc {
    width: 100%;
  }
  .concept_GALLERY .concept-wrapper2 .concept_disc .concept-img {
    width: 100%;
    aspect-ratio: 9 / 16;
  }
  .concept_GALLERY .concept-wrapper2 .concept_disc .concept-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .concept_GALLERY .concept-wrapper2 .concept_disc p {
    display: block;
  }
  .concept_GALLERY .concept-wrapper1 {
    position: relative;
  }
  .concept_GALLERY .concept-wrapper2 {
    position: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .concept_GALLERY .concept-wrapper3 {
    position: initial;
  }
  .concept_GALLERY .concept-wrapper3 .concept_disc .concept-img {
    width: 100%;
    height: 150px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .concept_GALLERY .concept-wrapper3 .concept_disc .concept-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .news-all .sub-ttl {
    margin-bottom: 30px;
    font-size: 25px;
    width: 90vw;
    max-width: initial;
  }
  .news-all .news-all-wrapper {
    width: 90vw;
    max-width: initial;
  }
  .access-wrapper {
    width: 90vw;
    margin: 0 auto;
    margin-top: 150px;
    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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .access-wrapper .sub-ttl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 20px;
    margin-top: 0;
    font-size: 25px;
    margin-bottom: 50px;
  }
  .access-wrapper .access-info {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  .access-wrapper .access-info dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }
  .access-wrapper .access-info dl.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .access-wrapper .access-info dl.column dt {
    width: 200px;
    margin-bottom: 15px;
  }
  .access-wrapper .access-info dt {
    width: 120px;
    font-weight: bold;
  }
  .access-wrapper .access-info dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .access-wrapper .access-info dd span {
    display: block;
  }
  .access-wrapper .access-info dd a {
    color: inherit;
    text-decoration: none;
  }
  .gallery-wrapper .sub-ttl {
    text-align: left;
    width: 90vw;
  }
  .gallery-wrapper .gallery-grid {
    width: 90vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.now-printing {
  border: #000 solid 1px;
}
/*# sourceMappingURL=style.css.map */