@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 16px;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* テンプレートが1180px以下の時 */
/* テンプレートが1500px以下の時 */
/*
mixinの使用記述

1040px以上
@include mq(pc) {
    スタイル
}
1024px以下
@include mq(tab) {
      スタイル
}
767px以下
@include mq(sp) {
      スタイル
}
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  line-height: 1.75;
}
body p {
  font-weight: 400;
}
body.is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.l-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 5%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 2%;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 5%;
  }
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-flex15 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.l-flex30 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.l-flex40 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.l-wideInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .l-wideInner {
    padding: 0 2%;
  }
}

.l-narrowInner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .l-narrowInner {
    padding: 0 2%;
  }
}
@media screen and (max-width: 767px) {
  .l-narrowInner {
    padding: 0 5%;
  }
}

@media screen and (max-width: 767px) {
  .l-column-sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-grid4-2-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 20px;
}

.l-grid4-2-1 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.l-grid4-2-1 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.l-grid4-2-1 > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.l-grid4-2-1 > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
@media screen and (max-width: 1024px) {
  .l-grid4-2-1 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .l-grid4-2-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.l-grid2-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 25px 40px;
}

.l-grid2-1 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.l-grid2-1 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 767px) {
  .l-grid2-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.c-infoBtn {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  border: 3px solid #231815;
  border-radius: 50px;
  margin: 0 auto;
}

.c-drawerIcon {
  width: 40px;
  height: 50px;
  position: relative;
  margin-top: 10px;
  z-index: 300;
}
.c-drawerIcon.media {
  position: fixed;
  right: 20px;
  top: 20px;
}
.c-drawerIcon .bar1,
.c-drawerIcon .bar2,
.c-drawerIcon .bar3 {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 4px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-drawerIcon .bar1 {
  top: 0;
}
.c-drawerIcon .bar2 {
  top: 10px;
}
.c-drawerIcon .bar3 {
  top: 20px;
}
.c-drawerIcon__text {
  position: absolute;
  content: "";
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.75;
  top: 20px;
}
.c-drawerIcon__text::before {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  content: "MENU";
}
.c-drawerIcon.is-open .bar1,
.c-drawerIcon.is-open .bar2 {
  background-color: #fff;
}
.c-drawerIcon.is-open .bar1 {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-drawerIcon.is-open .bar2 {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-drawerIcon.is-open .bar3 {
  opacity: 0;
}
.c-drawerIcon.is-open .c-drawerIcon__text::before {
  content: "CLOSE";
  color: #fff;
}

.c-mediaCategory {
  background-color: #727171;
  padding: 20px 0;
  text-align: center;
}
.c-mediaCategory-name {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 40px;
}
.c-pagination .page-numbers {
  display: none; /* ページ番号を非表示にする */
}
.c-pagination .prev.page-numbers,
.c-pagination .next.page-numbers {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 5px 25px;
}
@media (hover: hover) {
  .c-pagination .prev.page-numbers:hover,
  .c-pagination .next.page-numbers:hover {
    background: #bc1b21;
    color: #fff;
    border-color: #bc1b21;
  }
}

.c-title {
  text-align: center;
  margin-bottom: 40px;
}
.c-title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 1.75;
  font-weight: 800;
  color: #bc1b21;
}
@media screen and (max-width: 767px) {
  .c-title p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: 800;
  }
}

.c-bgColor {
  background-color: #f4e8d1;
}

.p-preparation {
  background-color: #bc1b21;
  height: 100vh;
  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;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-preparation {
    height: 100svh;
  }
}
.p-preparation h1 {
  max-width: 400px;
  margin: 0 auto;
}
.p-preparation h2 {
  color: #bc1b21;
  background-color: #fff;
  border-radius: 50px;
  font-size: 1.8125rem;
  letter-spacing: 0.02em;
  margin-top: 40px;
  padding: 5px 10px;
  width: 510px;
  font-weight: 700;
  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;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-preparation h2 {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    font-size: clamp(0.75rem, -2.159rem + 14.55vw, 1.25rem);
  }
}

