@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: 1.6875;
  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%;
  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: flex;
}

.l-flex15 {
  display: flex;
  gap: 15px;
}

.l-flex30 {
  display: flex;
  gap: 30px;
}

.l-flex40 {
  display: flex;
  gap: 40px;
}

.l-wideInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3%;
  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%;
  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 {
    flex-direction: column;
  }
}

.l-grid4-2-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .l-grid4-2-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .l-grid4-2-1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.l-grid3-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 25px 40px;
}
@media screen and (max-width: 767px) {
  .l-grid3-1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.c-infoBtn {
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid #fff;
  border-radius: 50px;
  margin: 0 auto;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.c-infoBtn:hover {
  background-color: #fff;
  color: #1a69a9;
}
@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: 10px;
  }
}
.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;
  transition: all 0.3s ease;
}
.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;
  transform: rotate(45deg);
}
.c-drawerIcon.is-open .bar2 {
  transform: rotate(-45deg);
}
.c-drawerIcon.is-open .bar3 {
  display: none;
}

.c-mediaCategory {
  background-color: #65aadd;
  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: flex;
  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;
  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: #1a69a9;
  }
}

.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;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  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-read {
  padding-block: 100px 20px;
}
@media screen and (max-width: 767px) {
  .p-read {
    padding-block: 40px 20px;
  }
}
.p-read p {
  line-height: 2;
}
.p-read p span {
  font-weight: 400;
}
.p-read.last {
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .p-read.last {
    padding-bottom: 60px;
  }
}
.p-read__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5.8%;
  margin-right: calc(50% - 50vw);
}
.p-read__content.pc-reverse {
  flex-direction: row-reverse;
  margin-right: 0;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .p-read__content {
    flex-direction: column;
    gap: 20px;
    margin-right: 0;
    margin-left: 0;
  }
  .p-read__content.pc-reverse {
    flex-direction: column;
    margin-right: 0;
    margin-left: 0;
  }
  .p-read__content.pc-reverse .p-read__img {
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    padding-right: 2%;
  }
}
@media screen and (max-width: 767px) {
  .p-read__content.pc-reverse .p-read__img {
    padding-right: 5%;
  }
}
.p-read__headIllust {
  display: block;
  margin-inline: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-read__headIllust {
    width: 80%;
    max-width: 160px;
  }
}
.p-read__head {
  font-size: 30px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 40px;
  color: #1a69a9;
}
@media screen and (max-width: 767px) {
  .p-read__head {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-read__subHead {
  font-size: 24px;
  line-height: 1.5833333333;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-read__subHead {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.p-read__title {
  font-size: 30px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #1a69a9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-read__title {
    font-size: 20px;
  }
}
.p-read__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-read__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.p-read__text {
  width: 50%;
  max-width: 700px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-read__text {
    width: 100%;
    max-width: none;
  }
}
.p-read__img {
  flex: 1;
}
.p-read__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-read__img {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
  }
}
.p-read__subImg {
  margin-top: 80px;
  padding-bottom: 60px;
  margin-bottom: 40px;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .p-read__subImg {
    margin-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
}
.p-read__illust01 {
  position: absolute;
  top: 80%;
  right: 0;
  width: 60%;
  aspect-ratio: 424/195;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .p-read__illust01 {
    width: 20%;
    top: initial;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-read__illust01 {
    top: initial;
    bottom: 0;
    width: 30%;
  }
}
.p-read__illust02 {
  position: absolute;
  bottom: -8%;
  right: 0;
  width: 39%;
  aspect-ratio: 272/123;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .p-read__illust02 {
    width: 30%;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-read__illust02 {
    bottom: 0;
  }
}
.p-read__box {
  background-color: #65aadd;
  padding: 16px;
  border-radius: 10px;
  margin-block: 40px 40px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-read__box {
    padding: 10px;
    margin-block: 20px 20px;
  }
}
.p-read__box h4 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-read__box h4 {
    font-size: 18px;
  }
}
.p-read__flow h4 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-read__flow h4 {
    font-size: 18px;
  }
}
.p-read__flowList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .p-read__flowList {
    max-width: 600px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-read__flowList {
    max-width: 400px;
    margin-inline: auto;
  }
}
.p-read__flowList li {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
   .p-read__flowList li {
    flex-direction: column;
	gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-read__flowList li {
    flex-direction: column;
    gap: 10px;
  }
}
.p-read__flowList li h5 {
  flex: 0 0 216px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  padding: 40px 16px;
  font-weight: 600;
  border-radius: 200%;
  background-color: #0c7b62;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .p-read__flowList li h5 {
    flex: auto;
    width: 100%;
    max-width: 200px;
    font-size: 16px;
    padding: 36px 10px;
  }
}

.p-read__flowList li h5::before {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 8px 0 8px;
  border-color: #ffffff transparent transparent transparent;
}
.p-read__flowList li p {
  flex: 1;
}

.p-gallery {
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    padding-block: 30px;
  }
}
.p-gallery__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-gallery__content {
    gap: 16px;
  }
}
.p-gallery__item {
  flex: 1;
}
.p-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-check {
  padding-block: 60px;
  background-color: #d3e6f6;
}
.p-check__title {
  font-size: 30px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #1a69a9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-check__title {
    font-size: 20px;
  }
}
.p-check__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-check__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.p-check__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 3.75%;
}
@media screen and (max-width: 767px) {
  .p-check__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.p-check__item {
  background-color: #fff;
  padding: 6px 20px 20px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-check__item {
    padding: 6px 10px 12px;
  }
}
.p-check__item p {
  color: #65aadd;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-check__item p {
    font-size: 18px;
  }
}
.p-check__subList {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
}
@media screen and (max-width: 767px) {
  .p-check__subList {
    display: block;
  }
}
.p-check__subList li {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .p-check__subList li {
    font-size: 13px;
  }
}
.p-check__illust {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-check__illust {
    right: 10px;
    bottom: 16%;
  }
}
.p-check__illust.illust01 {
  width: 27%;
}
@media screen and (max-width: 767px) {
  .p-check__illust.illust01 {
    width: 22%;
    max-width: 120px;
  }
}
.p-check__illust.illust02 {
  width: 37%;
}
@media screen and (max-width: 767px) {
  .p-check__illust.illust02 {
    width: 32%;
    max-width: 140px;
  }
}
.p-check__illust.illust03 {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .p-check__illust.illust03 {
    width: 26%;
    max-width: 130px;
  }
}
.p-check__illust.illust04 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .p-check__illust.illust04 {
    width: 20%;
    max-width: 100px;
  }
}
.p-check__illust.illust05 {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .p-check__illust.illust05 {
    width: 30%;
    max-width: 130px;
  }
}
.p-check__illust.illust06 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .p-check__illust.illust06 {
    width: 20%;
    max-width: 120px;
  }
}
.p-check__illust.illust07 {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-check__illust.illust07 {
    width: 35%;
    max-width: 130px;
  }
}
.p-check__illust.illust08 {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .p-check__illust.illust08 {
    width: 25%;
    max-width: 120px;
  }
}

