@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.header {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0 1rem;
  }
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  z-index: 101;
  max-width: 80px;
}
@media (max-width: 768px) {
  .header__logo {
    font-size: 1.25rem;
    max-width: 60px;
  }
}
.header__logo a {
  color: #fc6305;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__hamburger {
  display: none;
  -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;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(10.5px) rotate(45deg);
          transform: translateY(10.5px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-10.5px) rotate(-45deg);
          transform: translateY(-10.5px) rotate(-45deg);
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    -webkit-box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
            box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 2rem 2rem;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .header__nav.is-open {
    right: 0;
  }
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .header__nav li {
    border-bottom: 1px solid #e1e4e8;
  }
}
.header__nav li a {
  font-size: 14px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__nav li a:hover {
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .header__nav li a {
    font-size: 1.125rem;
    padding: 1rem 0;
    border-radius: 0;
  }
}
.header__cta {
  color: #fc6305 !important;
  font-weight: 700 !important;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.overlay.is-open {
  display: block;
  opacity: 1;
}

.mv {
  position: relative;
  height: 90vh;
  max-height: 1000px;
  padding: 0 40px;
}
.mv::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mv__movie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.mv__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__lead {
  position: relative;
  max-width: 1200px;
  padding: 0 40px;
  margin: auto;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 2;
  text-align: center;
}
.mv__title {
  font-size: 5rem;
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  .mv__title {
    font-size: 9.4vmin;
  }
}
.mv__title_sub {
  display: block;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .mv__title_sub {
    font-size: 4vmin;
  }
}
.mv__text {
  margin-top: 2rem;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .mv__text {
    font-size: 4.6vmin;
  }
}

#business-status {
  background-color: #fc6305;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 0.35rem 2rem;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #business-status {
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
}
@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 2rem;
  }
}
.btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn--primary {
  background-color: #fc6305;
  color: #fff;
}
.btn--primary:hover {
  background-color: #e05504;
}
.btn--secondary {
  background-color: #fff;
  color: #fc6305;
  border: 2px solid #fc6305;
}
.btn--secondary:hover {
  background-color: #fc6305;
  color: #fff;
}
.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}
.btn--phone {
  background-color: #0066cc;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.btn--phone:hover {
  background-color: rgb(0, 76.5, 153);
}
.btn__icon {
  font-size: 1.5rem;
}
.btn__text {
  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;
}
.btn__label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}
.btn__number {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 12vmin;
  }
}
.section-title__en {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fc6305;
  margin-bottom: 0.5rem;
}
.section-title__ja {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #333;
}
@media (max-width: 768px) {
  .section-title__ja {
    font-size: min(6vmin, 32px);
  }
}
.section-title--light .section-title__en,
.section-title--light .section-title__ja {
  color: #fff;
}

.section-text {
  text-align: center;
  margin-bottom: 3rem;
  margin-bottom: 30px;
}

.news {
  padding: 7.5rem 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .news {
    padding: 4rem 0;
  }
}
.news__list {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.news__item {
  border-bottom: 1px solid #e1e4e8;
}
.news__item:first-child {
  border-top: 1px solid #e1e4e8;
}
.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  gap: 2rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news__link:hover {
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .news__link {
    -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;
    gap: 0.5rem;
  }
}
.news__link[data-news-type=modal] {
  cursor: pointer;
}
.news__date {
  font-size: 0.875rem;
  color: #999;
  min-width: 100px;
}
.news__category {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: #f4f5f6;
  color: #666;
  min-width: 80px;
  text-align: center;
}
.news__category--event {
  background-color: #fc6305;
  color: #fff;
}
.news__category--info {
  background-color: #0066cc;
  color: #fff;
}
.news__category--new {
  background-color: #28a745;
  color: #fff;
}
.news__item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.news__more {
  text-align: center;
}

.about {
  padding: 7.5rem 0;
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about__image img {
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.about__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about__heading {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 1rem;
  color: #fc6305;
}
@media (max-width: 768px) {
  .about__heading {
    font-size: 6vmin;
  }
}
.about p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about p:last-child {
  margin-bottom: 0;
}

.president {
  padding: 7.5rem 0;
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .president {
    padding: 4rem 0;
  }
}
.president__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 3rem;
}
@media (max-width: 768px) {
  .president__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.president__image {
  width: 38%;
}
@media (max-width: 768px) {
  .president__image {
    width: 100%;
  }
}
.president__image img {
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.president__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.president__text p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.president__signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e4e8;
  text-align: right;
}
.president__title {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 0.25rem !important;
}
.president__name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #333;
  margin-bottom: 0 !important;
}
.president__name span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #999;
  margin-top: 0.25rem;
}

/* 富士山 */
/* ========================= */
.hujisan {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hujisan {
    height: 40vh;
  }
}

.bg {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 120%;
  background: url("../img/hujisan.jpg") top/cover no-repeat;
  z-index: -1;
  will-change: transform;
}

.fish {
  padding: 7.5rem 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .fish {
    padding: 4rem 0;
  }
}
.fish__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .fish__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .fish__grid {
    grid-template-columns: 1fr;
  }
}
.fish__card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fish__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.fish__card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.fish__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fish__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #fc6305;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
}
.fish__card-content {
  padding: 2rem;
}
.fish__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}
.fish__card-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
}
.fish__note {
  text-align: center;
  color: #999;
  font-size: 0.875rem;
  margin-top: 2rem;
}

