@charset "UTF-8";
html {
  font-size: 100%;
}

html,
body {
  overflow-x: hidden;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 100%;
  }
}
body {
  font-family: "";
  color: #333;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  a,
  button {
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1440px;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: #0093d4;
  padding: 0.625rem 1.875rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 15rem;
  height: 3.125rem;
  box-sizing: border-box;
  cursor: pointer;
}

.c-button:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .c-button {
    width: 15rem;
  }
}
.c-button__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1rem;
  line-height: normal;
  white-space: nowrap;
}

.c-button__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  position: relative;
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
}

.c-button__icon::before,
.c-button__icon::after {
  content: "";
  position: absolute;
  display: block;
}

.c-button__icon::before {
  width: 0.625rem;
  height: 1px;
  background: #fff;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
}

.c-button__icon::after {
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%) rotate(45deg);
}

.c-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.c-title__en {
  border-bottom: 2px solid #0093d4;
  padding: 0 0.625rem 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #0093d4;
  text-align: center;
  white-space: nowrap;
  line-height: normal;
}

.c-title__ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.875rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1875rem;
  white-space: nowrap;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .c-title__ja {
    font-size: 3.75rem;
    letter-spacing: 0.375rem;
  }
}
.p-about {
  width: 100%;
  padding: 2.5rem 0 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-about {
    position: relative;
    padding: 0;
    min-height: 78.4375rem;
    max-width: 90rem;
    margin: 0 auto;
  }
}
.p-about__header {
  margin-bottom: 2.5rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-about__header {
    position: absolute;
    top: 2.75rem;
    right: 16.8125rem;
    margin-bottom: 0;
    width: auto;
  }
}
main {
  margin-top: calc(25px + 3vw);
  overflow: hidden;
}

@media screen and (max-width: 2000px) {
  main {
    margin-top: calc(25px + 5vw);
  }
}
@media screen and (max-width: 1500px) {
  main {
    margin-top: calc(25px + 6.5vw);
  }
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 73.8px;
  }
}
.p-about__main-visual {
  position: relative;
  width: min(100%, 26.875rem);
  margin: 2.5rem auto 0;
}

@media screen and (min-width: 768px) {
  .p-about__main-visual {
    top: 4.125rem;
    margin-top: 0;
    width: 100%;
    height: auto;
  }
}
.p-about__image-wrapper {
  position: relative;
  width: min(100%, 26.875rem);
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-about__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-about__image {
    position: absolute;
    top: 11.9375rem;
    right: 0;
    width: 77.3125rem;
    height: 30.4375rem;
    box-shadow: 0.625rem 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .p-about__icon + .p-about__image {
    top: 48rem;
    left: 0;
  }
}
.p-about__image img {
  aspect-ratio: 430/359;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .p-about__image img {
    aspect-ratio: 1237/487;
  }
}
.p-about__icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 2.125rem;
  margin-top: 0.625rem;
  margin-bottom: 1.4375rem;
}

@media screen and (min-width: 768px) {
  .p-about__icon {
    position: absolute;
    top: 35.3125rem;
    left: 2.25rem;
    margin: 0;
    width: auto;
    height: auto;
    z-index: -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}
.p-about__icon img {
  aspect-ratio: 100/113;
  width: 6.25rem;
  height: 7.0625rem;
}

@media screen and (min-width: 768px) {
  .p-about__icon img {
    aspect-ratio: 653/233.15;
    width: 40.8125rem;
    height: 14.571875rem;
  }
}
.p-about__text-overlay {
  position: absolute;
  top: 25%;
  left: 33%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  z-index: 10;
  max-width: calc(100% - 1.25rem);
  padding: 0 0.625rem;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  .p-about__text-overlay {
    top: 0;
    left: 9.4375rem;
    transform: none;
    flex-direction: row;
    gap: 1.875rem;
    padding: 0;
    overflow-x: visible;
  }
}
.p-about__text-box {
  background: #fff;
  padding: 0.625rem;
  box-shadow: 5px 10px 7px rgba(0, 0, 0, 0.15);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-about__text-box .p-about__text-span {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-about__text-box .p-about__text-span {
    font-size: 2rem;
  }
}
.p-about__text-box .p-about__text-span .highlight {
  color: #0093d4;
}

.p-about__info-section {
  position: relative;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem 1.25rem;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 24.375rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-about__info-section {
    position: absolute;
    top: 38.3125rem;
    left: 49.5rem;
    transform: none;
    width: 35.5rem;
    max-width: none;
    padding: 3.75rem 2.5rem;
    gap: 2.5rem;
    align-items: flex-start;
  }
}
.p-about__info-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #000;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-about__info-title {
    font-size: 1.875rem;
    letter-spacing: 0.1875rem;
    text-align: left;
    line-height: 1.6;
  }
}
.p-about__info-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .p-about__info-text {
    font-size: 1.125rem;
  }
}
.p-about__info-box {
  background: #f5f4fa;
  padding: 1.25rem;
}

.p-about__info-box-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #000;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .p-about__info-box-text {
    font-size: 1rem;
  }
}
.p-access {
  width: 100%;
  padding-top: 2.5rem;
  position: relative;
}

.p-access__wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media screen and (min-width: 768px) {
  .p-access__wrapper {
    max-width: 100%;
    position: relative;
  }
}
.p-access__header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-access__header-wrapper {
    position: relative;
    gap: 1.875rem;
    padding-bottom: 0;
    z-index: 2;
    width: 100%;
    max-width: 90rem;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-access__header {
  width: auto;
  margin-bottom: 0;
}

.p-access__divider {
  width: 1px;
  height: 1.875rem;
  background: #333333;
}

@media screen and (min-width: 768px) {
  .p-access__divider {
    height: 2.5rem;
  }
}
.p-access__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  width: auto;
}

@media screen and (min-width: 768px) {
  .p-access__intro {
    gap: 1.875rem;
  }
}
.p-access__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media screen and (min-width: 768px) {
  .p-access__content {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}
.p-access__slogan {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.15rem;
  line-height: normal;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-access__slogan {
    font-size: 2.5rem;
    letter-spacing: 0.25rem;
  }
}
.p-access__description {
  width: 100%;
  max-width: 24.375rem;
  box-sizing: border-box;
  padding: 0.625rem;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: none;
  border-right: none;
  box-sizing: border-box;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .p-access__description {
    width: auto;
    padding: 0.625rem;
  }
}
.p-access__description p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1125rem;
  line-height: 1.3;
  margin: 0;
  white-space: pre-wrap;
  width: 100%;
  max-width: 23.75rem; /* もし内側に上限必要なら */
  box-sizing: border-box;
  text-shadow: 7.51px 7.51px 25.034px #ffffff, 0px 0px 25.034px #ffffff, 0px 0px 25.034px #ffffff, 0px 0px 25.034px #ffffff, 0px 0px 25.034px #ffffff;
}

@media screen and (min-width: 768px) {
  .p-access__description p {
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    width: auto;
  }
}
.p-access__info-section {
  position: relative;
  width: 100%;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-sizing: border-box;
}

