@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版) に変換 
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  color: #231815;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body.is-open {
  overflow: hidden;
}

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

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

@media screen and (max-width: 767px) {
  main {
    overflow-x: clip;
  }
}
main.page {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  main.page {
    margin-top: 80px;
  }
}

.l-inner {
  max-width: 1200px;
  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-grid3-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 25px 40px;
}

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

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

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

.c-infoBtn {
  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: 2px solid #fff;
  border-radius: 50px;
  margin: 0 auto;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-infoBtn:hover {
  background-color: #fff;
  color: #5fc1c7;
}
@media screen and (max-width: 767px) {
  .c-infoBtn {
    max-width: 240px;
    padding: 6px 12px;
  }
}

.c-drawerIcon {
  width: 38px;
  height: 40px;
  position: relative;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
}
.c-drawerIcon.is-visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .c-drawerIcon {
    position: fixed;
    top: 20px;
    right: 20px;
  }
}
.c-drawerIcon.media {
  position: fixed;
  right: 20px;
  top: 20px;
  opacity: 1;
  visibility: visible;
}
.c-drawerIcon .bar1,
.c-drawerIcon .bar2,
.c-drawerIcon .bar3 {
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 4px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .c-drawerIcon .bar1,
  .c-drawerIcon .bar2,
  .c-drawerIcon .bar3 {
    background-color: #3e3a39;
  }
}
.c-drawerIcon .bar1 {
  top: 4px;
}
.c-drawerIcon .bar2 {
  top: 18px;
}
.c-drawerIcon .bar3 {
  top: 33px;
}
.c-drawerIcon.is-open .bar1,
.c-drawerIcon.is-open .bar2 {
  background-color: #fff;
}
.c-drawerIcon.is-open .bar1 {
  top: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-drawerIcon.is-open .bar2 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-drawerIcon.is-open .bar3 {
  display: none;
}

.c-mediaCategory {
  background-color: #5fc1c7;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.c-mediaCategory-name {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-mediaCategory-name {
    font-size: 16px;
  }
}

.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; /* ページ番号を非表示にする */
  color: #fff;
}
.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 #fff;
  border-radius: 50px;
  padding: 5px 25px;
}
@media (hover: hover) {
  .c-pagination .prev.page-numbers:hover,
  .c-pagination .next.page-numbers:hover {
    background: #fff;
    color: #5fc1c7;
  }
}

.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: #fff;
}

.c-pageHead {
  width: 100%;
}
.c-pageHead img {
  width: 100%;
}

.c-btn {
  border: 1px solid #231815;
  border-radius: 16px;
  padding: 10px 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .c-btn {
    margin-top: 20px;
  }
}
.c-btn:hover {
  background-color: #231815;
  color: #fff;
}

.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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.p-mv__wrap {
  position: relative;
  overflow-x: hidden;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .p-mv__wrap {
    height: 100svh;
  }
}
.p-mv__inner {
  height: 100%;
  position: relative;
  padding-left: calc(30px + 5%);
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    padding-left: 5%;
  }
}
.p-mv__img {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../img/mv-img.webp);
  background-position: 66% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: inset(0 0 100% 0);
  -webkit-animation: revealFromTop 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
          animation: revealFromTop 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@-webkit-keyframes revealFromTop {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes revealFromTop {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.p-mv__content {
  position: absolute;
  top: 40%;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    top: 30%;
    left: 6%;
  }
}
.p-mv__logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-mv__logo {
    width: 60%;
  }
}
.p-mv__text {
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 20px;
  }
}

.p-read {
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .p-read {
    padding-block: 40px;
  }
}
.p-read h2 {
  font-size: 40px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-read h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-read p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-read p {
    text-align: left;
    margin-bottom: 20px;
  }
}
.p-read__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-read__imgs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-read__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-read__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 60%;
     object-position: 50% 60%;
}
@media screen and (max-width: 767px) {
  .p-read__img {
    height: 170px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.p-info {
  padding-bottom: 40px;
}
.p-info.top {
  background-color: #5fc1c7;
  padding-block: 60px 80px;
}
@media screen and (max-width: 767px) {
  .p-info.top {
    padding-block: 40px;
  }
}
.p-info.gray {
  background-color: #727171;
  color: #fff;
}
.p-info__title {
  text-align: center;
  margin-bottom: 40px;
  color: #231815;
}
.p-info__title p {
  font-size: 40px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-info__title p {
    font-size: 26px;
  }
}
.p-info__title h2 {
  color: #fff;
}
.p-info__title.sub p {
  color: #5fc1c7;
  font-size: 45px;
}
@media screen and (max-width: 767px) {
  .p-info__title.sub p {
    font-size: 30px;
  }
}
.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: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 323/217;
}
.p-info figure {
  margin-bottom: 10px;
}
.p-info__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 15px;
  color: #fff;
}
.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;
  color: #fff;
}

