@charset "UTF-8";
.menu-open {
  overflow: hidden; /* 背景のスクロールを禁止 */
}

.page-title {
  margin: 150px 0 120px;
  text-align: center;
}

.sns {
  display: flex;
  align-items: center;
}
.sns li {
  text-align: center;
}
.sns li a {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #717171;
  margin-right: 10px;
}
.sns li a img {
  -o-object-fit: cover;
     object-fit: cover;
}
.sns li a .row {
  width: 55%;
}
.sns li a .tiktok {
  width: 90%;
}
.sns li a .youtube {
  width: 100%;
  margin-top: 2px;
}

/* =========================================
  メニュー開閉状態
========================================= */
body.menu-open {
  overflow: hidden;
}

/* =========================================
  グローバルメニュー
========================================= */
.global-menu {
  position: fixed;
  inset: 0;
  background: rgb(159, 159, 159);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  /* mask */
  /* 中央ナビ */
}
body.menu-open .global-menu {
  opacity: 1;
  visibility: visible;
}
.global-menu .menu-close {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  cursor: pointer;
}
body.menu-open .global-menu .menu-close {
  opacity: 1;
  visibility: visible;
}
.global-menu .mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  cursor: pointer;
}
.global-menu nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.global-menu nav .nav-menu li {
  margin: 20px 0;
}
.global-menu nav .nav-menu li a {
  color: #fff;
  font-size: 20px;
}

/* =========================================
  開く用ハンバーガーボタン
========================================= */
.toggle_btn {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 30;
  cursor: pointer;
}
.toggle_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #121212;
  transition: 0.3s;
}
.toggle_btn span:nth-child(1) {
  top: 6px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 6px;
}

/* ×アニメーション（closeボタン用） */
body.menu-open {
  /* 開く用ボタンは消す */
}
body.menu-open .menu-close span {
  background: #fff;
}
body.menu-open .menu-close span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
body.menu-open .menu-close span:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-close span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
  bottom: auto;
}
body.menu-open .toggle_btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

header {
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  background: transparent;
  color: #000;
  transition: 1.5s;
}
header.hide {
  transform: translateY(-100%);
}
header .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo h1 {
  font-size: 40px;
  line-height: 1;
  text-align: center;
  margin-right: 20px;
}
header .logo h1 a .sub {
  display: block;
  font-size: 14px;
}
header .logo p {
  font-size: 14px;
}

#map .map-flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
#map .map-flex .map {
  width: 55%;
}
#map .map-flex .map iframe {
  width: 100%;
}
#map .map-flex .map-text {
  width: auto;
}
#map .map-flex .map-text .name {
  font-size: 40px;
  line-height: 0.5;
}
#map .map-flex .map-text .name .ja {
  font-size: 16px;
}
#map .map-flex .map-text .open {
  font-size: 18px;
  margin-top: 30px;
}
#map .map-flex .map-text .close {
  font-size: 18px;
  margin-bottom: 30px;
}
#map .map-flex .map-text .tel {
  font-size: 40px;
  margin-top: 30px;
  border-bottom: 1px solid black;
  padding: 0 5px 5px;
  width: -moz-fit-content;
  width: fit-content;
}
#map .map-flex .map-text .tel .en {
  font-size: 14px;
  margin-right: 10px;
}

footer .flex1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
  padding: 0 10px 30px;
}
footer .flex1 h1 {
  font-size: 40px;
  text-align: center;
  line-height: 0.5;
}
footer .flex1 h1 .sub {
  font-size: 15px;
}
footer .flex1 .nav-flex {
  display: flex;
  margin-top: 15px;
}
footer .flex1 .nav-flex li a {
  margin-left: 40px;
}
footer .flex2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
footer .flex3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .flex3 p {
  font-size: 12px;
}
footer .flex3 p span {
  font-size: 32px;
  margin-left: 10px;
}