.p-access__info-section::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  transform: none;
  height: 100%;
  background: #f2f9f1;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-access__info-section {
    width: 50%;
    padding: 2.5rem 0;
    gap: 1.875rem;
    background: #f2f9f1;
    align-items: center;
    justify-content: center;
  }
  .p-access__info-section::before {
    display: none;
  }
}
.p-access__logo-wrapper {
  width: 16.25rem;
  height: 4.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-access__logo-wrapper {
    width: 16.25rem;
    height: 4.125rem;
  }
}
.p-access__logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-access__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.p-access__hours-table {
  width: 100%;
  max-width: 24.1875rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .p-access__hours-table {
    width: 24.1875rem;
  }
}
.p-access__hours-header {
  background: #79c06e;
  display: flex;
  align-items: center;
  gap: 1.0638125rem;
  padding: 1rem 1.25rem 1rem 1rem;
}

.p-access__hours-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.0875rem;
  line-height: 1.3;
  margin: 0;
  width: 6.25rem;
  white-space: nowrap;
}

.p-access__days {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.07rem;
  line-height: 1.8;
  white-space: pre-wrap;
}

.p-access__days span {
  width: 1.875rem;
  display: block;
  white-space: nowrap;
}

.p-access__hours-row {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem 0.625rem 0;
  box-sizing: border-box;
  border-top: 1px solid #b6b3b0;
}

.p-access__hours-time {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.0875rem;
  line-height: 1.3;
  margin: 0;
  width: 6.25rem;
  white-space: nowrap;
}

.p-access__days-status {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.07rem;
  line-height: 1.8;
  white-space: pre-wrap;
}

.p-access__days-status span {
  width: 1.875rem;
  display: block;
}

.p-access__details {
  width: 100%;
  padding: 0.625rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media screen and (min-width: 768px) {
  .p-access__details {
    width: 33.6875rem;
  }
}
.p-access__detail-row {
  display: flex;
  gap: 0.5625rem;
  border-top: 1px solid #dadada;
}

.p-access__detail-row:first-child {
  border-top: none;
}

.p-access__detail-label {
  width: 5.625rem;
  padding: 1.125rem 0.625rem;
  box-sizing: border-box;
  border-top: 1px solid #dadada;
  display: flex;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #333333;
  letter-spacing: 0.08125rem;
  line-height: 2.3;
}

@media screen and (min-width: 768px) {
  .p-access__detail-label {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    white-space: nowrap;
  }
}
.p-access__detail-value {
  flex: 1;
  padding: 1.125rem 0.625rem;
  box-sizing: border-box;
  border-top: 1px solid #dadada;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #333333;
  letter-spacing: 0.08125rem;
  line-height: 2.3;
}

@media screen and (min-width: 768px) {
  .p-access__detail-value {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    width: 26.25rem;
    flex: none;
  }
}
.p-access__detail-value p {
  margin: 0;
  line-height: 2;
}

.p-access__detail-value p:not(:last-child) {
  margin-bottom: 0;
}

.p-access__detail-row--tel .p-access__detail-value {
  font-size: 1rem;
  letter-spacing: 0.1rem;
}

.p-access__map {
  width: 100%;
  height: 18.75rem;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-access__map {
    width: 50%;
    height: auto;
  }
}
.p-access__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-access__map iframe {
  width: 100%;
  height: calc(100% + 300px);
  margin-top: -150px;
  border: 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-access__map iframe {
    height: 100%;
    margin-top: 0;
  }
}
.p-blog {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-blog {
    width: auto;
  }
}
.p-blog__card {
  background: #fff;
  box-shadow: 0px 0px 0.5rem 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 24.375rem;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-blog__card {
    max-width: 39.25rem;
    box-shadow: 0.625rem 0.625rem 1.875rem 0px rgba(0, 0, 0, 0.15);
    gap: 1.875rem;
    padding: 2.5rem 1.5rem;
  }
}
.p-blog__header {
  width: 21.875rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
  padding-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-blog__header {
    width: 36.25rem;
  }
}
.p-blog__title-en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.875rem;
  color: #333333;
  letter-spacing: 0.09375rem;
  line-height: normal;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-blog__title-en {
    font-size: 2.5rem;
    letter-spacing: 0.125rem;
  }
}
.p-blog__title-ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1rem;
  color: #333333;
  letter-spacing: 0.05rem;
  line-height: normal;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-blog__title-ja {
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
  }
}
.p-blog__list {
  width: 21.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-blog__list {
    width: 36.5625rem;
  }
}
.p-blog__item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.p-blog__image {
  width: 5.625rem;
  height: 4.0625rem;
  background: #d9d9d9;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .p-blog__image {
    width: 7.75rem;
    height: 5.625rem;
  }
}
.p-blog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-blog__content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .p-blog__content {
    gap: 1.25rem;
  }
}
.p-blog__date {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333333;
  letter-spacing: 0.0375rem;
  line-height: normal;
  white-space: nowrap;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-blog__date {
    font-size: 0.875rem;
    letter-spacing: 0.04375rem;
  }
}
.p-blog__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333333;
  letter-spacing: 0.03rem;
  line-height: normal;
  margin: 0;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .p-blog__title {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}
.p-contents {
  position: relative;
  width: 100%;
  height: 2090px;
  /* height: auto; */
  padding: 0;
  overflow: hidden;
}

@media screen and (max-width: 1440px) {
  .p-contents {
    height: 144vw;
  }
}
@media screen and (max-width: 767px) {
  .p-contents {
    height: auto;
  }
}
.p-contents__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.p-contents__background img {
  width: 100%;
  height: 100%;
  min-height: 3000px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-contents__background {
    top: 20.4375rem;
    bottom: 0;
  }
  .p-contents__background img {
    min-height: 3500px;
  }
}
.p-contents__header-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.4375rem 1.25rem 2.1875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #5fb1d6;
  box-shadow: 0.625rem 0.625rem 1.875rem 0 rgba(0, 0, 0, 0.15);
  min-height: 13.6875rem;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

@media screen and (min-width: 768px) {
  .p-contents__header-section {
    max-width: 100%;
    padding: 10rem 11.5rem 7.5rem;
    min-height: 28.625rem;
  }
}
.p-contents__icon {
  width: 1.875rem;
  height: 2.125rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-contents__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .p-contents__icon {
    width: 4.375rem;
    height: 4.951875rem;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
  }
}
.p-contents__title_sp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.875rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 0 1.25rem;
}

.p-contents__title_sp p {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-contents__title_sp {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .p-contents__title_sp {
    font-size: 1.7rem;
  }
}
.p-contents__title_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-contents__title_pc {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    color: #ffffff;
    display: block;
    font-size: 4.693875rem;
    letter-spacing: 0.4693875rem;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    margin: 0;
  }
}
.p-contents__title-underline {
  position: relative;
  display: inline-block;
}

.p-contents__title-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background: #79c06e;
  z-index: -1;
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .p-contents__title-underline::after {
    height: 1.875rem;
  }
}
.p-contents__cards {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 26.875rem;
  margin: 0 auto;
  padding: 3.75rem 1.25rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.375rem;
}

