@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: 160px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body p {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:not(.c-infoBtn, .c-pagination .prev.page-numbers, .c-pagination .next.page-numbers):hover {
  opacity: 0.7;
}

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

.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-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 {
  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;
  color: #231815;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-infoBtn:hover {
  background-color: #231815;
  color: #fff;
}

.c-drawerIcon {
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 300;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-drawerIcon:hover {
  opacity: 0.7;
}
.c-drawerIcon.media {
  position: fixed;
  right: 20px;
  top: 20px;
}
.c-drawerIcon.media .bar1,
.c-drawerIcon.media .bar2,
.c-drawerIcon.media .bar3 {
  background-color: #001f50;
}
.c-drawerIcon.media .c-drawerIcon__text::before {
  color: #001f50;
}
.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;
}
.c-drawerIcon .bar1 {
  top: 0;
}
.c-drawerIcon .bar2 {
  top: 8px;
}
.c-drawerIcon .bar3 {
  top: 17px;
}
.c-drawerIcon__text {
  position: absolute;
  content: "";
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 13px;
  top: 20px;
}
.c-drawerIcon__text::before {
  position: absolute;
  -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,
.c-drawerIcon.is-open .bar3 {
  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 {
  display: none;
}
.c-drawerIcon.is-open .c-drawerIcon__text::before {
  content: "CLOSE";
  color: #fff;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.c-mediaCategory {
  background-color: #001f50;
  padding: 10px;
  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; /* ページ番号を非表示にする */
}
.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: #001f50;
    color: #fff;
    border-color: #001f50;
  }
}

.c-title {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .c-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.c-title h1,
.c-title h2 {
  font-size: 22px;
  line-height: 1.5454545455;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-title h1,
  .c-title h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.c-title span {
  font-size: 18px;
  font-weight: 300;
}

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

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

.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;
}
@media screen and (max-width: 1024px) {
  .p-mv {
    height: calc(100svh - 150px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-mv__wrap {
  position: relative;
  overflow-x: hidden;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .p-mv__wrap {
    height: 100svh;
  }
}
.p-mv__header {
  height: 300px;
  background-color: #fff;
  font-size: 22px;
  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: 40px;
}
@media screen and (max-width: 1024px) {
  .p-mv__header {
    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: 6px;
  }
  .p-mv__header img {
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__header {
    height: 150px;
    font-size: 14px;
    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: 6px;
  }
  .p-mv__header img {
    width: 50px;
  }
}
.p-mv__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 300px;
  height: 70%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__img {
    top: 150px;
    height: 70%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-mv__img figure {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__img figure {
    height: 33%;
  }
}
.p-mv__img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__img figure img {
    -o-object-position: center 20%;
       object-position: center 20%;
  }
}
.p-mv__bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__bottom {
    height: 17%;
  }
}
.p-mv__scroll {
  position: absolute;
  bottom: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 47px;
}
@media screen and (max-width: 1024px) {
  .p-mv__scroll {
    width: 40px;
  }
}

.p-read {
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .p-read {
    padding-block: 30px;
  }
}
.p-read:not(:first-child) {
  padding-top: 0;
}
.p-read h2 {
  font-size: clamp(1.875rem, 1.625rem + 0.52vw, 2.25rem);
  line-height: 1.5789473684;
  font-weight: 800;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-read h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.p-read h3 {
  font-size: 22px;
  line-height: 1.5454545455;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-read h3 {
    font-size: 15px;
  }
}
.p-read h3.ta-center {
  text-align: center;
}
.p-read__content {
  width: 100%;
  padding: 0;
  gap: 2.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fff;
}
@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__content.pc-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-read__content.pc-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-read__tel {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-read__tel {
    margin-top: -20px;
  }
}
.p-read__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44.5%;
          flex: 0 0 44.5%;
}
.p-read__text h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-read__text h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
  }
}
.p-read__text h4.--life {
  font-size: 16px;
  font-weight: 600;
  color: #d18f40;
  margin-top: 20px;
  margin-bottom: 10px;
}
.p-read__img {
  -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: 40px;
}
@media screen and (max-width: 767px) {
  .p-read__img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-read__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-read__img.no-space {
  gap: 0;
}
.p-read__name {
  text-align: right;
  margin-block: 20px;
}
.p-read__item {
  background-color: #dff2fc;
  padding: 20px;
  margin-top: 20px;
}
.p-read__item h4 {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-read__item h4 {
    font-size: 15px;
  }
}
.p-read__item p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-read__item p {
    font-size: 14px;
  }
}
.p-read__table {
  width: 100%;
  border-collapse: collapse;
}
.p-read__table tbody {
  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-read__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-read__table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-read__table th {
  background-color: #dcdddd;
  width: 40%;
  padding: 10px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #231815;
  text-align: left;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-read__table th {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }
}
.p-read__table td {
  padding: 10px;
  border: 1px solid #231815;
  line-height: 1.75;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-read__table td span {
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-read__table td.ta-center {
    text-align: center;
  }
}
.p-read__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -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-read__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.p-info {
  padding-bottom: 40px;
}
.p-info.media {
  padding-block: 40px;
  background-color: #fffcdb;
}
.p-info.top {
  background-color: #fffcdb;
  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: 30px;
  font-weight: 800;
  color: #001f50;
}
.p-info__title h2 {
  font-weight: 500;
  color: #231815;
  font-size: 16px;
}
.p-info__title.sub p {
  color: #231815;
  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 {
  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 {
  background-color: #dcdddd;
}
.p-footer__nav {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding-block: 30px;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    padding-inline: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px 20px;
  }
}
.p-footer__nav a {
  color: #231815;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .p-footer__nav a {
    font-size: 14px;
    padding-left: 14px;
  }
}
.p-footer__nav 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 #231815;
}
@media screen and (max-width: 767px) {
  .p-footer__nav a::before {
    border-width: 6px 0 6px 10px;
  }
}
.p-footer__copy {
  color: #fff;
  display: block;
  text-align: center;
  background-color: #001f50;
  padding-block: 20px;
}

.p-header {
  background-color: #001f50;
  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;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .p-header__wrap {
    padding-inline: 10px;
  }
}

.p-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
}
.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;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.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: #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-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@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;
  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: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}
.p-header__contact::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  width: 1px;
  height: 75px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-header__contact::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .p-header__contact {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    gap: 5px;
    padding-inline: 10px 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;
}
.p-header__contact a.tel {
  width: 222px;
  height: 36px;
}
@media screen and (max-width: 767px) {
  .p-header__contact a.tel {
    width: auto;
    height: 41px;
    aspect-ratio: 38/32;
  }
}
@media screen and (max-width: 767px) {
  .p-header__contact a {
    width: auto;
    height: 40px;
    aspect-ratio: 37/32;
  }
}
.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: #001f50;
  height: 100%;
  padding: 50px 10px 60px;
  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;
  padding-inline: 16px;
  color: #fff;
  text-align: left;
}
.p-mediaHeader__link.surround {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 5px 0;
  text-align: center;
}
.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 {
  text-align: center;
}
.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: #001f50;
}
.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 top, left bottom, from(#051738), color-stop(16.24%, #051534), color-stop(32.18%, #06183D), color-stop(54.48%, #061C49), to(#081E4D));
  background: linear-gradient(180deg, #051738 0%, #051534 16.24%, #06183D 32.18%, #061C49 54.48%, #081E4D 100%);
  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: 33.333%;
}
.p-mediaSide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}
.p-mediaSide__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  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 {
  height: 260px;
  background-color: #fff;
  font-size: 22px;
  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: 40px;
}
@media (max-width: 1180px) {
  .p-mediaContents__img {
    height: 230px;
    font-size: 16px;
    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: 6px;
  }
  .p-mediaContents__img img {
    width: 14%;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaContents__img {
    height: 150px;
    font-size: 14px;
    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: 6px;
  }
  .p-mediaContents__img img {
    width: 14%;
    max-width: 54px;
  }
}

.p-mediaFooter__contact {
  background-color: #898989;
  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-block: 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mediaRead {
    padding-block: 0 30px;
  }
}
.p-mediaRead__text {
  margin: 0 auto 40px;
}
.p-mediaRead__text h2 {
  font-size: clamp(1.063rem, -0.436rem + 2.03vw, 2rem);
  line-height: 1.5625;
  font-weight: 600;
  text-align: center;
  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-mediaRead__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.p-mediaRead__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.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: #feecd2;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 40px;
  }
}
.p-about h2 {
  font-size: 45px;
  color: #001f50;
  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-consultation {
  padding-block: 20px 80px;
}
@media screen and (max-width: 767px) {
  .p-consultation {
    padding-block: 10px 40px;
  }
}
.p-consultation__title {
  text-align: center;
  margin-bottom: 40px;
  color: #231815;
}
.p-consultation__title p {
  font-size: 45px;
  font-weight: 800;
  color: #001f50;
}
@media screen and (max-width: 767px) {
  .p-consultation__title p {
    font-size: 30px;
    font-weight: 800;
  }
}
.p-consultation__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 500;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-consultation__title h2 {
    font-size: 16px;
  }
}
.p-consultation__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-consultation__list li,
.p-consultation__list a {
  width: 325px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #001f50;
  border: 2px solid #001f50;
  padding: 10px 20px;
  border-radius: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-consultation__list li,
  .p-consultation__list a {
    width: 100%;
    font-size: 16px;
    max-width: 325px;
  }
}
.p-consultation__list a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-consultation__list a:hover {
  background-color: #001f50;
  color: #fff;
}
.p-consultation__list.page {
  margin-bottom: 40px;
}

