@charset "utf-8";

.show-pc {
  display: block !important;
}

.show-pc-inline {
  display: inline !important;
}

.show-pc-inline-block {
  display: inline-block !important;
}

.show-pc-flex {
  display: flex !important;
}

.show-pc-inline-flex {
  display: inline-flex !important;
}

.show-pc-grid {
  display: grid !important;
}

.show-pc-table {
  display: table !important;
}

.show-pc-table-row {
  display: table-row !important;
}

.show-pc-table-cell {
  display: table-cell !important;
}

.show-tab,
.show-tab-inline,
.show-tab-inline-block,
.show-tab-flex,
.show-tab-inline-flex,
.show-tab-grid,
.show-tab-table,
.show-tab-table-row,
.show-tab-table-cell {
  display: none !important;
}

.show-sp,
.show-sp-inline,
.show-sp-inline-block,
.show-sp-flex,
.show-sp-inline-flex,
.show-sp-grid,
.show-sp-table,
.show-sp-table-row,
.show-sp-table-cell {
  display: none !important;
}

.hide-pc {
  display: none !important;
}

.hide-tab {
  display: block !important;
}

.hide-sp {
  display: block !important;
}

@media (max-width: 1024px) {
  .show-pc,
  .show-pc-inline,
  .show-pc-inline-block,
  .show-pc-flex,
  .show-pc-inline-flex,
  .show-pc-grid,
  .show-pc-table,
  .show-pc-table-row,
  .show-pc-table-cell {
    display: none !important;
  }

  .show-tab {
    display: block !important;
  }

  .show-tab-inline {
    display: inline !important;
  }

  .show-tab-inline-block {
    display: inline-block !important;
  }

  .show-tab-flex {
    display: flex !important;
  }

  .show-tab-inline-flex {
    display: inline-flex !important;
  }

  .show-tab-grid {
    display: grid !important;
  }

  .show-tab-table {
    display: table !important;
  }

  .show-tab-table-row {
    display: table-row !important;
  }

  .show-tab-table-cell {
    display: table-cell !important;
  }

  .hide-pc {
    display: initial !important;
  }

  .hide-tab {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .show-tab,
  .show-tab-inline,
  .show-tab-inline-block,
  .show-tab-flex,
  .show-tab-inline-flex,
  .show-tab-grid,
  .show-tab-table,
  .show-tab-table-row,
  .show-tab-table-cell {
    display: none !important;
  }

  .show-sp {
    display: block !important;
  }

  .show-sp-inline {
    display: inline !important;
  }

  .show-sp-inline-block {
    display: inline-block !important;
  }

  .show-sp-flex {
    display: flex !important;
  }

  .show-sp-inline-flex {
    display: inline-flex !important;
  }

  .show-sp-grid {
    display: grid !important;
  }

  .show-sp-table {
    display: table !important;
  }

  .show-sp-table-row {
    display: table-row !important;
  }

  .show-sp-table-cell {
    display: table-cell !important;
  }

  .hide-sp {
    display: none !important;
  }
}

:root {
  --color-text: #362929;
  --color-bg: #e9e3e1;
  --font-main: "Shippori Mincho B1", serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  width: 100%;
  overflow-x: hidden;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

main {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.65;
    letter-spacing: 0.07rem;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.bg-blue {
  background-image: url(../images/top/bgMain.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-dark-blue {
  background-image: url(../images/top/bgSub.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.font-strong {
  font-family: var(--font-strong);
}

@media screen and (max-width: 767px) {
  .bg-blue {
    background-image: url(../images/top/bgMainSp.webp);
  }
  .bg-dark-blue {
    background-image: url(../images/top/bgSubSp.webp);
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/bgMv.webp);
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 1.5s forwards;
  animation-delay: 1.1s;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    filter: blur(0);
  }

  to {
    opacity: 0;
    visibility: hidden;
    filter: blur(20px);
  }
}

@media screen and (max-width: 767px) {
  .loading {
    height: 100dvh;
  }

  .loading img {
    width: 15.7rem;
    height: auto;
  }
}
.bg-wrapper {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .mv {
    height: auto;
  }
}

.mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 3;
  height: 100dvh;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  padding: 6.25rem 6.25rem 0;
}

.mv__inner::after {
  content: "";
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 52%;
  aspect-ratio: 829 / 839;
  background-image: url(../images/top/imgMvItem02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: soft-light;
  z-index: 1;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.7s;
  opacity: 0;
  filter: blur(20px);
  transform: scale(1.3);
}

.mv__inner * {
  position: relative;
  z-index: 2;
}

.mv__contens {
  position: relative;
  z-index: 5;
}

.mv p {
  margin-top: 2.1875rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2.16;
  letter-spacing: 0.15rem;
}

.mv p .large {
  font-size: 1.375rem;
  letter-spacing: 0.275rem;
}

.mv__img {
  position: absolute;
  bottom: 0;
  right: 3%;
  width: 56%;
  aspect-ratio: 925 / 634;
  overflow: hidden;
}

.mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.fadeUP {
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.7s;
  opacity: 0;
  filter: blur(20px);
  transform: translateY(20px);
}

.fadeIn {
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.7s;
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.8);
}

.mv__btn {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.3);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@media screen and (min-aspect-ratio: 16 / 10) {
  .mv__img {
    width: 65%;
  }
}
@media screen and (max-width: 1024px) {
  .mv__inner {
    padding: 10rem 5rem 0;
  }
  .mv__img {
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    height: auto;
  }
  .mv__inner {
    padding: 3rem 0 0;
  }

  .mv__inner::after {
    top: 5rem;
    width: 100%;
    background-image: url(../images/top/imgMvItem02Sp.webp);
  }

  .mv__contens {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 3rem 1.8rem;
    width: calc(100% - 2rem);
    height: auto;
    background: transparent;
    transition: var(--transition-base);
  }

  .mv__inner.active .mv__contens {
    background: rgba(0, 6, 48, 0.7);
  }

  .mv h1 img {
    width: 12.2rem;
    position: relative;
  }

  .mv p {
    margin-top: 2rem;
    height: calc(1.5rem * 2.16 * 4);
    overflow: hidden;
    font-size: 1.2rem;
    letter-spacing: 0.24rem;
    transition: var(--transition-base);
  }

  .mv p .large {
    font-size: 2.2rem;
    letter-spacing: 0.44rem;
  }

  .mv__inner.active .mv__contens p {
    height: 43.2rem;
  }

  .mv__img {
    margin: 4rem auto 0 4rem;
    position: relative;
    width: calc(100% - 6rem);
  }

  .mv__btn {
    display: block;
    margin: 30rem auto 0;
    width: 16rem;
    padding: 1rem 0;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 6;
  }

  .mv__inner.active .mv__btn {
    opacity: 0 !important;
    pointer-events: none;
    visibility: hidden;
  }
}

.section {
  padding: 5rem 1.5rem 5rem 1.5rem;
}

.section--reverse {
  padding: 5rem 1.875rem 5rem 1.875rem;
}

.section__layout {
  max-width: 1270px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
}

.section--reverse .section__layout {
  max-width: 1166px;
  flex-direction: row-reverse;
  align-items: center;
}

.section__img {
  width: 25%;
  overflow: hidden;
}
.section__img img {
  width: 100%;
  height: auto;
}
.intro {
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}
.intro .section__img {
  width: 42%;
}

.intro .section__img img {
  width: 100%;
  height: auto;
}

.section__contents {
  flex: 1;
  margin-left: -4%;
}
.intro .section__contents {
  display: flex;
  justify-content: center;
}

.section__contents p {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2.57;
  letter-spacing: 0.175rem;
}
.intro .section__contents p {
  font-size: 1rem;
}
.section__contents p .large {
  font-size: 1.25rem;
  letter-spacing: 0.25rem;
}
.intro .section__contents p .large {
  font-size: 1.6rem;
}
.section--reverse .section__contents p {
  margin-top: 1.875rem;
  color: var(--color-text);
}

.section__img-block {
  width: 100%;
  margin-top: 11.875rem;
  padding: 0 1.5rem;
}

.section__img-block img {
  width: 100%;
  height: auto;
}

.section__contents-head {
  display: flex;
  align-items: center;
}

.section__contents-head h2 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
}

.section__contents-head small {
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.075rem;
  margin-left: 20%;
}

.section__contents-head small::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -120%;
  width: 100%;
  height: 0.0625rem;
  background-color: #362929;
  transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  .section {
    padding: 20rem 3rem 21rem 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .section {
    padding: 4rem 3rem 5rem;
  }

  .section--reverse {
    padding: 3rem 1.5rem 6rem;
  }

  .section__layout,
  .section--reverse .section__layout {
    flex-direction: column-reverse;
  }

  .section--reverse .section__layout {
    gap: 8rem;
  }
  .intro .section__layout {
    gap: 5rem;
  }
  .section__img,
  .intro .section__img {
    width: 100%;
  }

  .section__img-block {
    margin-top: 10rem;
    overflow: hidden;
  }

  .section__img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section__contents {
    margin-left: 0;
    flex: none;
  }
  .intro .section__contents {
    justify-content: start;
    width: 100%;
  }
  .section__contents p {
    letter-spacing: 0.14rem;
    line-height: 2.14;
    font-size: 1.4rem;
  }

  .section__contents p .large {
    font-size: 1.6rem;
    letter-spacing: 0.16rem;
  }
}

@media screen and (max-width: 767px) {
  .section__layout,
  .section--reverse .section__layout {
    gap: 3.2rem;
  }
  .intro .section__layout {
    gap: 3rem;
  }
  .story .section__contents p {
    letter-spacing: 0.07rem;
    line-height: 1.85;
  }

  .section__contents-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section__contents-head h2 {
    font-size: 3rem;
    letter-spacing: 0.15rem;
  }

  .section__contents-head small {
    display: block;
    width: 100%;
    text-align: right;
    margin-left: 0;
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
  }

  .section__contents-head small::before {
    left: 0;
    width: 62%;
  }

  .section__img img {
    width: 100%;
  }

  .section__img-block {
    margin-top: 6rem;
  }
}

.gallery {
  padding: 3.75rem 0 4.375rem;
}

.gallery__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
}

.gallery__slider {
  margin-top: 6.25rem;
  overflow: hidden;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 17.5rem;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.gallery__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-head {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.swiper-slide-head span {
  position: relative;
  padding-right: 37%;
}

.swiper-slide-head span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  width: 75%;
  height: 0.0625rem;
  background-color: var(--color-text);
  transform: translateY(-50%);
}

.swiper-slide-head strong {
  font-weight: 700;
}

.gallery__slider .swiper-slide-img {
  position: relative;
}

.gallery__slider .swiper-slide-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 15, 119, 0.4);
  opacity: 0;
  transition: var(--transition-base);
  opacity: 0;
  visibility: hidden;
}

.gallery__slider .swiper-slide-img:hover::after {
  opacity: 1;
  visibility: visible;
}

 .swiper-slide-desc {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 10;
}

.gallery__slider .swiper-slide-img:hover .swiper-slide-desc {
  opacity: 1;
  visibility: visible;
}

.gallery__nav {
  display: none;
}

@media screen and (max-width: 767px) {
  .gallery {
    padding: 6rem 0 5rem;
  }

  .gallery__title {
    font-size: 3rem;
    letter-spacing: 0.15rem;
  }

  .gallery__slider {
    margin-top: 4rem;
  }

  .gallery__slider .swiper-wrapper {
    transition-timing-function: ease;
  }

  .gallery__slider .swiper-slide {
    width: 100%;
    aspect-ratio: auto;
    text-align: center;
  }

  .gallery__slider .swiper-slide-img {
    overflow: hidden;
  }

  .gallery__slider:hover .swiper-slide-img::after {
    display: none;
  }

  .gallery__slider .swiper-slide .swiper-slide-img img {
    position: relative;
  }

  .gallery__slider .swiper-slide .swiper-slide-img img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: var(--transition-base);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
  }

  .gallery__slider
    .swiper-slide.swiper-slide-active
    .swiper-slide-img
    img::after {
    opacity: 1;
    visibility: visible;
  }

  .swiper-slide-desc {
    display: block;
  color:var(--color-text) !important;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.07rem;
    margin-bottom: 3rem;
    position: inherit;
    top: inherit;
    left: inherit;
    transform: none;
  }

  .gallery__slider .swiper-slide.swiper-slide-active .swiper-slide-desc {
    opacity: 1;
    visibility: visible;
  }

  .swiper-slide-head {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
  }

  .gallery__slider .swiper-slide.swiper-slide-active .swiper-slide-head {
    opacity: 1;
    visibility: visible;
  }

  .swiper-slide-head span {
    padding-right: 60%;
  }

  .swiper-slide-head span::after {
    width: 83%;
    right: 5%;
  }

  .gallery__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    z-index: 10;
    cursor: pointer;
  }

  .gallery__nav--prev {
    left: 2rem;
  }

  .gallery__nav--next {
    right: 2rem;
  }
}