@media screen and (min-width: 768px) {
  .p-contents__cards {
    max-width: 90rem;
    padding: 5rem;
    gap: 6.25rem;
  }
}
.p-contents__card {
  position: relative;
  width: 100%;
  max-width: 24.375rem;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0.625rem 0.625rem 1.875rem 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-contents__card {
    max-width: 80rem;
    width: 80rem;
    box-shadow: 0.625rem 0.625rem 1.875rem 0 rgba(0, 0, 0, 0.15);
    padding: 1.25rem 1.875rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3.3125rem;
  }
  .p-contents__card::before {
    content: "";
    position: absolute;
    top: 5.125rem;
    left: -2.25rem;
    width: 84.5rem;
    height: 18.75rem;
    background: rgba(95, 177, 214, 0.2);
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .p-contents__card--reverse {
    flex-direction: row-reverse;
  }
}
.p-contents__card-number {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.2975rem;
  height: 6.2975rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-contents__card-number {
    top: -4.1875rem;
    left: calc(41.67% + 3.30125rem);
    transform: translateX(-50%);
    width: 8.396875rem;
    height: 8.396875rem;
  }
}
.p-contents__card-number-bg {
  position: absolute;
  width: 4.453125rem;
  height: 4.453125rem;
  background: linear-gradient(223.155deg, rgb(146, 127, 73) 1.51%, rgb(234, 217, 170) 48.6%, rgb(102, 88, 49) 98.49%), linear-gradient(90deg, rgb(121, 192, 110) 0%, rgb(121, 192, 110) 100%);
  transform: rotate(45deg);
  box-shadow: 0.46875rem 0.46875rem 1.40625rem rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 768px) {
  .p-contents__card-number-bg {
    width: 5.9375rem;
    height: 5.9375rem;
  }
}
.p-contents__card-number-text {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 3.75rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .p-contents__card-number-text {
    font-size: 5rem;
    line-height: 1;
    padding-bottom: 20px;
  }
}
.p-contents__card-image {
  background: #d9d9d9;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-contents__card-image img {
  aspect-ratio: 350/300;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .p-contents__card-image {
    width: 32.4375rem;
    height: 18.75rem;
    flex-shrink: 0;
  }
  .p-contents__card-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
}
.p-contents__card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 21.875rem;
}

@media screen and (min-width: 768px) {
  .p-contents__card-content {
    width: 39.25rem;
    max-width: 39.25rem;
    flex-shrink: 0;
  }
}
.p-contents__card-title-box {
  background: #333333;
  padding: 0.625rem;
  width: 100%;
  max-width: 21.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-contents__card-title-box {
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
    align-items: stretch;
  }
}
.p-contents__card-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  width: 100%;
}

.p-contents__card-title span {
  margin: 0;
  display: block;
}

.p-contents__card-title span:last-child {
  font-size: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-contents__card-title {
    text-align: left;
    white-space: pre-wrap;
    font-size: 0;
    flex: 1 0 0;
  }
  .p-contents__card-title span {
    font-size: 1.875rem;
    line-height: 1.3;
    margin: 0;
  }
  .p-contents__card-title span:last-child {
    font-size: 2.5rem;
  }
}
.p-contents__cards > .p-contents__card:first-child .p-contents__card-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  white-space: normal;
}

.p-contents__cards > .p-contents__card:first-child .p-contents__card-title span {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-contents__cards > .p-contents__card:first-child .p-contents__card-title {
    gap: 0.9375rem;
    flex-direction: row;
  }
}
.p-contents__card-description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2;
  color: #333333;
  letter-spacing: 0.035rem;
  margin: 0;
  width: 100%;
  max-width: 21.875rem;
}

@media screen and (min-width: 768px) {
  .p-contents__card-description {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.04rem;
    max-width: 100%;
  }
}
.p-contents__card-description--last {
  letter-spacing: 0.04375rem;
}

@media screen and (min-width: 768px) {
  .p-contents__card-description--last {
    letter-spacing: 0.04rem;
  }
}
.p-features {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: visible;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .p-features {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    overflow: visible;
  }
}
.p-features__header {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  max-width: 24.8rem;
  margin: 0 auto;
  padding: 0 10px;
}

@media screen and (min-width: 768px) {
  .p-features__header {
    max-width: 67.0625rem;
    gap: 2.5rem;
    margin-top: 7.875rem;
  }
}
.p-features__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .p-features__title {
    font-size: 4.5rem;
    letter-spacing: 10%;
    line-height: 1.3;
  }
}
.p-features__title-highlight {
  color: #79c06e;
}

.p-features__description {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  padding: 0.625rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-features__description {
    background: #fff;
    padding: 0.625rem 0;
    width: 84%;
  }
}
.p-features__description p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1em;
  text-shadow: 0.5rem 0.5rem 1.5625rem #ffffff, 0 0 1.5625rem #ffffff, 0 0 1.5625rem #ffffff, 0 0 1.5625rem #ffffff, 0 0 1.5625rem #ffffff;
}

@media screen and (min-width: 768px) {
  .p-features__description p {
    font-size: 1.5rem;
    letter-spacing: 10%;
    text-shadow: 0.469375rem 0.469375rem 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff;
  }
}
.p-features__cards {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 10px;
  padding: 25px 15px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(121, 192, 110, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 147, 212, 0.1) 100%);
}

@media screen and (min-width: 768px) {
  .p-features__cards {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 1.5rem;
    max-width: 80rem;
    width: auto;
    padding: 0;
    margin: 2.5rem auto;
    background: none;
  }
  .p-features__cards::before {
    content: "";
    position: absolute;
    top: -4.0625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 64.75rem;
    background: linear-gradient(90deg, rgba(121, 192, 110, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 147, 212, 0.1) 100%);
    z-index: -1;
  }
}
.p-features__card {
  position: relative;
  width: calc(50% - 5px);
  /* max-width: min(11.875rem, (100vw - clamp(0.5rem, 2.13vw, 1.25rem) * 2 - clamp(0.3125rem, 1.33vw, 0.625rem)) / 2); */
  /* height: 11.3020625rem; */
  box-shadow: 0.2889375rem 0.2889375rem 0.8668125rem 0 rgba(0, 0, 0, 0.15);
  margin-top: 2.135625rem;
  display: flex;
  flex-direction: column;
  justify-self: center;
  box-sizing: border-box;
  aspect-ratio: 1/1;
}

@media screen and (min-width: 768px) {
  .p-features__card {
    aspect-ratio: initial;
    width: 25.6875rem;
    max-width: 25.6875rem;
    height: auto;
    margin-top: 4.5rem;
    box-shadow: 0.625rem 0.625rem 1.875rem 0 rgba(0, 0, 0, 0.15);
  }
}
.p-features__number {
  position: absolute;
  top: -18%;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  height: 3.735125rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.8675rem;
  width: 4.0625rem;
}

@media screen and (min-width: 768px) {
  .p-features__number {
    margin-top: 3.71875rem;
    height: 13.75rem;
    width: auto;
  }
}
.p-features__number-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .p-features__number-svg {
    width: auto;
    height: 8.75rem;
    overflow: visible;
  }
}
.p-features__card-image {
  overflow: hidden;
  position: relative;
  height: calc(100% - 70px);
  /* height: 6.934375rem; */
}

