@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 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@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: 26px;
}
@media screen and (max-width: 767px) {
  .l-grid3-1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.l-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-contents {
    gap: 20px;
  }
}

.l-narrowContents {
  max-width: 980px;
  margin-inline: auto;
}

.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: #0090a3;
}
@media screen and (max-width: 767px) {
  .c-infoBtn {
    max-width: 240px;
    padding: 6px 12px;
  }
}

.c-drawerIcon {
  width: 38px;
  height: 32px;
  position: relative;
  z-index: 300;
  cursor: pointer;
}
.c-drawerIcon.media {
  position: fixed;
  right: 20px;
  top: 20px;
}
.c-drawerIcon.media .bar1,
.c-drawerIcon.media .bar2 {
  background-color: #0090a3;
}
.c-drawerIcon.media .c-drawerIcon__text::before {
  color: #0090a3;
}
.c-drawerIcon .bar1,
.c-drawerIcon .bar2 {
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 4px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.c-drawerIcon .bar1 {
  top: -2px;
}
.c-drawerIcon .bar2 {
  top: 31px;
}
.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: 5px;
}
.c-drawerIcon__text::before {
  position: absolute;
  transition: transform 0.3s;
  content: "MENU";
}
.c-drawerIcon.is-open .bar1,
.c-drawerIcon.is-open .bar2 {
  background-color: #fff;
}
.c-drawerIcon.is-open .bar1 {
  top: 10px;
  transform: rotate(45deg);
}
.c-drawerIcon.is-open .bar2 {
  top: 10px;
  transform: rotate(-45deg);
}
.c-drawerIcon.is-open .c-drawerIcon__text::before {
  content: "CLOSE";
  color: #fff;
  transform: translateY(20px);
}

.c-mediaCategory {
  background-color: #0090a3;
  padding: 10px;
  text-align: center;
}
.c-mediaCategory-name {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-mediaCategory-name {
    font-size: 16px;
  }
}

.c-pagination {
  display: flex;
  justify-content: space-around;
  gap: 80px;
  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: #0090a3;
  }
}

.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 #0090a3;
  border-radius: 50px;
  padding: 10px 50px;
  transition: all 0.3s ease-in-out;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  color: #0090a3;
}
.c-btn:hover {
  background-color: #0090a3;
  color: #fff;
}
.c-btn.white {
  border-color: #fff;
  background-color: #0090a3;
  color: #fff;
}
.c-btn.white:hover {
  background-color: #fff;
  color: #0090a3;
}

.c-head02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.c-head02::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  aspect-ratio: 3/2;
  height: auto;
  background-image: url(../img/title-logo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-head02 .jp {
  color: #2d2e2e;
  text-align: center;
  font-family: "YuMincho", "Shippori Mincho", serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-head02 .jp {
    font-size: 22px;
  }
}
.c-head02 .jp.small {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-head02 .jp.small {
    font-size: 20px;
  }
}
.c-head02 .jp span {
  color: #2d2e2e;
  font-family: "YuMincho", "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-head02 .jp span {
    font-size: 18px;
  }
}
.c-head02 .en {
  color: #717071;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-head02 .en {
    font-size: 14px;
  }
}
.c-head02.white::before {
  background-image: url(../img/title-logo-w.webp);
}
.c-head02.white .jp {
  color: #fff;
}
.c-head02.white .en {
  color: #fff;
}

.c-head03 {
  color: #0090a3;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-head03 {
    font-size: 16px;
  }
}

.c-btnMap {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 8px 50px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 300px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btnMap {
    font-size: 14px;
  }
}
.c-btnMap span {
  position: relative;
  padding-right: 30px;
}
.c-btnMap span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  aspect-ratio: 1/1;
  height: auto;
  background-color: #fff;
  mask-image: url("../img/map-window.svg");
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.c-btnMap:hover {
  background-color: #fff;
  color: #545d5e;
}
.c-btnMap:hover span::before {
  background-color: #545d5e;
}

.c-pageTitle {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0090a3;
  text-align: center;
  text-shadow: 0 0 40px #fff;
  font-family: "YuMincho", "Shippori Mincho", serif;
  font-size: 48px;
  font-weight: 800;
  background-image: url(../img/page-title.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .c-pageTitle {
    height: 150px;
    font-size: 26px;
    background-image: url(../img/page-title_sp.webp);
  }
}
.c-pageTitle span {
  position: relative;
  z-index: 1;
}
.c-pageTitle span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 625px;
  height: 148px;
  border-radius: 625px;
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
  filter: blur(50px);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-pageTitle span::before {
    width: 318px;
    height: 135px;
    border-radius: 318px;
    background: linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
    filter: blur(40px);
  }
}