.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-block: 30px 0;
  background-color: #3e3a39;
}
.p-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-footer__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-footer__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-footer__logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 50%;
    margin-bottom: 20px;
  }
}
.p-footer__address {
  font-style: normal;
  color: #fff;
}
.p-footer p {
  color: #fff;
  margin-bottom: 20px;
}
.p-footer__link-list {
  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;
  gap: 40px;
  margin-bottom: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-footer__link-list {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-footer__link-list.--media {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
  margin-top: 40px;
}
.p-footer__link-item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-footer__link-item img {
  height: 40px;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .p-footer__link-item img {
    height: 30px;
  }
}
.p-footer__link-item:hover {
  opacity: 0.7;
}
.p-footer__group {
  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;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-footer__group-item {
  color: #fff;
  background-color: #9fa0a0;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-footer__group-item.no-link:hover {
  color: #fff;
  background-color: #9fa0a0;
}
.p-footer__group-item:hover {
  color: #9fa0a0;
  background-color: #fff;
}
.p-footer__copy {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 12px;
  border-top: 1px solid #fff;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-block: 20px;
}

.p-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 100px;
  -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: 80px;
  }
}
.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 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: 160px;
  }
}

.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: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  height: 100%;
  color: #231815;
}
@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: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    display: none;
  }
}
.p-header__list li {
  height: 100%;
}
.p-header__list a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  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;
  height: 100%;
}
.p-header__list a span {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.p-header__list a.is-active span {
  border-bottom: 2px solid #231815;
}
.p-header__list a:hover span {
  border-bottom: 2px solid #231815;
}
@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: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@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;
  width: 38px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .p-header__contact a {
    width: 50px;
  }
}
.p-header__contact a img {
  width: 100%;
  height: 100%;
}

.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: 300px;
  background-color: #3e3a39;
  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: 80px;
  }
  .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: #231815;
}
.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: -webkit-gradient(linear, left bottom, left top, color-stop(20.02%, #3e3a39), color-stop(59.34%, #383636), color-stop(68.88%, #312E2E), color-stop(77.06%, #2D2B2B), color-stop(83.88%, #2B2929), color-stop(93.78%, #292727), color-stop(99.44%, #252324));
  background: linear-gradient(0deg, #3e3a39 20.02%, #383636 59.34%, #312E2E 68.88%, #2D2B2B 77.06%, #2B2929 83.88%, #292727 93.78%, #252324 99.44%);
  width: calc(100% + 20px);
  margin: 58px -10px 0;
  height: 20px;
}

.p-mediaSide {
  position: fixed;
  height: 100%;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1180px) {
  .p-mediaSide {
    position: relative;
    width: 100%;
    margin: 0 264px 0 0;
    width: calc(100vw - 264px);
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaSide {
    margin: 0;
    width: 100%;
    height: 50svh;
  }
}
.p-mediaSide figure {
  height: 100%;
}
.p-mediaSide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
}
.p-mediaSide__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 54%;
  height: auto;
}

.p-mediaContents {
  margin: 0 300px 0 30%;
}
@media (max-width: 1180px) {
  .p-mediaContents {
    margin: 0 300px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaContents {
    margin: 0;
    width: 100%;
  }
}
.p-mediaContents__img {
  padding-block: 40px 30px;
}
@media screen and (max-width: 767px) {
  .p-mediaContents__img {
    padding-block: 20px 10px;
  }
}
.p-mediaContents__img img {
  width: 100%;
  height: 100%;
}
.p-mediaContents__title {
  text-align: center;
  margin-bottom: 40px;
}
.p-mediaContents__title p {
  font-size: 40px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-mediaContents__title p {
    font-size: 26px;
  }
}

.p-mediaFooter__contact {
  background-color: #9fa0a0;
  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;
}
@media screen and (max-width: 767px) {
  .p-mediaRead {
    padding: 0;
  }
}
.p-mediaRead__text {
  margin: 0 auto 40px;
}
.p-mediaRead__text h2 {
  font-size: 30px;
  line-height: 1.3333333333;
  font-weight: 800;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-mediaRead__text h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
  }
}
.p-mediaRead__title {
  font-size: 30px;
  line-height: 1.3333333333;
  font-weight: 800;
  margin-bottom: 20px;
}
@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 {
  padding-block: 60px;
  background-color: #efefef;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 40px;
  }
}
.p-about h2 {
  font-size: 45px;
  color: #5fc1c7;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.p-about h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about h3 {
    font-size: 18px;
  }
}
.p-about h3 span {
  font-size: 16px;
  font-weight: 400;
}
.p-about h3:not(:first-child) {
  border-top: 1px solid #231815;
  padding-top: 20px;
}
.p-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-about__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    width: 70%;
    margin: 0 auto;
  }
}
.p-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 61%;
          flex: 0 0 61%;
}
.p-about__name {
  text-align: right;
  margin-block: 20px;
}
.p-about h4 {
  margin-block: 20px 0;
}