.p-features__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .p-features__card-image {
    height: 15rem;
    width: 100%;
  }
  .p-features__card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.p-features__card-text {
  background: linear-gradient(95deg, #79c06e 50.84%, #0093d4 162.74%);
  height: 4.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  padding: 0.8668125rem 0.2889375rem;
  box-sizing: border-box;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .p-features__card-text {
    flex-direction: row;
    height: 7.5rem;
    padding: 1.875rem 0.625rem;
    gap: 0.625rem;
    justify-content: center;
    align-items: center;
  }
}
.p-features__card-text-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-features__card-text-content {
    width: 24.375rem;
    gap: 0;
  }
}
.p-features__card-text-content p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 0;
  width: 100%;
  /* width: 11.26825rem; */
}

@media screen and (min-width: 768px) {
  .p-features__card-text-content p {
    font-size: 1.5rem;
    width: 100%;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .p-features__card-text-line2 {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-features__card-text-line2 span {
    display: inline;
  }
}
.p-features__card-text-bold {
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: underline;
  text-underline-position: from-font;
}

@media screen and (min-width: 768px) {
  .p-features__card-text-bold {
    font-size: 2rem;
    text-decoration: underline;
    text-underline-position: from-font;
  }
}
.p-fixed-buttons {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  overflow: hidden;
  box-sizing: border-box;
  min-width: 20rem;
}

@media screen and (min-width: 768px) {
  .p-fixed-buttons {
    display: none !important;
  }
}
.p-fixed-buttons__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: clamp(0.5rem, 2vw, 1.25rem);
  height: 3.4455rem;
  width: 50%;
  max-width: 50vw;
  text-decoration: none;
  transition: opacity 0.3s;
  box-sizing: border-box;
  flex-shrink: 0;
}

.p-fixed-buttons__button:hover {
  opacity: 0.9;
}

.p-fixed-buttons__button--web {
  background: #0093d4;
  border-radius: 0.25rem 0 0 0;
}

.p-fixed-buttons__button--tel {
  background: #79c06e;
  border-radius: 0 0.25rem 0 0;
}

.p-fixed-buttons__icon {
  width: 1.653875rem;
  height: 1.653875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-fixed-buttons__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-fixed-buttons__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: normal;
  white-space: nowrap;
}

.p-fixed-buttons__button--web .p-fixed-buttons__text {
  letter-spacing: 0.1rem;
}

.p-fixed-buttons__button--tel .p-fixed-buttons__text {
  letter-spacing: 0;
}

.p-footer {
  background: #0093d4;
  padding: 2.5rem 1.25rem 4.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    padding: 2.5rem 5rem;
  }
}
.p-footer__logo {
  width: 2.5rem;
  height: 2.8295rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__nav {
  width: 100%;
  max-width: 24.375rem;
  display: flex;
  flex-direction: column;
  gap: 2.5625rem;
}

@media screen and (min-width: 768px) {
  .p-footer__nav {
    max-width: 80rem;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}
.p-footer__nav-main {
  border-top: 1px solid #dadada;
  padding-top: 1.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-main {
    width: 25.5rem;
    padding-top: 1.875rem;
    padding-bottom: 0;
  }
}
.p-footer__nav-main a,
.p-footer__nav-main p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1rem;
  line-height: 2.3;
  margin: 0;
  text-decoration: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-main a,
  .p-footer__nav-main p {
    font-size: 1.125rem;
    letter-spacing: 0.1125rem;
  }
}
.p-footer__nav-main a:hover,
.p-footer__nav-main p:hover {
  opacity: 0.8;
}

.p-footer__nav-medical {
  border-top: 1px solid #dadada;
  padding-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-medical {
    width: 51.25rem;
    padding-top: 1.875rem;
    padding-bottom: 0;
  }
}
.p-footer__nav-medical-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1rem;
  line-height: 2.3;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-medical-title {
    font-size: 1.125rem;
    letter-spacing: 0.1125rem;
    width: 100%;
  }
}
.p-footer__nav-medical-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 2.5rem;
  align-items: flex-end;
  justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-medical-list {
    gap: 1.875rem 2.5rem;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
.p-footer__nav-medical-item {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.p-footer__nav-medical-arrow {
  width: 0.4419375rem;
  height: 0.4419375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.p-footer__nav-medical-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-footer__nav-medical-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.0875rem;
  line-height: 2.3;
  margin: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.p-footer__nav-medical-link:hover {
  opacity: 0.8;
}

.p-footer__copyright {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.075rem;
  line-height: 1.6;
  margin: 0;
}

.p-gallery {
  position: relative;
  width: 100%;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

@media screen and (min-width: 768px) {
  .p-gallery {
    padding-top: 6.25rem;
  }
}
.p-gallery__container {
  position: relative;
  width: 100%;
  max-width: 27.0625rem;
}

@media screen and (min-width: 768px) {
  .p-gallery__container {
    max-width: 100%;
    box-shadow: none;
  }
}
.p-gallery__title-wrapper {
  position: absolute;
  left: 1.25rem;
  top: 0rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-gallery__title-wrapper {
    left: 5rem;
  }
}
.p-gallery__title-decoration {
  width: 5.3125rem;
  height: 5.3125rem;
  background: #fff;
  border: 0.5px solid #bfbfbf;
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0.625rem 0.625rem 1.875rem 0px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 768px) {
  .p-gallery__title-decoration {
    width: 10.625rem;
    height: 10.625rem;
    border: 1px solid #bfbfbf;
    box-shadow: none;
  }
}
.p-gallery__title-text {
  position: absolute;
  left: 2.6875rem;
  top: 2.8125rem;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.0625rem;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-gallery__title-text {
    left: 5.5rem;
    top: 5rem;
    font-size: 2.5rem;
    letter-spacing: 0.125rem;
  }
}
.p-gallery__title-text p {
  margin: 0;
}

.p-gallery__main-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-gallery__main-swiper .swiper-slide {
  width: 100%;
}

.p-gallery__main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/846;
  overflow: hidden;
  background: #d9d9d9;
}

@media screen and (min-width: 768px) {
  .p-gallery__main-image {
    height: 52.875rem;
  }
}
.p-gallery__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-gallery__navigation {
  background: #e6f4fb;
  width: 100%;
  padding: 1.875rem 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .p-gallery__navigation {
    height: 15.1875rem;
    padding: 0;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}
.p-gallery__nav-button {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 50%;
  padding: 0 !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  z-index: 10;
}

.p-gallery__nav-button.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.p-gallery__nav-button::after {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .p-gallery__nav-button {
    width: 2.5rem;
    height: 2.5rem;
    background: transparent !important;
  }
}
.p-gallery__nav-button--prev {
  transform: rotate(180deg);
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media screen and (min-width: 768px) {
  .p-gallery__nav-button--prev {
    margin-left: 5rem !important;
    margin-right: 0 !important;
  }
}
.p-gallery__nav-button--next {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media screen and (min-width: 768px) {
  .p-gallery__nav-button--next {
    margin-left: 0 !important;
    margin-right: 2.5rem !important;
  }
}
.p-gallery__nav-button .c-button__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  position: relative;
  border: 1px solid #0093d4;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .p-gallery__nav-button .c-button__icon {
    border-color: #0093d4;
  }
}
.p-gallery__nav-button .c-button__icon::before {
  width: 0.625rem;
  height: 1px;
  background: #0093d4;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-gallery__nav-button .c-button__icon::before {
    background: #0093d4;
  }
}
.p-gallery__nav-button .c-button__icon::after {
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid #0093d4;
  border-right: 1px solid #0093d4;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .p-gallery__nav-button .c-button__icon::after {
    border-color: #0093d4;
  }
}
.p-gallery__thumbnails-swiper {
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.p-gallery__thumbnails-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.p-gallery__thumbnails-swiper .swiper-slide {
  width: 9.375rem !important;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .p-gallery__thumbnails-swiper .swiper-slide {
    width: 17.0625rem !important;
  }
}
.p-gallery__thumbnail {
  width: 9.375rem;
  height: 5.5rem;
  flex-shrink: 0;
  background: #d9d9d9;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-gallery__thumbnail {
    width: 17.0625rem;
    height: 10.0625rem;
  }
}
.p-gallery__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-header {
  width: 100%;
  min-height: 2.875rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.625rem 1.25rem;
  position: relative;
  background: #fff;
  position: fixed;
  z-index: 100;
  top: 0;
}

@media screen and (min-width: 768px) {
  .p-header {
    min-height: 5.625rem;
    padding: 0 1.25rem 1.25rem 2.5rem;
    position: fixed;
    z-index: 100;
    top: 0;
    align-items: center;
  }
}
.p-header__left {
  display: flex;
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .p-header__left {
    width: 16.25rem;
    flex-shrink: 0;
  }
}
.p-header__info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .p-header__info {
    gap: 0.375rem;
    padding-top: 0.625rem;
  }
}
.p-header__info-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333333;
  line-height: normal;
  margin: 0;
}