.bottom-nav {
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-top: 1px solid black;
  z-index: 40;
  position: fixed; /* 常に画面内に固定 */
  bottom: 0;
  right: 0;
  left: 0; /* 初期位置 */
  cursor: pointer;
  opacity: 0; /* 最初は透明 */
  visibility: hidden; /* 最初は非表示 */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.bottom-nav a {
  width: 32%;
  text-align: center;
  border-right: 1px solid black;
  padding: 5px 30px;
}
.bottom-nav a img {
  width: 30px;
}
.bottom-nav a p {
  font-size: 14px;
}
.bottom-nav .toggle_btn {
  width: 4%;
  margin-left: 15px;
  text-align: center;
}
.bottom-nav .toggle_btn span {
  width: 65%;
}

.fixed {
  opacity: 1;
  visibility: visible;
}

/* メニュー開いてる時は強制非表示 */
body.menu-open .bottom-nav {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 960px) {
  .page-title {
    margin: 150px 0 120px;
  }
  .sns li a .row {
    margin-top: 5px;
  }
  /* =========================================
    グローバルメニュー
  ========================================= */
  .global-menu {
    /* 中央ナビ */
  }
  .global-menu nav .nav-menu li {
    margin: 16px 0;
  }
  .global-menu nav .nav-menu li a {
    font-size: 14px;
  }
  header .logo h1 {
    font-size: 32px;
  }
  header .logo h1 a .sub {
    font-size: 12px;
  }
  header .logo p {
    font-size: 12px;
  }
  #map .map-flex {
    gap: 35px;
  }
  #map .map-flex .map {
    width: 50%;
  }
  #map .map-flex .map iframe {
    height: 300px;
  }
  #map .map-flex .map-text .name {
    font-size: 32px;
  }
  #map .map-flex .map-text .name .ja {
    font-size: 14px;
  }
  #map .map-flex .map-text .open {
    margin-top: 20px;
  }
  #map .map-flex .map-text .close {
    margin-bottom: 20px;
  }
  #map .map-flex .map-text .tel {
    font-size: 30px;
    margin-top: 20px;
  }
  #map .map-flex .map-text .tel .en {
    font-size: 12px;
  }
  footer .flex1 {
    padding: 0 10px 20px;
  }
  footer .flex1 h1 {
    font-size: 32px;
  }
  footer .flex1 h1 .sub {
    font-size: 12px;
  }
  footer .flex1 .nav-flex li a {
    margin-left: 30px;
  }
  footer .flex3 p span {
    font-size: 24px;
  }
  .bottom-nav a {
    padding: 3px 20px;
  }
  .bottom-nav a img {
    width: 25px;
  }
  .bottom-nav a p {
    font-size: 12px;
  }
  .bottom-nav .toggle_btn span {
    width: 60%;
  }
}
@media (max-width: 676px) {
  .page-title {
    margin: 150px 0 120px;
  }
  .sns li a .row {
    margin-top: 5px;
  }
  /* =========================================
    グローバルメニュー
  ========================================= */
  .global-menu {
    /* 中央ナビ */
  }
  .global-menu nav .nav-menu li {
    margin: 20px 0;
  }
  .global-menu nav .nav-menu li a {
    font-size: 14px;
  }
  header .logo {
    flex-direction: column;
  }
  header .logo p {
    display: none;
  }
  #map .map-flex {
    flex-direction: column;
  }
  #map .map-flex .map {
    width: 100%;
  }
  #map .map-flex .map-text {
    margin: 0 auto;
  }
  #map .map-flex .map-text .tel {
    font-size: 26px;
  }
  footer .flex1 {
    padding: 0 0px 20px;
    flex-direction: column;
  }
  footer .flex1 .nav-flex li a {
    margin-left: 20px;
  }
  footer .flex2 {
    flex-direction: column-reverse;
  }
  footer .flex2 .address {
    margin-top: 20px;
  }
  footer .flex3 {
    flex-direction: column;
    align-items: center;
  }
  footer .flex3 p {
    margin-bottom: 30px;
  }
  .bottom-nav a {
    width: 29%;
    padding: 3px 20px;
  }
  .bottom-nav a img {
    width: 25px;
  }
  .bottom-nav a p {
    font-size: 12px;
  }
  .bottom-nav .toggle_btn {
    width: 6%;
  }
  .bottom-nav .toggle_btn span {
    width: 100%;
  }
}
.filter {
  display: flex;
}
.filter .sidebar {
  width: 200px;
}
.filter .filter-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.filter .filter-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.filter .filter-list li {
  margin-bottom: 8px;
}
.filter .filter-list button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #333;
  font-size: 14px;
}
.filter .filter-list button.active {
  color: #c00;
  font-weight: bold;
}
.filter .gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.filter .gallery .item {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.filter .gallery .item.hide {
  display: none;
}
.filter .gallery .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: zoom-in;
}