.p-faq {
  padding-block: 100px;
}
@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;
}
.p-faq__title p {
  font-size: 30px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #1a69a9;
}
@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: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1160px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-faq__content {
    flex-direction: column;
    align-items: stretch;
  }
}
.p-faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-faq__question {
  font-size: 18px;
  line-height: 1.7777777778;
  background-color: #65aadd;
  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;
  transform: translateY(-50%);
  font-size: 36px;
  transition: transform 0.3s ease-in-out;
  background-color: #3e3a39;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-faq__question::after {
    top: 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-info {
  background-color: #65aadd;
  padding-block: 40px;
}
.p-info__title {
  text-align: center;
  margin-bottom: 40px;
  color: #231815;
}
.p-info__title p {
  font-size: 30px;
  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: #1a69a9;
  font-size: 45px;
}
@media screen and (max-width: 767px) {
  .p-info__title.sub p {
    font-size: 30px;
  }
}
.p-info__card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-info__card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 323/217;
}
.p-info figure {
  margin-bottom: 10px;
}
.p-info__text {
  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: flex;
  justify-content: space-between;
  color: #fff;
}

.p-about {
  padding-block: 60px 30px;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 30px 20px;
  }
}
.p-about h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-about h3 {
    font-size: 20px;
  }
}
.p-about__title {
  font-size: 30px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #1a69a9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 20px;
  }
}
.p-about__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.p-about__content {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    flex-direction: column;
    gap: 20px;
  }
}
.p-about__img {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    flex: auto;
  }
}
.p-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about__info {
  width: calc(70% - 70px);
}
@media screen and (max-width: 767px) {
  .p-about__info {
    width: 100%;
  }
}
.p-about__info p {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #231815;
}
.p-about__name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-about__name span {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-about__name span {
    font-size: 14px;
  }
}