.p-header__logo {
  width: 12.5rem;
  height: 3.1875rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 16.25rem;
    height: 4.125rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.p-header__right {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    flex: 1;
  }
}
.p-header__nav {
  display: flex;
  align-items: center;
  padding: 1.25rem 0 1.25rem 0.1875rem;
}

.p-header__nav-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #333333;
  text-decoration: none;
  line-height: 1.6;
  white-space: nowrap;
  transition: opacity 0.3s;
  height: 3.125rem;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
}

.p-header__nav-link:hover {
  opacity: 0.8;
}

.p-header__nav-divider {
  width: 1px;
  height: 3.125rem;
  background: #333333;
  flex-shrink: 0;
}

.p-header__buttons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0;
}

.p-header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.625rem;
  height: 3.125rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-header__button:hover {
  opacity: 0.9;
}

.p-header__button--web {
  background: #0093d4;
  width: 8.75rem;
}

.p-header__button--tel {
  background: #79c06e;
  width: 8.75rem;
}

.p-header__button-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-header__button-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__button-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: normal;
  white-space: nowrap;
}

.p-header__button--web .p-header__button-text {
  letter-spacing: 0.1rem;
}

.p-header__button--tel .p-header__button-text {
  letter-spacing: 0;
}

.p-header__toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.75rem;
  height: 2.875rem;
  background: #0093d4;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.625rem;
  cursor: pointer;
  z-index: 100;
}

.p-header__toggle:hover {
  opacity: 0.9;
}

.p-header__toggle:focus {
  outline: 2px solid #0093d4;
  outline-offset: 2px;
}

@media screen and (min-width: 768px) {
  .p-header__toggle {
    display: none;
  }
}
.p-header__toggle-line {
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 25rem;
  display: block;
}

.p-introduction {
  position: relative;
  width: 100%;
  min-height: 80.375rem;
  overflow: hidden;
  padding: 3.125rem 0;
}

@media screen and (min-width: 768px) {
  .p-introduction {
    padding: 0;
    min-height: 80.375rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
.p-introduction__background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* width: 100%;
  max-width: 26.875rem;
  height: 80.375rem; */
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: 1;
}

.p-introduction__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .p-introduction__background {
    width: 100%;
    max-width: 100%;
    height: 80.375rem;
    transform: translateX(-50%);
  }
}
.p-introduction__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 26.875rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-introduction__content {
    max-width: 100%;
    padding: 0;
    align-items: flex-start;
  }
}
.p-introduction__main-title {
  position: absolute;
  z-index: 2;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.875rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 0 3.75rem;
}

.p-introduction__main-title p {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-introduction__main-title {
    position: absolute;
    top: 7.52875rem;
    left: 50%;
    transform: translateX(-50%);
    width: 67.0625rem;
    /* -webkit-transform: none;
            transform: none; */
    font-size: 4.693875rem;
    letter-spacing: 10%;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }
}
.p-introduction__title-en {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 11vw;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3422875rem;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .p-introduction__title-en {
    top: 16.5625rem;
    left: 13.625rem;
    width: 62.8125rem;
    transform: none;
    font-size: 8rem;
    letter-spacing: 10%;
    line-height: 1.3;
    color: #ffffff;
    text-align: center;
  }
}
.p-introduction__title-underline {
  position: relative;
  display: inline-block;
}

.p-introduction__title-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.75rem;
  background: #ffffb1;
  z-index: -1;
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .p-introduction__title-underline::after {
    height: 1.875rem;
  }
}
.p-introduction__quote-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  margin-top: 8.375rem;
}

.p-introduction__quote {
  width: 100%;
  max-width: 24.375rem;
  padding: 1.25rem 0.625rem;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #0093d4;
  border-left: none;
  box-sizing: border-box;
}

.p-introduction__quote p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #0093d4;
  text-align: center;
  letter-spacing: 0.1125rem;
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .p-introduction__quote {
    display: none;
  }
}
.p-introduction__quote--pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-introduction__quote--pc {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0 0.625rem 1.25rem;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #0093d4;
    border-left: none;
    letter-spacing: 0.1em;
  }
}
.p-introduction__portrait {
  width: 17.5rem;
  height: 26.9375rem;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.p-introduction__portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .p-introduction__portrait {
    position: absolute;
    top: 22.5rem;
    left: 50%;
    transform: translateX(-39rem);
    /* left: 6.875rem; */
    width: 32.4375rem;
    height: 49.875rem;
    box-shadow: none;
    z-index: 2;
  }
}
.p-introduction__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-introduction__text-wrapper {
    position: absolute;
    top: 27.09125rem;
    /* left: 43.875rem; */
    left: calc(50% - 2rem);
    width: 39.25rem;
    align-items: flex-end;
    margin-top: 0;
    gap: 2.5rem;
  }
}
.p-introduction__quote--pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-introduction__quote--pc {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0 0.625rem 1.25rem;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #0093d4;
    border-left: none;
    box-sizing: border-box;
  }
  .p-introduction__quote--pc p {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-size: 1.875rem;
    letter-spacing: 10%;
    line-height: 1.6;
    text-align: left;
    color: #0093d4;
    margin: 0;
    white-space: pre-wrap;
  }
}
.p-introduction__text {
  width: 100%;
  max-width: 24.375rem;
}

.p-introduction__text p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #333333;
  letter-spacing: 0.0875rem;
  line-height: 2;
  margin: 0;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .p-introduction__text {
    width: 100%;
    max-width: none;
  }
  .p-introduction__text p {
    font-size: 1.125rem;
    letter-spacing: 10%;
    line-height: 2;
    color: #333333;
  }
}
.p-introduction__signature {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.875rem;
  width: 100%;
  flex-wrap: wrap;
}

.p-introduction__signature-label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #333333;
  line-height: normal;
  margin: 0;
  display: block;
}