.c-telBtn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 90;
  width: 80px;
}
.c-telBtn img {
  width: 100%;
}

.c-banner {
  display: block;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 80px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-banner {
    margin-bottom: 40px;
  }
}
.c-banner:hover {
  opacity: 0.8;
}

.p-mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.p-mv__wrap {
  position: relative;
  overflow-x: hidden;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .p-mv__wrap {
    height: 100svh;
  }
}
.p-mv__inner {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-mv__img {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../img/mv.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  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__img {
    background-image: url(../img/mv_sp.webp);
  }
}
@keyframes revealFromTop {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.p-mv__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-mv__logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-mv__logo {
    width: 30%;
  }
}
.p-mv__text {
  color: #717071;
  text-align: center;
  text-shadow: 0 0 20px rgba(113, 112, 113, 0.3);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 14px;
  }
}
.p-mv__text span {
  display: block;
  color: #2d2e2e;
  text-align: center;
  text-shadow: 0 0 59px rgba(0, 144, 163, 0.2);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.5;
  font-family: "YuMincho", "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-mv__text span {
    font-size: 25px;
  }
}
.p-mv__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 771px;
  height: 377px;
  border-radius: 771px;
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
  filter: blur(100px);
  z-index: -1;
}

.p-read {
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .p-read {
    padding-block: 40px;
  }
}
.p-read h2 {
  color: #0090a3;
  text-align: center;
  font-family: "YuMincho", "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-read h2 {
    font-size: 18px;
  }
}
.p-read__contents {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-read__contents {
    flex-direction: column;
    gap: 20px;
  }
}
.p-read__img {
  flex: 1;
}
.p-read h3 {
  color: #0090a3;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-read h3 {
    font-size: 16px;
  }
}
.p-read__text {
  flex: 1;
}

.p-info {
  background-color: #0090a3;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-info {
    padding-block: 40px;
  }
}
.p-info__title {
  text-align: center;
  margin-bottom: 40px;
  color: #2d2e2e;
}
.p-info__title p {
  font-size: 40px;
  line-height: 1.75;
  font-family: "YuMincho", "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: #0090a3;
  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%;
  transition: all 0.3s ease;
}
.p-info__card:hover {
  opacity: 0.8;
}
.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-footer {
  padding-block: 10px;
  border-top: 1px solid #FFF;
  background: #545D5E;
  color: #FFF;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.p-header {
  background-color: #0090a3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-inline: 40px;
  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;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-inline: 16px;
  }
}
.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 {
  transition: all 0.3s ease;
  width: 25.3472222222vw;
  max-width: 365px;
}
.p-header__logo:hover {
  opacity: 0.8;
}
.p-header__logo a {
  display: block;
}
@media screen and (max-width: 1024px) {
  .p-header__logo {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 200px;
  }
}

.p-header__nav {
  display: flex;
  align-items: center;
  column-gap: clamp(0.625rem, -0.919rem + 2.41vw, 1.25rem);
  height: 100%;
  color: #2d2e2e;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    gap: 10px;
  }
}

.p-header__list {
  display: flex;
  align-items: center;
  column-gap: clamp(0.625rem, -0.919rem + 2.41vw, 1.25rem);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    display: none;
  }
}
.p-header__list li {
  height: 100%;
}
.p-header__list a {
  font-size: clamp(0.75rem, 0.133rem + 0.96vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  height: 100%;
}
.p-header__list a span {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.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: 15.6944444444vw;
  max-width: 226px;
}
@media screen and (max-width: 1024px) {
  .p-header__contact a {
    width: 200px;
  }
}
@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-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: #4E4E4E;
  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: #2d2e2e;
}
.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(180deg, #2B2B2B 0%, #3E3E3E 17.63%, #4A4A4A 36.06%, #4E4E4E 100%);
  width: calc(100% + 20px);
  margin: 58px -10px 0;
  height: 20px;
}