.p-payment {
  padding-block: 30px;
}
.p-payment__title {
  font-size: 30px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #1a69a9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-payment__title {
    font-size: 20px;
  }
}
.p-payment__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
.p-payment__content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-payment__content {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
  }
}
.p-payment__list {
  width: 36%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .p-payment__list {
    width: 100%;
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .p-payment__list {
    width: 100%;
  }
}
.p-payment__item {
  background-color: #e6e6e6;
  padding: 8px 16px;
}
.p-payment__item h3 {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-payment__item h3 {
    font-size: 18px;
  }
}
.p-payment__info {
  flex: 0 0 700px;
}
@media screen and (max-width: 767px) {
  .p-payment__info {
    flex: auto;
  }
}
.p-payment__info h4 {
  margin-bottom: 10px;
}
.p-payment__table-title {
  font-weight: 600;
}
.p-payment__table-title .sky {
  color: #65aadd;
}
.p-payment__table-note {
  margin-bottom: 20px;
}
.p-payment__cardList {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .p-payment__cardList {
    gap: 4px;
  }
  .p-payment__cardList img {
    width: 30px;
  }
}
.p-payment__insuranceList {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-payment__insuranceList {
    gap: 8px;
  }
  .p-payment__insuranceList img {
    width: 100px;
  }
}
.p-payment__insuranceItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-payment__table {
  margin-bottom: 10px;
  border-spacing: 6px;
}
@media screen and (max-width: 767px) {
  .p-payment__table {
    border-spacing: 4px;
  }
}
.p-payment__table th,
.p-payment__table td {
  padding: clamp(0.625rem, 0.768rem - 0.22vw, 0.5rem) clamp(0.75rem, 0.464rem + 0.45vw, 1rem);
  font-size: clamp(0.875rem, 0.159rem + 1.12vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .p-payment__table th,
  .p-payment__table td {
    font-size: 12px;
    padding: 5px 7px;
  }
}
.p-payment__table thead th {
  background-color: #65aadd;
  color: #fff;
  font-weight: 600;
}
.p-payment__table tbody td,
.p-payment__table tbody th {
  background-color: #e6e6e6;
}
.p-payment__table .sky {
  color: #65aadd;
}
.p-payment__img {
  margin-inline: auto;
  width: fit-content;
}

.p-access {
  background-color: #65aadd;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-block: 40px;
  }
}
.p-access__title {
  font-size: 30px;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    font-size: 26px;
    text-align: center;
  }
}
.p-access__subtitle {
  color: #fff;
}
.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: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .p-access__content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.p-access__img {
  flex: 1;
}
.p-access__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-access__text {
  flex: 0 0 43%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-access__text {
    flex: auto;
    width: 100%;
    gap: 20px;
  }
}
.p-access__map {
  aspect-ratio: 670/382;
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-details__head {
  display: flex;
  position: relative;
}
.p-details__head-img {
  flex: 1;
}
.p-details__head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-details__head-text {
  position: absolute;
  bottom: 10%;
  left: 1%;
  width: 30.6%;
  aspect-ratio: 587/221;
  height: auto;
}

.p-mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.p-mv__border {
  display: flex;
}
.p-mv__border .line {
  flex: 1;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .p-mv__border .line {
    height: 10px;
  }
}
.p-mv__border .line-1 {
  background-color: #0c7b62;
}
.p-mv__border .line-2 {
  background-color: #1a69a9;
}
.p-mv__border .line-3 {
  background-color: #0c7b62;
}
.p-mv__wrap {
  position: relative;
  overflow-x: hidden;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .p-mv__wrap {
    height: 100svh;
  }
}
.p-mv__imgs {
  position: fixed;
  width: 100%;
  height: calc(100% - 435px);
  display: flex;
  clip-path: inset(0 0 100% 0);
  animation: revealFromTop 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@media screen and (max-width: 767px) {
  .p-mv__imgs {
    flex-direction: column;
    height: calc(100% - 236px);
  }
}
.p-mv__img {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__img {
    height: 33%;
  }
}
.p-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mv__img:nth-of-type(1) img {
  object-position: center right;
}
@media screen and (max-width: 767px) {
  .p-mv__img:nth-of-type(1) img {
    object-position: 50% 35%;
  }
}
.p-mv__img:nth-of-type(2) img {
  object-position: center left;
}
@media screen and (max-width: 767px) {
  .p-mv__img:nth-of-type(2) img {
    object-position: 50% 50%;
  }
}
.p-mv__img:nth-of-type(3) img {
  object-position: center center;
}
@media screen and (max-width: 767px) {
  .p-mv__img:nth-of-type(3) img {
    object-position: 50% 25%;
  }
}
@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-inline: auto;
  width: fit-content;
  padding-block: 30px;
}
@media screen and (max-width: 767px) {
  .p-mv__logo {
    width: 110px;
    padding-block: 16px;
  }
}
.p-mv__title__wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: #fff;
}
.p-mv__title {
  font-size: 30px;
  line-height: 2.3333333333;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  padding-block: 70px;
  color: #1a69a9;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 18px;
    padding-block: 16px;
  }
}
.p-mv__text {
  position: absolute;
  bottom: 110%;
  left: 2%;
  width: 30.6%;
  aspect-ratio: 587/221;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    bottom: 120%;
    left: 2%;
    width: 55%;
  }
}

