@charset "UTF-8";
/* ゆっくり遷移する */
html, body {
  overflow-x: hidden;
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5238095238vw;
  }
}
@media (min-width: 1050px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: '"Noto Sans JP", sans-serif';
  color: #484848;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    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 {
  -webkit-box-sizing: border-box;
          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;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  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 {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1050px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.fadeLeft-top {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeRight-top {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeLeft {
  opacity: 0; /* 初期状態で非表示 */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); /* X軸の位置を初期化 */
}

/* .displayed クラスが追加された時にアニメーション */
.fadeLeft.displayed {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1; /* アニメーション後の状態 */
  -webkit-transform: translateX(0);
          transform: translateX(0); /* X軸の位置を初期化 */
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeRight {
  opacity: 0; /* 初期状態で非表示 */
  -webkit-transform: translateX(50%);
          transform: translateX(50%); /* X軸の位置を初期化 */
}

.fadeRight.displayed {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1; /* アニメーション後の状態 */
  -webkit-transform: translateX(0);
          transform: translateX(0); /* X軸の位置を初期化 */
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeUp {
  opacity: 0; /* 初期状態で非表示 */
  -webkit-transform: translateY(50%);
          transform: translateY(50%); /* Y軸の位置を初期化 */
}

.fadeUp.displayed {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1; /* アニメーション後の状態 */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* X軸の位置を初期化 */
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%); /* 下から上に移動 */
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 上に戻る */
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%); /* 下から上に移動 */
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 上に戻る */
  }
}
.c-btn {
  font-size: 0.875rem;
  font-weight: bold;
  color: #3FA7D1;
  letter-spacing: 0.1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3125rem 0 0.3125rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 1rem;
    line-height: 1.5;
    gap: 0.375rem;
  }
}

.c-btn:hover {
  opacity: 0.4;
}
.c-btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #3FA7D1;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn span {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.c-btn span::before,
.c-btn span::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 0.1em;
  rotate: 45deg;
}
.c-btn span::before {
  width: 1px;
  height: 0.3125rem;
  translate: 0.5rem 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-btn span::before {
    translate: 0.5625rem 0.5rem;
  }
}

.c-btn span::after {
  width: 0.3125rem;
  height: 1px;
  translate: 0.375rem 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-btn span::after {
    translate: 0.4375rem 0.4375rem;
  }
}

.c-btn--green {
  color: #3FA7D1;
  font-size: 1rem;
  line-height: 1.25;
  gap: 0.4375rem;
}

.c-btn--green span {
  background: #3FA7D1;
  width: 1.125rem;
  height: 1.125rem;
}

.c-btn--green span::before {
  translate: 0.5625rem 0.5rem;
}

.c-btn--green span::after {
  translate: 0.4375rem 0.4375rem;
}

.c-btn2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3FA7D1;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  width: 100%;
  border: 1px solid #3FA7D1;
  border-radius: 1.5625rem;
  padding: 0.875rem 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn2 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.c-btn2 span::before,
.c-btn2 span::after {
  content: "";
  position: absolute;
  background: #3FA7D1;
  border-radius: 0.1em;
  rotate: 45deg;
}
.c-btn2 span::before {
  width: 1px;
  height: 0.5625rem;
  translate: 3.25rem -0.0625rem;
}
.c-btn2 span::after {
  width: 0.5625rem;
  height: 1px;
  translate: 3rem -0.1875rem;
}
.c-btn2--white:hover {
  color: white;
  background-color: #A0D8F1;
}
.c-btn2--white::before {
  position: absolute;
  content: "";
  background: #3FA7D1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-btn2--white:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn2--white:hover span::before,
.c-btn2--white:hover span::after {
  background: white;
}
.c-btn2--green {
  color: white;
  background: #3FA7D1;
}
.c-btn2--green span::before,
.c-btn2--green span::after {
  background: white;
}
.c-btn2--green::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background: white;
}
.c-btn2--green:hover {
  color: #3FA7D1;
}
.c-btn2--green:hover span::before,
.c-btn2--green:hover span::after {
  background: #3FA7D1;
}
.c-btn2--green:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn2--purple {
  color: white;
  background-color: #3FA7D1;
  border: 1px solid #3FA7D1;
}
.c-btn2--purple span::before {
  width: 1px;
  height: 0.5625rem;
  translate: 2.125rem -0.0625rem;
}
.c-btn2--purple span::after {
  width: 0.5625rem;
  height: 1px;
  translate: 1.875rem -0.1875rem;
}
.c-btn2--purple span::before,
.c-btn2--purple span::after {
  background: white;
}
@media screen and (min-width: 768px) {
  .c-btn2--purple::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    background: white;
  }
}

@media screen and (min-width: 768px) {
  .c-btn2--purple:hover {
    color: #3FA7D1;
  }
}

@media screen and (min-width: 768px) {
  .c-btn2--purple:hover span::before,
  .c-btn2--purple:hover span::after {
    background: #3FA7D1;
  }
}

@media screen and (min-width: 768px) {
  .c-btn2--purple:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-btn {
  width: 15rem;
}

.c-card02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}
.c-card02__image img {
  aspect-ratio: 345/230;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-card02__image img {
    aspect-ratio: 230/300;
    border-radius: 1.875rem;
  }
}

.c-card02__title {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.1em;
  font-weight: normal;
}
.c-card02__text {
  margin-top: 0.6875rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card02__text {
    -webkit-line-clamp: 3;
  }
}

.c-card02__btn {
  margin-top: 0.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-card02__btn {
    margin-top: 0.25rem;
  }
}

.c-card03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #A0D8F1;
  aspect-ratio: 152/152;
  border-radius: 50%;
  max-width: 100%;
  width: 46%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-card03 {
    width: 100%;
  }
}

.p-card03 > .c-card03:not(:first-child)::before,
.p-card03:not(:first-child) > .c-card03::before {
  content: "";
  position: absolute;
  width: 0.8125rem;
  height: 1.5625rem;
  background: #A0D8F1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  left: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-card03 > .c-card03:not(:first-child)::before,
  .p-card03:not(:first-child) > .c-card03::before {
    width: 1rem;
    height: 1.8125rem;
    left: -1.25rem;
  }
}

.c-card03::after {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: bold;
  color: #A0D8F1;
  position: absolute;
  background: #E9F7FF;
  width: 27.6315789474%;
  height: 27.6315789474%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-card03::after {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.c-card03__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  width: 100%;
}
.c-card03__image {
  width: 39.4736842105%;
}
@media screen and (min-width: 768px) {
  .c-card03__image {
    width: 40%;
  }
}

.c-card03__image img {
  aspect-ratio: 60/53;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .c-card03__image img {
    aspect-ratio: 72/62;
  }
}

.c-card03__text {
  font-size: 0.6875rem;
  line-height: 1.4545454545;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-card03__text {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}

.p-card03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  margin-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-card03 {
    display: contents;
  }
}

.p-card03 + .p-card03 {
  margin-top: 1.875rem;
  margin-right: 0;
  margin-right: initial;
  margin-left: 1.25rem;
}
.number {
  counter-reset: number 0;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .number {
    max-width: 50rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11.25rem, 1fr));
    gap: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card04:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .c-card04__image {
    width: 43.7%;
  }
}