.p-recommended {
  padding-block: 60px 20px;
}
@media screen and (max-width: 767px) {
  .p-recommended {
    padding-block: 40px 20px;
  }
}
.p-recommended p {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-recommended p {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-recommended__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.p-recommended__list li {
  width: 282px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 100px;
  text-align: center;
  background-color: #5fc1c7;
}
@media screen and (max-width: 767px) {
  .p-recommended__list li {
    width: 100%;
    font-size: 14px;
    max-width: 260px;
  }
}
.p-recommended__flow {
  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: 40px;
}
@media screen and (max-width: 767px) {
  .p-recommended__flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-recommended__flow li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
@media screen and (max-width: 767px) {
  .p-recommended__flow li {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    gap: 10px;
  }
}
.p-recommended__flow figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recommended p.p-recommended__flow-title {
  font-size: 26px;
  line-height: 1.2307692308;
  font-weight: 600;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-recommended p.p-recommended__flow-title {
    font-size: 16px;
  }
}
.p-recommended p.p-recommended__flow-text {
  font-weight: 400;
  margin-bottom: 0;
  text-align: left;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-recommended p.p-recommended__flow-text {
    font-size: 14px;
  }
}

.p-faq {
  padding-block: 180px;
}
@media screen and (max-width: 767px) {
  .p-faq {
    position: relative;
    z-index: 1;
    padding-block: 40px;
  }
}
.p-faq__title {
  text-align: center;
  margin-bottom: 40px;
  color: #231815;
}
.p-faq__title p {
  font-size: 40px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-faq__title p {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq figure {
    position: absolute;
    width: 20%;
    top: -1%;
    z-index: -1;
  }
}
.p-faq__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 1160px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-faq__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-faq__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-faq__question {
  font-size: 18px;
  line-height: 1.7777777778;
  background-color: #5fc1c7;
  color: #fff;
  padding-block: 10px;
  padding-inline: 20px 40px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    font-size: 16px;
    padding-block: 10px;
    padding-inline: 10px 25px;
    text-align: left;
  }
}
.p-faq__question::after {
  content: "－";
  position: absolute;
  top: 50%;
  width: 53px;
  height: 100%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 36px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-faq__question::after {
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
}
.p-faq__question.is-open::after {
  content: "＋";
}
.p-faq__answer {
  background-color: #efefef;
  padding: 16px 60px;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    font-size: 14px;
    padding: 10px;
  }
}

.p-office {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-office {
    padding-block: 40px;
  }
}
.p-office h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-office h2 {
    font-size: 20px;
  }
}
.p-office h2 span {
  font-size: 16px;
  font-weight: 400;
}
.p-office__link {
  display: block;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-office__link:hover {
  text-decoration-color: currentColor;
}
.p-office__content {
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-office__content {
    gap: 20px;
  }
}
.p-office__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 484px;
          flex: 0 0 484px;
}
@media screen and (max-width: 767px) {
  .p-office__info {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.p-office__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.p-office__data dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
.p-office__data dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-office__list {
  margin-block: 20px;
  padding-block: 20px;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
}
.p-office__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  aspect-ratio: 850/622;
}
@media screen and (max-width: 767px) {
  .p-office__map {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.p-office__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-office__link {
  position: relative;
  padding-left: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-office__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 17.3px;
  border-color: transparent transparent transparent #368FA6;
}
.p-office__link:hover {
  opacity: 0.7;
}

.p-service {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-block: 40px;
  }
}
.p-service__head {
  text-align: center;
  margin-bottom: 40px;
}
.p-service__head h2 {
  font-size: 40px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-service__head h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__head p {
    font-size: 12px;
  }
}
.p-service h3 {
  font-size: 26px;
  line-height: 1.6153846154;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-service h3 {
    font-size: 18px;
  }
}
.p-service__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-service__img {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-service__img figure {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-service__img figure {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-service__img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-service__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-service__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-service__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-service__price-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  background-color: #5fc1c7;
  border-radius: 100px;
  aspect-ratio: 1/1;
  width: 100px;
  height: auto;
  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;
}
@media screen and (max-width: 767px) {
  .p-service__price-title {
    font-size: 16px;
    width: 60px;
  }
}
.p-service__price-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: 10px;
}
.p-service__price-item {
  font-size: 24px;
  line-height: 2.9583333333;
  background-color: #efefef;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-service__price-item {
    font-size: 14px;
    padding: 0 8px;
  }
}
.p-service__price-item.accent {
  background-color: #5fc1c7;
  color: #fff;
}
.p-service__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: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-service__info {
    gap: 20px;
  }
}
.p-service__payment {
  font-weight: 400;
  padding-block: 20px;
  border-top: 1px solid rgba(35, 24, 21, 0.5);
  border-bottom: 1px solid rgba(35, 24, 21, 0.5);
}
@media screen and (max-width: 767px) {
  .p-service__payment {
    font-size: 12px;
    padding-block: 10px;
  }
}

.p-privacy__head {
  margin-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-privacy__head p {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-privacy__head p {
    font-size: 20px;
  }
}
.p-privacy__content {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-privacy__content {
    padding-bottom: 40px;
  }
}
.p-privacy__read {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-privacy__read {
    margin-bottom: 20px;
  }
}
.p-privacy__item {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-privacy__item {
    margin-bottom: 20px;
  }
}
.p-privacy__item h2 {
  font-weight: 600;
  display: inline;
}
.p-privacy__item p {
  display: inline;
}

.p-feature {
  padding-block: 180px 20px;
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding-block: 60px 20px;
  }
}
.p-feature.last {
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .p-feature.last {
    padding-bottom: 60px;
  }
}
.p-feature__content {
  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: 70px;
  margin-right: calc(50% - 50vw);
}
.p-feature__content.pc-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-right: 0;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .p-feature__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-right: 0;
    margin-left: 0;
  }
  .p-feature__content.pc-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    margin-left: 0;
  }
  .p-feature__content.pc-reverse .p-feature__img {
    margin-left: calc(50% - 50vw);
    margin-right: 0;
  }
}
.p-feature h2 {
  font-size: 40px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-feature h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-feature__text {
  width: 44%;
  max-width: 690px;
}
@media screen and (max-width: 1024px) {
  .p-feature__text {
    width: 100%;
    max-width: none;
  }
}
.p-feature__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-feature__img {
    max-width: none;
    margin-right: calc(50% - 50vw);
  }
}

.p-access {
  background-color: #9fa0a0;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-block: 40px;
  }
}

.p-access__title {
	margin-top: 20px;
}

.p-access__title p {
  font-size: 40px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #fff;
}

.p-access__title h2 {
  color: #fff;
}
@media screen and (max-width: 767px) {
.p-access__title p {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
  }
 .p-access__title h2 {
  text-align: center;
 }
}
.p-access p {
  color: #fff;
}
.p-access__inner {
  padding-left: 0;
  max-width: 1920px;
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    padding-left: 5%;
  }
}
.p-access__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .p-access__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
.p-access__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-access__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-access__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-access__text {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    gap: 20px;
  }
}
.p-access__map {
  aspect-ratio: 670/382;
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-menu__head-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-menu__head-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@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 !important;
  }
}

@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;
  }
}

.lg-hidden {
  display: none;
}
@media screen and (max-width: 1600px) {
  .lg-hidden {
    display: block;
  }
}

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

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

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

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