.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 264px 0 0;
    width: calc(100vw - 264px);
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaSide {
    margin: 0;
    width: 100%;
    height: 50svh;
  }
}
.p-mediaSide figure {
  height: 100%;
}
.p-mediaSide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-mediaSide__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.p-mediaContents {
  margin: 0 300px 0 30%;
}
@media (max-width: 1180px) {
  .p-mediaContents {
    margin: 0 300px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaContents {
    margin: 0;
    width: 100%;
  }
}
.p-mediaContents__img {
  padding-block: 40px 60px;
}
@media screen and (max-width: 767px) {
  .p-mediaContents__img {
    padding-block: 20px 40px;
  }
}
.p-mediaContents__img img {
  width: 100%;
  height: 100%;
}
.p-mediaContents__title {
  margin-bottom: 20px;
}
.p-mediaContents__text {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-mediaContents__text {
    font-size: 16px;
  }
}

.p-mediaFooter__contact {
  background: #8d8d8d;
  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: 0.6875rem;
  color: #fff;
  display: block;
}
.p-mediaFooter__address {
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
  font-style: normal;
}

.p-mediaRead {
  padding: 40px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mediaRead {
    padding: 20px 0 0;
  }
}
.p-mediaRead__text {
  margin: 0 auto 40px;
}
.p-mediaRead__text h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-mediaRead__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-mediaRead__title {
    font-size: 18px;
  }
}

.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-access {
  padding-block: 80px 40px;
  background-color: #545d5e;
  color: #fff;
}
.p-access__content {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-access__content {
    flex-direction: column;
    gap: 20px;
  }
}
.p-access__info {
  flex: 0 0 360px;
}
@media screen and (max-width: 767px) {
  .p-access__info {
    flex: auto;
    width: 100%;
  }
}
.p-access__map {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    flex: auto;
    width: 100%;
  }
}
.p-access__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    font-size: 16px;
  }
}
.p-access__address {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-access__address {
    font-size: 14px;
  }
}
.p-access__text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-access__text {
    font-size: 14px;
  }
}
.p-access__img {
  display: block;
  margin-top: 50px;
}
.p-access__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 360/107;
}
@media screen and (max-width: 767px) {
  .p-access__img {
    margin-top: 20px;
  }
}
.p-access__map {
  flex: 1;
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    width: 100%;
    aspect-ratio: 331/285;
    height: auto;
  }
}

.p-guide {
  padding-block: 80px;
  background-color: #ebf7f8;
}
@media screen and (max-width: 767px) {
  .p-guide {
    padding-block: 40px;
  }
}
.p-guide__text {
  max-width: 800px;
  margin-inline: auto;
}

.p-plan {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding-block: 40px;
  }
}
.p-plan__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-plan__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.p-plan__item {
  transition: all 0.3s ease;
}
.p-plan__item:hover {
  opacity: 0.8;
}
.p-plan__item:first-child {
  grid-column: 1/4;
}
@media screen and (max-width: 767px) {
  .p-plan__item:first-child {
    grid-column: auto;
  }
}
.p-plan__item img {
  width: 100%;
}

.p-flow {
  padding-block: 40px;
  position: relative;
  z-index: 1;
}
.p-flow::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 890px;
  background-image: url(../img/flow-bg.webp);
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-flow::before {
    height: 230px;
    background-image: url(../img/flow-bg_sp.webp);
  }
}
.p-flow__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.p-flow__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-flow__item h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow__item h4 {
    font-size: 16px;
  }
}
.p-flow__item:first-child h4 {
  color: #49c311;
}
.p-flow__item:first-child img {
  width: 70.8333333333vw;
}
@media screen and (max-width: 767px) {
  .p-flow__item:first-child img {
    width: 88.2666666667vw;
  }
}
.p-flow__item:nth-child(2) h4 {
  color: #5787d8;
}
.p-flow__item:nth-child(2) img {
  width: 60.9722222222vw;
}
@media screen and (max-width: 767px) {
  .p-flow__item:nth-child(2) img {
    width: 76vw;
  }
}
.p-flow__item:nth-child(3) h4 {
  color: #ed9e00;
}
.p-flow__item:nth-child(3) img {
  width: 40.6944444444vw;
}
@media screen and (max-width: 767px) {
  .p-flow__item:nth-child(3) img {
    width: 50.6666666667vw;
  }
}

.p-intro {
  padding-block: 80px 40px;
}
.p-intro__text {
  max-width: 800px;
  margin-inline: auto;
}
.p-intro__list {
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-intro__list {
    flex-direction: column;
    gap: 20px;
  }
  .p-intro__list.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
  }
}
.p-intro__item {
  flex: 1;
}

.p-outline {
  padding-block: 80px;
  background-color: #ebf7f8;
}
@media screen and (max-width: 767px) {
  .p-outline {
    padding-block: 40px;
  }
}
.p-outline__content {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 40px;
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-outline__content {
    flex-direction: column;
    gap: 20px;
  }
}
.p-outline__img {
  flex: 1;
}
.p-outline__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-outline__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-outline__text h3 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-outline__text h3 {
    font-size: 16px;
  }
}