.p-mediaSide {
  position: fixed;
  height: 100%;
  width: 30%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1180px) {
  .p-mediaSide {
    position: relative;
    width: 100%;
    margin: 0 300px 0 0;
    width: calc(100vw - 300px);
    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%;
  object-fit: cover;
  object-position: center 30%;
}
.p-mediaSide__text {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 54%;
  height: auto;
}
@media (max-width: 1180px) {
  .p-mediaSide__text {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaSide__text {
    top: 4%;
    width: 30%;
  }
}

.p-preparation {
  background-color: #bc1b21;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: 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: flex;
  align-items: 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-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: flex;
    flex-direction: column;
  }
}

.p-footer {
  padding-block: 40px 0;
  background-color: #595757;
}
.p-footer__content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 90px;
  margin-bottom: 40px;
  max-width: 1024px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.p-footer__info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    flex: auto;
    justify-content: center;
  }
}
.p-footer__link {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .p-footer__link {
    width: 100%;
  }
}
.p-footer__logo {
  display: block;
  aspect-ratio: 344/202;
  width: 90.4%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 50%;
    margin-bottom: 20px;
  }
}
.p-footer__address {
  font-style: normal;
  color: #fff;
  margin-bottom: 40px;
}
.p-footer p {
  color: #fff;
  margin-bottom: 20px;
}
.p-footer__link-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-footer__link-list {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-footer__link-list.--media {
  justify-content: center;
  margin-bottom: 0;
  margin-top: 40px;
}
.p-footer__link-item {
  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: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.p-footer__group-item {
  color: #fff;
  background-color: #9fa0a0;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.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: #1a69a9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
  height: 100px;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .p-header {
    height: 80px;
    padding-inline: 10px 60px;
  }
}
.p-header.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}

.p-header__logo {
  width: clamp(15rem, 0.47rem + 22.68vw, 27.688rem);
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 160px;
  }
}
.p-header__logo a {
  display: block;
}

.p-header__nav {
  display: flex;
  align-items: center;
  column-gap: 20px;
  height: 100%;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    gap: 10px;
  }
}

