@charset "UTF-8";
body,
html {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
}

.english-font {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", sans-serif !important;
}

.japanese-font {
  font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "Yu Mincho", "游明朝", serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

.news-section {
  background-color: #F8F8F8;
}

.text-section {
  background-color: #282823;
}

footer {
  background-color: #262626;
}

#loader {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease-in-out;
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loader .loader-logo {
  font-size: 2.5rem;
  color: #222;
  opacity: 0;
  transform: translateY(30px);
  animation: logo-fadein 1.2s cubic-bezier(0.4, 1.5, 0.5, 1) 0.2s forwards;
  letter-spacing: 0.1em;
}

@keyframes logo-fadein {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#main-content {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  min-height: 100vh;
}

#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 10px;
  height: 10px;
  background: rgba(79, 79, 79, 0.5);
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s ease-out;
  z-index: 999;
}
#mouse-stalker.is_active {
  top: -40px;
  left: -40px;
  width: 60px;
  height: 60px;
  transition: 0.2s;
  background: rgba(255, 90, 95, 0.5);
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  isolation: isolate;
  mix-blend-mode: difference;
}
.header .header-logo {
  font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "Yu Mincho", "游明朝", serif;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-left: 2rem;
}
.header .header-nav ul {
  font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "Yu Mincho", "游明朝", serif;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2rem;
  margin-right: 2rem;
}
.header .header-nav ul li a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header .header-nav ul li a:hover {
  opacity: 0.7;
}
.header .button.js-button {
  display: none;
}
@media (min-width: 992px) {
  .header {
    position: fixed;
    background: transparent;
  }
}
@media (max-width: 991.98px) {
  .header .header-nav ul {
    display: none !important;
  }
  .header .header-nav ul.is-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 31, 35, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    padding: 0;
    margin: 0;
  }
  .header .button.js-button {
    display: block;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    z-index: 1100;
    cursor: pointer;
  }
  .header .button.js-button .button-bar,
  .header .button.js-button span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  .header .button.js-button .button-bar {
    top: 10px;
  }
  .header .button.js-button span:nth-child(2) {
    top: 19px;
  }
  .header .button.js-button.active .button-bar {
    transform: rotate(45deg);
    top: 19px;
  }
  .header .button.js-button.active span:nth-child(2) {
    transform: rotate(-45deg);
    top: 19px;
  }
}
.header.menu-open {
  mix-blend-mode: normal;
}

.header.menu-open .button.js-button {
  position: fixed;
  top: 2.5rem;
  right: 1.5rem;
  z-index: 2000;
}