.about {
  padding: 5rem 10rem 10rem 5rem !important;
  background: var(--color-bg) !important;
}

.about__layout {
  max-width: 1270px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}

.about__contents {
  flex: 1;
}

.about__contents-head {
  display: flex;
  align-items: center;
}

.about__contents-head h2 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  white-space: nowrap;
}

.about__contents-head small {
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.075rem;
  margin-left: 25%;
  white-space: nowrap;
}

.about__contents-head small::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -90%;
  width: 75%;
  height: 0.0625rem;
  background-color: #362929;
  transform: translateY(-50%);
}

.about__info {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.85rem 3.75rem;
  text-align: left;
}

.about__info dt {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.175rem;
  white-space: nowrap;
}

.about__info dd {
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.175rem;
}
.about__info dd span {
  display: block;
  text-align: right;
  font-size: 0.75rem;
}

.about__info-full {
  grid-column: 1 / -1;
}

.about__btn {
  display: block;
  width: 100%;
  max-width: 480px;
  margin-top: 3.75rem;
  padding: 0.75rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--color-text);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color var(--transition-base);
}

.about__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  z-index: -1;
}

.about__btn:hover {
  color: #fff;
}

.about__btn:hover::before {
  transform: scaleX(1);
}

.about__map {
  width: 35%;
  aspect-ratio: 394 / 279;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .about {
    padding: 6rem 1.5rem !important;
  }

  .about__layout {
    flex-direction: column;
    gap: 8rem;
  }

  .about__contents {
    width: 80%;
  }

  .about__map {
    width: 100%;
  }

  .about__btn {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .about__layout {
    gap: 3rem;
  }

  .about__contents {
    width: 100%;
  }

  .about__contents-head h2 {
    font-size: 3rem;
    letter-spacing: 0.15rem;
  }

  .about__contents-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__contents-head small {
    display: block;
    width: 100%;
    text-align: right;
    margin-left: 0;
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
  }

  .about__contents-head small::before {
    left: 0;
    width: 53%;
  }

  .about__info {
    margin-top: 2.5rem;
    gap: 1rem 1.8rem;
    padding: 0 1.5rem;
  }

  .about__info dt,
  .about__info dd {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
.about__info dd span{
  font-size: 1.2rem;
}
  .about__btn {
    margin-top: 3rem;
    width: calc(100% - 3rem);
    margin: 3rem auto 0;
    font-size: 1.2rem;
    padding: 1rem 0;
  }

  .about__map {
    padding: 0 1.5rem;
  }
}

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

.grecaptcha-badge{
  z-index: 9999;
}