/* --------------------------------------------------
  mv
-------------------------------------------------- */
.p-mv {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-mv__inner {
  position: relative;
  width: calc(100% - 8rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    width: calc(100% - 2rem);
  }
}
.p-mv__slider video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: calc(100vh - 12rem);
  max-height: 82.4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__slider video {
    height: calc(100svh - 9rem);
    max-height: 77.4rem;
  }
}
@media screen and (orientation: landscape) and (max-width: 767px) {
  .p-mv__slider video {
    height: 100%;
  }
}
.p-mv__ttl {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 2s ease-out;
  transition: opacity 2s ease-out;
  font-size: clamp(3.2rem, 2.22vw, 4rem);
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
  text-align: center;
}
.p-mv__ttl.is-show {
  opacity: 1;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: blur(0.8rem);
            filter: blur(0.8rem);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  45% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: blur(0.8rem);
            filter: blur(0.8rem);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  45% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
/* --------------------------------------------------
  news
-------------------------------------------------- */
.p-news {
  padding-top: 15.5rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-top: 10.5rem;
    padding-bottom: 12rem;
  }
}
.p-news__inner {
  display: grid;
  grid-template-columns: 20rem 84.7rem;
  grid-template-rows: 1fr 1fr;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-template-areas: "ttl list" "btn list";
}
.p-news__ttl {
  grid-area: ttl;
  align-self: start;
}
.p-news__btn {
  grid-area: btn;
  align-self: end;
  padding-bottom: 3.8rem;
}
.p-news__list {
  grid-area: list;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-template-areas: "ttl" "list" "btn";
  }
  .p-news__btn {
    -webkit-align-self: end;
        -ms-flex-item-align: end;
            align-self: end;
    padding-bottom: 3.8rem;
  }
  .p-news__list {
    margin-top: 6rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(17, 52, 69, 0.1);
  }
}

/* --------------------------------------------------
  about
-------------------------------------------------- */
.p-about__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-left: 13.9rem;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
  }
}
.p-about__left {
  font-family: "Shippori Mincho B1", serif;
  padding-top: 16.5rem;
}
.p-about__left p {
  line-height: 5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-about__left {
    padding-top: 11rem;
  }
  .p-about__left p {
    letter-spacing: 0.07em;
    white-space: nowrap;
  }
}
.p-about__right {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 42rem;
  padding-right: 4rem;
  padding-top: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-about__right {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0 6.7rem;
    width: 100%;
    padding-right: 0;
    padding-top: 2;
  }
}
.p-about__right::before {
  position: absolute;
  content: "";
  background: #E0BF5C;
  width: 1px;
  height: 15rem;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-about__right::before {
    height: 12.3rem;
    right: 0.3rem;
  }
}
.p-about__img {
  width: 14.9rem;
}
.p-about__img:first-child {
  padding-top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    width: 12.2rem;
  }
  .p-about__img:first-child {
    padding-top: 12.5rem;
  }
}

/* --------------------------------------------------
  group
-------------------------------------------------- */
.p-group {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-group {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
.p-group-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-group-heading__ttl {
  margin-bottom: 4rem;
}
.p-group-heading__txt {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 2.5;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-group-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-group-heading__ttl {
    margin-bottom: 6rem;
  }
  .p-group-heading__txt {
    text-align: left;
  }
}
.p-group-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-group-btn__icn {
  width: 11rem;
  padding: 4rem 0 2.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-group-btn__icn {
    max-width: 110px;
    padding: 3.8rem 0 2rem;
  }
}
.p-group-btn__txt dt {
  position: relative;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  line-height: 2.5;
  border-bottom: 1px solid rgba(17, 52, 69, 0.3);
  padding-top: 1.2rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.p-group-btn__txt dt::before {
  position: absolute;
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 1px #113445;
  border-right: solid 1px #113445;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.p-group-btn__txt dd {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: rgba(17, 52, 69, 0.5);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.p-group__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 calc((100% - 104rem) / 3);
}
.p-group__list li {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .p-group__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    padding-top: 4rem;
  }
  .p-group__list li {
    width: 100%;
    padding: 0 2.5rem;
  }
}
.p-group__list a {
  display: block;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .p-group__list a:hover .p-group-btn__txt dt {
    border-bottom-color: #113445;
  }
  .p-group__list a:hover .p-group-btn__txt dt::before {
    opacity: 1;
  }
  .p-group__list a:hover .p-group-btn__txt dd {
    color: #113445;
  }
}

/* --------------------------------------------------
  loop txt
-------------------------------------------------- */
.p-loop {
  overflow: hidden;
}
.p-loop__txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: calc(50% - 50vw);
}
.p-loop__item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  white-space: nowrap;
  font-size: 14rem;
  color: #113445;
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  padding-right: 4rem;
  -webkit-animation: flowing 40s linear infinite;
          animation: flowing 40s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-loop__item {
    font-size: 6rem;
  }
}

@-webkit-keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* --------------------------------------------------
  footer-btn
-------------------------------------------------- */
.p-footer-btn {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .p-footer-btn {
    padding-top: 12rem;
    padding-bottom: 17rem;
  }
}
.p-footer-btn::before {
  position: absolute;
  content: "";
  background: #E0BF5C;
  width: 1px;
  height: 20rem;
  right: 5.6rem;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-footer-btn::before {
    right: 4rem;
  }
}
.p-footer-btn__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 100rem;
  margin: 0 auto;
}
.p-footer-btn__inner::before {
  position: absolute;
  content: "";
  background: #E0BF5C;
  width: 1px;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-footer-btn__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: inherit;
  }
  .p-footer-btn__inner::before {
    width: 100%;
    height: 1px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.p-footer-btn__item {
  width: 50%;
}
.p-footer-btn__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgb(255, 255, 255);
  height: 22rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .p-footer-btn__item a:hover {
    background-color: rgba(217, 217, 217, 0.15);
  }
}
@media screen and (max-width: 767px) {
  .p-footer-btn__item {
    width: 100%;
  }
}
.p-footer-btn__txt01 {
  font-size: 6.4rem;
  letter-spacing: 0;
  line-height: 1;
}
.p-footer-btn__txt02 {
  color: #E0BF5C;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-top: 2.6rem;
}
/*# sourceMappingURL=index.css.map */