/* モーダル */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.image-modal.active {
  display: flex;
}
.image-modal__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.image-modal img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  cursor: zoom-out;
}
.image-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}
.pagination button {
  margin: 0 10px;
  padding: 6px 12px;
  cursor: pointer;
}

.menu-flex {
  display: flex;
  justify-content: space-between;
}
.menu-flex .menu-category {
  width: 200px;
  margin-top: 18px;
  margin-right: 80px;
}
.menu-flex .menu-category p {
  font-size: 20px;
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 1px solid black;
}
.menu-flex .menu-category ul li a {
  display: block;
  margin-bottom: 7px;
}
.menu-flex .menu-list {
  width: 70%;
}
.menu-flex .menu-list .menu-items {
  margin-bottom: 100px;
  width: 100%;
}
.menu-flex .menu-list .menu-items h3 {
  font-size: 30px;
  font-weight: normal;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}
.menu-flex .menu-list .menu-items h3 span {
  font-size: 14px;
  padding-left: 10px;
}
.menu-flex .menu-list .menu-items .menu-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.menu-flex .menu-list .menu-items .menu-item dt {
  width: 70%;
}
.menu-flex .menu-list .menu-items .menu-item dd {
  width: 30%;
  text-align: right;
}
.menu-flex .menu-list .menu-items .menu-item dt, .menu-flex .menu-list .menu-items .menu-item dd {
  padding: 16px 0;
  border-bottom: 1px solid black;
}
.menu-flex .menu-list .menu-items p {
  text-align: right;
  padding-top: 10px;
  font-size: 10px;
}

.about-flex {
  margin-bottom: 100px;
  display: flex;
  justify-content: space-around;
}
.about-flex li a {
  border: 1px solid black;
  padding: 5px 30px;
}

.wrapper {
  margin-bottom: 100px;
}
.wrapper .about-title {
  font-size: 20px;
  text-align: left;
  margin-bottom: 10px;
  margin-left: 20px;
}
.wrapper .accordion .acc-item {
  border-top: 1px solid black;
}
.wrapper .accordion .acc-item:last-of-type {
  border-bottom: 1px solid black;
}
.wrapper .accordion .acc-item .acc-title {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-weight: bold;
  cursor: pointer;
}
.wrapper .accordion .acc-item .acc-title span {
  padding-right: 10px;
}
.wrapper .accordion .acc-item .acc-title .plus-minus {
  position: relative;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .accordion .acc-item .acc-title .plus-minus::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.wrapper .accordion .acc-item .acc-title.open .plus-minus::before {
  transform: rotate(-135deg);
}
.wrapper .accordion .acc-item .acc-content {
  display: none;
  padding: 20px;
  font-size: 14px;
  line-height: 2;
}
.wrapper .accordion .acc-item .acc-content span {
  padding-right: 10px;
}
.wrapper .accordion .acc-item .acc-content .inner {
  display: inline-block;
  text-align: left;
}
.wrapper .accordion .acc-item .acc-content .inner span {
  font-weight: bold;
}
.wrapper .accordion .acc-item .acc-content .inner .attention {
  font-size: 12px;
  padding: 5px 0;
}

.filter {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
}
.filter .sidebar {
  width: 200px;
}
.filter .filter-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.filter .filter-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.filter .filter-list li {
  margin-bottom: 8px;
}
.filter .filter-list button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
.filter .filter-list button.active {
  color: #c00;
  font-weight: bold;
}
.filter .news-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.filter .news-list .item {
  text-align: left;
  text-decoration: none;
  color: #333;
}
.filter .news-list .item.hide {
  display: none;
}
.filter .news-list .item .preview {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
}
.filter .news-list .item time {
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
  padding-left: 30px;
}
.filter .news-list .item h3 {
  font-size: 16px;
  line-height: 1.4;
  padding-left: 30px;
}
.filter .news-list .item p {
  text-align: right;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.filter .news-list .item p .yazirusi {
  display: block;
  margin-left: 10px;
  width: 20px;
  height: 5px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: skew(45deg);
}

.pagination {
  margin-top: 40px;
  text-align: center;
}
.pagination button {
  margin: 0 10px;
  padding: 6px 12px;
  cursor: pointer;
}

.article {
  margin-left: 120px;
}
.article time {
  font-size: 14px;
}
.article h3 {
  margin-bottom: 50px;
}
.article .image {
  width: 50%;
  margin: 50px 0;
}
.article .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article p {
  margin-bottom: 80px;
}
.article .post-pager {
  display: flex;
  justify-content: space-around;
  margin-top: 250px;
}

.staff-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.staff-flex .staff-image {
  width: 45%;
  aspect-ratio: 1/1;
}
.staff-flex .staff-image img {
  width: 100%;
  height: 100%;
}
.staff-flex .staff-text {
  width: 45%;
}
.staff-flex .staff-text .en {
  font-size: 30px;
}
.staff-flex .staff-text .position {
  font-size: 14px;
  margin: 30px 0;
}
.staff-flex .staff-text .comment {
  margin-bottom: 15px;
}
.staff-flex .staff-text a {
  display: block;
  width: 25px;
  height: 25px;
  background-color: grey;
  padding: 2px;
}
.staff-flex .staff-text a img {
  width: 100%;
  height: 100%;
}

body {
  font-size: 16px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 70px;
}

.container {
  max-width: 960px;
  width: 100%;
  padding: 0 16px;
  margin: 180px auto;
}

.more {
  text-align: center;
  margin-top: 50px;
}
.more a {
  padding: 16px;
  border: 1px solid black;
}
.more:hover {
  opacity: 0.7;
}

.mainvisual {
  width: 100%;
  height: 130vh;
}
.mainvisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#consept {
  text-align: center;
}
#consept .sub-title {
  font-size: 20px;
  font-weight: bold;
  margin: 50px 0;
  line-height: 1;
}
#consept p {
  line-height: 4;
}