.p-mv {
  position: relative;
  overflow-x: hidden;
  height: calc(100vh - 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: calc(100svh - 100px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-mv .splide {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.p-mv .splide__track, .p-mv .splide__slide {
  width: 100%;
  height: 100%;
}
.p-mv .splide__track img, .p-mv .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv .splide__slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv .splide {
    width: 100%;
    height: 50%;
  }
}
.p-mv__side {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(142deg, #961419 0%, #bc1b21 30%, #bc1b21 70%, #961419 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-mv__side {
    width: 100%;
    top: initial;
    bottom: 0;
    height: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    margin: 0 auto;
    max-width: 300px;
    width: 60%;
  }
}
.p-mv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 56px;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll {
    width: 40px;
  }
}
.p-mv .item01 {
  background-image: url(../img/mv01.webp);
}
.p-mv .item02 {
  background-image: url(../img/mv02.webp);
}
.p-mv .item03 {
  background-image: url(../img/mv03.webp);
}
.p-mv .item04 {
  background-image: url(../img/mv04.webp);
}

.p-read__content {
  width: 100%;
  padding: 0;
  gap: 2.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #fff;
  padding: 0 0 50px;
}
@media screen and (max-width: 767px) {
  .p-read__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-read__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52%;
          flex: 0 0 52%;
  padding-right: 2%;
  padding-top: 20px;
}
.p-read__text h2 {
  font-size: clamp(1.5rem, 0.917rem + 1.22vw, 2.375rem);
  line-height: 1.5789473684;
  font-weight: 800;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-read__text h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.75;
  }
}
.p-read__text h3 {
  font-size: clamp(1rem, 0.75rem + 0.52vw, 1.375rem);
  line-height: 1.5454545455;
  font-weight: 800;
  margin-bottom: 20px;
  color: #bc1b21;
}
@media screen and (max-width: 767px) {
  .p-read__text h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-read__text p {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-read__text {
    padding-left: 2%;
  }
}
.p-read__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  aspect-ratio: 634/888;
}
.p-read__img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-read__img {
    width: 100%;
  }
}
.p-read__imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.p-info {
  padding-bottom: 40px;
}
.p-info__content {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 60px;
}
.p-info.top {
  padding-bottom: 0;
}
.p-info.gray {
  background-color: #727171;
  color: #fff;
}
.p-info__title {
  text-align: center;
  margin-bottom: 40px;
}
.p-info__title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 1.75;
  font-weight: 800;
  color: #bc1b21;
}
@media screen and (max-width: 767px) {
  .p-info__title p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: 800;
  }
}
.p-info__title.white p {
  color: #fff;
}
.p-info__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.p-info__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-info figure {
  margin-bottom: 10px;
}
.p-info__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 15px;
}
.p-info__meta {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.95;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-links {
  text-align: center;
}
.p-links a {
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 0 10px;
  border-left: 1px solid #231815;
}
.p-links a:last-child {
  border-right: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .p-links a {
    border-left: none;
    border-top: 1px solid #231815;
    padding: 20px 0;
  }
  .p-links a:last-child {
    border-right: none;
    border-bottom: 1px solid #231815;
  }
}
@media screen and (max-width: 767px) {
  .p-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer {
  padding: 80px 0;
  background-color: #bc1b21;
}
.p-footer__content {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  gap: 20px;
}
.p-footer p {
  color: #fff;
}
.p-footer__logo {
  width: 80%;
  margin: 0 auto 40px;
}
.p-footer__logo a {
  display: block;
}
.p-footer__info {
  width: calc(50% - 10px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    width: 100%;
  }
}
.p-footer__map {
  width: calc(50% - 10px);
  height: auto;
  aspect-ratio: 710/375;
}
.p-footer__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__map {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    aspect-ratio: 375/280;
  }
}
.p-footer__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.95;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    text-align: center;
  }
}

