/*------------------------------
   FV
------------------------------*/
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.566);
  z-index: 1;
}

.fv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  text-align: center;
}

.fv__title-en {
  display: block;
  font-size: 3rem;
  letter-spacing: 0.2em;
}

.fv__title-ja {
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .fv__title-en {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
  }

  .fv__title-ja {
    font-size: 1.4rem;
  }
}

/*------------------------------
   Section Heading
------------------------------*/
.section-heading {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}

.section-heading__sub {
  font-size: 1.8rem;
  margin-bottom: 50px;
}

.section-desc {
  line-height: 1.8;
  margin-bottom: 15px;
}

.section-desc:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .section-heading {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .section-heading__sub {
    margin-bottom: 25px;
  }
}

/*------------------------------
   Section Heading Meta
------------------------------*/
.section-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid currentColor;
  padding-bottom: 15px;
  margin-bottom: 50px;
}

.section-meta__title {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
}

.section-meta__sub-title {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .section-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-meta__title {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
  }

  .section-meta__sub-title {
    font-size: 1.2rem;
    white-space: wrap;
  }
}

/*------------------------------
   Notice Text
------------------------------*/
.notice-text {
  text-align: center;
  font-size: 1.8rem;
  margin: 100px 0 50px;
}

.notice-text--tax {
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .notice-text {
    margin: 50px 0 25px;
  }
}

/*------------------------------
   price table
------------------------------*/
.price-table__wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.scroll-hint {
  display: none;
}

.price-table {
  width: 100%;
  min-width: calc(768px - 40px);
  border-collapse: collapse;
  margin-bottom: 10px;
}

.price-table__caption {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.price-table th,
.price-table td {
  width: 20%;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  padding: 20px 0;
  text-align: center;
}

.price-table th span {
  font-size: 1.1rem;
}

.price-table__head {
  background: #6e6e6e;
}

@media screen and (max-width: 768px) {

  .price-table th,
  .price-table td {
    width: 20%;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    text-align: center;
  }

  .price-table th span {
    font-size: 0.9rem;
  }

  .scroll-hint {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.5em;
    color: #fff;
    background-color: #141414;
    padding: 10px 20px;
    animation: blink 1.2s infinite;
    text-shadow: #141414 0 0 5px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1.5s ease;
  }

  .scroll-hint.fade-out {
    animation: none;
    opacity: 0;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.4;
    }
  }
}

/*------------------------------
   animation
------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease-in, transform 0.5s ease-in;
  will-change: opacity, transform;
}

.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------
   img gallery
------------------------------*/
body.modal-open {
  overflow: hidden;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* PC：3列 */
  gap: 80px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery-list li {
  overflow: hidden;
}

.gallery-list li img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-list li img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .gallery-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.gallery-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: flex;
}

.gallery-modal.open {
  display: flex;
  z-index: 9000;
}

.modal-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  color: #fff;
  position: relative;
}

.gallery-modal.open .modal-content {
  opacity: 1;
  transform: translateY(0);
}

.modal-content img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

#modalCaption {
  margin-top: 1em;
  font-size: 1.2rem;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/*------------------------------
  page contact
------------------------------*/
.contact-wrapper {
  display: flex;
  align-items: center;
  background: #141414;
  padding: 20px;
}

.contact-wrapper__text {
  width: 50%;
  text-align: center;
  color: #fff;
}

.contact-wrapper__content {
  width: 50%;
  position: relative;
  text-align: center;
}

.contact-wrapper__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}

.contact-wrapper__content a {
  display: inline-block;
  color: #fff;
  text-align: left;
}

.contact-wrapper__tel {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}

.contact-wrapper__tel span {
  font-size: 1.6rem;
}

.contact-wrapper__desc {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-wrapper__text {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-wrapper__content {
    width: 100%;
    padding-top: 10px;
  }

  .contact-wrapper__content::before {
    width: 100%;
    height: 1px;
  }
}

/*------------------------------
  tab
------------------------------*/
.tab-menu {
  display: flex;
  justify-content: center;
}

.tab-btn {
  width: 25%;
  background: none;
  border: none;
  font-size: 1.4rem;
  padding: 16px;
  position: relative;
  cursor: pointer;
  color: #000;
  border-radius: 0;
}

.tab-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #ccc;
  z-index: 0;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #000;
  width: 0;
  transition: width 0.3s ease;
}

.tab-btn:hover::after {
  width: 100%;
}

.tab-btn.is-active::after {
  width: 100%;
}

.tab-content {
  display: none;
  padding: 30px 0;
  text-align: center;
}

.tab-content.is-active {
  display: block;
}

.tab-description {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.tab-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tab-item {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: calc(33.33% - 20px);
  padding: 15px 0;
  border-top: 5px double #ccc;
  border-bottom: 5px double #ccc;
  text-align: center;
  box-sizing: border-box;
  font-size: 1.4rem;
  background: #fff;
}

.ribbon {
  position: relative;
  width: 20%;
  min-width: 50px;
  height: 80px;
  background-color: #141414;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 80px;
  box-sizing: border-box;
}

.ribbon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 20px solid #ffffff;
}

.ribbon__text {
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.tab-item p {
  width: 70%;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .tab-menu {
    flex-wrap: wrap;
  }

  .tab-btn {
    width: 50%;
  }

  .tab-item {
    width: calc(50% - 20px);
  }

  .ribbon {
    width: 18%;
    min-width: 40px;
    height: 80px;
  }
}

@media screen and (max-width: 600px) {
  .tab-item {
    width: 100%;
    max-width: 350px;
  }

  .tab-btn {
    font-size: 1.2rem;
  }
}

/*------------------------------
  side bar
------------------------------*/
.side-bar__title {
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.side-bar__archive-item {
  padding: 8px 0;
}

.side-bar__archive-item a {
  font-size: 1.4rem;
}

.side-bar__inner form {
  font-size: 1.4rem;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .side-bar {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 30px;
  }

  .side-bar__inner {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  .side-bar {
    flex-direction: column;
  }

  .side-bar__inner {
    width: 100%;
  }
}

/*------------------------------
  Post card
------------------------------*/
.post-card {
  transition: all 0.3s;
}

.post-card a:hover {
  opacity: 0.9;
}

.post-card__img {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.post-card__new-badge {
  position: absolute;
  top: 15px;
  left: 0;
  background: #7e1a2ee4;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 15px;
  letter-spacing: 0.2em;
  /* border-radius: 0 3px 3px 0; */
  z-index: 5;
}

.post-card__img img {
  transition: all 0.3s;
  aspect-ratio: 16/9;
}

.post-card a:hover img {
  transform: scale(1.1);
}

.post-card__ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 1.6;
  min-height: 5rem;
  margin-bottom: 10px;
}

.post-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.6;
  min-height: 4.5rem;
  color: #3a3a3a;
}

/*------------------------------
  br
------------------------------*/
@media screen and (min-width: 500px) {
  .sp-br{
    display: none;
  }
}

/*------------------------------
  breadcrumb
------------------------------*/
.breadcrumb{
  max-width: 960px;
  font-size: 1.4rem;
  margin: 0 auto -50px;
  padding: 50px 20px 0;
}

.breadcrumb .current-item {
  color: #7E1A2E;
  font-weight: bold;
}

.breadcrumb-white .current-item{
  color: #fff;
}

.breadcrumb-white a{
  color: #fff;
}