@media (max-width: 991.98px) {
  .header .button.js-button {
    position: fixed;
    top: 2.5rem;
    right: 1.5rem;
    z-index: 2000;
  }
}
.hero-section {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  top: 20%;
  color: #fff;
}
.hero-section .hero-content .hero-title {
  font-size: 5.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", sans-serif;
}
@media (max-width: 1200px) {
  .hero-section .hero-content .hero-title {
    font-size: 5rem;
  }
}
@media (max-width: 992px) {
  .hero-section .hero-content .hero-title {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-title {
    font-size: 3.6rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-title {
    font-size: 3rem;
  }
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.5rem;
  font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "Yu Mincho", "游明朝", serif;
  line-height: 2.2;
}

.mv01 {
  position: relative;
}
.mv01 .swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.mv01 .swiper .swiper-slide {
  width: 100%;
  height: 100vh;
}
.mv01 .swiper .swiper-slide .slide-media {
  width: 100%;
  height: 100%;
}
.mv01 .swiper .swiper-slide .slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mv01 .swiper .swiper-slide.swiper-slide-active .slide-media img {
  transform: scale(1.08);
}
.mv01 .swiper .swiper-slide.swiper-slide-active .slide-title {
  animation: mv01-fadeIn 2s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.story-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.story-section .story-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.story-section .story-slider,
.story-section .story-slider .swiper-wrapper,
.story-section .story-slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.story-section .story-slider {
  display: flex;
  justify-content: center;
  align-items: center;
}
.story-section .story-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.8);
  z-index: 1;
}
.story-section .story-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.story-section .story-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  position: relative;
}
.story-section .story-side-text {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem 1rem 2rem 2rem;
  font-size: 0.95rem;
  color: #222;
  text-align: left;
  z-index: 3;
  background: transparent;
  position: relative;
}
.story-section .story-section-paragraph {
  letter-spacing: 0.12em;
}
.story-section .story-center-custom {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4%;
}
@media (max-width: 768px) {
  .story-section .story-center-custom {
    height: 300px;
  }
}
.story-section .story-center-custom .story-swiper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-section .story-img-center {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
  /* 上下だけ波型、左右・四隅はカットしない */
  -webkit-clip-path: polygon(0% 0%, 10% 2%, 20% 0%, 30% 2%, 40% 0%, 50% 2%, 60% 0%, 70% 2%, 80% 0%, 90% 2%, 100% 0%, 100% 98%, 90% 100%, 80% 98%, 70% 100%, 60% 98%, 50% 100%, 40% 98%, 30% 100%, 20% 98%, 10% 100%, 0% 98%);
          clip-path: polygon(0% 0%, 10% 2%, 20% 0%, 30% 2%, 40% 0%, 50% 2%, 60% 0%, 70% 2%, 80% 0%, 90% 2%, 100% 0%, 100% 98%, 90% 100%, 80% 98%, 70% 100%, 60% 98%, 50% 100%, 40% 98%, 30% 100%, 20% 98%, 10% 100%, 0% 98%);
}
@media (max-width: 768px) {
  .story-section .story-img-center {
    -webkit-clip-path: path("M0,10 Q75,20 150,10 T300,10 T400,10 L400,190 Q325,180 250,190 T100,190 T0,190 Z");
            clip-path: path("M0,10 Q75,20 150,10 T300,10 T400,10 L400,190 Q325,180 250,190 T100,190 T0,190 Z");
  }
}
.story-section .story-left-abs {
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 20%;
  min-width: 120px;
  z-index: 2;
  text-align: left;
  line-height: 1.6rem;
}
.story-section .story-left-title {
  top: 18%;
  transform: translateY(-18%);
}
.story-section .story-left-text {
  top: 40%;
  transform: translateY(-40%);
}
.story-section .story-left-btn {
  top: 67%;
  transform: translateY(-70%);
}
.story-section .story-right-abs {
  position: absolute;
  right: 0;
  top: 25%;
  width: 30%;
  min-width: 120px;
  z-index: 2;
  text-align: left;
  transform: translateY(-50%);
  line-height: 3.5rem;
  letter-spacing: 0.1rem;
}

.story-section .story-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.story-section .story-title {
  position: absolute;
  font-size: 4rem;
  line-height: 6rem;
  letter-spacing: 1rem;
  text-align: left;
  width: 50%;
  top: 7%;
}