#catalog .catalog-items {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
#catalog .catalog-items .item {
  width: 32%;
  height: auto;
}
#catalog .catalog-items img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

#page {
  display: flex;
  justify-content: space-between;
}
#page .page-items {
  width: 48%;
}
#page .page-items h2 {
  margin-bottom: 15px;
}
#page .page-items .item {
  position: relative;
}
#page .page-items .item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
#page .page-items .item p {
  position: absolute;
  right: 0;
  top: -26px;
  border: 1px solid black;
  padding: 10px 16px;
}
#page .page-items .item:hover {
  opacity: 0.7;
}

#news .news-flex {
  display: flex;
  justify-content: space-between;
}
#news .news-flex .flex-item {
  width: 30%;
  padding: 40px;
  border: 1px solid gray;
}
#news .news-flex .flex-item .time {
  font-size: 12px;
  margin-bottom: 10px;
}
#news .news-flex .flex-item .row {
  text-align: right;
}
#news .news-flex .flex-item:hover {
  opacity: 0.7;
}

.photo {
  display: flex;
  justify-content: space-around;
  margin: 50px 0 80px;
}
.photo li {
  width: 33%;
}
.photo li img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 960px) {
  body {
    font-size: 14px;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .container {
    margin: 80px auto;
  }
  .more a {
    padding: 12px;
    font-size: 12px;
  }
  .mainvisual {
    height: 100vh;
  }
  #consept .sub-title {
    font-size: 18px;
    margin: 30px 0;
  }
  #consept p {
    line-height: 3;
  }
  #page .page-items .item img {
    height: 250px;
  }
  #news .news-flex .flex-item {
    padding: 20px;
  }
  #news .news-flex .flex-item .time {
    font-size: 10px;
  }
  #news .news-flex .flex-item .title {
    font-size: 13px;
  }
  .photo li img {
    height: 200px;
  }
}
@media (max-width: 676px) {
  h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .more a {
    padding: 10px;
  }
  #consept .sub-title {
    font-size: 16px;
    margin: 20px 0;
  }
  #consept p {
    line-height: 2;
  }
  #page {
    flex-direction: column;
  }
  #page .page-items {
    width: 100%;
  }
  #page .page-items:first-of-type {
    margin-bottom: 40px;
  }
  #news .news-flex {
    justify-content: center;
    gap: 10px;
  }
  #news .news-flex .flex-item {
    width: 48%;
    padding: 15px;
  }
  #news .news-flex .flex-item:last-child {
    display: none;
  }
  .photo li img {
    height: 130px;
  }
}/*# sourceMappingURL=main.css.map */