.p-introduction__signature-name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.875rem;
  color: #333333;
  line-height: normal;
  margin: 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-introduction__signature {
    justify-content: flex-end;
    width: 100%;
  }
  .p-introduction__signature-label {
    font-size: 1.25rem;
    line-height: 1.448;
  }
  .p-introduction__signature-name {
    font-size: 2.5rem;
    line-height: 1.448;
  }
}
@media screen and (min-width: 768px) {
  .p-introduction__button {
    width: auto;
    height: 3.125rem;
  }
}
.p-medical {
  position: relative;
  width: 100%;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-medical {
    padding: 5rem 0;
  }
}
.p-medical__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-medical__header {
    gap: 1.875rem;
  }
}
.p-medical__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.p-medical__title-en {
  border-bottom: 2px solid #0093d4;
  padding: 0 0.625rem 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #0093d4;
  text-align: center;
  white-space: nowrap;
  line-height: normal;
}

.p-medical__title-ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.875rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1875rem;
  white-space: nowrap;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .p-medical__title-ja {
    font-size: 3.75rem;
    letter-spacing: 0.375rem;
  }
}
.p-medical__divider {
  background: #333333;
  height: 1.875rem;
  width: 1px;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .p-medical__divider {
    height: 2.5rem;
  }
}
.p-medical__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  width: 100%;
  max-width: 24.375rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-medical__content {
    max-width: 90rem;
    gap: 1.875rem;
  }
}
.p-medical__slogan {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.15rem;
  line-height: normal;
}

.p-medical__slogan p {
  margin: 0;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .p-medical__slogan {
    font-size: 2.5rem;
    letter-spacing: 0.25rem;
  }
}
.p-medical__description {
  background: #fff;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: none;
  border-right: none;
  box-sizing: border-box;
  padding: 0.625rem;
  width: 100%;
  max-width: 24.375rem;
}

.p-medical__description p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1125rem;
  line-height: 1.3;
  margin: 0;
  white-space: pre-wrap;
  text-shadow: 7.51px 7.51px 25.034px #ffffff, 0px 0px 25.034px #ffffff, 0px 0px 25.034px #ffffff, 0px 0px 25.034px #ffffff, 0px 0px 25.034px #ffffff;
}

@media screen and (min-width: 768px) {
  .p-medical__description {
    max-width: 100%;
    width: 57%;
    padding: r10 0.625rem 0;
  }
  .p-medical__description p {
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
  }
}
.p-medical__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  width: 100%;
  max-width: 24.375rem;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .p-medical__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 80rem;
    max-width: 80rem;
    padding: 0;
  }
}
.p-medical__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 9.6545rem;
  transition: all 0.3s ease;
}

.p-medical__card:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .p-medical__card {
    width: 15.375rem;
    height: 12.5rem;
    flex-shrink: 0;
  }
}
.p-medical__card-image-wrapper {
  background: #bcdbb7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.7378125rem;
  height: 6.758125rem;
  width: 100%;
  padding: 1.4481875rem 0;
  box-sizing: border-box;
  border-radius: 0.48275rem 0.48275rem 0 0;
}

@media screen and (min-width: 768px) {
  .p-medical__card-image-wrapper {
    height: 8.75rem;
    width: 100%;
    padding: 1.875rem 0;
    gap: 2.25rem;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.p-medical__card-image {
  height: auto;
  width: auto;
  max-height: 4.75rem;
  max-width: 5.875rem;
}

.p-medical__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-medical__card-image {
    max-height: 6.15rem;
    max-width: 7.664625rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-medical__card-footer {
  background: #79c06e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.8963125rem;
  width: 100%;
  padding: 1.4481875rem 0.9654375rem;
  box-sizing: border-box;
  border-radius: 0 0 0.48275rem 0.48275rem;
}

@media screen and (min-width: 768px) {
  .p-medical__card-footer {
    height: 3.75rem;
    padding: 1.875rem 1.25rem;
    border-radius: 0 0 0.625rem 0.625rem;
  }
}
.p-medical__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.9654375rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.09654375rem;
  line-height: 2.3;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-medical__card-title {
    font-size: 1.25rem;
    letter-spacing: 0.125rem;
  }
}
.p-medical__card-icon {
  width: 0.9654375rem;
  height: 0.9654375rem;
  flex-shrink: 0;
  position: relative;
  border: 1px solid #fff;
  border-radius: 50%;
}

.p-medical__card-icon img {
  display: none;
}

.p-medical__card-icon::before, .p-medical__card-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.p-medical__card-icon::before {
  width: 0.46875rem;
  height: 1px;
  background: #fff;
  top: 50%;
  left: 0.1875rem;
  transform: translateY(-50%);
}

.p-medical__card-icon::after {
  width: 0.28125rem;
  height: 0.28125rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 0.1875rem;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .p-medical__card-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  .p-medical__card-icon::before {
    width: 0.625rem;
    left: 0.25rem;
  }
  .p-medical__card-icon::after {
    width: 0.375rem;
    height: 0.375rem;
    right: 0.25rem;
  }
}
.p-medical__background {
  position: absolute;
  bottom: 36%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 26.875rem;
  height: 28.875rem;
  z-index: -1;
  pointer-events: none;
}

.p-medical__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-medical__background::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 71.464%, #ffffff 100%);
}

@media screen and (min-width: 768px) {
  .p-medical__background {
    bottom: 47%;
    top: auto;
    /* width: 90rem;
    max-width: 90rem; */
    width: 100%;
    max-width: 100%;
    height: 63.625rem;
    transform: translateX(-50%);
  }
}
.p-medical__pricing {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing {
    padding: 5.3125rem 5rem 3rem;
  }
}
.p-medical__pricing-bg {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: #f2f9f1;
}

.p-medical__pricing-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-content {
    gap: 2.3125rem;
  }
}
.p-medical__pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-header {
    flex-direction: row;
    align-items: center;
    gap: 2.625rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-medical__pricing-box {
  background: #fff;
  border: 0.09375rem dashed #0093d4;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.46875rem;
  padding: 0.9375rem;
  width: 6.5625rem;
  height: 6.5625rem;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-box {
    width: 8.75rem;
    height: 8.75rem;
    padding: 1.25rem;
    gap: 0.625rem;
  }
}
.p-medical__pricing-box-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.875rem;
  color: #0093d4;
  text-align: center;
  letter-spacing: 0.1875rem;
  line-height: 1.2;
  margin: 0;
}

.p-medical__pricing-box-text p {
  margin: 0;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-box-text {
    font-size: 2.5rem;
    letter-spacing: 0.25rem;
  }
}
.p-medical__pricing-slogan {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #0093d4;
  text-align: center;
  letter-spacing: 0.15rem;
  line-height: normal;
  margin: 0;
}

.p-medical__pricing-slogan p {
  margin: 0;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-slogan {
    font-size: 3.125rem;
    letter-spacing: 0.3125rem;
    text-align: left;
  }
}
.p-medical__pricing-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4.125rem;
    width: 100%;
    max-width: 80rem;
    height: 16.125rem;
  }
}
.p-medical__pricing-image {
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 24.375rem;
}