.c-card04 + .c-card04 {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-card04 + .c-card04 {
    margin-top: 2.5rem;
  }
}

.c-card04__image img {
  aspect-ratio: 345/180;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card04__image img {
    aspect-ratio: 437/260;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
  }
}

.c-card04__wrapper {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-card04__wrapper {
    margin-top: 2.125rem;
    width: 52.2%;
  }
}

.c-card04__tag::before {
  counter-increment: number-m 1;
  content: "point " counter(number-m, decimal-leading-zero) "";
  font-family: '"Lato", sans-serif';
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  background: #3FA7D1;
  padding: 0.125rem 1.125rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .c-card04__tag::before {
    font-size: 1rem;
    padding: 0rem 1rem;
  }
}

.c-card04__title {
  font-size: 1.1875rem;
  font-weight: normal;
  line-height: 1.4210526316;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #3FA7D1;
  padding-bottom: 0.8125rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-card04__title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
    letter-spacing: 0.1em;
    padding-bottom: 0.375rem;
  }
}

.c-card04__title::first-letter {
  font-size: 2.0625rem;
  line-height: 1.4545454545;
  color: #3FA7D1;
}
@media screen and (min-width: 768px) {
  .c-card04__title::first-letter {
    font-size: 2.375rem;
  }
}

.card04__text {
  margin-top: 1.375rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
  width: 91.0144927536%;
}
@media screen and (min-width: 768px) {
  .card04__text {
    width: 100%;
  }
}

.p-card04 {
  counter-reset: number-m 0;
}

.c-card05 {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-card05 {
    width: 31.3%;
    margin-bottom: 2.4375rem;
  }
}

.c-card05__image img {
  aspect-ratio: 345/204;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-card05__image img {
    aspect-ratio: 313/186;
    border-radius: 1.25rem;
  }
}

.c-card05__title {
  margin-top: 1.3125rem;
  font-size: 1.3125rem;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .c-card05__title {
    font-size: 1.25rem;
    line-height: 1.45;
    margin-top: 1.1875rem;
  }
}

.c-card05__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .c-card05__text {
    margin-top: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-card05 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

.c-card {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.03em;
  padding-top: 0.375rem;
  padding-bottom: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-card {
    display: grid;
    grid-template-columns: 4.625rem 1fr;
    gap: 1rem;
    padding-top: 1.0625rem;
    padding-bottom: 0.5625rem;
  }
}

.c-card:hover {
  opacity: 0.4;
}

.c-card__wrapper {
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-card__wrapper {
    padding-right: 40.1529636711%;
  }
}

.c-news__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-title {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 2rem;
    line-height: 1.4375;
    letter-spacing: 0.1em;
  }
}

.c-title::after {
  content: attr(data-en);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  font-weight: normal;
  color: #3FA7D1;
}
@media screen and (min-width: 768px) {
  .c-title::after {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
  }
}

.c-title--purple {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-title--purple {
    letter-spacing: 0.1em;
  }
}

.c-title--purple::after {
  color: #3FA7D1;
}
.p-title {
  text-align: center;
}

.c-title--center {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-title--center {
    letter-spacing: 0.1em;
  }
}

.c-title--center::after {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-title--center::after {
    letter-spacing: 0.1em;
  }
}

.p-about-clinic {
  position: relative;
}
.p-about-clinic::after {
  position: absolute;
  content: "";
  background: url(../images/about_bg-sp.webp);
  background-color: rgba(255, 255, 255, 0.6); /* 白の透明度を調整 */
  background-blend-mode: lighten; /* または lighten overlay, screen など */
  top: 3.75rem;
  left: 0;
  right: 0;
  height: 16.125rem;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about-clinic::after {
    background: url(../images/about_bg-pc.webp);
    background-color: rgba(255, 255, 255, 0.6); /* 白の透明度を調整 */
    background-blend-mode: lighten; /* または lighten overlay, screen など */
    top: 5rem;
    height: 16.125rem;
  }
}

.l-about-clinic {
  padding: 1.5rem 0.9375rem 5rem;
}
@media screen and (min-width: 768px) {
  .l-about-clinic {
    padding: 5.25rem 0.9375rem 1.5625rem;
  }
}

.p-about-clinic__container {
  background-color: #fff;
  border-radius: 1.25rem;
}
.l-about-clinic__container {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .l-about-clinic__container {
    margin: 5.9375rem auto;
    max-width: 75rem;
  }
}

.p-about-clinic__breadcrumb {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* リストを横並びに */
  list-style: none;
  /* リストスタイルを無しに */
  padding-top: 0.8125rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-clinic__breadcrumb {
    padding-top: 1.6875rem;
    padding-left: 1.5rem;
  }
}

.p-about-clinic__breadcrumb > * + *::before {
  content: "＞";
  margin-right: 0.25rem;
  font-size: 1rem;
  display: inline-block;
  /* transformを適用するために必要 */
  -webkit-transform: scale(0.5, 1.1);
          transform: scale(0.5, 1.1);
  margin-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-about-clinic__breadcrumb > * + *::before {
    margin-right: 0.75rem;
  }
}

.p-about-clinic__breadcrumb__list-group-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* アイテム内の要素も横並びにする */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 縦方向に中央揃え */
}

.p-about-clinic__breadcrumb__list-group-item-link {
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-about-clinic__breadcrumb__list-group-item-link {
    font-size: 1rem;
  }
}