.p-faq {
  padding-block: 80px;
}
@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: 45px;
  font-weight: 800;
  color: #001f50;
}
@media screen and (max-width: 767px) {
  .p-faq__title p {
    font-size: 30px;
    font-weight: 800;
  }
}
.p-faq__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 500;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-faq__title h2 {
    font-size: 16px;
  }
}
@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__list h3 {
  font-size: 20px;
  background-color: #001f50;
  color: #fff;
  padding-block: 16px;
  padding-inline: 20px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__list h3 {
    font-size: 16px;
    padding-block: 10px;
    padding-inline: 10px 25px;
  }
}
.p-faq__list h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.1px 7px 0 7px;
  border-color: #FFFFFF transparent transparent transparent;
  -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;
}
@media screen and (max-width: 767px) {
  .p-faq__list h3::after {
    right: 10px;
  }
}
.p-faq__list h3.is-open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.p-faq__list p {
  background-color: #feecd2;
  padding: 16px 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__list p {
    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__head {
  text-align: center;
  margin-block: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-service__head {
    margin-block: 20px 0;
  }
}
.p-service__head p {
  font-size: 45px;
  font-weight: 700;
  color: #001f50;
}
@media screen and (max-width: 767px) {
  .p-service__head p {
    font-size: 30px;
  }
}
.p-service__head h1 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-service__head h1 {
    font-size: 16px;
  }
}

.p-privacy {
  padding-block: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding-block: 40px 0;
  }
}
.p-privacy h2 {
  font-weight: 600;
}
.p-privacy p.bold {
  font-weight: 600;
}
.p-privacy p span {
  font-weight: 600;
  display: block;
}
.p-privacy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-privacy__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }
}
.p-privacy__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-privacy__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;
}