.p-medical__pricing-image img {
  aspect-ratio: 300/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-image {
    max-width: 37.125rem;
  }
  .p-medical__pricing-image img {
    aspect-ratio: 594/397;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.p-medical__pricing-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-text-wrapper {
    align-items: flex-end;
    width: 38.375rem;
    gap: 2.5rem;
    height: 16.125rem;
  }
}
.p-medical__pricing-description {
  width: 100%;
  max-width: 24.375rem;
  border-bottom: 1px solid #333333;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0 0.625rem 1.25rem;
  box-sizing: border-box;
}

.p-medical__pricing-description p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #333333;
  letter-spacing: 0.1125rem;
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-description {
    max-width: 37.125rem;
    width: 100%;
    padding: 0 0 1.25rem 0;
  }
  .p-medical__pricing-description p {
    font-size: 1.75rem;
    letter-spacing: 0.175rem;
  }
}
.p-medical__pricing-detail {
  width: 100%;
  max-width: 24.375rem;
}

.p-medical__pricing-detail p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #333333;
  letter-spacing: 0.035rem;
  line-height: 2;
  margin: 0;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .p-medical__pricing-detail {
    max-width: 38.375rem;
    width: 100%;
  }
  .p-medical__pricing-detail p {
    font-size: 1rem;
    letter-spacing: 0.04rem;
    line-height: 2;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-medical__pricing-button {
    align-self: flex-end;
  }
}
.p-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #e6f4fb;
  z-index: 9999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.p-mobile-nav.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
}

@media screen and (min-width: 768px) {
  .p-mobile-nav {
    display: none;
  }
}
.p-mobile-nav__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.75rem;
  height: 2.875rem;
  background: #0093d4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  cursor: pointer;
  z-index: 10000;
}

.p-mobile-nav__close-icon {
  position: relative;
  width: 2.5rem;
  height: 1.125rem;
  display: block;
}

.p-mobile-nav__close-icon::before, .p-mobile-nav__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0.0625rem;
  background: #fff;
  transform-origin: center;
  border-radius: 25rem;
}

.p-mobile-nav__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-mobile-nav__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-mobile-nav__header {
  position: absolute;
  top: 0.625rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.p-mobile-nav__header-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333333;
  line-height: normal;
  margin: 0;
}

.p-mobile-nav__header-logo {
  width: 12.5rem;
  height: 3.1875rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.p-mobile-nav__header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.p-mobile-nav__menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 100px 20px 50px;
}

.p-mobile-nav__menu-item {
  width: 100%;
  position: relative;
}

.p-mobile-nav__menu-item > a,
.p-mobile-nav__menu-item > p {
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #cecece;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-mobile-nav__menu-item a:hover,
.p-mobile-nav__menu-item p:hover {
  opacity: 0.7;
}

#plus-btn {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  top: 13px;
  right: 0;
  font-size: 1.2rem;
  background: #bfe4f4;
  z-index: 200;
  cursor: pointer;
}

.plus-nav-list {
  display: flex;
  gap: 10px 15px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.plus-nav-list.is-open {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 20px 0;
}
.plus-nav-list li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9rem;
}

.p-mobile-nav__buttons {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 0.78125rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 18.75rem;
  margin-left: auto;
  padding-bottom: 100px;
  margin-right: auto;
}

.p-mobile-nav__button {
  width: 100%;
  max-width: 18.75rem;
  height: 3.90625rem;
  border-radius: 0.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  padding: 0.78125rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-mobile-nav__button:hover {
  opacity: 0.9;
}

@media screen and (min-width: 768px) {
  .p-mobile-nav__button {
    display: none;
  }
}
.p-mobile-nav__button--web {
  background: #0093d4;
}

.p-mobile-nav__button--web p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.125rem;
  line-height: normal;
  margin: 0;
}

.p-mobile-nav__button--tel {
  background: #79c06e;
}

.p-mobile-nav__button--tel p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  line-height: normal;
  margin: 0;
}

.p-mobile-nav__button-icon {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}

.p-mobile-nav__button-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-mv {
  position: relative;
  width: 100%;
  min-height: clamp(46.875rem, 174.4186046512vw, 71.875rem);
  overflow: hidden;
  background: #e6f4fb;
}

@media screen and (min-width: 768px) {
  .p-mv {
    min-height: clamp(43.875rem, 174.4186046512vw, 71.875rem);
  }
}
@media screen and (min-width: 768px) {
  .p-mv {
    min-height: clamp(55.375rem, 61.5277777778vw, 75rem);
    background: none;
  }
}
.p-mv__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.p-mv__background img {
  /* aspect-ratio: 430/525; */
  aspect-ratio: 430/549;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .p-mv__background img {
    aspect-ratio: 1440/886;
  }
}
.p-mv__content {
  position: relative;
  z-index: 20;
  width: min(100%, 26.875rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 6vw, 2.5rem);
}

@media screen and (min-width: 768px) {
  .p-mv__content {
    width: 100%;
  }
}
.p-main__texts {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.28125rem;
  position: absolute;
  top: 2.125rem;
  left: 4.921875rem;
  transform: translateX(-50%);
  z-index: 20;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 2.875rem;
  letter-spacing: 0.1em;
  color: #333333;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0.2346875rem 0.2346875rem 0.7823125rem #ffffff, 0 0 0.7823125rem #ffffff, 0 0 0.7823125rem #ffffff, 0 0 0.7823125rem #ffffff, 0 0 0.7823125rem #ffffff;
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .p-main__texts {
    flex-direction: row-reverse;
    gap: 0;
    position: absolute;
    top: 27.5rem;
    left: 8.0625rem;
    transform: none;
    font-size: 4.69375rem;
    padding: 0.625rem 0.625rem 1.875rem 0.625rem;
    border-bottom: 1px solid #333333;
    text-shadow: 0.469375rem 0.469375rem 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff;
  }
}
.p-mv__main-text {
  writing-mode: vertical-rl;
  width: 2.34375rem;
  margin: 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-mv__main-text {
    writing-mode: horizontal-tb;
    width: auto;
  }
}
.p-mv__sub-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 86.511627907vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 26.875rem;
  z-index: 30;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-shadow: 0.299125rem 0.299125rem 0.9970625rem #ffffff, 0 0 0.9970625rem #ffffff, 0 0 0.9970625rem #ffffff, 0 0 0.9970625rem #ffffff, 0 0 0.9970625rem #ffffff;
}

@media screen and (min-width: 768px) {
  .p-mv__sub-texts {
    top: 36.875rem;
    left: 8.8125rem;
    transform: none;
    max-width: none;
    align-items: flex-start;
    font-size: 2.5rem;
    white-space: normal;
    text-shadow: 0.469375rem 0.469375rem 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff, 0 0 1.564625rem #ffffff;
  }
}
/* @media screen and (max-width: 400px) {
  .p-mv__sub-texts {
    margin-top: 6vw;
    padding: 0 3%;
    font-size: 6vw;
  }
} */
.p-mv__sub-text {
  display: block;
}

.p-mv__english-texts {
  position: absolute;
  top: 91.8604651163vw;
  right: 3px;
  transform: translateX(0);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 4.25rem;
  color: #fff;
  line-height: 0.8;
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  .p-mv__english-texts {
    top: 37.8125rem;
    right: 5.0625rem;
    transform: none;
    font-size: 9.375rem;
    text-align: right;
  }
}
.p-mv__english-text {
  white-space: nowrap;
  display: block;
}