.p-header__list {
  display: flex;
  align-items: center;
  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: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.p-header__list a span {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  color: #fff;
  font-size: clamp(0.938rem, 0.866rem + 0.11vw, 1rem);
}
.p-header__list a.is-active span {
  border-bottom: 2px solid #fff;
}
.p-header__list a:hover span {
  border-bottom: 2px solid #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: flex;
  gap: 20px;
  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: flex;
  align-items: 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: flex;
  align-items: center;
  column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
}

.p-header__call {
  width: 40px;
}

.p-header__line {
  width: 40px;
}

.p-drawerNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateX(105%);
  transition: 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: flex;
  align-items: center;
  justify-content: center;
}
.p-drawerNav__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  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 {
  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: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-mediaHeader {
    transform: translateX(100%);
    transition: all 0.3s ease;
    padding-top: 80px;
  }
  .p-mediaHeader.is-open {
    transform: translateX(0);
  }
}
.p-mediaHeader__logo {
  margin-bottom: 30px;
}
.p-mediaHeader__logo a {
  display: block;
  text-align: center;
}
.p-mediaHeader__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  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%;
  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 {
  filter: invert(1);
}
.p-mediaHeader__icon {
  margin-top: 140px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0 12px;
}
.p-mediaHeader__icon a {
  width: 27px;
  height: 27px;
}
.p-mediaHeader__icon a img {
  width: 100%;
  height: 100%;
}
.p-mediaHeader__box {
  background: linear-gradient(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-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: 30px;
  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: flex;
  align-items: center;
  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: 10px;
  color: #fff;
  display: block;
  letter-spacing: -0.05em;
}
.p-mediaFooter__address {
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
  font-style: normal;
  letter-spacing: -0.05em;
}

.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-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: flex;
  flex-wrap: wrap;
  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: #1a69a9;
}
@media screen and (max-width: 767px) {
  .p-recommended__list li {
    width: 100%;
    font-size: 14px;
    max-width: 260px;
  }
}
.p-recommended__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-recommended__flow {
    flex-direction: column;
    gap: 20px;
  }
}
.p-recommended__flow li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-recommended__flow li {
    flex: auto;
    gap: 10px;
  }
}
.p-recommended__flow figure img {
  width: 100%;
  height: 100%;
  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-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: flex;
  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;
  text-decoration: underline transparent;
  transition: all 0.3s ease;
}
.p-office__link:hover {
  text-decoration-color: currentColor;
}
.p-office__content {
  gap: 60px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-office__content {
    gap: 20px;
  }
}
.p-office__info {
  flex: 0 0 484px;
}
@media screen and (max-width: 767px) {
  .p-office__info {
    flex: auto;
    width: 100%;
  }
}
.p-office__data {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.p-office__data dt {
  flex: 0 0 100px;
}
.p-office__data dd {
  flex: 1;
}
.p-office__list {
  margin-block: 20px;
  padding-block: 20px;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
}
.p-office__map {
  flex: 1;
  height: auto;
  aspect-ratio: 850/622;
}
@media screen and (max-width: 767px) {
  .p-office__map {
    flex: auto;
    width: 100%;
  }
}
.p-office__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-office__link {
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
}
.p-office__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  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: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-service__img {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-service__img figure {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-service__img figure {
    flex: auto;
  }
}
.p-service__img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-service__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-service__content {
    flex-direction: column;
    gap: 20px;
  }
}
.p-service__text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    flex: auto;
  }
}
.p-service__price {
  display: flex;
  gap: 20px;
  flex: 1;
  align-items: flex-start;
}
.p-service__price-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  background-color: #1a69a9;
  border-radius: 100px;
  aspect-ratio: 1/1;
  width: 100px;
  height: auto;
  display: flex;
  align-items: 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: flex;
  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: #1a69a9;
  color: #fff;
}
.p-service__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  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: flex;
  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;
}

@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-mb20 {
  margin-bottom: 20px;
}

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

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb80 {
  margin-bottom: 80px;
}/*# sourceMappingURL=style.css.map */