.p-data {
  padding-block: 40px;
  padding-inline: 120px;
  background-color: #feecd2;
}
@media screen and (max-width: 767px) {
  .p-data {
    padding-block: 20px;
    padding-inline: 20px;
    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;
  }
}
.p-data__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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-data__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 10px;
  }
}
.p-data__row dt,
.p-data__row dd {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-data__row dt,
  .p-data__row dd {
    font-size: 14px;
    text-align: center;
  }
}
.p-data__row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
@media screen and (max-width: 767px) {
  .p-data__row dt {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.p-data__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-data__link {
  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: 10px;
  margin-top: 20px;
}
.p-data__link a {
  color: #231815;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .p-data__link a {
    font-size: 14px;
    padding-left: 14px;
  }
}
.p-data__link 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 #231815;
}
@media screen and (max-width: 767px) {
  .p-data__link a::before {
    border-width: 6px 0 6px 10px;
  }
}

.p-price {
  padding-block: 60px;
  padding-inline: 40px;
  background-color: #feecd2;
}
@media screen and (max-width: 767px) {
  .p-price {
    padding-block: 30px;
    padding-inline: 20px;
  }
}
.p-price h3 {
  font-size: 22px;
  line-height: 1.5454545455;
  font-weight: 600;
  color: #d18f40;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.p-price__read {
  text-align: center;
  margin-bottom: 40px;
}
.p-price__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-price__table {
    -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;
  }
}
.p-price__table-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-price__table-item h4 {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: #d18f40;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  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-price__table-item h4 {
    padding: 10px 15px;
    text-align: center;
  }
}
.p-price__table table {
  width: 100%;
  border-collapse: collapse;
}
.p-price__table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.p-price__table tbody tr {
  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: 6px;
}
@media screen and (max-width: 767px) {
  .p-price__table tbody tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.p-price__table tbody th {
  background: #dcdddd;
  color: #231815;
  padding: 15px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #dcdddd;
  width: 41%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-price__table tbody th {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }
}
.p-price__table tbody td {
  color: #231815;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-price__table tbody td {
    font-size: 14px;
  }
}
.p-price__table tbody td span {
  background: #fff;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .p-price__table tbody td span {
    padding: 10px;
  }
}
.p-price__table tbody td span.space {
  height: 50%;
}
.p-price__table p {
  margin-top: 10px;
}
.p-price__table p:not(:last-child) {
  margin-bottom: 50px;
}