.story-section .story-side-text {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .story-desc {
    width: 17% !important;
  }
  .story-left-btn {
    top: 73% !important;
  }
  .story-right-abs {
    top: 30% !important;
    width: 35% !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .story-section .row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    position: relative;
  }
  .story-section .story-left {
    order: 1 !important;
  }
  .story-section .story-right {
    order: 2 !important;
  }
  .story-section .story-center {
    order: 3 !important;
    align-self: flex-end !important;
    margin-left: auto !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
  }
  .story-left-btn {
    top: 78% !important;
  }
  .story-right-abs {
    top: 8% !important;
    width: 50% !important;
    line-height: 2rem !important;
    right: -15% !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .story-section .story-title {
    font-size: 3rem !important;
    line-height: 5rem !important;
    letter-spacing: 0.08rem !important;
  }
  .story-section .story-left-text {
    top: 300px !important;
  }
  .story-section .story-left-abs {
    line-height: 2.6rem;
  }
  .story-desc {
    width: 38% !important;
  }
  .story-section .story-center {
    position: absolute;
    top: 70%;
    right: -5%;
    margin-right: 0 !important;
    max-width: 500px !important;
  }
  .story-left-btn {
    top: 600px !important;
    width: 30% !important;
  }
  .story-right-abs {
    top: 20% !important;
    width: 50% !important;
    line-height: 2rem !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .story-section .story-title {
    font-size: 2rem !important;
    line-height: 3rem !important;
    letter-spacing: 0.08rem !important;
    top: 2% !important;
  }
  .story-section .story-left-text {
    top: 600px !important;
    line-height: 1.3rem !important;
    left: 6%;
  }
  .story-section .story-left-abs {
    line-height: 2.6rem;
  }
  .story-section .story-center {
    position: absolute;
    top: 40%;
    left: 0;
    max-width: 600px !important;
    height: 100% !important;
  }
  .story-left-btn {
    top: 700px !important;
    width: 100% !important;
    left: 30% !important;
  }
  .story-right-abs {
    top: 12% !important;
    width: 60% !important;
    line-height: 2rem !important;
    right: -8% !important;
  }
  .story-left-abs {
    min-width: 500px !important;
  }
}
@media (max-width: 576px) {
  .story-section .story-title {
    font-size: 2rem !important;
    line-height: 3rem !important;
    letter-spacing: 0.08rem !important;
    top: 2% !important;
  }
  .story-section .story-left-text {
    top: 600px !important;
    line-height: 1.3rem !important;
    left: 15%;
  }
  .story-section .story-left-abs {
    line-height: 2.6rem;
  }
  .story-section .story-center {
    position: absolute;
    top: 40%;
    left: 5%;
    max-width: 450px !important;
    height: 100% !important;
  }
  .story-left-btn {
    top: 720px !important;
    width: 100% !important;
    left: 30% !important;
  }
  .story-right-abs {
    top: 10% !important;
    width: 50% !important;
    line-height: 1.3rem !important;
    right: -2% !important;
  }
  .story-left-abs {
    min-width: 380px !important;
  }
}
.about-section {
  position: relative;
  background: #1E1F23;
  min-height: 125vh;
  padding-bottom: 300px;
}
.about-section .container {
  position: relative;
  z-index: 2;
}
.about-section .about-title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 2rem;
}
.about-section .about-desc {
  color: #fff;
  font-size: 1.08rem;
  line-height: 2.1;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
}
.about-section .small {
  color: #fff;
  letter-spacing: 0.12em;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}
.about-section .row {
  min-height: 80vh;
  height: 100%;
}
.about-section .col-lg-6 {
  height: 100%;
  overflow: visible;
}
@media (max-width: 991.98px) {
  .about-section .col-lg-6 {
    width: 100%;
    margin-bottom: 2.5rem !important;
  }
}
@media (max-width: 768px) {
  .about-section .col-lg-6 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 1200px) and (min-width: 992px) {
  .about-section .col-lg-6 svg {
    width: 400px !important;
    overflow: visible;
  }
}
@media (max-width: 768px) and (min-width: 576px) {
  .about-section .col-lg-6 svg {
    width: 500px !important;
    overflow: visible;
  }
}
@media (max-width: 576px) {
  .about-section .col-lg-6 svg {
    width: 300px !important;
    overflow: visible;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.about-section .about-outline-text {
  position: relative;
  left: 50%;
  width: 100vw;
  min-width: 100vw;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 1;
}
.about-section .about-outline-text .svg-text {
  width: 100vw;
  min-width: 100vw;
  display: block;
  margin: 0 auto;
  height: clamp(80px, 20vw, 200px);
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .about-section .about-outline-text .svg-text {
    height: clamp(60px, 15vw, 120px);
  }
}
.about-section .about-outline-text .svg-text .base-text {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.about-section .about-outline-text .svg-text .glow-overlay {
  transition: opacity 0.2s ease;
}
.about-section .about-outline-text .svg-text:hover .glow-overlay {
  opacity: 1;
}
.about-section .about-svg-text {
  font-size: 22px;
}
@media (max-width: 1024px) {
  .about-section {
    padding-bottom: 2rem;
  }
}

.business .col {
  margin-bottom: 2rem;
}

.business a {
  margin-bottom: 1rem;
  display: block;
}

.business p {
  line-height: 2;
}

.viewmore-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.viewmore-row .viewmore-text,
.viewmore-row .viewmore-circle-btn {
  position: relative;
  z-index: 2;
}
.viewmore-row a:hover .viewmore-text, .viewmore-row a:focus .viewmore-text {
  color: #000 !important;
}
.viewmore-row a .viewmore-circle-btn svg polygon {
  transition: fill 0.3s;
}
.viewmore-row a:hover .viewmore-circle-btn svg polygon, .viewmore-row a:focus .viewmore-circle-btn svg polygon {
  fill: #000;
}

.viewmore-circle-btn {
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 1.5, 0.5, 1);
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin-left: 0;
  border: 2px solid #fff;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewmore-circle-btn:hover {
  width: 180px;
  background: #fff;
  border-radius: 30px;
  border-color: #fff;
  margin-left: -120px;
}
.viewmore-circle-btn .viewmore-text-inside {
  opacity: 0;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  transition: opacity 0.3s, color 0.3s;
}
.viewmore-circle-btn:hover .viewmore-text-inside {
  opacity: 1;
}
.viewmore-circle-btn svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: fill 0.3s;
}

.viewmore-row .viewmore-text {
  transition: color 0.3s, opacity 0.3s;
}

.viewmore-circle-btn:hover ~ .viewmore-text {
  color: transparent !important;
  opacity: 0;
}

.story-section .viewmore-row .viewmore-text {
  color: #000 !important;
}
.story-section .viewmore-row .viewmore-circle-btn {
  border: 2px solid #000 !important;
  background: none;
  transition: background 0.3s, border-color 0.3s;
}
.story-section .viewmore-row .viewmore-circle-btn svg polygon {
  fill: #000;
  transition: fill 0.3s;
}
.story-section .viewmore-row .viewmore-circle-btn:hover, .story-section .viewmore-row .viewmore-circle-btn:focus {
  background: #000 !important;
  border-color: #000 !important;
}
.story-section .viewmore-row .viewmore-circle-btn:hover svg polygon, .story-section .viewmore-row .viewmore-circle-btn:focus svg polygon {
  fill: #fff;
}

.about-section .viewmore-row .viewmore-text {
  color: #fff !important;
}
.about-section .viewmore-circle-btn {
  border: 2px solid #fff;
  background: none;
  transition: background 0.3s, border-color 0.3s;
}
.about-section .viewmore-circle-btn svg polygon {
  fill: #fff;
  transition: fill 0.3s;
}
.about-section .viewmore-circle-btn:hover, .about-section .viewmore-circle-btn:focus {
  background: #fff !important;
  border-color: #fff !important;
}
.about-section .viewmore-circle-btn:hover svg polygon, .about-section .viewmore-circle-btn:focus svg polygon {
  fill: #000;
}

.works .works-swiper {
  padding-bottom: 3rem;
}
.works .swiper-slide {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1.5px 6px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 1rem 2rem 1rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.works .swiper-pagination {
  position: static;
  margin-top: 1.5rem;
  text-align: center;
}
.works .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #222;
  opacity: 0.2;
  margin: 0 6px;
  transition: opacity 0.2s;
}
.works .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #222;
}
.works .viewmore-row .viewmore-text {
  color: #000 !important;
}
.works .viewmore-row .viewmore-circle-btn {
  border: 2px solid #000 !important;
  background: none;
  transition: background 0.3s, border-color 0.3s;
}
.works .viewmore-row .viewmore-circle-btn svg polygon {
  fill: #000;
  transition: fill 0.3s;
}
.works .viewmore-row .viewmore-circle-btn:hover, .works .viewmore-row .viewmore-circle-btn:focus {
  background: #000 !important;
  border-color: #000 !important;
}
.works .viewmore-row .viewmore-circle-btn:hover svg polygon, .works .viewmore-row .viewmore-circle-btn:focus svg polygon {
  fill: #fff;
}

.works .swiper-slide a {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.works .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.works .swiper-slide a img {
  transition: transform 0.4s cubic-bezier(0.4, 1.5, 0.5, 1);
}

.works .swiper-slide a:hover img {
  transform: scale(1.08);
}

.news {
  background: #F8F8F8;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.news .container {
  padding-right: 4rem;
}
.news .col-lg-3 {
  padding-right: 2.5rem;
  margin-bottom: 4rem;
}
.news .col-lg-9 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.news .viewmore-row {
  margin-top: 1rem;
}
.news h2 {
  font-size: 4rem;
  letter-spacing: -0.02em;
}
.news ul {
  padding-left: 0;
  padding-right: 0;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.news ul li {
  border-color: #bbb;
  font-size: 1.1rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .news ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.news ul li span {
  margin-right: 4rem;
}
.news ul li span:last-child {
  margin-right: 0;
}

.news ul li {
  display: flex;
  align-items: center;
}

.news .news-date {
  min-width: 10rem;
  text-align: left;
}

.news .news-cat {
  min-width: 9rem;
  text-align: left;
}

.news .news-body {
  flex: 1;
  text-align: left;
  margin-right: 0 !important;
}

.news .viewmore-row .viewmore-circle-btn:hover,
.news .viewmore-row .viewmore-circle-btn:focus {
  background: #000 !important;
  border-color: #000 !important;
}

.news .viewmore-row .viewmore-circle-btn:hover svg polygon,
.news .viewmore-row .viewmore-circle-btn:focus svg polygon {
  fill: #fff !important;
}

.news .viewmore-row .viewmore-text {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .news .viewmore-mobile {
    display: flex !important;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .news ul li {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  .news .news-date,
  .news .news-cat,
  .news .news-body {
    text-align: center !important;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .news .row,
  .news .col-12,
  .news ul {
    text-align: left !important;
  }
  .news ul li {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .news .news-date,
  .news .news-cat,
  .news .news-body {
    text-align: left !important;
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .news h2 {
    margin-bottom: 0 !important;
  }
  .news .viewmore-row {
    margin-top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .news .news-header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .news .news-header-row h2,
  .news .news-header-row .viewmore-row {
    margin-bottom: 0 !important;
    margin-top: 0;
  }
  .news .news-header-row h2 {
    font-size: 3rem;
  }
}
.message-section .viewmore-circle-btn {
  border: 2px solid #000;
  background: none;
  transition: background 0.3s, border-color 0.3s;
}

.message-section .viewmore-circle-btn svg polygon {
  fill: #000;
  transition: fill 0.3s;
}

.message-section .viewmore-circle-btn:hover,
.message-section .viewmore-circle-btn:focus {
  background: #000 !important;
  border-color: #000 !important;
}

.message-section .viewmore-circle-btn:hover svg polygon,
.message-section .viewmore-circle-btn:focus svg polygon {
  fill: #fff !important;
}

.message-underline {
  letter-spacing: 0.17em;
}

@media (max-width: 991.98px) {
  .message-section .message-image {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .message-section .message-text {
    font-size: 2rem;
    top: 8%;
    left: 2%;
    right: auto;
    transform: none;
    width: 80%;
    line-height: 1.3;
  }
  .message-section .viewmore-circle-btn {
    right: 5%;
    bottom: 5%;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }
}
@media (max-width: 991.98px) {
  .message-section .img-fluid {
    max-width: 80% !important;
  }
  .message-section .message-overlay-text {
    font-size: 1.4rem;
    right: -3.5rem !important;
  }
  .message-section .viewmore-circle-btn {
    width: 60px;
    height: 60px;
    right: 5.5rem !important;
  }
}
@media (max-width: 768px) {
  .message-section .img-fluid {
    max-width: 90% !important;
  }
  .message-section .message-overlay-text {
    right: -4rem !important;
  }
  .message-section .message-overlay-text .japanese-font {
    font-size: 1.5rem !important;
  }
  .message-section .viewmore-circle-btn {
    width: 80px !important;
    height: 80px !important;
    right: 0.8rem !important;
    bottom: 6% !important;
  }
}
@media (max-width: 576px) {
  .message-section .img-fluid {
    max-width: 72% !important;
  }
  .message-section .message-overlay-text {
    right: 0 !important;
  }
  .message-section .message-overlay-text .japanese-font {
    font-size: 1.5rem !important;
  }
  .message-section .viewmore-circle-btn {
    width: 80px !important;
    height: 80px !important;
    right: 5.8rem !important;
    bottom: 6% !important;
  }
}
.information-section .info-img-zoom {
  overflow: hidden;
  cursor: pointer;
}

.information-section .info-img-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 1.5, 0.5, 1);
  width: 100%;
  height: auto;
  display: block;
}

.information-section .info-img-zoom:hover img {
  transform: scale(1.1);
}

.message-section .message-img-zoom {
  overflow: hidden !important;
  position: relative;
  display: block;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.message-section .message-img-zoom img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 1.5, 0.5, 1);
  max-width: 100%;
}

.message-section .message-img-zoom:hover img {
  transform: scale(1.08);
}

.information-section .small,
.information-section h2,
.information-section .info-img-zoom,
.information-section .info-img-zoom img {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.information-section .mb-1,
.information-section .mb-3,
.information-section .mb-4,
.information-section .mb-5,
.information-section .py-5 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.information-section .viewmore-circle-btn {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  min-height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50%;
  transition: background 0.4s, border-color 0.4s, color 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.information-section .viewmore-circle-btn {
  color: #000;
}

.information-section .viewmore-circle-btn svg polygon {
  fill: currentColor;
  transition: fill 0.3s;
}

.information-section .viewmore-circle-btn:hover,
.information-section .viewmore-circle-btn:focus {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

.information-section .d-flex.align-items-center.gap-3 {
  gap: 1.5rem !important;
  align-items: center !important;
}

.information-section h2 {
  font-size: 2.7rem !important;
  line-height: 1.1 !important;
}

.blog-section .viewmore-circle-btn {
  border: 2px solid #000;
  background: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  color: #000 !important;
  /* デフォルトで黒 */
}

.blog-section .viewmore-circle-btn svg polygon {
  fill: currentColor;
  transition: fill 0.3s;
}

.blog-section .viewmore-circle-btn:hover,
.blog-section .viewmore-circle-btn:focus {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
  /* ホバー時は白 */
}

.blog-section .blog-img-zoom {
  overflow: hidden;
  border-radius: 8px;
}

.blog-section .blog-img-zoom img {
  transition: transform 0.4s cubic-bezier(0.4, 1.5, 0.5, 1);
  width: 100%;
  height: auto;
  display: block;
}

.blog-section .blog-img-zoom:hover img {
  transform: scale(1.08);
}

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

.blog-section a:hover,
.blog-section a:focus {
  color: #000;
  text-decoration: none;
}

.blog-section .english-font.mb-1.text-start {
  letter-spacing: 0.09em;
}

.contact {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .contact {
    height: auto;
  }
}
.contact .contact-main-btn {
  cursor: pointer;
  transition: color 0.3s;
}

.contact .contact-main-btn:hover .contact-arrow,
.contact .contact-main-btn:focus .contact-arrow {
  transform: translateX(18px);
}

.contact .contact-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 1.5, 0.5, 1);
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  .contact .display-1 {
    font-size: 2.5rem !important;
  }
  .contact .contact-arrow svg {
    width: 36px;
    height: 36px;
  }
}
.footer {
  background: #262626;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 100vh;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.footer .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer .footer-top-info,
.footer .row.mb-4,
.footer-bottom,
.footer-hr-wrap {
  padding-left: 4vw;
  padding-right: 4vw;
}

.footer-hr-wrap {
  box-sizing: border-box;
}

.footer .footer-top-info {
  margin-bottom: 2.5rem !important;
  gap: 3.5rem !important;
  font-size: 1.1rem;
}

.footer .row.mb-4 {
  min-height: 450px;
  justify-content: flex-start !important;
  gap: 3.5rem;
  margin-right: 0 !important;
}

.footer .row.mb-4 > div {
  min-width: 180px;
  font-size: 1.08rem;
  line-height: 2.1;
}

.footer hr {
  border-color: #bbb;
  opacity: 0.4;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding-left: 4vw;
  padding-right: 4vw;
}

.footer-bottom {
  min-height: 48px;
  position: relative;
}

.footer .footer-instagram {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
  padding-left: 4vw;
}

.footer .footer-bottom .english-font {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  font-size: 1rem;
  padding-right: 4vw;
}

@media (max-width: 991.98px) {
  .footer {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
  .footer .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .footer .footer-top-info {
    gap: 1.2rem !important;
    font-size: 1rem;
  }
  .footer .row.mb-4 {
    gap: 1.2rem;
    min-height: 220px;
  }
  .footer .row.mb-4 > div {
    min-width: 120px;
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .footer .footer-instagram,
  .footer .footer-bottom .english-font {
    position: static;
    margin: 0.5rem 0 0 0;
    display: inline-block;
  }
  .footer-bottom {
    min-height: 0;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .footer {
    height: auto !important;
    min-height: 600px;
  }
  .footer .footer-top-info {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.2rem !important;
    font-size: 1.5rem !important;
    margin-bottom: 3rem !important;
  }
  .footer .footer-top-info span {
    font-size: 1.5rem !important;
    display: block;
    width: 100%;
  }
  .footer .footer-top-info .japanese-font.fw-bold {
    font-size: 2.1rem !important;
    font-weight: bold !important;
    margin-bottom: 0.5rem;
  }
  .footer .footer-top-info .japanese-font:not(.fw-bold) {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem;
  }
  .footer .footer-top-info .english-font {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem;
  }
  .footer .row.mb-4 {
    display: none !important;
  }
  .footer-hr-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .footer-hr-wrap hr {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 120px !important;
    margin-top: 4rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: static !important;
  }
  .footer .footer-instagram {
    position: static !important;
    margin: 0 auto 1.2rem auto !important;
    padding-left: 0 !important;
    display: flex !important;
    justify-content: center !important;
  }
  .footer .footer-bottom .english-font {
    position: static !important;
    margin: 0 auto !important;
    padding-right: 0 !important;
    font-size: 1.2rem !important;
    text-align: center !important;
    display: block !important;
  }
}
.footer .row.mb-4 li {
  font-size: 0.9em;
  font-weight: 100;
}

.text-white {
  color: #fff !important;
}

.text-dark {
  color: #222 !important;
}

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

.fw-normal {
  font-weight: normal !important;
}

.ls-wide {
  letter-spacing: 0.12em !important;
}

.ls-normal {
  letter-spacing: normal !important;
}

.ls-wider {
  letter-spacing: 0.18em !important;
}

.fs-large {
  font-size: 2rem !important;
}

.fs-xlarge {
  font-size: 3rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.viewmore-mobile {
  display: none;
}

@media (min-width: 992px) {
  .viewmore-mobile {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .viewmore-desktop {
    display: none !important;
  }
  .viewmore-mobile {
    display: flex !important;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .viewmore-mobile a {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}/*# sourceMappingURL=style.css.map */