@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 1730px) {
  html {
    font-size: 0.9248554913vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

body {
  font-family: "Noto Serif JP", sans-serif;
  color: #00042D;
  background-color: #F7F6F1;
}

@media screen and (max-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  max-width: 108.125rem;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.c-btn1 {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0.9375rem;
  background-color: #00042D;
  border-radius: 0.625rem;
  min-width: 13.5625rem;
  text-align: center;
}
.c-btn1:after {
  content: "";
  display: block;
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  background: url("../../assets/images/arrow1.svg") no-repeat center center/contain;
}

.c-btn2 {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0.9375rem;
  background-color: #00042D;
  border-radius: 0.625rem;
  min-width: 13.5625rem;
  text-align: center;
}
.c-btn2:before {
  content: "";
  display: block;
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  background: url("../../assets/images/arrow1.svg") no-repeat center center/contain;
  scale: -1 1;
}

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

.c-title__text {
  display: inline-block;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #00042D;
}
@media screen and (max-width: 768px) {
  .c-title__text {
    font-size: 1.625rem;
    padding-bottom: 0.5rem;
  }
}

.p-archive {
  margin-top: 12.5rem;
  padding-bottom: 14.375rem;
}
@media screen and (max-width: 768px) {
  .p-archive {
    margin-top: 3.75rem;
  }
}

.p-archive__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-archive__contents {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}

.p-archive__content {
  padding: 2.1875rem;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0.25rem 1.375rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 1.375rem 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 768px) {
  .p-archive__content {
    padding: 1.25rem;
    border-radius: 0.625rem;
  }
}
.p-archive__content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-archive__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 382/205;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-archive__img img {
    aspect-ratio: 320/205;
    border-radius: 0.625rem;
  }
}

.p-archive__title {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive__title {
    margin-bottom: 0.9375rem;
  }
}

.p-archive__date {
  font-size: 1.125rem;
  line-height: 1.9444444444;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-archive__date {
    margin-top: 1.25rem;
  }
}

.p-archive__text {
  margin-top: auto;
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.p-archive__pagination {
  margin-top: 5.125rem;
  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: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-archive__pagination {
    margin-top: 5.5rem;
  }
}

.page-numbers {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
  font-weight: 500;
  width: 1.5625rem;
  height: 1.5625rem;
  background-color: #fff;
  color: #00042D;
  text-align: center;
  border-radius: 50%;
}
.page-numbers.current {
  background-color: #00042D;
  color: #fff;
}
.page-numbers.dots {
  background-color: inherit;
  color: #B0B0B0;
}

.p-bread {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-bread {
    font-size: 0.9375rem;
  }
}

.p-bread__arrow {
  display: inline-block;
  width: 0.5rem;
  height: 0.8125rem;
  background: url(../images/arrow2.svg) no-repeat center center/contain;
  translate: 0 0.125rem;
  margin-inline: 0.5rem;
}

.p-definition {
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-definition {
    margin-top: 3.625rem;
  }
}

.p-definition__inner.l-inner {
  max-width: 108.125rem;
}

.p-definition__text {
  font-size: 1.4375rem;
  line-height: 1.5217391304;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-definition__text {
    font-size: 1rem;
    line-height: 1.3;
    margin-top: 1.25rem;
  }
}

.p-definition__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-definition__list {
    margin-top: 2.5rem;
  }
}

.p-definition__item {
  display: grid;
  grid-template-columns: auto 1fr;
}
@media screen and (max-width: 768px) {
  .p-definition__item {
    grid-template-columns: 1fr;
  }
}

.p-definition__titleSm {
  font-size: 1.875rem;
  line-height: 1.4333333333;
  font-weight: 700;
  color: #fff;
  background-color: #00042D;
  padding: 1.25rem;
  width: 21.875rem;
  min-height: 21.875rem;
  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;
}
@media screen and (max-width: 768px) {
  .p-definition__titleSm {
    font-size: 1.25rem;
    width: 100%;
    min-height: 0;
    min-height: initial;
    padding: 0.4375rem 1.25rem;
  }
}

.p-definition__body {
  padding: 2.1875rem 3.125rem 2.1875rem 6.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-definition__body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0.625rem;
  }
}

.p-definition__textSm {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-definition__textSm {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-definition__imgWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-definition__imgWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem;
  }
}

.p-definition__img {
  width: 30rem;
}
@media screen and (max-width: 768px) {
  .p-definition__img {
    width: 100%;
  }
}

.p-footer {
  padding-top: 7.1875rem;
  padding-bottom: 0.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding-top: 3.75rem;
    padding-bottom: 0.4375rem;
  }
}