.p-detailLink {
  padding-block: 50px 80px;
}
.p-detailLink__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .p-detailLink__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-detailLink__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: 5px 5px 10px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 10px 6px rgba(0, 0, 0, 0.25);
  border-radius: 17px;
  padding-top: 20px;
  background-color: #fff;
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-detailLink__item {
    padding-top: 10px;
  }
}
.p-detailLink__item figure {
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .p-detailLink__item figure {
    padding-inline: 10px;
  }
}
.p-detailLink__item figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 370/230;
}
.p-detailLink__item h3 {
  padding-inline: 20px;
  font-size: clamp(1.875rem, 1.161rem + 1.49vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-detailLink__item h3 {
    font-size: 20px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-detailLink__item h3 span {
  display: block;
  font-size: 18px;
}
.p-detailLink__item p {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 600;
  color: #fff;
  background-color: #001f50;
  padding: 10px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-detailLink__item p {
    font-size: 14px;
  }
}

.p-link {
  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: 10px;
}
@media screen and (max-width: 767px) {
  .p-link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}

.p-business {
  padding-block: 40px 80px;
  border-top: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .p-business {
    padding-block: 20px 40px;
  }
}
.p-business__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .p-business__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-business__item {
  -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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-business h3 {
  font-size: 22px;
  line-height: 1.5454545455;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.p-business h4 {
  font-size: 22px;
  line-height: 1.5454545455;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-business h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.p-business__text {
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-career {
  padding-block: 80px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-career {
    padding-block: 40px;
  }
}
.p-career__read {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-career__read {
    margin-bottom: 20px;
  }
}
.p-career__content {
  overflow-x: scroll;
}
.p-career__table {
  width: 1450px;
  margin: 0 auto;
  border-spacing: 12px;
}
.p-career__table th {
  padding: 20px;
  background-color: #727171;
  color: #fff;
  font-weight: 600;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-career__table th {
    padding: 10px;
  }
}
.p-career__table th:nth-of-type(1) {
  min-width: 72px;
}
@media screen and (max-width: 767px) {
  .p-career__table th:nth-of-type(1) {
    min-width: 50px;
  }
}
.p-career__table th:nth-of-type(2) {
  min-width: 164px;
}
@media screen and (max-width: 767px) {
  .p-career__table th:nth-of-type(2) {
    min-width: 100px;
  }
}
.p-career__table th:nth-of-type(5) {
  min-width: 127px;
}
@media screen and (max-width: 767px) {
  .p-career__table th:nth-of-type(5) {
    min-width: 100px;
  }
}
.p-career__table td {
  background-color: #e6e6e6;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-career__table td {
    padding: 10px;
  }
}
.p-career__table td:nth-of-type(1), .p-career__table td:nth-of-type(5) {
  vertical-align: middle;
  text-align: center;
}
.p-career__table td:nth-of-type(2) {
  vertical-align: middle;
}

.p-page {
  padding-block: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-page {
    padding-block: 40px 0;
  }
}
.p-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  gap: 2.8%;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-page__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-page__content h2 {
  font-size: 22px;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 10px;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-page__content h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.p-page__head {
  padding-bottom: 20px;
  border-bottom: 1px solid #231815;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-page__head {
    margin-bottom: 20px;
  }
}
.p-page__head h1 {
  font-size: clamp(1.875rem, 1.625rem + 0.52vw, 2.25rem);
  line-height: 1.5789473684;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-page__head h1 {
    font-size: 20px;
  }
}
.p-page__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 20px;
}
.p-page__img > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-page__img > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-page__img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page__img figure:nth-of-type(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-page__img figure:nth-of-type(2) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-page__img figure:nth-of-type(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-page__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44.5%;
          flex: 0 0 44.5%;
}

.p-features {
  background-color: #fffcdb;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-features {
    padding: 20px 10px;
  }
}
.p-features h3 {
  font-size: 22px;
  line-height: 1.5454545455;
  font-weight: 600;
  margin-bottom: 20px;
  color: #d18f40;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-features h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.p-features__read {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
}
.p-features__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-features__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.p-features__item {
  background-color: #fff;
  padding: 10px;
  border-left: 13px solid #d18f40;
  font-size: 22px;
  line-height: 1.5454545455;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-features__item {
    font-size: 14px;
    padding: 6px;
    border-left: 8px solid #d18f40;
  }
}
.p-features__item span {
  font-size: 14px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-features__item span {
    font-size: 12px;
  }
}
.p-features__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-features__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-features__price-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-features__price-item h4 {
  font-size: 22px;
  line-height: 1.5454545455;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: #d18f40;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  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-features__price-item h4 {
    font-size: 18px;
    padding: 10px 15px;
    text-align: center;
  }
}
.p-features__price-item h4.pc-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 160px;
}
@media screen and (max-width: 1024px) {
  .p-features__price-item h4.pc-left {
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-features__price-item .pc-row {
  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: 60px;
}
.p-features__price-item .pc-row p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1024px) {
  .p-features__price-item .pc-row {
    display: block;
  }
  .p-features__price-item .pc-row p {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-features__price-item h5 {
  font-size: 22px;
  line-height: 1.5454545455;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-features__price-item h5 {
    font-size: 15px;
  }
}
.p-features__price-item h5 span {
  font-size: clamp(2.25rem, 1.25rem + 2.08vw, 3.125rem);
}
@media screen and (max-width: 767px) {
  .p-features__price-item h5 span {
    font-size: 22px;
  }
}
.p-features__map {
  width: 100%;
  height: 662px;
  aspect-ratio: 1300/622;
}
@media screen and (max-width: 767px) {
  .p-features__map {
    height: 330px;
    aspect-ratio: 650/310;
  }
}
.p-features__map iframe {
  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-mt20 {
  margin-top: 20px;
}

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

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

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

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

.u-mb40 {
  margin-bottom: 40px;
}