.p-mv__hours-card {
  position: absolute;
  top: 128.5813953488vw;
  left: 50%;
  transform: translateX(-50%);
  width: 20.125rem;
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 1vw 1vw 1vw rgba(0, 0, 0, 0.1);
  padding: 1.875rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .p-mv__hours-card {
    top: auto;
    left: 1vw;
    transform: none;
    padding: 0.625rem 2rem 0.675rem 2rem;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    /* box-shadow: none; */
    z-index: 10;
    bottom: 1rem;
  }
}
.p-mv__hours-inner {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  width: 17.25rem;
}

.p-mv__hours-label {
  background: #add7a7;
  border-radius: 0.25rem;
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.225rem;
  line-height: 1.2;
  margin: 0;
}

.p-mv__hours-content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.p-mv__hours-row {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.p-mv__hours-period {
  border: 1px solid #333333;
  padding: 0.25rem 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-mv__hours-period p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  width: 3.8em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-mv__hours-period {
    padding: 0 0.375rem;
  }
}
.p-mv__hours-time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.p-mv__hours-closed {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #79c06e;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}

.p-news-blog {
  width: 100%;
  padding-top: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-news-blog {
    padding-top: 6.25rem;
  }
}
.p-news-blog__container {
  width: 100%;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-news-blog__container {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}
.p-news {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-news {
    width: auto;
  }
}
.p-news__card {
  background: #fff;
  box-shadow: 0px 0px 0.5rem 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 24.375rem;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-news__card {
    max-width: 39.25rem;
    box-shadow: 0.625rem 0.625rem 1.875rem 0px rgba(0, 0, 0, 0.15);
    gap: 1.875rem;
    padding: 2.5rem 1.5rem;
  }
}
.p-news__header {
  width: 21.875rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
  padding-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-news__header {
    width: 36.25rem;
  }
}
.p-news__title-en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.875rem;
  color: #333333;
  letter-spacing: 0.09375rem;
  line-height: normal;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-news__title-en {
    font-size: 2.5rem;
    letter-spacing: 0.125rem;
  }
}
.p-news__title-ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1rem;
  color: #333333;
  letter-spacing: 0.05rem;
  line-height: normal;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-news__title-ja {
    font-size: 1.25rem;
    letter-spacing: 0.0625rem;
  }
}
.p-news__list {
  width: 21.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-news__list {
    width: 36.5625rem;
  }
}
.p-news__item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.p-news__image {
  width: 5.625rem;
  height: 4.0625rem;
  background: #d9d9d9;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .p-news__image {
    width: 7.75rem;
    height: 5.625rem;
  }
}
.p-news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-news__content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .p-news__content {
    gap: 1.25rem;
  }
}
.p-news__date {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333333;
  letter-spacing: 0.0375rem;
  line-height: normal;
  white-space: nowrap;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-news__date {
    font-size: 0.875rem;
    letter-spacing: 0.04375rem;
  }
}
.p-news__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333333;
  letter-spacing: 0.03rem;
  line-height: normal;
  margin: 0;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1rem;
    letter-spacing: 0.04rem;
  }
}
.p-test {
  color: pink;
  font-size: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}
.u-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-sp {
    display: inline;
  }
}
.p-footer__table-block {
  width: 417px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.p-footer__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.p-footer__table thead {
  background-color: #79c06e;
  color: #fff;
  font-weight: bold;
}

.p-footer__table thead th {
  width: calc((100% - 120px) / 7);
  padding: 12px 4px;
  text-align: center;
}

.p-footer__table thead th:first-of-type {
  width: 120px;
}

.p-footer__table tbody td {
  border-bottom: 1px solid #9b9b9b;
  text-align: center;
  padding: 15px 4px;
  width: calc((100% - 120px) / 7);
  font-weight: bold;
  background-color: #fff;
}

.p-footer__table tbody td:first-of-type {
  width: 120px;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 450px) {
  .p-main__texts {
    font-size: 2.4rem;
    padding-left: 3.2rem;
    left: 3.922rem;
  }
  .p-mv__sub-texts {
    top: 81.512vw;
    font-size: 1.35rem;
  }
  .p-mv__english-texts {
    top: 89.86vw;
    font-size: 14vw;
  }
  .p-mv {
    min-height: calc(225px + 124vw);
  }
  .p-about {
    padding: 2.5rem 0 0;
  }
  .p-about__text-box {
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.15);
  }
  .p-about__text-overlay {
    gap: 0.5rem;
  }
  .p-about__text-box {
    padding: 0.5rem;
    box-shadow: 4px 5px 6px rgba(0, 0, 0, 0.15);
  }
  .p-about__text-box .p-about__text-span {
    font-size: 1.1rem;
  }
  .p-features__card-text-bold {
    font-size: 1.05rem;
  }
  .p-features__card-text {
    height: 70px;
  }
  .p-features__description p {
    font-size: 1.05rem;
  }
  .p-contents__card-title span:last-child {
    font-size: 1.5rem;
  }
  .p-contents__card-title {
    font-size: 1.2rem;
  }
  .p-contents__card-content {
    gap: 15px;
  }
  .p-access__description p {
    width: 20.75rem;
  }
  .p-access__description {
    width: 21.375rem;
    padding: 0.625rem 0.4rem;
  }
  .p-news-blog {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-news__card, .p-blog__card {
    padding-left: 5%;
    padding-right: 5%;
  }
  .p-news__header, .p-blog__header {
    width: 100%;
  }
  .p-news__list, .p-blog__list {
    width: 100%;
  }
  .p-access__slogan {
    font-size: 1.3rem;
  }
  .p-footer__table thead th:first-of-type {
    width: 90px;
  }
  .p-footer__table thead th {
    width: calc((100% - 90px) / 7);
  }
  .p-footer__table tbody td:first-of-type {
    width: 90px;
  }
  .p-footer__table tbody td {
    width: calc((100% - 90px) / 7);
  }
  .p-introduction__quote p {
    font-size: 0.92rem;
  }
}
.hover-menu {
  display: block;
  width: 600px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  max-width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100px;
  left: 56%;
  transform: translateX(-50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 101;
}
.hover-menu.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .hover-menu {
    display: none;
  }
}
.hover-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.hover-menu-list li a {
  display: block;
  font-family: var(--min);
  font-size: 1rem;
  border-bottom: 1px solid #ccc;
  padding: 5px 10px;
}

@media screen and (max-width: 1200px) {
  .hover-menu {
    top: 70px;
  }
}
@media screen and (max-width: 370px) {
  #plus-btn {
    height: 12vw;
    top: 3vw;
  }
}
.p-access__table-caution {
  font-size: 13px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 5px;
  margin-bottom: 0 !important;
}
.p-access__table-caution:first-of-type {
  margin-top: 10px;
}

.p-access__table-caution-title {
  border: 1px solid #333;
  padding: 2px 6px;
  display: inline-block;
  margin-right: 12px;
  font-size: 11px;
}

.p-access__table-caution-green {
  font-weight: bold;
  color: #79c06e;
  font-size: 13px;
  margin-top: 5px;
}/*# sourceMappingURL=styles.css.map */