.p-header {
  background-color: #bc1b21;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 140px;
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .p-header {
    height: 100px;
  }
}
.p-header.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header__logo {
  width: clamp(12.5rem, -2.937rem + 24.1vw, 18.75rem);
}
.p-header__logo a {
  display: block;
}
@media screen and (max-width: 1024px) {
  .p-header__logo {
    width: clamp(9.375rem, 1.657rem + 12.05vw, 12.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 150px;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
     -moz-column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
          column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
  height: 100%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    gap: 10px;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
     -moz-column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
          column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
  height: 100%;
}
.p-header__list li {
  height: 100%;
}
.p-header__list a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75;
  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;
  position: relative;
  padding-left: 18px;
  height: 100%;
}
.p-header__list a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15.6px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 1024px) {
  .p-header__list a {
    display: none;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.95;
  }
}

.p-header__contact {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0rem, -6.175rem + 9.64vw, 2.5rem);
}
@media screen and (max-width: 1024px) {
  .p-header__contact {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    gap: 0;
  }
}
.p-header__contact a {
  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: 767px) {
  .p-header__contact a {
    width: 50px;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
     -moz-column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
          column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
}

.p-drawerNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: 200;
  overflow: auto;
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .p-drawerNav {
    padding-top: 50px;
  }
}
.p-drawerNav__list {
  max-width: 500px;
  margin: 0 auto;
}
.p-drawerNav__list li {
  border-bottom: 1px solid #fff;
  position: relative;
}
.p-drawerNav__list li a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
  padding: 20px 0;
  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;
}
.p-drawerNav__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-drawerNav__list {
    width: 90%;
  }
  .p-drawerNav__list li a {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.p-drawerNav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-mediaHeader {
  position: fixed;
  right: 0;
  top: 0;
  width: 258px;
  background-color: #bc1b21;
  height: 100%;
  padding: 50px 10px 30px;
  overflow: auto;
  z-index: 200;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-mediaHeader {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-top: 60px;
  }
  .p-mediaHeader.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-mediaHeader__logo {
  margin-bottom: 30px;
}
.p-mediaHeader__logo a {
  display: block;
  text-align: center;
}
.p-mediaHeader__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: center;
}
.p-mediaHeader__list:not(:first-child) {
  margin-top: 30px;
  margin-bottom: 10px;
}
.p-mediaHeader__link {
  display: block;
  color: #fff;
}
.p-mediaHeader__link.surround {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 5px 0;
}
.p-mediaHeader__link.surround span {
  padding-left: 30px;
  position: relative;
}
.p-mediaHeader__link.surround span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-mediaHeader__link.surround.home span::before {
  background: url(../img/media-home.svg) no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.p-mediaHeader__link.surround.media span::before {
  background: url(../img/media-top.svg) no-repeat center center/contain;
  width: 17px;
  height: 24px;
}
.p-mediaHeader__link.current:not(:first-child) {
  background-color: #fff;
  color: #bc1b21;
}
.p-mediaHeader__link.current:not(:first-child).media span::before {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.p-mediaHeader__icon {
  margin-top: 140px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 0 12px;
}
.p-mediaHeader__icon a {
  width: 27px;
  height: 27px;
}
.p-mediaHeader__icon a img {
  width: 100%;
  height: 100%;
}
.p-mediaHeader__box {
background: linear-gradient(180deg, #AA1621 0%, #85111A 8%, #AA1621 40.91%, #B91824 66.31%, #B91824 100%);
  width: calc(100% + 20px);
  margin: 58px -10px 0;
  height: 20px;
}

.p-mediaSlide {
  position: fixed;
  height: 100%;
  width: 43%;
}
@media (max-width: 1180px) {
  .p-mediaSlide {
    position: relative;
    width: 100%;
    margin: 0 200px 0 0;
    width: calc(100vw - 200px);
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaSlide {
    margin: 0;
    width: 100%;
  }
}
.p-mediaSlide .splide {
  width: 100%;
  height: 100%;
}
.p-mediaSlide .splide__track, .p-mediaSlide .splide__slide {
  width: 100%;
  height: 100%;
  aspect-ratio: 838/1080;
}
.p-mediaSlide .splide__track img, .p-mediaSlide .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mediaSlide .splide__slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.p-mediaSlide__contents {
  position: absolute;
  bottom: 4%;
  left: 5%;
  max-width: 660px;
  width: 70%;
}
.p-mediaSlide__title {
  max-width: 660px;
}
.p-mediaSlide .item01 {
  background-image: url(../img/media-mv01.jpg);
}
.p-mediaSlide .item02 {
  background-image: url(../img/media-mv02.jpg);
}
.p-mediaSlide .item03 {
  background-image: url(../img/media-mv03.jpg);
}
.p-mediaSlide .item04 {
  background-image: url(../img/media-mv04.jpg);
}

.p-mediaContents {
  margin: 0 258px 0 43%;
}
@media (max-width: 1180px) {
  .p-mediaContents {
    margin: 0 258px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaContents {
    margin: 0;
    width: 100%;
  }
}
.p-mediaContents__img {
  padding: 20px 20px 0;
}
.p-mediaContents__img img {
  width: 100%;
  height: 100%;
}

.p-mediaFooter__contact {
  background-color: #3e3a39;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 8px 10px;
  color: #fff;
  border-radius: 10px;
  gap: 15px;
  margin-bottom: 20px;
}
.p-mediaFooter__contact:not(:first-child) {
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-mediaFooter__copy {
  margin-top: 30px;
  text-align: center;
  font-size: 0.6875rem;
  color: #fff;
  display: block;
}
.p-mediaFooter__address {
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
  font-style: normal;
}

.p-mediaRead {
  padding: 40px 0 0;
  background-color: #fff;
}
.p-mediaRead__text {
  margin: 0 auto 40px;
}
.p-mediaRead__text h2 {
  font-size: clamp(1.5rem, 0.917rem + 1.22vw, 2.375rem);
  line-height: 1.5789473684;
  font-weight: 800;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-mediaRead__text h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.75;
  }
}
.p-mediaRead__title {
  font-size: clamp(1.5rem, 0.917rem + 1.22vw, 2.375rem);
  line-height: 1.5789473684;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .p-mediaRead__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.p-single {
  padding-bottom: 100px;
}
.p-single.contact {
  padding-top: 40px;
}
.p-single *:not(.l-inner):not(h1) {
  margin-top: 10px;
}
.p-single h1 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .p-single h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.75;
  }
}
.p-single a {
  color: #005bac;
  text-decoration: underline;
}
.p-single ul li {
  list-style: disc;
}
.p-single ol li {
  list-style: decimal;
}
.p-single iframe,
.p-single video {
  width: 100%;
}

.p-about__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 53%;
          flex: 0 0 53%;
}
.p-about__text h3 {
  font-size: clamp(1rem, 0.75rem + 0.52vw, 1.375rem);
  line-height: 1.5454545455;
  font-weight: 800;
  margin-bottom: 20px;
  color: #bc1b21;
}
@media screen and (max-width: 767px) {
  .p-about__text h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-about__mainImg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 35px;
}
.p-about__gallery > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-about__gallery > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-about__gallery > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 1024px) {
  .p-about__gallery {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-about__gallery {
    gap: 20px;
  }
}
.p-about__gallery figure {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.p-about__gallery figure img {
  width: 100%;
  height: 100%;
}
.p-about__info {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__info {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.p-menu__content {
  padding-top: 100px;
}
.p-menu h3 {
  font-size: clamp(1rem, 0.75rem + 0.52vw, 1.375rem);
  line-height: 1.5454545455;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-menu h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
  }
}
.p-menu .splide__wrapper {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-menu .splide__wrapper {
    width: 90%;
  }
}
.p-menu .splide__slide {
  height: auto;
  aspect-ratio: 554/783;
}
.p-menu .splide__slide img {
  width: 100%;
  height: 100%;
}
.p-menu .splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-menu .splide__arrows {
    width: 105%;
  }
}
.p-menu .splide__arrows .splide__arrow {
  width: 50px;
  height: 50px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-menu .splide__arrows .splide__arrow {
    width: 40px;
    height: 40px;
    margin: 0;
  }
}
.p-menu .splide__arrows .splide__arrow--prev {
  position: initial;
  left: initial;
}
.p-menu .splide__arrows .splide__arrow--next {
  position: initial;
  right: initial;
}

@media screen and (min-width: 1025px) {
  .pc-hidden {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .tab-hidden {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-visible {
    display: block;
  }
}

@media screen and (max-width: 374px) {
  .sm-hidden {
    display: none;
  }
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}