.gallery {
  padding: 7.5rem 0;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .gallery {
    padding: 4rem 0;
  }
}
.gallery__slider {
  margin: 0 -10px;
}
.gallery__item {
  padding: 0 10px;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
@media (max-width: 768px) {
  .gallery__item img {
    height: 200px;
  }
}
.gallery__item .gallery__zoom-hint {
  position: absolute;
  top: 10px;
  right: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  pointer-events: none;
}
.gallery__item .gallery__zoom-hint .gallery__zoom-icon {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .gallery__item .gallery__zoom-hint {
    font-size: 0.7rem;
    padding: 3px 7px;
  }
}
.gallery .slick-dots {
  bottom: -40px;
}
.gallery .slick-dots li button:before {
  color: #fc6305;
  font-size: 10px;
}
.gallery .slick-prev:before,
.gallery .slick-next:before {
  color: #fc6305;
}

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  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;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 200;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__content {
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  background-color: #000;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lightbox__image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #000;
}
.lightbox__caption {
  padding: 0.75rem 1rem 1rem;
  color: #fff;
  font-size: 0.875rem;
}
.lightbox__close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.5rem;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lightbox__close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.news-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  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;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 210;
}
.news-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.news-modal__content {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  background-color: #fff;
  border-radius: 10px;
  overflow-y: auto;
  padding: 2.5rem 1.5rem 1.5rem;
}
@media (max-width: 768px) {
  .news-modal__content {
    padding: 2.25rem 1rem 1rem;
  }
}
.news-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.news-modal__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.8rem;
}
.news-modal__date {
  color: #999;
  font-size: 0.875rem;
}
.news-modal__category {
  background-color: #0066cc;
  color: #fff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
}
.news-modal__title {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}
@media (max-width: 768px) {
  .news-modal__title {
    font-size: 1.1rem;
  }
}
.news-modal__body {
  font-size: 0.95rem;
  line-height: 1.8;
}
.news-modal__body p + p {
  margin-top: 0.75rem;
}
.news-modal__body img {
  width: 100%;
  border-radius: 6px;
  margin-top: 1rem;
}

.instagram {
  padding: 7.5rem 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .instagram {
    padding: 4rem 0;
  }
}
.instagram__content {
  text-align: center;
  min-height: 200px;
  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;
  color: #999;
}

.company {
  padding: 7.5rem 0;
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .company {
    padding: 4rem 0;
  }
}
.company__content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .company__content {
    padding: 1rem;
  }
}
.company__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #c8d6e5;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .company__table {
    font-size: 0.875rem;
  }
}
.company__table th,
.company__table td {
  border: 1px solid #c8d6e5;
  padding: 1rem;
  text-align: left;
}
.company__table th {
  background-color: #f1f7fd;
  font-weight: 700;
  width: 25%;
  max-width: 200px;
}
@media (max-width: 768px) {
  .company__table th {
    min-width: auto;
    width: 100%;
    max-width: none;
  }
}
.company__table td {
  background-color: #fff;
}
@media (max-width: 768px) {
  .company__table td {
    width: auto;
  }
}
@media (max-width: 768px) {
  .company__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .company__table th,
  .company__table td {
    width: 100%;
    display: block;
  }
  .company__table th {
    border-bottom: none;
  }
  .company__table td[colspan="3"] {
    width: 100%;
  }
}

.access {
  padding: 7.5rem 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .access {
    padding: 4rem 0;
  }
}
.access__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4rem;
}
@media (max-width: 992px) {
  .access__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.access__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.access__item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e1e4e8;
}
.access__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.access__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fc6305;
  margin-bottom: 0.5rem;
}
.access__value {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}
.access__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.access__map iframe {
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }
}
.contact .section-title__en, .contact .section-title__ja {
  color: #333;
}
.contact__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  border: 4px solid #fc6305;
  padding: 2rem;
  border-radius: 12px;
}
.contact__text {
  font-size: 1.25rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact__text {
    font-size: 3.4vmin;
    margin-bottom: 1rem;
  }
}
.contact__tel-row {
  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: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact__tel-row {
    gap: 0.5rem;
  }
}
.contact__tel-icon {
  width: 40px;
  height: 40px;
  color: #fc6305;
}
@media (max-width: 768px) {
  .contact__tel-icon {
    width: min(6vmin, 40px);
    height: min(6vmin, 40px);
  }
}
.contact__tel-icon svg {
  width: 100%;
  height: 100%;
}
.contact__tel-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fc6305;
  line-height: 1;
}
@media (max-width: 768px) {
  .contact__tel-number {
    font-size: min(7vmin, 30px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.contact__details-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact__details-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    font-size: 3.6vmin;
  }
}
.contact__sns {
  padding-top: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .contact__sns {
    padding-top: 3rem;
  }
}
.contact__sns-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}
@media (max-width: 768px) {
  .contact__sns-title {
    font-size: 4vmin;
  }
}
.contact__sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sns-link {
  padding: 0.75rem 2rem;
  background-color: #fff;
  border: 1px solid #e1e4e8;
  color: #333;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sns-link:hover {
  background-color: #fc6305;
  border-color: #fc6305;
  color: #fff;
}

.footer {
  background-color: #fc6305;
  color: #fff;
  padding: 3rem 0 2rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__logo h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  max-width: 150px;
}
@media (max-width: 768px) {
  .footer__logo h2 {
    text-align: center;
    margin: auto;
    margin-bottom: 0.5rem;
  }
}
.footer__logo p {
  font-size: 0.875rem;
  color: rgb(255, 255, 255);
  color: #fff;
}
.footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media (max-width: 768px) {
  .footer__nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
}
.footer__nav a {
  font-size: 0.875rem;
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__nav a:hover {
  color: #fc6305;
}
.footer__bottom {
  padding-top: 2rem;
}
.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}/*# sourceMappingURL=style.css.map */