.p-about-us__title {
  text-align: center;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-about-us__title {
    margin-top: 2.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about-clinic-message {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.875rem;
  }
}

.l-about-clinic__message {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-about-clinic__message {
    margin-top: 2.5rem;
  }
}

.p-about-clinic-message__image img {
  aspect-ratio: 315/188;
  width: 100%;
  height: 100%;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-message__image img {
    aspect-ratio: 485/290;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about-clinic-message__text-container {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.p-about-clinic-message__text {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-message__text {
    margin-top: 1.125rem;
  }
}

.p-about-clinic-message__message-name {
  margin-top: 1rem;
  margin-right: 0.25rem;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0.03em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-message__message-name {
    margin-top: 1.25rem;
  }
}

.p-about-clinic-message__message-name span {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  margin-right: 0.9375rem;
}
.p-about-clinic-career {
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career {
    margin-top: 2.5625rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
  }
}

.p-about-clinic-career-history__title-wrapper,
.p-about-clinic-career-qualification__title-wrapper {
  border-bottom: 2px solid #3FA7D1;
}
.p-about-clinic-career-history__title,
.p-about-clinic-career-qualification__title {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.1em;
  display: inline-block;
  color: white;
  background-color: #3FA7D1;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career-history__title,
  .p-about-clinic-career-qualification__title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.p-about-clinic-career-history__title {
  padding: 0.5rem 2.1875rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career-history__title {
    padding: 0.5rem 2.1875rem 0.625rem;
  }
}

.p-about-clinic-career-qualification__title {
  margin-top: 1.75rem;
  padding: 0.4375rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career-qualification__title {
    margin-top: 0;
    padding: 0.5rem 0.9375rem;
  }
}

.p-about-clinic-career-history__lists {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.08em;
}
.p-about-clinic-career-history__list {
  padding-block: 0.9375rem;
  border-bottom: 1px solid #3FA7D1;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career-history__list {
    padding-block: 1.25rem;
  }
}

.p-about-clinic-career-history__list-line {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career-history__list-line {
    display: none;
  }
}

.p-about-clinic-career-qualification-lists {
  border-bottom: 1px solid #3FA7D1;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  padding-top: 0.625rem;
  padding-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career-qualification-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1.0625rem;
  }
}

.p-about-clinic-career-qualification-lists__qualification-academic {
  line-height: 1.9285714286;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career-qualification-lists__qualification-academic {
    padding-top: 0.3125rem;
    line-height: 1;
    width: 30.1030927835%;
  }
}

.p-about-clinic-career-qualification-lists__wrapper {
  list-style: inside;
}
.p-about-clinic-career-qualification-lists__list {
  padding-left: 0.375rem;
  padding-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-clinic-career-qualification-lists__list {
    padding-left: 0;
  }
}

.p-about-clinic-career-qualification-lists__list::marker {
  font-size: 0.5rem;
}
.p-about-clinic-career-qualification-lists__underline {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}
.p-about-us {
  padding-block: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-about-us {
    position: relative;
    padding-block: 3.75rem;
    width: 100%;
    height: 100%;
  }
}

.l-about-us__wrapper {
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-about-us__wrapper {
    padding-inline: 0;
    position: relative;
    max-width: 62.5rem;
    margin-inline: auto;
    height: 43.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about-us__bg {
    margin-left: 19.0625rem;
    margin-right: calc(50% - 50vw);
  }
}

@media screen and (min-width: 768px) {
  .p-about-us__bg::after {
    display: inline-block;
    content: "";
    background-image: url(../images/about_us/about_us_bg.webp);
    background-color: rgba(255, 255, 255, 0.6); /* 白の透明度を調整 */
  background-blend-mode: lighten; /* または overlay, screen など */
    

    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 15.625rem;
    width: 100%;
    height: 28.375rem;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .p-about-us__container {
    position: absolute;
    top: 0;
    height: 43.9375rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 46% 50%;
    gap: 4%;
  }
}

@media screen and (min-width: 768px) {
  .p-about-us-images {
    width: 100%;
    height: 100%;
  }
}

.p-about-us-images__image1 {
  width: 60.2898550725%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-about-us-images__image1 {
    width: 76.7391304348%;
  }
}

.p-about-us-images__image1 img {
  aspect-ratio: 208/245;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about-us-images__image1 img {
    aspect-ratio: 353/414;
    width: 100%;
    height: auto;
    -webkit-box-shadow: 0px 0px 25px -3px rgb(196, 196, 196);
            box-shadow: 0px 0px 25px -3px rgb(196, 196, 196);
    border-radius: 1.875rem;
  }
}

.p-about-us-images__image2 {
  margin: -5.8125rem 0 0 auto;
  width: 58.5507246377%;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-about-us-images__image2 {
    margin: -2.5rem 0 0 auto;
    width: 74.7826086957%;
  }
}

.p-about-us-images__image2 img {
  aspect-ratio: 202/145;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about-us-images__image2 img {
    aspect-ratio: 344/246;
    border-radius: 1.875rem;
    -webkit-box-shadow: 0px 0px 25px -3px rgb(196, 196, 196);
            box-shadow: 0px 0px 25px -3px rgb(196, 196, 196);
  }
}

.l-about-us-text-group {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-about-us-text-group {
    margin-top: 5.9375rem;
  }
}

.p-about-us-text-group__text {
  margin-top: 1.6875rem;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-about-us-text-group__text {
    margin-top: 2.1875rem;
  }
}

.p-about-us-text-group__button {
  width: 15rem;
  margin: 2.1875rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-about-us-text-group__button {
    margin: 3.5rem 0 0 auto;
  }
}

.p-access {
  position: relative;
}
.l-access {
  margin-top: 4.375rem;
  padding-bottom: 3.8125rem;
}
@media screen and (min-width: 768px) {
  .l-access {
    margin-top: 6.875rem;
    padding-bottom: 6.875rem;
  }
}

.p-access__title {
  text-align: center;
}
.p-access__map iframe {
  aspect-ratio: 350/189;
  width: 100%;
  height: auto;
  border-radius: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-access__map iframe {
    aspect-ratio: 1000/499;
    width: 100%;
    height: auto;
  }
}

.l-access__map {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-access__map {
    margin-top: 2.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-access__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.l-access__container {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-access__container {
    margin-top: 3.4375rem;
  }
}

.p-access-item__logo img {
  aspect-ratio: 286/35;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-access-item__logo img {
    aspect-ratio: 381/46;
    max-width: 23.8125rem;
    width: 100%;
    height: auto;
  }
}

.p-access-item__tel span {
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.5789473684;
}
@media screen and (min-width: 768px) {
  .p-access-item__tel span {
    font-size: 1.375rem;
    line-height: 1.5909090909;
  }
}

.p-access-item__tel a {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  margin-left: -0.25rem;
}
@media screen and (min-width: 768px) {
  .p-access-item__tel a {
    font-size: 2.1875rem;
    line-height: 1;
    pointer-events: none;
  }
}

.p-access-item__tel a:hover {
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .p-access-item__tel a:hover {
    opacity: 1;
    cursor: default; /* カーソルを通常にする */
  }
}

.l-access-item__tel {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .l-access-item__tel {
    margin-top: 1.6875rem;
  }
}

.p-access-item__details {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-access-item__details {
    margin-top: 1rem;
  }
}

.p-access-item__detail {
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-access-item__detail {
    font-size: 0.875rem;
    line-height: 2.2857142857;
  }
}

.l-access__schedule {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .l-access__schedule {
    margin-top: 5rem;
  }
}

.p-access-schedule__table {
  width: 100%;
  border-collapse: collapse;
}

.p-access-schedule__table th,
.p-access-schedule__table td {
  font-size: 0.875rem;
  text-align: center;
  padding-block: 0.5625rem;
  border-bottom: 1px solid #484848;
}
@media screen and (min-width: 768px) {
  .p-access-schedule__table th,
  .p-access-schedule__table td {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.p-access-schedule__table th {
  border-top: 1px solid #484848;
}
@media screen and (min-width: 768px) {
  .p-access-schedule__table th {
    padding-block: 0.375rem;
  }
}

.p-access-schedule__table td {
  font-size: 0.875rem;
  border-top: 1px solid #484848;
}
@media screen and (min-width: 768px) {
  .p-access-schedule__table td {
    font-size: 1rem;
    padding-block: 0.8125rem;
  }
}

.p-access-schedule__table td:first-child {
  width: 13.0434782609%;
}
@media screen and (min-width: 768px) {
  .p-access-schedule__table td:first-child {
    width: 18.0952380952%;
  }
}

.p-access-schedule__table td:last-child {
  width: 17.3913043478%;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-access-schedule__table td:last-child {
    width: 18.0952380952%;
  }
}

.p-access-schedule__table td:first-child {
  text-align: left;
  padding: 0.5rem 0rem 0.5rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-access-schedule__table td:first-child {
    padding: 0.5rem 0rem 0.5rem 0.625rem;
  }
}

.p-access-schedule__table th {
  font-weight: normal;
}

.p-access-schedule__next-line {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-access-schedule__next-line {
    display: none;
  }
}

.p-access__reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15rem;
  margin-inline: auto;
}
.l-access__reservation {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-access__reservation {
    margin-top: 2.875rem;
  }
}

.p-access__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 39.625rem;
  z-index: -1;
  overflow: hidden;
  filter: brightness(1.15); 
}
@media screen and (min-width: 768px) {
  .p-access__bg {
    height: 44.9375rem;
  }
}

.p-access__bg img {
  aspect-ratio: 375/634;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__bg img {
    aspect-ratio: 1400/719;
  }
}

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

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

.l-company {
  margin-top: 4.625rem;
  margin-bottom: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .l-company {
    margin-top: 6.875rem;
    margin-bottom: 6.5625rem;
  }
}

.p-company__title {
  text-align: center;
}
.p-company__details {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(0, 0, 0, .3);
}
@media screen and (min-width: 768px) {
  .p-company__details {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.l-company__details {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .l-company__details {
    margin-top: 2.5rem;
  }
}

.p-company__item {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-company__item {
    display: grid;
    grid-template-columns: 31.4% auto;
  }
}

.p-company-item__term {
  padding-block: 0.625rem;
  background-color: #E9F7FF;
  -webkit-box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, .3);
          box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, .3);
}
@media screen and (min-width: 768px) {
  .p-company-item__term {
    padding-block: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-company-item__description {
  padding: 0.625rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company-item__description {
    padding-block: 1.25rem;
    padding-inline: 1.875rem;
    text-align: left;
    -webkit-box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, .3);
            box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, .3);
  }
}

.p-company-item__description:last-child {
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-company-item__description:last-child {
    padding-bottom: 1.25rem;
  }
}

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

.p-company-item__description--line1 {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-company-item__description--line1 {
    display: block;
  }
}

.p-company-item__description--web-address {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.p-company-item__description--line2 {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-company-item__description--line2 {
    display: none;
  }
}

.p-facility {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-facility {
    margin-inline: auto;
  }
}

.p-facility__wrapper {
  padding-inline: 0.9375rem;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-facility__wrapper {
    position: relative;
    margin-inline: auto;
    padding-inline: 0;
    max-width: 62.5rem;
    height: 70.625rem;
    display: grid;
  }
}

@media screen and (min-width: 768px) {
  .l-facility__bg {
    margin-right: 19.0625rem;
    margin-left: calc(50% - 50vw);
  }
}

@media screen and (min-width: 768px) {
  .l-facility__bg::after {
    display: block;
    content: "";
    background-image: url(../images/facility/facility_bg-pc.webp);
    background-color: rgba(255, 255, 255, 0.6); /* 白の透明度を調整 */
    background-blend-mode: lighten; /* または overlay, screen など */
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

.l-facility__inner {
  position: static;
  margin-top: 3.75rem;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-facility__inner {
    position: absolute;
    margin-top: 6.25rem;
    padding-bottom: 6.25rem;
    max-width: 62.5rem;
    width: 100%;
    height: 100%;
  }
}

.p-facility__title {
  text-align: center;
}
.l-facility__contents {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-facility__contents {
    max-width: 62.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0;
  }
}

.p-facility-contents__item:last-child {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-facility-contents__item:last-child {
    margin-bottom: 2.5rem;
  }
}

.l-facility__bg-sp {
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-facility__bg-sp {
    display: none;
  }
}

.l-facility__bg-sp img {
  width: 68.8%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-facility__bg-sp img {
    display: none;
  }
}

.p-flow__wrapper {
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__wrapper {
    padding-inline: 1.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-flow__wrapper {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .l-flow__wrapper {
    margin-top: 6.875rem;
  }
}

.p-flow__title {
  text-align: center;
}
.l-flow__items {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .l-flow__items {
    margin-top: 0.25rem;
    margin: 0.25rem 0 0 auto;
  }
}

.p-flow-item__image--hospital {
  width: 42.8571428571%;
}
.p-flow-item__image--hospital img {
  aspect-ratio: 66/54;
}
.p-flow-item__image--note {
  width: 37%;
}
.p-flow-item__image--note img {
  aspect-ratio: 47/53;
}
.p-footer {
  border: 1px solid transparent;
  padding-bottom: 2.875rem;
  background: #E9F7FF;
}
.l-footer {
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .p-footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-footer__wrapper {
  margin-top: 5rem;
}
.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 77.6811594203%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: 23.2%;
    margin: 0 auto 0 -0.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__logo-image {
    padding: 0.9375rem;
    margin-top: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

.p-footer__logo-image img {
  margin-inline: auto;
  aspect-ratio: 262/32;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-footer__logo-image img {
    aspect-ratio: 226/27;
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 65%;
  }
}

.l-footer__menu {
  margin: 1.125rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__menu {
    margin: 0 0 2.5rem;
  }
}

.p-footer-menu__item {
  border-bottom: 1px solid #A0D8F1;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.8125rem 0 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-footer-menu__item {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    letter-spacing: 0.1em;
    border-bottom: none;
    padding: 0;
  }
}

.p-footer-menu__link {
  display: block;
  padding: 0.3125rem 0;
}
@media screen and (min-width: 768px) {
  .p-footer-menu__link {
    padding: 0 0 0.3125rem;
    border-bottom: 1px solid #A0D8F1;
  }
}

.l-footer__submenu {
  margin-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-footer__submenu {
    margin-top: 0.375rem;
    margin-inline: 0;
  }
}

.p-footer__submenu-item {
  padding: 0.5625rem 0 0.1875rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  .p-footer__submenu-item {
    padding: 0;
    border-bottom: none;
  }
}

.p-footer-menu-submenu__link {
  display: block;
  padding: 0.3125rem 0.3125rem 0.3125rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer-menu-submenu__link {
    padding: 0.3125rem;
  }
}

.p-footer-menu-submenu__link::before {
  content: "";
  position: absolute;
  background: #484848;
  width: 0.4375rem;
  height: 0.0625rem;
  rotate: 135deg;
  translate: 19.25rem 0.75rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-footer-menu-submenu__link::before {
    width: 0.375rem;
    translate: 5.875rem 0.6875rem;
  }
}

.p-footer-menu-submenu__link::after {
  content: "";
  position: absolute;
  background: #484848;
  width: 0.4375rem;
  height: 0.0625rem;
  rotate: 45deg;
  translate: 15.375rem 0.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-footer-menu-submenu__link::after {
    width: 0.375rem;
    translate: 2rem 0.4375rem;
  }
}

.p-footer__copyright {
  font-size: 0.75rem;
  line-height: 2.9166666667;
  letter-spacing: 0.04em;
  margin-inline: auto;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    letter-spacing: 0.1em;
    line-height: 5.8333333333;
  }
}

.p-form {
  position: relative;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-form {
    margin-top: 5rem;
  }
}

.p-form::after {
  position: absolute;
  content: "";
  background: url(../images/form_bg-sp.webp);
  width: 100%;
  height: 16.4375rem;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-form::after {
    background: url(../images/form_bg-pc.webp);
    top: 0;
    height: 16.5625rem;
  }
}

.l-form {
  padding-top: 3rem;
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-form {
    padding-top: 6.75rem;
  }
}

.l-form__container {
  background: #fff;
  padding-top: 2.0625rem;
  padding-bottom: 3.125rem;
  padding-inline: 0.9375rem;
  width: 100%;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .l-form__container {
    margin-inline: auto;
    max-width: 62.5rem;
    padding: 3.5625rem 0 7rem;
  }
}

.p-form__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-form__items {
    padding-inline: 3.25rem;
  }
}

.p-form-item {
  width: 100%;
}
.p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2.5rem;
}
.p-form-item__label {
  width: 100%;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 1.5;
}
.p-form-item__label--required::before {
  content: "必須";
  margin-right: 0.75rem;
  padding: 0.25rem 0.375rem;
  line-height: 1.6666666667;
  width: 2.8125rem;
  display: inline-block;
  text-align: center;
  background: #F894B7;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.p-form__item-text,
.p-form-item__message {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-form__item-text,
  .p-form-item__message {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0.1em;
  }
}

.p-form__item-text {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-form__item-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0.1em;
  }
}

.p-form-item__input {
  border: 1px solid transparent;
  /* デフォルトの透明な境界線 */
  margin-top: 1.25rem;
  padding-left: 1.5rem;
  padding-block: 0.625rem;
  border-radius: 0.625rem;
  width: 100%;
  background: #E9F7FF;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-form-item__input {
    padding-block: 1.1875rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 1.25rem;
  }
}

.p-form-item__input:focus {
  outline: none;
  border: 1px solid #3FA7D1;
}

.p-form-item__label--any::before {
  content: "任意";
  margin-right: 0.75rem;
  padding: 0.25rem 0.375rem;
  line-height: 1.6666666667;
  width: 2.8125rem;
  display: inline-block;
  text-align: center;
  background: #8B8B8B;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.p-form-item__message {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form-item__message {
    margin-top: 1.25rem;
  }
}

.p-form-item__textarea {
  margin-top: 0.9375rem;
  padding: 1.1875rem 1.5rem;
  border-radius: 0.625rem;
  border: 1px solid transparent;
  /* デフォルトの透明な境界線 */
  height: 11.375rem;
  width: 100%;
  background: #E9F7FF;
  font-size: 0.875rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-form-item__textarea {
    margin-top: 1.25rem;
    border-radius: 1.25rem;
  }
}

.p-form-item__textarea:focus {
  outline: none;
  border: 1px solid #3FA7D1;
}

fieldset {
  padding: 0;
  margin-top: 1.25rem;
}
.p-form-item__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  border: none;
  width: 100%;
}

.p-form-item__radio--medical-visits {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.1875rem;
}

.p-form-item__radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6em;
  position: relative;
  cursor: pointer;
}

.p-form-item__radio label::before,
.p-form-item__radio label::after {
  border-radius: 50%;
  content: "";
}

.p-form-item__radio label::before {
  width: 2.1875rem;
  height: 2.1875rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #707070;
}

.p-form-item__radio label:has(:checked)::before {
  border: 1px solid #3FA7D1;
  -webkit-animation: anim-radio-2 0.3s linear;
          animation: anim-radio-2 0.3s linear;
}
.p-form-item__radio label::after {
  position: absolute;
  top: 50%;
  left: 1.0625rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.3125rem;
  height: 1.3125rem;
}

.p-form-item__radio label:has(:checked)::after {
  background-color: #3FA7D1;
  -webkit-animation: anim-radio-2 0.3s linear;
          animation: anim-radio-2 0.3s linear;
}

@-webkit-keyframes anim-radio-2 {
  0% {
    -webkit-box-shadow: 0 0 0 1px transparent;
            box-shadow: 0 0 0 1px transparent;
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(122, 176, 214, .2);
            box-shadow: 0 0 0 10px rgba(122, 176, 214, .2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px transparent;
            box-shadow: 0 0 0 10px transparent;
  }
}

@keyframes anim-radio-2 {
  0% {
    -webkit-box-shadow: 0 0 0 1px transparent;
            box-shadow: 0 0 0 1px transparent;
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(122, 176, 214, .2);
            box-shadow: 0 0 0 10px rgba(122, 176, 214, .2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px transparent;
            box-shadow: 0 0 0 10px transparent;
  }
}
.p-form-item__radio input {
  display: none;
}

.p-form-item__checkbox {
  width: 100%;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-form-item__checkbox {
    -webkit-column-gap: 1.4375rem;
       -moz-column-gap: 1.4375rem;
            column-gap: 1.4375rem;
  }
}

.p-form-item-checkbox__hidden {
  display: none;
  /* チェックボックスを非表示にする */
}

.p-form-item-checkbox__item {
  margin-top: 0.625rem;
  border-radius: 0.3125rem;
  background: #E9F7FF;
  display: inline-block;
  width: 9.375rem;
  padding: 0.8125rem 0.9375rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 150px;
          flex: 1 1 150px; /* flex-grow: 1, flex-shrink: 1, flex-basis: 150px */
}
@media screen and (min-width: 768px) {
  .p-form-item-checkbox__item {
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 0.5714285714;
    letter-spacing: 0.1em;
    width: 12.8125rem;
    margin-top: 1.25rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .p-form-item-checkbox__item:hover {
    background: #3FA7D1;
    color: #fff;
  }
}

.p-form-item__reason-for-visit .p-form-item__checkbox {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form-item__reason-for-visit .p-form-item__checkbox {
    margin: 0;
  }
}

/* チェックボックスがチェックされているときのスパンのスタイル */
input:checked + .p-form-item-checkbox__item {
  background-color: #3FA7D1;
  color: #fff;
}

.p-form-item-checkbox__item--adjust-size {
  font-size: 0.9375rem;
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-form-item-checkbox__item--adjust-size {
    padding: 0.8125rem 0.9375rem;
  }
}

.p-form-item-checkbox__item--sp {
  display: none;
}
@media (max-width: 322px) {
  .p-form-item-checkbox__item--sp {
    display: block;
  }
}

.p-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-form__btn {
    padding-top: 2.5rem;
  }
}

.p-form__submit-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* ボタン有効時のスタイル */
  display: inline-block;
  margin: 0 auto;
  width: 15rem;
  color: #fff;
  background-color: #3FA7D1;
  border: 1px solid #3FA7D1;
  border-radius: 3.125rem;
  cursor: pointer;
  /* ポインターカーソルを表示 */
}
.p-form__submit-btn:hover {
  color: #3FA7D1;
}

/* ボタン無効時のスタイル */
.p-form__submit-btn[disabled] {
  background-color: #E9F7FF;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 3.125rem;
  pointer-events: none; /* [disabled] の要素がhoverなどのマウスイベントを無視するようにする */
}

.p-form__submit-btn span::before {
  width: 1px;
  height: 0.5625rem;
  translate: 4.0625rem -0.4375rem;
}
.p-form__submit-btn span::after {
  width: 0.5625rem;
  height: 1px;
  translate: 3.8125rem -0.5625rem;
}
.p-form-privacy-policy__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-form-privacy-policy__checkbox {
    padding-top: 2.375rem;
  }
}

/* チェックボックス for privacy-policy */
input[type=checkbox] {
  display: none;
}

.p-form-privacy-policy__check {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-left: 1.4375rem;
  position: relative;
  width: auto;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-form-privacy-policy__check {
    padding-left: 2.375rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.p-form-privacy-policy__check::before {
  background: #fff;
  border: 1px solid #484848;
  content: "";
  display: block;
  height: 1.0625rem;
  left: 0;
  margin-top: -0.375rem;
  position: absolute;
  top: 50%;
  width: 1.0625rem;
}

.p-form-privacy-policy__check::after {
  border-right: 7px solid #3FA7D1;
  border-bottom: 5px solid #3FA7D1;
  content: "";
  display: block;
  height: 1.4375rem;
  left: 0rem;
  margin-top: -0.875rem;
  opacity: 0;
  position: absolute;
  top: 55%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.9375rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

input[type=checkbox]:checked + .p-form-privacy-policy__check::before {
  border-color: #484848;
}

input[type=checkbox]:checked + .p-form-privacy-policy__check::after {
  opacity: 1;
}

.p-form-privacy-policy__check a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #484848;
}

.p-form-privacy-policy__check a:hover {
  opacity: 0.4;
}

.p-fv {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-fv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.l-fv {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-fv {
    margin-top: 5rem;
  }
}

.p-fv__image {
  width: 83.7333333333%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-fv__image {
    width: 71.4285714286%;
  }
}

.p-fv__image img {
  aspect-ratio: 314/232;
  width: 100%;
  height: auto;
  border-radius: 1.875rem 0 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-fv__image img {
    aspect-ratio: 1000/593;
    border-radius: 3.125rem 0 0 3.125rem;
  }
}

.p-fv-catchcopy__image {
  position: absolute;
  top: 8%;
  left: 0.9375rem;
  width: 49.3333333333%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-fv-catchcopy__image {
    top: 10%;
    left: 6.25rem;
    width: 38%;
  }
}

.p-fv-catchcopy__image img {
  aspect-ratio: 172/34;
}

.p-fv-catchcopy__text1 {
  display: block;
  position: absolute;
  top: 13.25rem;
  left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-fv-catchcopy__text1 {
    top: 31.5%;
    left: 14.2%;
  }
}

.p-fv-catchcopy__text1 span {
  display: inline-block;
  padding: 0 1.1875rem 0 0.375rem;
  /* パディングを設定 */
  font-size: 1.375rem;
  font-weight: normal;
  line-height: 1.9545454545;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #A0D8F1;
  /* span間の隙間を設定 */
}
@media screen and (min-width: 768px) {
  .p-fv-catchcopy__text1 span {
    padding: 0 0.25rem 0 0.375rem;
    font-size: 2.45vw;
    line-height: 1.7647058824;
  }
}
.p-fv-catchcopy__text1 span:not(:last-child) {
  margin-bottom: 2%;
}

.p-fv-catchcopy__text2 {
  display: inline-block;
  position: absolute;
  top: 18.9375rem;
  font-size: 0.9375rem;
  letter-spacing: 0.035em;
  line-height: 2.3333333333;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-fv-catchcopy__text2 {
    display: inline;
    font-size: 1.45vw;
    line-height: 1.45;
    top: 56%;
    left: 13.2%;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3.75rem;
  background-color: #fff;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-header__logo {
  width: 100%;
  padding-left: 2%;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    padding-left: 7%;
    width: 31.4285714286%;
    height: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .p-header__logo {
    padding-left: 2%;
  }
}

.p-header__logo a {
  padding: 2%;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (min-width: 768px) {
  .p-header__logo a {
    padding: 0.3125rem;
    width: 100%;
    height: auto;
  }
}

.p-header__logo img {
  aspect-ratio: 190/24;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-header__logo img {
    aspect-ratio: 333/40;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-header__items {
  width: 100%;
}
.p-header-items {
  /* スライドさせるために固定配置 */
  position: fixed;
  /* 初期状態で非表示 */
  right: -100%;
  /* 必要に応じて幅を調整 */
  width: 23.4375rem;
  height: 100%;
  /* 背景色を調整 */
  background-color: #fff;
  /* スムーズにスライド */
  -webkit-transition: right 0.5s ease;
  transition: right 0.5s ease;
  padding-inline: 1.875rem;
  padding-top: 2.25rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-header-items {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 67.1428571429%;
    height: 5rem;
  }
}

.p-header__items.is-open {
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-header-items {
    margin-top: 0;
  }
}

.p-header-items__web-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header-items__web-tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0;
    width: 40.5%;
  }
}

.p-header-items__web {
  position: relative;
  background-color: #3FA7D1;
  border-radius: 0.625rem;
  padding-block: 1.1875rem;
  font-size: 1.375rem;
  font-weight: medium;
  letter-spacing: 0.1em;
  color: #fff;
  padding-left: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-header-items__web {
    padding: 1.5rem 0 0 0.625rem;
    font-size: 1.125rem;
    font-size: clamp(1.1vw, 1.3vw, 1.5rem);
    font-weight: bold;
    font-size: 1.3vw;
    font-weight: bold;
    border-radius: 0;
    min-width: 5.625rem;
    width: 31.5%;
  }
}

@media screen and (min-width: 768px) {
  .p-header-items__web:hover {
    opacity: 0.4;
  }
}

.p-header-items__web::before {
  position: absolute;
  content: "";
  background-image: url(../images/calender.webp);
  background-size: cover;
  top: 1.25rem;
  left: 4.8125rem;
  width: 1.9375rem;
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .p-header-items__web::before {
    display: none;
  }
}

.p-header-items__tel {
  position: relative;
  background-color: #E9F7FF;
  font-size: 1.625rem;
  font-weight: bold;
  letter-spacing: 0.027em;
  padding: 0.25rem 0 1.5625rem 1.5rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-header-items__tel {
    padding: 0;
    border-radius: 0;
    width: 68.5%;
    font-size: clamp(1.1vw, 1.86vw, 1.625rem);
    min-width: 11.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0.75rem;
    letter-spacing: 0;
  }
}

.p-header-items__tel span {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header-items__tel span {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    -ms-flex-item-align: center;
        align-self: center;
    padding-top: 0.625rem;
    padding-top: 2%;
  }
}

.p-header-items__tel::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../images/phone.webp);
  background-size: cover;
  top: 0.8rem;
  left: 2.4rem;
  width: 0.94375rem;
  height: 1.29375rem;
}
@media screen and (min-width: 768px) {
  .p-header-items__tel::before {
    background-image: none;
  }
}

.p-header-items__tel::after {
  position: absolute;
  display: block;
  content: "お気軽にお問い合わせください";
  top: 2.5rem;
  left: 4.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-header-items__tel::after {
    content: "営業時間　10:00〜19:00";
    font-size: clamp(0.6vw, 0.9vw, 0.75rem);
    top: 2.875rem;
    left: 0;
    margin-left: 38%;
    display: inline-block;
    text-align: right;
    letter-spacing: 0;
  }
}

@-moz-document url-prefix() {
  .p-header-items__tel {
    max-width: none;
    /* Firefoxのみmax-widthを無効化 */
  }
}
.p-header-items__tel:hover {
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .p-header-items__tel:hover {
    opacity: 1;
    cursor: default;
  }
}

@media screen and (min-width: 768px) {
  .p-header-items__menu {
    width: 59.5%;
  }
}

.l-header-menu {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__lists {
    width: 100%;
    display: grid;
    grid-template-columns: 23% 22% 25% 29%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

.p-header-menu__list:last-child {
  border-bottom: none;
}
.p-header-menu__list a {
  display: inline-block;
  width: 100%;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2.7777777778;
  padding-left: 0.5rem;
  border-bottom: 1px solid #3FA7D1;
}
@media screen and (min-width: 768px) {
  .p-header-menu__list a {
    position: relative;
    padding-left: 0;
    border-bottom: none;
    font-size: clamp(0.75rem, 1.15vw, 1.125rem);
    line-height: 5rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__list:not(:first-child)::after {
    position: absolute;
    content: "";
    display: block;
    width: 0.0625rem;
    height: 0.8125rem;
    background-color: #484848;
    top: 53%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__list a:hover {
    color: #3FA7D1;
    font-weight: bold;
  }
}

.p-header-menu__accordion-item {
  position: relative;
}
.p-header-menu__accordion::before,
.p-header-menu__accordion::after {
  position: absolute;
  content: "";
  background: #A0D8F1;
  width: 0.8125rem;
  height: 0.125rem;
  top: 0.75rem;
  left: 8.75rem;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-header-menu__accordion::before,
  .p-header-menu__accordion::after {
    display: none;
  }
}

.p-header-menu__accordion::before {
  -webkit-transform: translate(9.0625rem, 0.8125rem) rotate(45deg);
          transform: translate(9.0625rem, 0.8125rem) rotate(45deg);
}
.p-header-menu__accordion::after {
  -webkit-transform: translate(9.5625rem, 0.8125rem) rotate(135deg);
          transform: translate(9.5625rem, 0.8125rem) rotate(135deg);
}
.p-header-menu__accordion.is-open::before {
  -webkit-transform: translate(9.0625rem, 0.75rem) rotate(135deg);
          transform: translate(9.0625rem, 0.75rem) rotate(135deg);
}

.p-header-menu__accordion.is-open::after {
  -webkit-transform: translate(9.5625rem, 0.75rem) rotate(45deg);
          transform: translate(9.5625rem, 0.75rem) rotate(45deg);
}

.p-header-submenu {
  margin-top: 0.125rem;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.7s ease;
  transition: max-height 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-header-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 25rem;
    padding-inline: 1.25rem;
    padding-bottom: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.375rem;
    border-radius: 0 0 0.625rem 0.625rem;
    background-color: rgba(255, 255, 255, .9);
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__list:last-child:hover .p-header-submenu {
    opacity: 1;
    visibility: visible;
  }
}

.p-header-submenu.is-open {
  max-height: 25rem;
}
.p-header-submenu__list a {
  position: relative;
  font-size: 0.9375rem;
  line-height: 3;
  letter-spacing: 0.04em;
  padding-right: 50%;
  padding-left: 2.75rem;
  border: none;
}
@media screen and (min-width: 768px) {
  .p-header-submenu__list a {
    border-bottom: 1px solid rgba(72, 72, 72, .6);
    text-align: center;
    display: inline-block;
    font-size: clamp(0.875rem, 1.1vw, 1.125rem);
    line-height: 3.4375;
    letter-spacing: 0.1em;
    padding-inline: 10%;
    margin: 0 auto;
  }
}

.p-header-submenu__list a::before {
  position: absolute;
  content: "";
  background-color: #A0D8F1;
  width: 1rem;
  height: 0.0625rem;
  top: 50%;
  left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-header-submenu__list a::before {
    display: none;
  }
}

.p-header__submenu-link {
  border-bottom: none;
}
.p-header__mask {
  position: fixed;
  top: 3.6875rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, .8);
  /* 半透明の背景 */
  display: none;
  /* 初期状態で非表示 */
  z-index: 9;
  /* メニューよりも下に配置 */
}

.p-header__mask.is-open {
  display: block;
  /* メニューが開いたら表示 */
}

.p-header__hamburger {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.3125rem;
  background: transparent;
  cursor: pointer;
  height: 3.75rem;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  position: absolute;
  left: 1.5625rem;
  content: "";
  background: #484848;
  width: 1.25rem;
  height: 1px;
  border-radius: 0.125rem;
  -webkit-transition: ease 0.7s;
  transition: ease 0.7s;
}
.p-header__hamburger span:nth-child(1) {
  top: 38%;
}
.p-header__hamburger span:nth-child(2) {
  top: 50%;
}
.p-header__hamburger span:nth-child(3) {
  top: 62%;
}
.close.p-header__hamburger span:nth-child(1) {
  width: 1.125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 51%;
  right: 1%;
}
.close.p-header__hamburger span:nth-child(2) {
  opacity: 0;
}
.close.p-header__hamburger span:nth-child(3) {
  width: 1.125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 51%;
  right: 1%;
}
.l-interior {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .l-interior {
    margin-top: 6.875rem;
  }
}

.p-interior__title {
  text-align: center;
}
.slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.p-interior__item {
  aspect-ratio: 244/239;
  width: 9.375rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
  margin-inline: 0.5rem;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
@media screen and (min-width: 768px) {
  .p-interior__item {
    aspect-ratio: 356/346;
    margin: 0;
    width: 27.1875rem;
    height: auto;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

.p-interior__items .slick-center {
  width: 15.25rem;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.slick-center {
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 15.25rem;
}

.p-interior__items .slick-prev:before,
.p-interior__items .slick-next:before {
  content: "";
  /* デフォルトの矢印アイコンを削除 */
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #A0D8F1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: white;
  border: solid transparent;
  background-image: url(../images/arrow.png);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .p-interior__items .slick-prev:before,
  .p-interior__items .slick-next:before {
    line-height: 47px;
    width: 3.125rem;
    height: 3.125rem;
  }
}

/* 左矢印 */
/* 右矢印 */
.p-interior__items .slick-next:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-interior__items .slick-prev,
.p-interior__items .slick-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.5rem;
  Z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-interior__items .slick-prev,
  .p-interior__items .slick-next {
    width: 3.125rem;
  }
}

.p-interior__items .slick-prev {
  left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-interior__items .slick-prev {
    top: 112%;
  }
}
@media (min-width: 768px) {
  .p-interior__items .slick-prev {
    left: auto;
    right: 9.375rem;
  }
}
@media (min-width: 1399px) {
  .p-interior__items .slick-prev {
    left: auto; /* leftを自動にして、rightに切り替える */
    right: 16.25rem;
  }
}

.p-interior__items .slick-next {
  right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-interior__items .slick-next {
    top: 112%;
    left: 71.875rem;
  }
}
@media (min-width: 768px) {
  .p-interior__items .slick-next {
    left: auto;
    right: 5.9375rem;
  }
}
@media (min-width: 1399px) {
  .p-interior__items .slick-next {
    left: auto; /* leftを自動にして、rightに切り替える */
    right: 12.5rem;
  }
}

.l-interior__items {
  margin-top: 2.125rem;
}

.p-message {
  overflow: hidden;
}
.l-message__inner {
  position: relative;
  display: grid;
  padding: 6.25rem 0 0rem;
  width: 100%;
  height: 134.375rem;
  max-height: 187.5rem;
  margin-top: 4.375rem;
}
@media (min-width: 27.8125rem) {
  .l-message__inner {
    height: 142.5rem;
  }
}
@media (min-width: 34.6875rem) {
  .l-message__inner {
    height: 153.125rem;
  }
}
@media (min-width: 40.9375rem) {
  .l-message__inner {
    height: 165.625rem;
  }
}
@media screen and (min-width: 768px) {
  .l-message__inner {
    max-width: 87.5rem;
    height: 88.625rem;
    margin-inline: auto;
    width: 100%;
    padding: 0;
    margin-top: 7rem;
  }
}

.p-message__bg {
  display: block;
  content: "";
  display: inline-block;
  background-image: url(../images/message/message_bg.webp);
  background-color: rgba(255, 255, 255, 0.6); /* 白の透明度を調整 */
  background-blend-mode: lighten; /* または overlay, screen など */
  background-size: 69% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-message__bg {
    background-image: none; /* 背景画像を無効化 */
    background-size: auto; /* サイズをリセット */
    margin-right: 31.25rem;
    margin-right: 36.5%;
    margin-left: calc(50% - 50vw);
    margin-top: 11.25rem;
    margin-top: 13%;
  }
}

@media screen and (min-width: 768px) {
  .p-message__bg::after {
    display: block;
    content: "";
    background: url(../images/message/message_bg-pc.webp);
    background-color: rgba(255, 255, 255, 0.6); /* 白の透明度を調整 */
    background-blend-mode: lighten; /* または overlay, screen など */
    background-size: cover;
    width: 100%;
    height: 100%;
  }
}

.l-message__container {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .l-message__container {
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-message-top__text-area {
    position: relative;
    width: 35.7142857143%;
    margin-top: 4.5rem;
  }
}

.p-message__top-title--sp {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-message__top-title--sp {
    display: none;
  }
}

.p-message__top-title--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-message__top-title--pc {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .p-message__top-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 87.5rem;
    margin-inline: auto;
  }
}

.l-message__top-container {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .l-message__top-container {
    margin-top: 0;
  }
}

.p-message-top__image {
  padding-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-message-top__image {
    padding-right: 0;
    margin-right: 2.5rem;
    width: 47.1428571429%;
  }
}

.p-message-top__image img {
  aspect-ratio: 360/250;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 1.875rem 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .p-message-top__image img {
    aspect-ratio: 660/380;
    width: 100%;
    height: auto;
    border-radius: 0 3.125rem 3.125rem 0;
  }
}

.p-message-top__text-image {
  position: absolute;
  top: 4.2%;
  left: 34%;
  right: 0.9375rem;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-message-top__text-image {
    top: -4%;
    left: 13.75rem;
    right: 0;
  }
}

.p-message-top__text-image img {
  aspect-ratio: 232/83;
  width: 61.8666666667%;
  /* ビューポート幅に比例 */
  height: auto; /* 縦横比を保持 */
}
@media screen and (min-width: 768px) {
  .p-message-top__text-image img {
    width: 48%;
  }
}

.p-message-top__text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-message-top__text {
    margin-top: 2.375rem;
    padding: 0;
  }
}

.p-message-contents {
  margin-top: 0.25rem;
}
.l-message-contents__items {
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .l-message-contents__items {
    margin-top: 2.375rem;
  }
}

.p-news {
  background-image: url("../images/news_bg-sp.webp");
  padding: 15.75rem 0 4.375rem;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news {
    background-image: url("../images/news_bg-pc.webp");
    padding: 11.5625rem 0 3.5rem;
  }
}

.l-news {
  margin-top: -7.1875rem;
}
@media screen and (min-width: 768px) {
  .l-news {
    margin-top: -8.125rem;
  }
}

.p-news__container {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news__container {
    max-width: 80%;
    margin: 0 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__title {
    width: 18.125%;
  }
}

.p-news__contents {
  padding: 0.875rem 0 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__contents {
    padding-top: 0;
    padding-bottom: 0.875rem;
    width: 77.875%;
  }
}

.p-news__content {
  border-bottom: 1px solid #3FA7D1;
}
@media screen and (min-width: 768px) {
  .p-news-content__text {
    display: inline-block;
  }
}

.p-news__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-sp-contact-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-sp-contact-bottom {
    display: none;
  }
}

.p-sp-contact-bottom__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.p-sp-contact-bottom__tel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  height: 3.75rem;
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.4210526316;
  letter-spacing: 0.027em;
  padding-left: calc(0.9375rem + 5%);
}
.p-sp-contact-bottom__tel::before {
  position: absolute;
  content: "";
  background-image: url(../images/phone.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.6875rem;
  height: 0.9375rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(18px + 2%); /* 10pxと%を組み合わせて、画面幅によって動的に調整 */
}
.p-sp-contact-bottom__web-reservation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #3FA7D1;
  height: 3.75rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4705882353;
  letter-spacing: 0.1em;
  padding-left: 1.5rem;
}
.p-sp-contact-bottom__web-reservation::before {
  position: absolute;
  content: "";
  background-image: url(../images/calender.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.4375rem;
  height: 1.5rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.875rem;
}
.p-treatment {
  position: relative;
}
.l-treatment__bg {
  position: absolute;
  content: "";
  background-image: url(../images/treatment/treatment-sp-bg.webp);
  background-color: rgba(255, 255, 255, 0.7); /* 白の透明度を調整 */
  background-blend-mode: lighten; /* または overlay, screen など */
  background-size: cover;
  background-position: bottom;
  top: 0;
  width: 100%;
  height: 41.75rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-treatment__bg {
    background-image: url(../images/treatment/treatment-pc-bg.webp);
    height: 25rem;
    background-position: bottom;
  }
}

.l-treatment__wrapper {
  padding-top: 4.25rem;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-treatment__wrapper {
    padding-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-treatment__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.625rem;
  }
}

.l-treatment__items {
  margin: 1.8125rem 0.9375rem 0rem;
}
@media screen and (min-width: 768px) {
  .l-treatment__items {
    margin: 0.75rem auto 0rem;
  }
}

.p-treatment__item {
  margin-top: 1.6875rem;
}
.p-treatment-item__btn {
  margin: 0.625rem 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-treatment-item__btn {
    margin: 0.25rem 0 0 auto;
  }
}

.p-treatment__btn2 {
  margin-top: 2.1875rem;
  margin-inline: auto;
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-treatment__btn2 {
    margin-top: 3.5625rem;
  }
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