.p-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-footer__bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.p-footer__bg picture {
  width: 100%;
  height: 100%;
}
.p-footer__bg picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}

.p-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-footer__info {
    gap: 1.25rem;
  }
}

.p-footer__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
}

.p-footer__logo {
  width: 15.6875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    width: 12.5rem;
    margin-inline: auto;
  }
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__address {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-footer__address {
    font-size: 0.9375rem;
    line-height: 2;
    text-align: center;
  }
}
.p-footer__address address {
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-footer__address address {
    letter-spacing: 0.03em;
  }
}

.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  max-height: 9.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-footer__list {
    max-height: none;
    max-height: initial;
    width: 100%;
    margin-left: 0;
  }
}

.p-footer__item {
  min-width: 15.3125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__item {
    min-width: 0;
    min-width: initial;
  }
}

.p-footer__link {
  display: block;
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-footer__link {
    font-size: 0.9375rem;
    line-height: 2.3333333333;
    letter-spacing: 0.1em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #fff;
    text-align: center;
  }
}

.p-footer__copy {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 4.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: 0.625rem;
    line-height: 3.5;
    letter-spacing: 0.1em;
    margin-top: 2.5rem;
  }
}

.p-fv__imgWrap {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-fv__imgWrap {
    grid-template-columns: 100%;
    gap: 0;
  }
}

.p-fv__imgSm {
  width: 33.5625rem;
  margin-top: auto;
}
.p-fv__imgSm img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 537/289;
  border-radius: 0 5rem 0 0;
}

.p-fv__imgLg {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 12.5rem;
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-fv__imgLg {
    grid-template-rows: auto 7.1875rem;
  }
}
.p-fv__imgLg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1338/706;
  border-radius: 0 0 0 5rem;
}
@media screen and (max-width: 768px) {
  .p-fv__imgLg img {
    aspect-ratio: 390/489;
    border-radius: 0 0 0 6.25rem;
  }
}

.p-fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 2.6875rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-right: 7.1875rem;
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    font-size: 1.5rem;
    margin-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-header__logo {
  width: 18.75rem;
  background-color: #fff;
  border-radius: 0 0 3.125rem 0;
  padding: 1.25rem 1.875rem;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 8.3125rem;
    padding: 0.8125rem;
    border-radius: 0 0 0.625rem 0;
  }
}
.p-header__logo.is-loaded {
  opacity: 1;
}
.p-header__logo a {
  display: block;
}
.p-header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__btn {
  width: 9.375rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #00042D;
  text-align: center;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  border-radius: 0 0 0 3.125rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (max-width: 768px) {
  .p-header__btn {
    width: 3.5625rem;
    border-radius: 0 0 0 0.625rem;
  }
}
.p-header__btn.is-loaded {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-header__btn .text {
  font-size: 1.4375rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-header__btn .text {
    font-size: 0.625rem;
  }
}

.p-header__lines {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-header__lines {
    gap: 0.625rem;
  }
}
.p-header__lines .line {
  display: block;
  width: 5rem;
  height: 0.0625rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-header__lines .line {
    width: 1.875rem;
  }
}

.p-header__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .9);
  z-index: 100;
  overflow-y: auto;
  padding-block: 10rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  visibility: hidden;
  -webkit-transition: visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .p-header__drawer {
    padding-top: 2.1875rem;
    padding-bottom: 5.3125rem;
  }
}
.p-header__drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}

.p-header__drawerInner {
  max-width: 73.3125rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 24.0625rem 1fr;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-header__drawerInner {
    grid-template-columns: 1fr;
    padding-block: 0;
  }
}

.p-header__drawerLogo {
  width: 18.0625rem;
}
@media screen and (max-width: 768px) {
  .p-header__drawerLogo {
    width: 8.9375rem;
    margin-left: 2.1875rem;
  }
}
.p-header__drawerLogo a {
  display: block;
}
.p-header__drawerLogo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  border-left: 1px solid #00042D;
  padding-left: 9rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    padding-left: 2.25rem;
    padding-right: 6.25rem;
    border-left: none;
    margin-top: 2.5rem;
  }
}

.p-header__link {
  display: inline-block;
  padding-block: 1.5625rem;
  font-size: 1.375rem;
  line-height: 1.5909090909;
  letter-spacing: 0.1em;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p-header__link {
    font-size: 0.875rem;
    line-height: 2.5;
    padding-block: 0.1875rem;
  }
}