.p-consult {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-consult {
    padding-block: 40px;
  }
}
.p-consult__text {
  max-width: 800px;
  margin-inline: auto;
}
.p-consult__content {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-radius: 16px;
  background: #ebf7f8;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .p-consult__content {
    flex-direction: column;
    gap: 20px;
    padding: 16px;
  }
}
.p-consult__info {
  flex: 0 0 466px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-consult__info {
    flex: auto;
    width: 100%;
    gap: 16px;
  }
}
.p-consult__info h4 {
  color: #0090a3;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-consult__info h4 {
    font-size: 20px;
  }
}
.p-consult__telText {
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-consult__telText {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.p-consult__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0090a3;
  font-family: "Open Sans", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-consult__tel {
    font-size: 36px;
    gap: 4px;
  }
  .p-consult__tel img {
    width: 32px;
  }
}
.p-consult__img {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-consult__img {
    flex: auto;
    width: 100%;
  }
}

.p-details {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-details {
    padding-block: 40px;
  }
}
.p-details__text {
  max-width: 800px;
  margin-inline: auto;
}
.p-details__content {
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-details__content h4 {
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
.p-details__content h4.green {
  background: #60ba36;
}
.p-details__content h4.orange {
  background: #ed9e00;
}
.p-details__content h4.blue {
  background: #3974db;
}
.p-details__content h4.purple {
  background: #a16ea0;
}
@media screen and (max-width: 767px) {
  .p-details__content h4 {
    font-size: 20px;
    padding: 4px;
  }
}
.p-details__content h5 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-details__content h5.green {
  color: #60ba36;
}
.p-details__content h5.orange {
  color: #ed9e00;
}
.p-details__content h5.blue {
  color: #3974db;
}
.p-details__content h5.purple {
  color: #a16ea0;
}
@media screen and (max-width: 767px) {
  .p-details__content h5 {
    font-size: 16px;
  }
}
.p-details__price-wrap {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-inline: auto;
}
.p-details__price-wrap figure {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-details__price-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .p-details__price-wrap figure {
    flex: auto;
    width: 100%;
  }
}
.p-details__price {
  flex: 0 0 372px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .p-details__price {
    flex: auto;
    width: 100%;
  }
}
.p-details__price-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}
.p-details__price-item .tag {
  display: flex;
  padding: 2px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .p-details__price-item .tag {
    font-size: 14px;
    padding: 2px 8px;
  }
}
.p-details__price-item .tag.small {
  font-size: 16px;
  margin-right: 0;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .p-details__price-item .tag.small {
    font-size: 12px;
  }
}
.p-details__price-item .price {
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-details__price-item .price {
    font-size: 42px;
  }
}
.p-details__price-item .price.small {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-details__price-item .price.small {
    font-size: 28px;
  }
}
.p-details__price-item .unit {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-details__price-item .unit {
    font-size: 14px;
  }
}
.p-details__price-item .unit.small {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-details__price-item .unit.small {
    font-size: 12px;
  }
}
.p-details__price-item.green .tag {
  background: #60ba36;
}
.p-details__price-item.green .tag.small {
  background: transparent;
  color: #60ba36;
}
.p-details__price-item.green .price {
  color: #60ba36;
}
.p-details__price-item.green .unit {
  color: #60ba36;
}
.p-details__price-item.orange .tag {
  background: #ed9e00;
}
.p-details__price-item.orange .tag.small {
  background: transparent;
  color: #ed9e00;
}
.p-details__price-item.orange .price {
  color: #ed9e00;
}
.p-details__price-item.orange .unit {
  color: #ed9e00;
}
.p-details__price-item.blue .tag {
  background: #3974db;
}
.p-details__price-item.blue .price {
  color: #3974db;
}
.p-details__price-item.blue .unit {
  color: #3974db;
}
.p-details__price-item.purple .tag {
  background: #a16ea0;
}
.p-details__price-item.purple .price {
  color: #a16ea0;
}
.p-details__price-item.purple .unit {
  color: #a16ea0;
}
.p-details__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-details__flow {
    gap: 10px 20px;
  }
}
.p-details__flow .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-details__flow .title {
    gap: 12px;
  }
}
.p-details__flow .title span {
  border-radius: 2px;
  padding: 4px 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-details__flow .title span {
    font-size: 12px;
    padding: 2px 8px;
  }
}
.p-details__flow .title span.green {
  background: #60ba36;
}
.p-details__flow .title span.orange {
  background: #ed9e00;
}
.p-details__flow .title span.blue {
  background: #3974db;
}
.p-details__flow .title span.purple {
  background: #a16ea0;
}
.p-details__flow .list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-details__flow .list {
    gap: 20px;
  }
}
.p-details__flow .list li {
  font-size: 16px;
  color: #333;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  border: 2px solid #bfbdbd;
  background: #fff;
  display: flex;
  width: 67px;
  aspect-ratio: 1/1;
  height: auto;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-details__flow .list li {
    font-size: 12px;
    width: 46px;
  }
}
.p-details__flow .list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  width: 27px;
  aspect-ratio: 27/20;
  height: auto;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-details__flow .list li:not(:last-child)::after {
    right: -27px;
  }
}
.p-details__info {
  max-width: 980px;
  margin-inline: auto;
  border-radius: 16px;
  background: #f8eacd;
  display: flex;
  padding: 24px 24px 36px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-details__info {
    padding: 16px;
  }
}
.p-details__info h6 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-details__info h6 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.p-details__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.p-details__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .p-details__list li img {
    width: 60px;
  }
}
.p-details__list li span {
  text-align: center;
  font-size: 14px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-details__list li span {
    font-size: 12px;
  }
}
.p-details__member {
  border-radius: 16px;
  background: #fff;
  display: flex;
  padding: 16px 24px 24px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-details__member {
    padding: 16px;
  }
}
.p-details__member p {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-details__member p {
    font-size: 14px;
  }
}
.p-details__member .list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.p-details__member .list li {
  border-radius: 100px;
  background: #aae1e6;
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-details__member .list li {
    width: 46px;
    height: 46px;
    font-size: 10px;
  }
}
.p-details__not-included {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
}
.p-details__not-included.green {
  background: #80a66e;
}
.p-details__not-included.orange {
  background: #cea554;
}
.p-details__not-included.blue {
  background: #728fc0;
}
.p-details__not-included.purple {
  background: #845383;
}
@media screen and (max-width: 767px) {
  .p-details__not-included {
    padding: 16px;
  }
}
.p-details__not-included .title {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-details__not-included .title {
    font-size: 16px;
  }
}
.p-details__not-included .list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-details__not-included .list {
    flex-direction: column;
    gap: 20px;
  }
}
.p-details__not-included .item {
  border-radius: 4px;
  border: 1px solid #333;
  background: #fff;
  padding: 10px;
  flex: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-details__not-included .item {
    font-size: 12px;
  }
}
.p-details__note {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-details__note {
    font-size: 12px;
  }
}