.p-header__info {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4.25rem;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-header__info {
    grid-template-columns: 1fr;
    margin-top: 2.625rem;
    gap: 2.0625rem;
  }
}

.p-header__infoWrap {
  font-size: 1.25rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-header__infoWrap {
    font-size: 0.875rem;
    letter-spacing: 0.03em;
  }
}
.p-header__infoWrap p {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-header__infoWrap p {
    letter-spacing: 0.03em;
  }
}
.p-header__infoWrap address {
  letter-spacing: 0.03em;
  font-style: normal;
}

.p-header__close {
  display: block;
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 3.4375rem;
  right: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-header__close {
    top: 2.1875rem;
    right: 7.6875rem;
  }
}
.p-header__close .line {
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #00042D;
}
.p-header__close .line:nth-child(1) {
  -webkit-transform: translateY(0.0625rem) rotate(45deg);
          transform: translateY(0.0625rem) rotate(45deg);
}
.p-header__close .line:nth-child(2) {
  -webkit-transform: translateY(-0.0625rem) rotate(-45deg);
          transform: translateY(-0.0625rem) rotate(-45deg);
}

.p-info {
  margin-top: 9.375rem;
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 768px) {
  .p-info {
    margin-top: 4.75rem;
  }
}
.p-info .p-info__wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 9.8125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-info .p-info__wrap {
    grid-template-columns: 1fr;
  }
}
.p-info .p-info__wrap:before, .p-info .p-info__wrap:after {
  content: "";
  display: block;
  width: 81.1904761905%;
  height: 5.9375rem;
  background-color: #00042D;
  position: absolute;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .p-info .p-info__wrap:before, .p-info .p-info__wrap:after {
    height: 2.8125rem;
    width: 100%;
  }
}
.p-info .p-info__wrap:before {
  top: 0;
  translate: -50% -100%;
}
.p-info .p-info__wrap:after {
  bottom: 0;
  translate: -50% 100%;
}
.p-info .p-info__slideWrap {
  max-width: 46.25rem;
}
@media screen and (max-width: 768px) {
  .p-info .p-info__slideWrap {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .p-info .splide {
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) {
  .p-info .splide:first-child {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .p-info .splide:first-child:after {
    content: "";
    display: block;
    width: 92.3076923077%;
    height: 2.8125rem;
    background-color: #00042D;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-info .splide:last-child {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-info .splide .p-info__img img,
.p-info .splide .p-info__img iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 740/460;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-info .p-info__contents {
  padding: 5rem 3.5625rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-info .p-info__contents {
    padding: 2.125rem 0.9375rem 4.375rem;
    margin-inline: calc(50% - 50vw);
    -webkit-padding-start: calc(50vw - 50%);
            padding-inline-start: calc(50vw - 50%);
    margin-top: 2.8125rem;
  }
}
.p-info .p-info__logo {
  width: 15.1875rem;
  margin-inline: auto;
}
.p-info .p-info__list {
  margin-top: 4.125rem;
  max-width: 47.5rem;
}
.p-info .p-info__item {
  padding: 1.125rem 0.8125rem;
  border-bottom: 1px solid #D0D0D0;
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-info .p-info__item {
    grid-template-columns: 5.9375rem 1fr;
    padding: 0.75rem 0;
  }
}
.p-info .p-info__item:first-child {
  border-top: 1px solid #D0D0D0;
}
.p-info .p-info__itemTitle,
.p-info .p-info__itemText {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-info .p-info__itemTitle,
  .p-info .p-info__itemText {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.p-info .p-info__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.125rem;
}
.p-info .p-info__links a {
  display: block;
  width: 3.375rem;
  height: auto;
  aspect-ratio: 1;
}
.p-info .p-info__links a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-intro__title {
  text-align: center;
  font-size: 2.6875rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-intro__title {
    font-size: 1.5rem;
  }
}

.p-intro__slideWrap {
  margin-top: 6.5625rem;
  display: grid;
  grid-template-columns: auto auto;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-intro__slideWrap {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 4.375rem;
  }
}
.p-intro__slideWrap .splide:nth-child(1) {
  width: 47.875rem;
  margin-top: 11.25rem;
}
@media screen and (max-width: 768px) {
  .p-intro__slideWrap .splide:nth-child(1) {
    width: 100%;
    margin-top: 6rem;
  }
}

.p-intero__img img {
  aspect-ratio: 766/551;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-intero__img img {
    aspect-ratio: 176/240;
  }
}

.p-lead {
  padding-top: 3.5rem;
  padding-bottom: 4.3125rem;
  background-color: #00042D;
}
@media screen and (max-width: 768px) {
  .p-lead {
    padding-top: 3.75rem;
    padding-bottom: 3.4375rem;
    padding-left: 1.875rem;
    position: relative;
  }
}

.p-lead__logo {
  display: block;
  font-size: 4.84375vw;
  line-height: 1.4408602151;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: rgba(255, 255, 255, .2);
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-lead__logo {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 1.625rem;
    line-height: 1.4230769231;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
  }
}

.p-lead__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10.625rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: auto;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-lead__content {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    gap: 1.875rem;
    margin-top: 0;
  }
}

.p-lead__title {
  font-size: 2.0625rem;
  line-height: 1.4242424242;
  letter-spacing: 0.5em;
  font-weight: 500;
  margin-left: auto;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.p-lead__title.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .p-lead__title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
    font-weight: 700;
    margin-left: 0;
  }
}

.p-lead__text {
  font-size: 1rem;
  line-height: 4.6;
  letter-spacing: 0.5em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.p-lead__text.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .p-lead__text {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-links {
  overflow: hidden;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  height: 100vh;
  width: 7.8125vw;
  min-width: 3.125rem;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-links {
    width: 22.8205128205%;
  }
}
.p-links.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.p-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: marquee-vertical 20s linear infinite;
          animation: marquee-vertical 20s linear infinite;
}
.p-links__list:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.p-links__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-links__item a {
  display: block;
  width: 100%;
}
.p-links__item a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@-webkit-keyframes marquee-vertical {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-33.333%);
            transform: translateY(-33.333%);
  }
}

@keyframes marquee-vertical {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-33.333%);
            transform: translateY(-33.333%);
  }
}
.p-main {
  position: relative;
  overflow: hidden;
}

.p-main__wrap {
  position: relative;
}

.p-news {
  padding-top: 7.875rem;
  padding-bottom: 10.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-news {
    padding-top: 3.75rem;
    padding-bottom: 4.6875rem;
  }
}

.p-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.125rem;
}
@media screen and (max-width: 768px) {
  .p-news__list {
    gap: 1.0625rem;
  }
}

.p-news__img {
  width: 100%;
}
.p-news__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news__title {
  margin-top: 1.4375rem;
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-news__title {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-post {
  margin-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-post {
    margin-top: 3.4375rem;
    padding-bottom: 5.3125rem;
  }
}

.p-post__title {
  font-size: 3.125rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-post__title {
    font-size: 1.25rem;
  }
}

.p-post__date {
  display: block;
  font-size: 1.125rem;
  line-height: 1.9444444444;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.p-post__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.125rem;
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .p-post__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.25rem;
  }
}

.p-post__thumbnail {
  width: 100%;
}
.p-post__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 865/649;
}
@media screen and (max-width: 768px) {
  .p-post__thumbnail img {
    aspect-ratio: 425/318;
  }
}

.p-post__wrapSm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-post__wrapSm {
    gap: 0.75rem;
    margin-top: 0.6875rem;
  }
}

.p-post__thumbnailSm {
  width: 13.1875rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-post__thumbnailSm {
    width: 100%;
  }
}
.p-post__thumbnailSm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 161/121;
}
@media screen and (max-width: 768px) {
  .p-post__thumbnailSm img {
    aspect-ratio: 206/154;
  }
}

.p-post__text {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 3.75rem;
  max-width: 71.25rem;
}
@media screen and (max-width: 768px) {
  .p-post__text {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-post__pdItem a {
  text-decoration: underline;
  color: blue;
}

.p-post__btn {
  margin-top: 4.375rem;
  text-align: center;
}

.p-subFv {
  height: 34.1875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-subFv {
    height: 17.9375rem;
  }
}

.p-subFv__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  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;
  text-align: center;
}

.p-subFv__titleJa {
  font-size: 3.125rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-subFv__titleJa {
    font-size: 1.625rem;
    letter-spacing: 0.1em;
  }
}

.p-subFv__titleEn {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-subFv__titleEn {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}

.p-subFv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-subFv__bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  position: absolute;
}
.p-subFv__bg picture {
  width: 100%;
  height: 100%;
}
.p-subFv__bg picture img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1920/547;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-test {
  color: red;
  font-size: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.u-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