.p-membership {
  padding-block: 80px;
  background-color: #ebf7f8;
}
@media screen and (max-width: 767px) {
  .p-membership {
    padding-block: 40px;
  }
}
.p-membership__content {
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-membership__content {
    flex-direction: column;
    gap: 20px;
  }
}
.p-membership__content figure {
  flex: 1;
}
.p-membership__list {
  flex: 0 0 556px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-membership__list {
    flex: auto;
    width: 100%;
  }
}
.p-membership__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 16px;
  align-items: flex-start;
  border-radius: 16px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-membership__item {
    padding: 16px;
  }
}
.p-membership__item h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-membership__item h4 {
    font-size: 20px;
  }
}
.p-membership__item p {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-membership__item p {
    font-size: 14px;
  }
}
.p-membership__item p span {
  color: #0090a3;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  display: inline-block;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .p-membership__item p span {
    font-size: 20px;
  }
}
.p-membership__tel {
  padding: 16px;
  border-radius: 16px;
  background: #0090a3;
  max-width: 800px;
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-membership__tel {
    padding: 16px;
    font-size: 16px;
    gap: 4px;
  }
}
.p-membership__tel span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-membership__tel span {
    font-size: 36px;
    gap: 4px;
  }
  .p-membership__tel span img {
    width: 32px;
  }
}

.p-system {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-system {
    padding-block: 40px;
  }
}
.p-system__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-system__content {
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.p-system__content figure {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-system__content figure {
    flex: auto;
    width: 100%;
  }
}
.p-system__content figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-system__info {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-system__info {
    width: 100%;
  }
}
.p-system__info h4 {
  color: #0090a3;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-system__info h4 {
    font-size: 16px;
  }
}
.p-system__text {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-system__text {
    font-size: 14px;
  }
}
.p-system__note {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-system__note {
    font-size: 12px;
  }
}
.p-system__notice {
  border-radius: 16px;
  background: #0090a3;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding: 16px;
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-system__notice {
    font-size: 16px;
  }
}

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

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

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

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

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

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

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

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

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

.u-mt90 {
  margin-top: 90px;
}/*# sourceMappingURL=style.css.map */