@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5238095238vw;
    overflow-x: hidden;
  }
}
@media (min-width: 1050px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  color: #282828;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

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

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

/* 波アニメーションのスタイル */
.wave {
  overflow: hidden;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  z-index: 1;
}

/* 波のアニメーション設定 */
.wave-path {
  -webkit-animation: wave-animation 10s linear infinite;
          animation: wave-animation 10s linear infinite;
}

/* キーフレームアニメーション */
@-webkit-keyframes wave-animation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes wave-animation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.waves {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  z-index: 1;
}

.waves--mv {
  bottom: 1.0625rem;
}

.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
.waves2 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  z-index: 1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-header .waves2 {
  top: unset;
  bottom: -1.25rem;
}

.home .p-header .waves2 {
  display: none;
}

.parallax2 > use {
  -webkit-animation: move-forever2 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever2 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax2 > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax2 > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax2 > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax2 > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever2 {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever2 {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
.fadeIn {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadeIn-sp {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .fadeIn-sp {
    -webkit-transform: translate3d(0);
            transform: translate3d(0);
  }
}

.fadeIn-sp.animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*========= 画面遷移のためのCSS ===============*/
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(11, 172, 227, .2)), to(rgba(0, 198, 211, .2))), #FFFFFF;
  background: linear-gradient(90deg, rgba(11, 172, 227, .2) 11.23%, rgba(0, 198, 211, .2) 100%), #FFFFFF;
  z-index: 99;
  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;
}

#splash-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: logoFadeIn 1.5s ease-in-out 0s forwards;
          animation: logoFadeIn 1.5s ease-in-out 0s forwards;
}

@-webkit-keyframes logoFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
/* 画面遷移の後現れるコンテンツ設定 */
#container {
  opacity: 0; /* はじめは透明 */
}

/* bodyにappearクラスがついたら出現 */
body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

/* 画面遷移の後現れるコンテンツのアニメーション */
@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0; /* 透明から不透明へ */
  }
  100% {
    opacity: 1; /* 不透明 */
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0; /* 透明から不透明へ */
  }
  100% {
    opacity: 1; /* 不透明 */
  }
}
/* 初期状態：透明（トップページだけ） */
body.home header,
body.home .p-footer__bottom {
  opacity: 0;
}

/* appear時に同時に表示（トップページだけ） */
body.home.appear header,
body.home.appear .p-footer__bottom {
  -webkit-animation: fadeIn 1s ease 0.2s forwards;
          animation: fadeIn 1s ease 0.2s forwards;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/*****************************
* 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-bg-blue {
  background: #EBFAFF;
  position: relative;
}

.l-bg-blue::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.25rem;
  background: url(../img/bg-wave-blue-sp.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .l-bg-blue::before {
    background: url(../img/bg-wave-blue.png) no-repeat center/cover;
    height: 2.5rem;
    top: -2.5rem;
  }
}

.bubble-container {
  position: fixed;
  bottom: -25rem;
  width: 1.875rem;
  height: 28.75rem;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .bubble-container {
    bottom: -37.5rem;
    width: 11.8125rem;
    height: 43.0625rem;
  }
}

.home .bubble-container {
  display: none;
}

.bubble-container-left {
  left: 0;
  background-image: url("../img/common/bubble_left_sp.png");
}
@media screen and (min-width: 768px) {
  .bubble-container-left {
    background-image: url("../img/common/bubble_left.png");
  }
}

.bubble-container-right {
  right: 0;
  background-image: url("../img/common/bubble_right_sp.png");
}
@media screen and (min-width: 768px) {
  .bubble-container-right {
    background-image: url("../img/common/bubble_right.png");
  }
}

@-webkit-keyframes bubble-rise {
  0% {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-700px);
            transform: translateY(-700px);
    opacity: 0;
  }
}

@keyframes bubble-rise {
  0% {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-700px);
            transform: translateY(-700px);
    opacity: 0;
  }
}
.bubble-active {
  -webkit-animation: bubble-rise 3s ease-out forwards;
          animation: bubble-rise 3s ease-out forwards;
}

.l-bg-wave {
  position: relative;
}

@media screen and (min-width: 768px) {
  .l-bg-wave::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.5rem;
    background: url(../img/bg-wave-blue-top.png) no-repeat center/cover;
  }
}

.l-bg-wave-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(../img/wave_img.png) no-repeat center/cover;
}

.l-bg-wave--white {
  position: relative;
}

.l-bg-wave--white::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.25rem;
  background: url(../img/bg-wave-white-sp.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .l-bg-wave--white::before {
    top: -2.5rem;
    height: 2.5rem;
    background: url(../img/bg-wave-white.png) no-repeat center/cover;
  }
}

.l-guid {
  padding: 3.75rem 0 0;
}
@media screen and (min-width: 768px) {
  .l-guid {
    padding: 2.75rem 0 0;
  }
}

.l-guid2 {
  padding: 5.125rem 0 10rem;
}
@media screen and (min-width: 768px) {
  .l-guid2 {
    padding: 3.75rem 0 18.125rem;
  }
}

.l-info {
  padding-bottom: 4.9375rem;
}

.l-inner {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  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;
  }
}

.l-news {
  padding: 3.875rem 0 5.0625rem;
}
@media screen and (min-width: 768px) {
  .l-news {
    padding: 6.25rem 0 5rem;
  }
}

.l-section {
  padding: 3.75rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 5rem 0 10rem;
  }
}

.l-special {
  padding: 4.75rem 0 6.125rem;
}
@media screen and (min-width: 768px) {
  .l-special {
    padding: 6.25rem 0 8.75rem;
  }
}

.c-btn {
  min-width: 17.1875rem;
  display: inline-block;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  border-radius: 100px;
  background: -webkit-gradient(linear, left top, right top, from(#306DCD), to(#87FBD4));
  background: linear-gradient(90deg, #306DCD 0%, #87FBD4 100%);
  padding: 1.25rem 2rem 1.25rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: unset;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.05em;
    padding: 0.8125rem 4.375rem 0.8125rem 5rem;
  }
}

.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5625rem;
  height: 1.1875rem;
  background: url(../img/common/btn-arrow.svg) no-repeat center/contain;
}

.c-btn:hover {
  opacity: 0.7;
}

.c-btn2 {
  width: 100%;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  padding: 0.75rem 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  border-radius: 30px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="6" /><feOffset dx="4" dy="4" result="offsetblur" /><feFlood flood-color="rgba(42,115,155,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(3px 3px 6px rgba(42, 115, 155, .2));
          filter: drop-shadow(3px 3px 6px rgba(42, 115, 155, .2));
}
@media screen and (min-width: 768px) {
  .c-btn2 {
    min-width: 30.625rem;
    font-size: 1.125rem;
  }
}

.c-btn2--yellow {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.68%, #D5A732), to(#E3C029));
  background: linear-gradient(90deg, #D5A732 11.68%, #E3C029 100%);
}

.c-btn2--gray {
  background: -webkit-gradient(linear, left top, right top, from(#B0B0B0), to(#D2D2D2));
  background: linear-gradient(90deg, #B0B0B0 0%, #D2D2D2 100%);
}

.c-btn2--blue {
  background: -webkit-gradient(linear, left top, right top, from(#306DCD), to(#87FBD4));
  background: linear-gradient(90deg, #306DCD 0%, #87FBD4 100%);
}

.c-card-recruit {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="10" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(9,110,164,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 10px rgba(9, 110, 164, .1));
          filter: drop-shadow(0px 0px 10px rgba(9, 110, 164, .1));
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .c-card-recruit {
    display: grid;
    border-radius: 0;
  }
}

.c-card-recruit__img {
  max-width: 8.4375rem;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .c-card-recruit__img {
    max-width: 100%;
  }
}

.c-card-recruit__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 135/100;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-card-recruit__img img {
    aspect-ratio: 235/175;
  }
}

.c-card-recruit__body {
  padding: 0.9375rem 1.6875rem;
  display: grid;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
  grid-row: span 2;
}
@media screen and (min-width: 768px) {
  .c-card-recruit__body {
    place-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.9375rem;
  }
}

.c-card-recruit__body p {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .c-card-recruit__body p {
    font-size: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.c-card-recruit__body p.c-card-recruit__title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-card-recruit__body p.c-card-recruit__title {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    text-align: center;
    padding-left: unset;
  }
}

.c-card-recruit__body .subtext {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-card-recruit__body .subtext {
    text-align: center;
  }
}

.c-card-recruit:hover .c-card-recruit__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-card {
  min-width: 17.1875rem;
  padding: 1.875rem 1.0625rem 1.875rem 1.125rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(11, 172, 227, .8)), to(rgba(0, 198, 211, .8)));
  background: linear-gradient(90deg, rgba(11, 172, 227, .8) 11.23%, rgba(0, 198, 211, .8) 100%);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
}
@media screen and (min-width: 768px) {
  .c-card {
    min-width: 100%;
    max-width: 15.1875rem;
    padding: 2.625rem 1.0625rem 2.5rem 1.125rem;
  }
}

.c-card--red {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(253, 141, 133, .8)), to(rgba(247, 105, 94, .8)));
  background: linear-gradient(90deg, rgba(253, 141, 133, .8) 11.23%, rgba(247, 105, 94, .8) 100%);
}

.c-card--yellow {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(227, 192, 41, .8)), color-stop(99.56%, rgba(213, 167, 50, .8)));
  background: linear-gradient(90deg, rgba(227, 192, 41, .8) 11.23%, rgba(213, 167, 50, .8) 99.56%);
}

.c-card--green {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.68%, rgba(32, 148, 38, .8)), color-stop(69.82%, rgba(54, 179, 60, .8)));
  background: linear-gradient(90deg, rgba(32, 148, 38, .8) 11.68%, rgba(54, 179, 60, .8) 69.82%);
}

.c-card--purple {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(206, 116, 214, .8)), color-stop(99.56%, rgba(192, 86, 219, .8)));
  background: linear-gradient(90deg, rgba(206, 116, 214, .8) 11.23%, rgba(192, 86, 219, .8) 99.56%);
}

.c-card__title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4782608696;
  letter-spacing: 0.2em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1.4375rem;
    letter-spacing: 0;
  }
}

.c-card__title span {
  background: #096EA4;
  color: #fff;
  border-radius: 100px;
  padding: 0.3125rem 0.8125rem 0.3125rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4666666667;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 768px) {
  .c-card__title span {
    font-size: 0.9375rem;
    padding: 0.375rem 0.8125rem 0.4375rem 0.875rem;
  }
}

.c-card--red .c-card__title span {
  background: #9E2F27;
}

.c-card--yellow .c-card__title span {
  background: #815512;
}

.c-card--green .c-card__title span {
  background: #15661A;
}

.c-card--purple .c-card__title span {
  background: #7F1281;
}

.c-card__img {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card__img {
    margin-top: 1.25rem;
  }
}

.c-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 235/148;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-card__img img {
    aspect-ratio: 200/146;
  }
}

.c-card__subtitle {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1.7px;
  color: #056DB5;
}
@media screen and (min-width: 768px) {
  .c-card__subtitle {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
  }
}

.c-card--red .c-card__subtitle {
  color: #9E2F27;
}

.c-card--yellow .c-card__subtitle {
  color: #815512;
}

.c-card--green .c-card__subtitle {
  color: #15661A;
}

.c-card--purple .c-card__subtitle {
  color: #7F1281;
}

.c-card__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .c-card__text {
    margin-top: 1.25rem;
    line-height: 1.7857142857;
  }
}

.c-card__btn {
  width: 100%;
  margin-top: 0.9375rem;
  padding: 0.5rem 2.5rem 0.5rem 2.4375rem;
  display: inline-block;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 250%;
  letter-spacing: 0.1em;
  text-align: center;
  color: #108FCC;
  background: rgba(255, 255, 255, .8);
  border-radius: 30px;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-card__btn {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    padding: 0.625rem 2.5rem 0.625rem 2.4375rem;
  }
}

.c-card__btn:hover {
  background: #108FCC;
  color: rgba(255, 255, 255, .8);
}

.c-card__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 1.0625rem;
  background-color: #108FCC;
  -webkit-mask-image: url(../img/common/btn-arrow.svg);
          mask-image: url(../img/common/btn-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 768px) {
  .c-card__btn::after {
    right: 1.25rem;
  }
}

.c-card__btn:hover::after {
  background: rgba(255, 255, 255, .8);
}

.c-card__btn--red {
  color: #9E2F27;
}

.c-card__btn--red:hover {
  background: #9E2F27;
}

.c-card__btn--red::after {
  background-color: #9E2F27;
}

.c-card__btn--yellow {
  color: #815512;
}

.c-card__btn--yellow:hover {
  background: #815512;
}

.c-card__btn--yellow::after {
  background-color: #815512;
}

.c-card__btn--purple {
  color: #7F1281;
}

.c-card__btn--purple:hover {
  background: #7F1281;
}

.c-card__btn--purple::after {
  background-color: #7F1281;
}

.c-card__btn--green {
  color: #15661A;
}

.c-card__btn--green:hover {
  background: #15661A;
}

.c-card__btn--green::after {
  background-color: #15661A;
}

.c-contents {
  padding: 2.5rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-contents {
    padding: 6.4375rem 0 10rem;
  }
}

.c-contents__title {
  text-align: center;
}

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

.c-contents__wrap {
  width: 90%;
  margin-inline: auto;
  padding: 4.625rem 1.25rem 2.5rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, .8);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="10" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(9,110,164,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 10px rgba(9, 110, 164, .2));
          filter: drop-shadow(0px 0px 10px rgba(9, 110, 164, .2));
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-contents__wrap {
    width: 100%;
    padding: 5.625rem 3.75rem 2.6875rem;
  }
}

.c-contents__wrap-title {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
  padding: 0.625rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: -0.875rem;
  min-width: 18.125rem;
}
@media screen and (min-width: 768px) {
  .c-contents__wrap-title {
    padding: 0 1.5rem;
    font-size: 1.25rem;
    line-height: 2.5;
    letter-spacing: 0.2em;
  }
}

.c-contents__wrap-title::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px rgb(149, 158, 155);
}

.c-contents__wrap-title--red {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
}

.c-contents__wrap-title--yellow {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.68%, #D5A732), to(#E3C029));
  background: linear-gradient(90deg, #D5A732 11.68%, #E3C029 100%);
}

.c-contents__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-contents__time {
    gap: 1.875rem;
    margin-top: 1rem;
  }
}

.c-contents__time-title {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
  padding: 0 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.4666666667;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-contents__time-title {
    padding: 0.5rem 3.3125rem;
    border-radius: 20px;
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}

.c-contents__time-title--red {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
}

.c-contents__time-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-contents__time-text {
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.c-contents__time-text span.red {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-contents__time-text span.blue {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-contents__wrap-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-contents__wrap-text {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.c-contents__wrap-text--margin {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-contents__wrap-text--margin {
    margin-left: 0.625rem;
    margin-top: 1.0625rem;
  }
}

.c-contents__wrap-text span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .c-contents__wrap-text span {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.c-contents__wrap-text span.blue {
  color: #096EA4;
  display: inline;
}

.c-contents__wrap-text span.red {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline;
}

.c-contents__wrap-text span.yellow {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.68%, #D5A732), to(#E3C029));
  background: linear-gradient(90deg, #D5A732 11.68%, #E3C029 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.c-contents__wrap-text span.indent {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .c-contents__wrap-text span.indent {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.c-contents__wrap-text span.indent:nth-child(n+2) {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-contents__wrap-text span.indent:nth-child(n+2) {
    margin-top: 0;
  }
}

.c-contents__wrap-subtext {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .c-contents__wrap-subtext {
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
}

.c-contents__contents {
  margin-top: 1.875rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-contents__contents {
    grid-template-columns: 1fr 1fr;
    margin-top: 3.125rem;
    gap: 2.5rem;
  }
}

.c-contents__bottom {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-contents__bottom {
    margin-top: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-contents__btn .c-btn {
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .c-contents__btn .c-btn {
    font-size: 1.125rem;
    padding: 0.75rem 0;
  }
}

.c-head-btn {
  min-width: 9.375rem;
  width: 100%;
  min-height: 3.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  padding: 0 1rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 30px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-head-btn {
    min-width: 14.6875rem;
    min-height: 3.75rem;
    max-height: 3.75rem;
    font-size: 0.9375rem;
    line-height: 2;
    line-height: 1.2;
    padding: 0.625rem 2.125rem 0.625rem 1.25rem;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-head-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.875rem;
  height: 0.4375rem;
  background: url(../img/common/btn-arrow-down.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-head-btn::after {
    right: 1.25rem;
  }
}

.c-head-btn:hover {
  opacity: 0.7;
}

.c-head-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.5px;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  white-space: nowrap;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .c-head-title {
    font-size: 2.8125rem;
    line-height: 1;
    letter-spacing: 4.5px;
  }
}

.c-head-title::before {
  content: attr(data-en);
  position: absolute;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4.5px;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-head-title::before {
    top: -2.8125rem;
    font-size: 1rem;
    line-height: 2.8125;
  }
}

.c-icon-btn {
  display: inline-block;
  max-width: 5.75rem;
  display: grid;
  grid-template-rows: 5.75rem 2rem;
  gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-icon-btn {
    max-width: 6.5625rem;
    grid-template-rows: 7rem 2rem;
  }
}

.c-icon-btn__img {
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 50%;
  background-color: #D1EDFB;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-icon-btn__img {
    width: 6.5625rem;
    height: 6.5625rem;
  }
}

.c-icon-btn:hover .c-icon-btn__img {
  background-color: #fff;
}

.c-icon-btn__img img {
  max-width: 2.8125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-icon-btn__body {
  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;
}

.c-icon-btn p {
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.2666666667;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-icon-btn p {
    font-size: 0.9375rem;
    line-height: 1.2666666667;
  }
}

.c-list__item {
  padding-left: 0.9375rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .c-list__item {
    padding-left: 1.5625rem;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.c-list__item::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-list__item::before {
    top: 0.625rem;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.c-section-title {
  font-size: 1.75rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.6071428571;
  letter-spacing: 2.5px;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 2.8125rem;
    line-height: 1;
    letter-spacing: 4.5px;
  }
}

.c-section-title span {
  display: block;
  font-size: 0.625rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4.5px;
}
@media screen and (min-width: 768px) {
  .c-section-title span {
    font-size: 1rem;
    line-height: 2.8125;
  }
}

.c-section-title2 {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding: 0 0.625rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-section-title2 {
    font-size: 1.875rem;
    line-height: 2;
    padding: 0;
  }
}

.c-section-title2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 0.0625rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
}

.c-section-title3 {
  font-size: 1.125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: url(../img/common/title-red.png) no-repeat center/cover;
  color: #fff;
  padding: 0.9375rem 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title3 {
    font-size: 1.25rem;
    text-align: left;
  }
}

.c-section-title3--yellow {
  background: url(../img/common/title-yellow.png) no-repeat center/cover;
}

.c-section-title3--blue {
  background: url(../img/common/title-blue.png) no-repeat center/cover;
}

.c-section-title3--gray {
  background: url(../img/common/title-gray.png) no-repeat center/cover;
}

.c-table {
  width: 100%;
}

.c-table tr {
  display: grid;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-table tr {
    grid-template-columns: 16.875rem 1fr;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.c-table th {
  text-align: left;
  padding: 1.25rem 0.625rem 0;
  color: #096EA4;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-table th {
    border-bottom: 2px solid #0BACE3;
    padding: 1.875rem 2.5rem;
    color: #282828;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-table td {
  padding: 0.8125rem 0.625rem 1.25rem;
  border-bottom: 1px solid rgba(9, 110, 164, .2);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-table td {
    padding: 1.875rem 2.5rem;
    line-height: 2;
  }
}

.p-department__special-table {
  width: 100%;
  border-collapse: collapse;
  display: block;
}

.c-table2__wrap {
  display: grid;
  grid-template-columns: 3.125rem 1fr;
  margin-top: 3.125rem;
}

.p-department__special-table dl {
  display: grid;
  grid-template-rows: 111fr 115fr 156fr;
  width: 100%;
}

.p-department__special-table dt {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-weight: bold;
  background: #06BADB;
  color: #fff;
  padding: 0.625rem;
  font-size: 0.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  letter-spacing: 0.03em;
  border: 1px solid #D2D2D2;
  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-department__special-table dd {
  padding: 0.8125rem 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  border: 1px solid #D2D2D2;
  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;
}

.p-department__special-table dd.gray {
  background: #F4F4F4;
}

.c-table2 dd span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #096EA4;
}

.c-table2 dd span.small {
  margin-top: 0.625rem;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #282828;
}

@media screen and (min-width: 768px) {
  .c-table2__wrap {
    display: contents;
  }
  .c-table2 dl {
    display: grid;
    grid-template-columns: 18.625rem 19.6875rem 1fr;
    grid-template-rows: 1fr;
  }
  .c-table2 dl.gray dd {
    background: #F4F4F4;
  }
  .c-table2__wrap dl.sp-only {
    display: none;
  }
  .c-table2 dt {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    background: #06BADB;
    font-size: 1rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #fff;
    padding: 0.875rem 0;
    border: 1px solid #D2D2D2;
    text-align: center;
  }
  .c-table2 dd {
    height: 100%;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 1.25rem 0.75rem 1.25rem 1.25rem;
    border: 1px solid #D2D2D2;
    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;
  }
  .c-table2 dd.gray {
    background: unset;
  }
  .c-table2 dd span {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5555555556;
    letter-spacing: 0.05em;
    color: #096EA4;
  }
  .c-table2 dd span.small {
    margin-top: 0.625rem;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #282828;
  }
}
.c-table3 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-table3 {
    font-size: 0.9375rem;
  }
}

.c-table3 tr {
  display: grid;
  grid-template-columns: 2.75rem repeat(6, 1fr);
}
@media screen and (min-width: 768px) {
  .c-table3 tr {
    grid-template-columns: 13.8125rem repeat(6, 1fr);
  }
}

.c-table3 tr.blue {
  background: #06BADB;
  color: #fff;
  grid-template-rows: unset;
}

.c-table3 th {
  padding: 0.375rem 0.4375rem;
  border: 1px solid #CBE1ED;
  letter-spacing: 0.35em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-table3 th {
    padding: 0.625rem 0.625rem;
  }
}

.c-table3 th.gray {
  background: #F4F4F4;
  color: #096EA4;
  padding: 0.3125rem 0.625rem;
  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;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-table3 th.gray {
    padding: 0.625rem 1.0625rem;
    font-size: 1.125rem;
  }
}

.c-table3 td {
  background: #fff;
  color: #096EA4;
  padding: 0.625rem 0.75rem;
  text-align: center;
  border: 1px solid #CBE1ED;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-table3 td {
    padding: 2.1875rem;
  }
}

.c-table3 td span.rijicho {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.c-table3 td span.text {
  display: block;
  color: #282828;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.c-table3 td span.position {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 7px;
  padding: 0 0.3125rem;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  display: inline-block;
  max-width: 3.3125rem;
  text-align: center;
}

.c-table3 td.none {
  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;
}

.c-table4 tr {
  display: grid;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-table4 tr {
    grid-template-columns: 16.25rem 1fr;
  }
}

.c-table4 th {
  background: #F4F4F4;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #096EA4;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(9, 110, 164, .2);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-table4 th {
    padding: 0.5625rem 2.5rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}

.c-table4 td {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(9, 110, 164, .2);
  background: #fff;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-table4 td {
    text-align: left;
    padding: 0.5625rem 2.5rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.c-table4 td span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 0.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-table4 td span {
    font-size: 1rem;
  }
}

.c-table4 td p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .c-table4 td p {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.c-title {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #fff;
  padding: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title {
    text-align: left;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 2;
    padding: 0.625rem 2.5rem 0.625rem 2.5rem;
  }
}

.c-title span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-title span {
    font-size: 1rem;
  }
}

.c-title--peg {
  line-height: 1.6;
}

.c-title2 {
  padding: 0.6875rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #096EA4;
  border-left: 5px solid #0BACE3;
}
@media screen and (min-width: 768px) {
  .c-title2 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.625rem;
  }
}

.c-title3 {
  padding: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.4666666667;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #0BACE3;
  background: rgba(221, 245, 255, .6);
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .c-title3 {
    font-size: 1.125rem;
    padding: 0 1.875rem;
  }
}

.c-title3 tr {
  display: grid;
  grid-template-columns: 4.0625rem 1fr 1fr 1fr 1fr 1fr 1fr;
}

.c-title4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #096EA4;
  padding: 0.625rem 0;
  padding-left: 2.1875rem;
  border-bottom: 1px solid #096EA4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title4 {
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 0.625rem 0;
    padding-left: 3.125rem;
  }
}

.c-title4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.4375rem;
  background: url(../img/common/icon-memo.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-title4::before {
    width: 1.875rem;
    height: 2rem;
  }
}

.c-title4--check::before {
  background: url(../img/common/icon-check.png) no-repeat center/contain;
}

.c-title5 {
  padding: 0.375rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #096EA4;
  background: rgba(221, 245, 255, .6);
  border-left: 5px solid #0BACE3;
}
@media screen and (min-width: 768px) {
  .c-title5 {
    font-size: 1.375rem;
    padding: 0.125rem 1.625rem;
  }
}

.c-title5--white {
  background: #fff;
}

.c-title6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #096EA4;
  padding: 0.625rem 0;
  border-bottom: 1px solid #096EA4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title6 {
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 0.625rem 0;
  }
}

.error404 .c-head-title {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .error404 .c-head-title {
    font-size: 2.8125rem;
  }
}

.error404 .p-head .l-inner {
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .error404 .p-head .l-inner {
    padding: unset;
  }
}

.p-404 {
  text-align: center;
  background: #EBFAFF;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding-bottom: 10rem;
  }
}

.p-404__read {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.8px;
}

.p-404__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    margin-top: 3.125rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-404__btn {
  margin-top: 3.125rem;
}

.p-about__container {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3.125rem 1.75rem 7.5rem;
  background: url(../img/bg-about.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-about__container {
    padding: 6.25rem 8.625rem 7.875rem;
  }
}

.p-about__title .c-section-title {
  line-height: 1.2;
}

.p-about__text {
  margin-top: 1.375rem;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 2.8px;
  mix-blend-mode: multiply;
  text-align: center;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 4px;
  }
}

.p-about__bottom {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #D5EAFF), to(#CEE3FF));
  background: linear-gradient(90deg, #D5EAFF 11.23%, #CEE3FF 100%);
  padding: 2.5rem 3.125rem 3.75rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about__bottom {
    padding: 3rem 0 2.625rem;
  }
}

.p-about__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 21.25rem;
  background: url(../img/bubble-about-sp.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-about__bottom::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 7.375rem;
    right: -0.625rem;
    background: url(../img/bubble-about.png) no-repeat center/cover;
  }
}

.p-about__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-about__wrap {
    max-width: 49.0625rem;
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-about__wrap .c-btn {
  min-width: 17.1875rem;
  padding: 1.3125rem 3.1875rem 1.1875rem;
  font-size: 1rem;
  letter-spacing: 0.4px;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__wrap .c-btn {
    min-width: 14.6875rem;
    max-width: 14.6875rem;
    padding: 1.25rem 3.75rem 1.25rem 3.75rem;
  }
}

.p-about2 {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-about2 {
    padding-bottom: 8.75rem;
  }
}

.p-about2__title {
  text-align: center;
}

.p-about2__content {
  background-color: rgba(255, 255, 255, .8);
  padding: 2.5rem 1.875rem;
  border-radius: 6px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about2__content {
    padding: 3.125rem 3.75rem;
    margin-top: 2.5rem;
  }
}

.p-about2__content-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-about2__content-title {
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-about2__content-text {
  margin-top: 1.5625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7857142857;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-about2__content-text {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}

.p-about2__overview {
  padding-top: 3.75rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-about2__overview {
    padding-top: 5rem;
  }
}

.p-about2__table {
  margin-top: 0.625rem;
}

.p-about2__report {
  padding-top: 3.75rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-about2__report {
    padding-top: 5rem;
  }
}

.p-about2__report-read {
  margin-top: 1.4375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about2__report-read {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-about2__report-read2 {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 0.625rem;
  padding-left: 2em;
  text-indent: -1.3em;
  background: #D3F2F9;
}
@media screen and (min-width: 768px) {
  .p-about2__report-read2 {
    margin-top: 1.875rem;
    font-size: 1rem;
    padding: 1.0625rem 1.25rem;
    padding-left: 2.3em;
    text-indent: -1.3em;
  }
}

.p-about2__report-inner {
  max-width: 60rem;
  margin-inline: auto;
}

.p-about2__report-subtitle {
  margin-top: 1.25rem;
}

.p-about2__report-subtitle .c-title6 {
  padding-left: 0;
  font-size: 0.875rem;
  line-height: 2.5;
  padding: 0.3125rem 0;
  background: none;
}
@media screen and (min-width: 768px) {
  .p-about2__report-subtitle .c-title6 {
    font-size: 0.9375rem;
  }
}

.p-about2__report-items {
  margin-top: 1.25rem;
  display: block;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about2__report-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
  .p-about2__report-items .column {
    width: 50%;
  }
  .p-about2__report-items .p-about2__report-item {
    margin-bottom: 0.625rem;
  }
  .p-about2__report-items.is-single-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-about2__report-items.is-single-column .p-about2__report-item {
    width: 100%;
  }
}

.p-about2__report-item {
  padding-left: 1.5625rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about2__report-item {
    padding-left: 1.5625rem;
    font-size: 0.9375rem;
  }
}

.p-about2__report-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}

.p-about2__no-report {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-about2__no-report {
    font-size: 0.9375rem;
  }
}

.p-about2__committee {
  padding-top: 3.75rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-about2__committee {
    padding-top: 5rem;
  }
}

.p-about2__committee-items {
  display: grid;
  gap: 0.3125rem;
  margin-top: 1.875rem;
}

.p-about2__committee-item {
  padding-left: 1.5625rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about2__committee-item {
    padding-left: 1.5625rem;
    font-size: 1rem;
  }
}

.p-about2__committee-item a {
  display: inline-block;
  text-decoration: underline;
  position: relative;
  padding-right: 1.125rem;
}

.p-about2__committee-item::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}

.p-about2__committee-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/icon-pdf.png) no-repeat center/contain;
}

.p-about2__poster {
  padding-top: 3.75rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-about2__poster {
    padding-top: 5rem;
  }
}

.p-about2__poster-items-title {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-about2__poster-items {
  display: grid;
  gap: 0.3125rem;
  margin-top: 1.875rem;
}

.p-about2__poster-item {
  padding-left: 1.5625rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about2__poster-item {
    padding-left: 1.5625rem;
    font-size: 1rem;
  }
}

.p-about2__poster-item a {
  text-decoration: underline;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about2__poster-item a {
    padding-right: 1.125rem;
  }
}

.p-about2__poster-item::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}

.p-about2__poster-item a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/icon-pdf.png) no-repeat center/contain;
}

.p-about2__poster-item2 a::after {
  display: none;
}

.p-about2__history {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-about2__history {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about2__history-items {
    margin-top: 0.9375rem;
  }
}

.p-about2__history-item {
  padding: 1.6875rem 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  border-bottom: 1px solid rgba(91, 91, 91, .2);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about2__history-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1.25rem 0;
  }
}

.p-about2__history-item:has(.p-about2__history-wrap) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .p-about2__history-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 18%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background: rgba(9, 110, 164, .2);
  }
}

.p-about2__history-item:first-child:after {
  height: 80%;
  top: unset;
  bottom: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .p-about2__history-item:first-child:before {
    content: "";
    position: absolute;
    top: 5%;
    left: 18%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.1875rem;
    height: 2.4375rem;
    background: url(../img/line-dot.png) no-repeat center/contain;
  }
}

.p-about2__history-year {
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -3%;
  color: rgba(9, 110, 164, .1);
}

.p-about2__history-wrap {
  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.375rem;
}
@media screen and (min-width: 768px) {
  .p-about2__history-wrap {
    gap: 2.5rem;
    padding: 1.25rem 0;
  }
}

.p-about2__history-body {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-about2__history-body {
    padding-left: 1.25rem;
    grid-template-columns: 3rem 1fr;
    font-size: 0.9375rem;
    margin-left: unset;
  }
}

@media screen and (min-width: 768px) {
  .p-about2__history-body::before {
    content: "";
    position: absolute;
    top: 0.3125rem;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
    background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
    border-radius: 50%;
    z-index: 1;
  }
}

.p-about2__history-body-month {
  font-weight: 700;
  text-align: right;
  color: #096EA4;
  white-space: nowrap;
}

.p-aboutthehospital.l-bg-wave::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-aboutthehospital.l-bg-wave::before {
    display: block;
  }
}

.p-aboutthehospital__title {
  text-align: center;
}

.p-aboutthehospital__read {
  margin-top: 3.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-aboutthehospital__read {
    text-align: center;
    margin-top: 4.375rem;
    font-size: 1.375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-abouthehospital__text {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  max-width: 53.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-abouthehospital__text {
    margin-top: 2.1875rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-aboutthehospital__text span {
  font-weight: 700;
}

.p-aboutthehospital__img {
  margin-top: 3.75rem;
}

.p-aboutthehospital__cta {
  padding: 0 0 3.125rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-aboutthehospital__cta {
    padding: 0 0 6.25rem;
  }
}

.p-aboutthehospital__cta-items {
  display: grid;
  gap: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-aboutthehospital__cta-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-aboutthehospital__cta-btn .c-btn {
  width: 100%;
  max-width: 20rem;
  min-width: 20rem;
  text-align: center;
  padding: 1.5rem 2.5rem;
  font-size: 1rem;
  line-height: 0.8125;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-aboutthehospital__cta-btn .c-btn {
    min-width: unset;
    font-size: 1.125rem;
    line-height: 0.7222222222;
  }
}

.p-aboutthehospital__cta-btn .c-btn::after {
  right: 1.25rem;
}

.p-aboutthehospital__recruit {
  background: #EBFAFF;
  padding-bottom: 5rem;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-aboutthehospital__recruit {
    padding-top: 6.25rem;
    padding-bottom: 8.75rem;
  }
}

.p-abouthehospital__recruit-text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  max-width: 53.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-abouthehospital__recruit-text {
    margin-top: 3.125rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-aboutthehospital__recruit-img {
  margin-top: 1.875rem;
  max-width: 53.125rem;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-aboutthehospital__recruit-img {
    margin-top: 2.625rem;
  }
}

.p-aboutthehospital__recruit-img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14.3125rem;
  height: 3.625rem;
  background: url(../img/recruit2-text-sp.svg) no-repeat center/contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-aboutthehospital__recruit-img::before {
    width: 21.9375rem;
    height: 7.3125rem;
    background: url(../img/recruit2-text.svg) no-repeat center/contain;
  }
}

.p-aboutthehospital__recruit-img img {
  overflow: hidden;
  -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;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="10" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(9,110,164,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 10px rgba(9, 110, 164, .1));
          filter: drop-shadow(0px 0px 10px rgba(9, 110, 164, .1));
  margin-inline: auto;
}

.p-aboutthehospital__recruit-img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-access {
  background: #EBFAFF;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-access {
    padding-bottom: 10rem;
  }
}

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

.p-access__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/305;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-access__map iframe {
    aspect-ratio: 1000/400;
  }
}

.p-access__name {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 0.7647058824;
  letter-spacing: 0.05em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-access__name {
    margin-top: 3.75rem;
  }
}

.p-access__address {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-access__address {
    margin-top: 0.875rem;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.p-access__btn {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-access__btn {
    margin-top: 1.875rem;
  }
}

.p-access__btn .c-btn2 {
  max-width: 30.625rem;
  position: relative;
}

.p-access__btn .c-btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1.3125rem;
  background: url(../img/common/map-btn.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-access__btn .c-btn2::after {
    right: 10.125rem;
    width: 1rem;
    height: 1.3125rem;
  }
}

.p-access__container {
  max-width: 56.25rem;
  margin-inline: auto;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-access__container {
    margin-top: 5rem;
  }
}

.p-access__wrap {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-access__wrap {
    margin-top: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 1.875rem;
  }
}

.p-access__body-title {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  border: 1px solid #0BACE3;
  border-radius: 20px;
  display: inline-block;
  padding: 0.125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__body-title {
    font-size: 1rem;
    padding: 0.0625rem 1.25rem;
  }
}

.p-access__text {
  margin-top: 1.0625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-access__text {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.p-access__text span {
  font-weight: 700;
  display: inline;
}

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

.p-access__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 335/223;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-access__img img {
    aspect-ratio: 300/200;
    max-width: 18.75rem;
  }
}

.p-access__item {
  padding: 1rem 1.5625rem 1rem;
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-access__item {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2;
    padding: 1.875rem 0 1.875rem 3.4375rem;
  }
}

.p-access__item::before {
  content: "";
  position: absolute;
  top: 1.3125rem;
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-access__item::before {
    left: 1.875rem;
    top: 2.3125rem;
  }
}

.p-access__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}

.p-access__item span {
  display: inline-block;
  font-weight: 700;
  margin-right: 1rem;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-access__item span {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-analdisease {
  padding: 3.125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease {
    padding: 5rem 0 8.75rem;
  }
}

.anal .c-head-title {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.p-analdisease__title {
  text-align: center;
}

.p-analdisease__read {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-analdisease__read {
    margin-top: 3.125rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

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

.p-analdisease__subtitle2 {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__subtitle2 {
    margin-top: 1.875rem;
  }
}

.p-analdisease__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-analdisease__text {
    margin-top: 1.875rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-analdisease__img {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__img {
    margin-top: 1.875rem;
  }
}

.p-analdisease__type {
  padding: 3.125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__type {
    padding: 6.25rem 0 8.125rem;
  }
}

.p-analdisease__wrap {
  margin-top: 1.25rem;
  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.875rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-analdisease__wrap-body {
    width: 58.1%;
  }
}

@media screen and (min-width: 768px) {
  .p-analdisease__wrap-body2 {
    width: 50%;
  }
}

.p-analdisease__wrap-read {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-analdisease__wrap-read {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-analdisease__wrap-read2 {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  padding-left: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-analdisease__wrap-read2 {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-analdisease__wrap-read2::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-analdisease__wrap-read2::before {
    top: 0.5rem;
  }
}

.p-analdisease__wrap-read span {
  font-weight: 500;
}

.p-analdisease__wrap-read2 span {
  font-weight: 500;
}

.p-analdisease__wrap-text {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-analdisease__wrap-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-analdisease__wrap-text2 {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-analdisease__wrap-text2 {
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding-left: 1.5625rem;
  }
}

.p-analdisease__wrap-text span {
  display: inline-block;
  font-weight: 700;
  padding-left: 3em;
  text-indent: -3em;
}

.p-analdisease__wrap-small {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 0.3125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-analdisease__wrap-small {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 768px) {
  .p-analdisease__wrap-img {
    width: 38%;
  }
}

.p-analdisease__wrap-img p {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-analdisease__wrap-img p {
    font-size: 0.8125rem;
    line-height: 2;
    letter-spacing: 0.03em;
  }
}

.p-analdisease__results {
  padding: 3.125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__results {
    padding: 5rem 0 8.75rem;
  }
}

.p-analdisease__results-table {
  width: 100%;
  margin-top: 2.1875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .p-analdisease__results-table {
    margin-top: 3.75rem;
    font-size: 1rem;
  }
}

.p-analdisease__results-table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-analdisease__results-table tbody {
    display: block;
  }
}

.p-analdisease__results-table tr {
  width: 40.5405405405%;
  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) {
  .p-analdisease__results-table tr {
    width: unset;
    display: grid;
    grid-template-columns: 3.75rem repeat(10, 1fr);
  }
}

.p-analdisease__results-table tr:nth-child(2) {
  width: 59.7972972973%;
}
@media screen and (min-width: 768px) {
  .p-analdisease__results-table tr:nth-child(2) {
    width: unset;
  }
}

.p-analdisease__results-table th {
  color: #096EA4;
  border: 1px solid rgba(9, 110, 164, .2);
  padding: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__results-table th {
    padding: 0.5625rem 0;
  }
}

.p-analdisease__results-table td {
  text-align: right;
  border: 1px solid rgba(9, 110, 164, .2);
  padding: 0.375rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__results-table td {
    text-align: center;
    padding: 0.5625rem 0;
  }
}

.p-analdisease__results-table td span {
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__results-table td span {
    font-size: 0.6875rem;
  }
}

.p-analdisease__results-table th:first-child {
  background: #F4F4F4;
}

.p-analdisease__guid {
  background: #FBFEFF;
  padding: 3.125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__guid {
    padding: 6.25rem 0 10rem;
  }
}

.p-analdisease__table {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__table {
    margin-top: 3.75rem;
  }
}

.p-analdisease__table.c-table3 tr.blue {
  background: #06BADB;
}

.p-analdisease__btn {
  margin-top: 3.125rem;
  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: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-analdisease__btn {
    margin-top: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-analdisease__btn .c-btn {
    max-width: 30.625rem;
    min-width: 30.625rem;
    margin-inline: auto;
    padding-left: 3.375rem;
    padding-right: 3.375rem;
    text-align: center;
  }
}

.p-committee {
  background: #EBFAFF;
}

.p-committee__contents:nth-child(n+2) {
  margin-top: 7.5rem;
}

.p-committee__read {
  margin-top: 3.125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.8px;
}

.p-committee__title2 {
  margin-top: 3.125rem;
}

.p-committee__text {
  margin-top: 1.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.75px;
}

.p-committee__text span {
  font-weight: 700;
}

.p-contact {
  padding: 0;
  background: #EBFAFF;
}

.p-cta {
  padding: 2.5rem 0 3.125rem;
  text-align: center;
  color: #fff;
  background: url(../img/bg-cta.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding: 3.4375rem 0 5rem;
  }
}

.p-cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: 1.875rem;
    line-height: 2;
    letter-spacing: 0.15em;
  }
}

.p-cta__tel {
  margin-top: 1.375rem;
  font-size: 2.125rem;
  font-weight: 700;
  font-family: "Helvetica", sans-serif;
  line-height: 2;
  letter-spacing: 0.04em;
  padding: 0 1.25rem 0 3.75rem;
  border: 1px solid #fff;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-cta__tel {
    margin-top: 2.5rem;
    font-size: 3.125rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
    padding: 0 2.5rem 0 6rem;
  }
}

.p-cta__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.875rem;
  height: 1.875rem;
  background: url(../img/common/icon-footer-tel.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-cta__tel::before {
    width: 2.75rem;
    height: 2.75rem;
    left: 2.5rem;
  }
}

.p-cta__subtitle {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-cta__subtitle {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    line-height: 1.7777777778;
    letter-spacing: 0.9px;
  }
}

.p-cta__text {
  margin-top: 0.0625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    margin-top: 0.0625rem;
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }
}

.p-department {
  padding: 0 0 3.75rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-department {
    padding: 0 0 8.75rem;
  }
}

.department .p-head2 {
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .department .p-head2 {
    padding-bottom: 4.375rem;
  }
}

.p-department .p-guid2__container {
  margin-top: 0;
  max-width: 58.375rem;
}

.p-department__title {
  text-align: center;
}

.p-department__special {
  padding: 4.125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-department__special {
    padding: 7.1875rem 0 10rem;
  }
}

.p-department__special-title {
  text-align: center;
  padding-top: 2.1875rem;
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-department__special-title {
    padding-top: 4.375rem;
    font-size: 1.875rem;
    line-height: 1.5;
    letter-spacing: 4.5px;
  }
}

.p-department__special-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../img/common/icon-department.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-department__special-title::before {
    width: 3.0625rem;
    height: 3.0625rem;
  }
}

.p-department__special-read {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-department__special-read {
    margin-top: 1.875rem;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-department__special-table {
  margin-top: 2.375rem;
}

.p-department__doctor {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-department__doctor {
    padding-bottom: 10rem;
  }
}

.p-department__img {
  margin-inline: auto;
  margin-top: 3.75rem;
}

.department-tab-menu {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  list-style: none;
  padding: 0;
  margin-bottom: 1em;
  gap: 0.3125rem;
  margin-top: 3.125rem;
}

.department-tab-menu li {
  cursor: pointer;
  padding: 0.625rem 0.0625rem;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #747474;
  border-bottom: 4px solid rgba(116, 116, 116, .2);
  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;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.department-tab-menu li.active {
  background: #0073aa;
  color: white;
  border-radius: 10px 10px 0 0;
}

.department-tab-content {
  display: none;
}

.department-tab-content .p-information__table {
  margin-top: 1.875rem;
}

.department-tab-content.active {
  display: block;
}

.department-link-btn {
  margin-top: 2.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .department-link-btn .c-btn {
    min-width: 30.625rem;
  }
}

.department-dropdown {
  margin-top: 1.875rem;
  position: relative;
}

.department-dropdown p {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 0.625rem;
}

.department-dropdown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  border: 1px solid #096EA4;
  background: #fff;
  padding: 0.8125rem 0.9375rem;
  color: #747474;
  font-size: 0.9375rem;
}

.department-dropdown::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 1em;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #096EA4; /* ▼ の色 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#departmentSelect:focus {
  outline: none;
  border-color: #096EA4;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.pc-only {
  display: grid;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.p-department2__contents {
  padding: 3.8125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-department2__contents {
    padding: 5.625rem 0 8.75rem;
  }
}

.p-department2__contents:nth-child(even) {
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-department2__contents:nth-child(even) {
    padding: 7.5rem 0 8.75rem;
  }
}

.p-department2__contents:last-child {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-department2__contents:last-child {
    padding-bottom: 10rem;
  }
}

.p-department2__title {
  text-align: center;
}

.p-department2__contents-wrap {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-department2__contents-wrap {
    margin-top: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
  }
}

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

.p-department2__text {
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-department2__text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

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

.p-department2__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 325/220;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-department2__img img {
    aspect-ratio: 380/280;
  }
}

.p-department2__philosophy {
  margin-top: 1.4375rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(48, 109, 205, .16)), to(rgba(135, 251, 212, .16)));
  background: linear-gradient(90deg, rgba(48, 109, 205, .16) 0%, rgba(135, 251, 212, .16) 100%);
  padding: 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-department2__philosophy {
    margin-top: 2.5rem;
    padding: 1.25rem 2.5rem 2.5rem;
  }
}

.p-department2__philosophy-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-department2__philosophy-title {
    font-size: 1.5rem;
  }
}

.p-department2__philosophy-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-department2__philosophy-body-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-department2__philosophy-body-title {
    font-size: 1.375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-department2__philosophy-list {
  margin-top: 0.9375rem;
}

.p-department2__philosophy-item {
  padding-left: 1em;
  text-indent: -1em;
}

.p-department2__philosophy-item p {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-department2__philosophy-item p {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-department2__philosophy-item span {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-department2__philosophy-item span {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-department2__philosophy-item:nth-child(n+2) {
  margin-top: 0.9375rem;
}

.p-department2__philosophy-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-department2__philosophy-text {
    margin-top: 0.625rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: left;
  }
}

.p-department2__philosophy-text span {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.p-department2__philosophy-subtext {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-department2__philosophy-subtext {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: left;
  }
}

.p-department2__btn {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-department2__btn {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-department2__btn .c-btn {
    min-width: 30.625rem;
  }
}

.p-depatment2__items {
  margin-top: 1.875rem;
}

.p-department2__item:nth-child(n+2) {
  margin-top: 1.875rem;
}

.p-department2__item-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-left: 1rem;
  border-left: 3px solid #0BACE3;
}
@media screen and (min-width: 768px) {
  .p-department2__item-title {
    font-size: 1.5rem;
    padding-left: 1.25rem;
  }
}

.p-department2__item-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-department2__item-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-department2__item-text span {
  display: block;
  font-weight: 700;
}

.p-department2__item-text span.indent {
  display: block;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}

.p-diabetes {
  padding: 3.125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-diabetes {
    padding: 5rem 0 8.75rem;
  }
}

.p-diabetes__title {
  text-align: center;
}

.p-diabetes__text {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-diabetes__text {
    margin-top: 3.75rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-diabetes__education {
  padding: 3.125rem 0 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-diabetes__education {
    padding: 6.25rem 0;
  }
}

.p-diabetes__container {
  margin-top: 1.875rem;
  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.875rem;
}
@media screen and (min-width: 768px) {
  .p-diabetes__container {
    margin-top: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

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

.p-diabetes__body-text {
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-diabetes__body-text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

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

.p-diabetes__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 325/220;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-diabetes__img img {
    aspect-ratio: 380/260;
  }
}

.p-diabetes__img p {
  text-align: right;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-diabetes__img p {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
}

.p-diabetes__news {
  margin-top: 2.5rem;
  background: rgba(221, 245, 255, .6);
  border-radius: 10px;
  text-align: center;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-diabetes__news {
    padding: 3.125rem;
  }
}

.p-diabetes__news-title {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #096EA4;
  padding-left: 1.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-diabetes__news-title {
    font-size: 1.375rem;
    line-height: 2.5;
    letter-spacing: 0.05em;
    padding-left: 2.75rem;
  }
}

.p-diabetes__news-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.4375rem;
  background: url(../img/common/icon-memo.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-diabetes__news-title::before {
    width: 1.875rem;
    height: 2rem;
  }
}

.p-diabetes__news .article-list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-diabetes__news .article-list {
    margin-top: 1.25rem;
  }
}

.p-diabetes__news .article-list__item {
  padding-bottom: 0;
  border-bottom: none;
  text-align: left;
}

.p-diabetes__news .article-list__item a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-diabetes__news .article-list__item a .p-news__tab-title {
  margin-top: 0;
}

.p-diabetes__btn {
  margin-top: 1.875rem;
}

.p-diabetes__guid {
  padding: 3.75rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-diabetes__guid {
    padding: 6.25rem 0 10rem;
  }
}

.p-diabetes__table {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-diabetes__table {
    margin-top: 3.125rem;
  }
}

.p-endoscope {
  padding: 3.125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope {
    padding: 4.625rem 0 6.25rem;
  }
}

.p-endoscope__title {
  text-align: center;
  white-space: nowrap;
}

.p-endoscope__read {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__read {
    margin-top: 3.75rem;
  }
}

.p-endoscope__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__text span {
  font-weight: 700;
}

.p-endoscope__wrap {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-endoscope__wrap {
    margin-top: 3.125rem;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-endoscope__wrap-body {
    width: 58%;
  }
}

.p-endoscope__wrap-body-item {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-endoscope__wrap-body-item {
    gap: 1.25rem;
  }
}

.p-endoscope__wrap-body-img {
  max-width: 7.0625rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__wrap-body-img {
    max-width: 9.375rem;
  }
}

.p-endoscope__wrap-body-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.p-endoscope__wrap-body-text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-endoscope__wrap-body-text {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 768px) {
  .p-endoscope__wrap-img {
    width: 38%;
  }
}

.p-endoscope__wrap-img p {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-endoscope__wrap-img p {
    font-size: 0.8125rem;
  }
}

.p-endoscope__subtitle {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__subtitle {
    margin-top: 3.75rem;
  }
}

.p-endoscope__diagnosis {
  padding: 4rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__diagnosis {
    padding: 5.625rem 0 8.75rem;
  }
}

.p-endoscope__contents-read {
  margin-top: 1.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-read {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__contents-title {
  margin-top: 2.5rem;
}

.p-endoscope__contents-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-text {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__contents-text span {
  display: block;
  padding-left: 1.8em;
  text-indent: -1.6em;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-text span {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__contents-items {
  margin-top: 1.375rem;
  display: grid;
  gap: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-items {
    margin-top: 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.125rem;
  }
}

.p-endoscope__contents-items2 {
  display: block;
}

.p-endoscope__contents-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #D3F2F9;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 1.875rem;
    border-radius: 10px;
  }
}

.p-endoscope__contents-item--arrow {
  position: relative;
}

.p-endoscope__contents-item--arrow::after {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.5rem;
  height: 1.125rem;
  background: url(../img/common/polygon.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-item--arrow::after {
    bottom: unset;
    left: unset;
    top: 50%;
    right: -2.5rem;
    -webkit-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
  }
}

.p-endoscope__contents-items2 .p-endoscope__contents-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-endoscope__contents-item-img {
  max-width: 7.5rem;
  width: 53.1561461794%;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-item-img {
    max-width: 10rem;
  }
}

.p-endoscope__contents-item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  width: 46.8438538206%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-item-text {
    padding-top: 0.625rem;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__contents-wrap {
  margin-top: 1.25rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-wrap {
    gap: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-endoscope__contents-wrap-title {
  display: inline-block;
  padding: 0 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-wrap-title {
    font-size: 0.9375rem;
  }
}

.p-endoscope__contents-wrap-title--red {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
}

.p-endoscope__contents-wrap-list {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__contents-wrap-list {
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__inspection {
  padding: 3.75rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__inspection {
    padding: 4rem 0 7.5rem;
  }
}

.p-endoscope__inspection-inner {
  max-width: 55.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-endoscope__inspection-inner {
    padding: 0;
  }
}

.p-endoscope__inspection-text {
  margin-top: 2.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__inspection-text {
    margin-top: 3.125rem;
    font-size: 1.0625rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__inspection-wrap {
  margin-top: 1.875rem;
  background: rgba(221, 245, 255, .6);
  border-radius: 10px;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__inspection-wrap {
    margin-top: 1.5625rem;
    padding: 2.5rem;
  }
}

.p-endoscope__inspection-wrap-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__inspection-wrap-text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__inspection-item {
  background: none;
  padding: 0;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__inspection-item {
    margin-top: 2.5rem;
  }
}

.p-endoscope__inspection-item .p-endoscope__contents-item-text {
  width: 100%;
}

.p-endoscope__inspection-item .p-endoscope__contents-item-img {
  min-width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__inspection-item .p-endoscope__contents-item-img {
    min-width: 10rem;
  }
}

.p-endoscope__guid {
  padding: 3.125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__guid {
    padding: 5.625rem 0 10rem;
  }
}

.p-endoscope__guid-read {
  margin-top: 1.4375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__guid-read {
    margin-top: 3.125rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.p-endoscope__table {
  margin-top: 0.625rem;
}

.p-endoscope__guid-table-title {
  margin-top: 1.5625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-endoscope__guid-table-title {
    margin-top: 2.1875rem;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.p-endoscope__guid-table-title span {
  display: inline-block;
  padding-left: 0.625rem;
  color: #F44436;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-endoscope__guid-table-title span {
    font-size: 1.125rem;
  }
}

.p-endoscope__guid-table-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-endoscope__guid-table-text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-entry {
  background: #EBFAFF;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-entry {
    padding-bottom: 10rem;
  }
}

.p-examination__head {
  padding: 2.5rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-examination__head {
    padding: 3.75rem 0 6.6875rem;
  }
}

.p-examination__head-inner {
  padding: 0 1.5625rem;
  max-width: 43.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-examination__head-inner {
    padding: 0;
  }
}

.p-examination__title {
  text-align: center;
}

.p-examination__head-read {
  margin-top: 1.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-examination__head-read {
    margin-top: 2.8125rem;
  }
}

.p-examination__head-read span {
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-examination__head-read span {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-examination__head-items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-examination__head-items {
    margin-top: 1.875rem;
  }
}

.p-examination__head-item {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #096EA4;
  padding-left: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-examination__head-item {
    font-size: 1.125rem;
  }
}

.p-examination__head-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.9375rem;
  height: 0.9375rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-examination__head-item::before {
    top: 0.625rem;
  }
}

.p-examination__head-item span {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  color: #282828;
}
@media screen and (min-width: 768px) {
  .p-examination__head-item span {
    padding-left: 1.0625rem;
  }
}

.p-examination__head-item span.blue {
  display: inline;
  color: #096EA4;
  padding-left: 0;
  font-weight: 700;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-examination__head-item span.blue {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-examination__head-item:nth-child(n+2) {
    margin-top: 0.5625rem;
  }
}

.p-examination {
  padding: 3.75rem 0 5rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-examination {
    padding: 6.25rem 0 10rem;
  }
}

.p-examination__contents .c-contents__contents {
  margin-top: 0;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .p-examination__contents .c-contents__contents {
    gap: 1.25rem;
  }
}

.p-examination__contents .c-contents__wrap {
  margin-top: 1.875rem;
  padding: 4.375rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-examination__contents .c-contents__wrap {
    margin-top: 2.5rem;
    padding: 5rem 1.875rem 1.875rem;
  }
}

.p-examination__contents .c-contents__wrap-title {
  letter-spacing: 0.05em;
}

.p-examination__contents .c-contents__wrap-text {
  margin-top: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-examination__contents .c-contents__wrap-text {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.p-examination__contents .c-contents__wrap-text span {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-examination__contents .c-contents__wrap-text span {
    font-size: 0.9375rem;
  }
}

.p-examination__contents .c-contents__wrap-text span.block {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-examination__contents .c-contents__wrap-text span.block {
    font-size: 0.9375rem;
  }
}

.p-examination__contents .c-contents__wrap-text span.yellow {
  display: inline-block;
  padding-bottom: 0.9375rem;
}

.p-examination__subtitle {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-examination__subtitle {
    margin-top: 3.75rem;
  }
}

.p-examination__table-title {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-examination__table-title {
    margin-top: 1.875rem;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }
}

.p-examination__table {
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-examination__table {
    margin-top: 2.5rem;
  }
}

.p-examination__table-text {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-examination__table-text {
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-examination__table-text span {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.p-examination__table.c-table4 td.bottom-none {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-examination__table.c-table4 td.bottom-none {
    border-bottom: unset;
  }
}

@media screen and (min-width: 768px) {
  .p-examination__table.c-table4 th.bottom-none-pc {
    border-bottom: none;
  }
}

.p-examination__table.c-table4 td.top-none {
  border-top: none;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-examination__table.c-table4 td.top-none {
    border-top: unset;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.p-examination__table.c-table4 td.top-none p span.bold {
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-examination__table.c-table4 td.top-none p span.bold {
    font-size: 0.9375rem;
    font-weight: 500;
  }
}

.p-examination__table.c-table4 td.top-none p span.indent {
  display: block;
  font-weight: 500;
  padding-left: 3em;
  text-indent: -3em;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-examination__table.c-table4 td.top-none p span.indent {
    font-size: 0.9375rem;
    padding-left: 0;
    text-indent: 0;
  }
}

.p-examination__table.c-table4 th.none {
  border: none;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-examination__table.c-table4 th.none {
    display: block;
    border: 1px solid rgba(9, 110, 164, .2);
    border-top: none;
  }
}

.p-examination__table2 {
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-examination__table2 {
    margin-top: 2.5rem;
  }
}

.p-examination__table2.c-table4 th,
.p-examination__table2.c-table4 td {
  padding: 0.625rem 1.25rem;
  color: #282828;
}
@media screen and (min-width: 768px) {
  .p-examination__table2.c-table4 th,
  .p-examination__table2.c-table4 td {
    padding: 0.9375rem 2.5rem;
  }
}

.p-examination__table2.c-table4 th {
  background: rgba(221, 245, 255, .6);
}

.p-examination__table2.c-table4 td {
  text-align: left;
  line-height: 1.8;
}

.p-examination__read {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-examination__read {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}

.p-examination__read2 {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-examination__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-examination__text {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-examination__text span {
  font-weight: 700;
}

.p-examination__text2 {
  padding: 1.875rem 1.25rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-examination__text2 {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-examination__btn {
  margin-top: 3.125rem;
  max-width: 30.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-examination__btn {
    margin-top: 5rem;
  }
}

.p-examination__btn .c-btn2 {
  line-height: 1.3;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-examination__btn .c-btn2 {
    line-height: 2;
    font-size: 1.125rem;
  }
}

.p-examination2 {
  background: #FBFEFF;
  padding-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-examination2 {
    padding-top: 2.125rem;
  }
}

.p-examination3 {
  padding-top: 4.875rem;
}

.p-examination__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.875rem;
  gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-examination__wrap {
    margin-top: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-examination__wrap .p-examination__read {
  margin-top: 0;
}

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

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

.p-examination__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 480/320;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-examination__img p {
  text-align: right;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 500;
}

.p-examination__contents-wrap {
  margin-top: 2.5rem;
  background: rgba(221, 245, 255, .6);
  padding: 1.5rem 1.25rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-examination__contents-wrap {
    margin-top: 3.75rem;
    padding: 2.5rem;
  }
}

.p-examination__contents-subtitle .c-title4 {
  text-align: center;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-examination__contents-subtitle .c-title4 {
    text-align: left;
    padding-left: 3.125rem;
  }
}

.p-examination__contents-subtitle .c-title4::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-examination__contents-subtitle .c-title4::before {
    display: inline-block;
  }
}

.p-examination__contents-items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-examination__contents-items {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-examination__contents-items .c-list__item {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-examination__contents-items2 .c-list__item {
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-examination__contents-items2 .c-list__item::before {
    display: none;
  }
}

.p-examination__contents-items2 .c-list__item span {
  font-weight: 700;
}

.p-examination__contents-items2 .c-list__item2 {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-examination__contents-items2 .c-list__item2 {
    margin-top: 1.25rem;
  }
}

.p-examination__contents-items2 .c-list__item2::before {
  display: none;
}

.p-firsttime__title {
  text-align: center;
}

.p-firsttime__consultation {
  padding: 3.75rem 0 4.6875rem;
  background: #EBFAFF;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-firsttime__consultation {
    padding: 8.3125rem 0 9.0625rem;
  }
}

.p-firsttime__consultation::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: url(../img/bg-wave-blue.png) no-repeat center/cover;
}

.p-firsttime__consultation-items {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-firsttime__consultation-items {
    margin-top: 3.125rem;
    max-width: 55rem;
    margin-inline: auto;
  }
}

.p-firsttime__consultation-item {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  color: #096EA4;
  padding-left: 1.6875rem;
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-firsttime__consultation-item {
    font-size: 1.125rem;
    line-height: 2;
    padding-left: 2.5rem;
  }
}

.p-firsttime__consultation-item::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  width: 0.9375rem;
  height: 1rem;
  background: url(../img/common/icon-list.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-firsttime__consultation-item::before {
    width: 1.5625rem;
    height: 1.75rem;
  }
}

.p-firsttime__consultation-item:nth-child(n+2) {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-firsttime__consultation-item:nth-child(n+2) {
    margin-top: 1.75rem;
  }
}

.p-firsttime__belongings {
  padding: 2.5rem 0 4.6875rem;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-firsttime__belongings {
    padding: 5rem 0 8.125rem;
  }
}

.p-firsttime__belongings::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: url(../img/bg-wave-white.png) no-repeat center/cover;
}

.p-firsttime__belongings-container {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-firsttime__belongings-container {
    margin-top: 2.8125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    max-width: 50rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-firsttime__belongings-body {
    width: 52.5%;
  }
}

.p-firsttime__belongings-items {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-firsttime__belongings-items {
    margin-top: 0;
  }
}

.p-firsttime__belongings-item {
  margin-left: 0.9375rem;
  list-style: disc;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-firsttime__belongings-item {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-firsttime__belongings-item span {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1;
  display: block;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-firsttime__belongings-img {
    width: 42.5%;
  }
}

.p-firsttime__belongings-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 325/210;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-firsttime__belongings-img img {
    max-width: 21.25rem;
    aspect-ratio: 340/240;
  }
}

.p-firsttime__belongings-body-text {
  margin-top: 0.9375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-firsttime__belongings-body-text {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
}

.p-firsttime__flow {
  padding: 2.5rem 0 5rem;
  background: #EBFAFF;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-firsttime__flow {
    padding: 5.625rem 0 9.875rem;
  }
}

.p-firsttime__flow::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: url(../img/bg-wave-blue.png) no-repeat center/cover;
}

.p-firsttime__flow-container {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-firsttime__flow-container {
    margin-top: 3.75rem;
  }
}

.p-flow-contents {
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-flow-contents__item:nth-child(n+2) {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__item:nth-child(n+2) {
    margin-top: 2.0625rem;
  }
}

.p-flow-contents__item {
  padding: 1.875rem 1.25rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  border-radius: 10px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 4px 6px rgba(0, 46, 114, .1);
          box-shadow: 0 4px 6px rgba(0, 46, 114, .1);
}
@media screen and (min-width: 768px) {
  .p-flow-contents__item {
    padding: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
}

.p-flow-contents__item::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 41px;
  height: 36px;
  background-color: #fff;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  -webkit-box-shadow: 0 4px 6px rgba(0, 46, 114, .1);
          box-shadow: 0 4px 6px rgba(0, 46, 114, .1);
}
@media screen and (min-width: 768px) {
  .p-flow-contents__item::after {
    bottom: -1.875rem;
    width: 82px;
    height: 55px;
  }
}

.p-flow-contents__item:last-child:after {
  display: none;
}

.p-flow-contents__item2 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-flow-contents__item2 .p-flow-contents__body {
  margin-top: 1.25rem;
}

.p-flow-contents__number {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: -0.875rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
  display: inline-block;
  padding: 0.4375rem 1.25rem 0.3125rem;
  text-align: center;
  font-size: 0.5625rem;
  line-height: 1;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__number {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
    top: 0.625rem;
  }
}

.p-flow-contents__number span {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__number span {
    font-size: 2.375rem;
    line-height: 1;
  }
}

.p-flow-contents__number::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px rgb(149, 158, 155);
}

@media screen and (min-width: 768px) {
  .p-flow-contents__img {
    min-width: 18.75rem;
    width: 33.3333333333%;
    display: grid;
    gap: 1.25rem;
  }
}

.p-flow-contents__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 285/170;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__img img {
    aspect-ratio: 300/200;
  }
}

@media screen and (min-width: 768px) {
  .p-flow-contents__body {
    width: 55.5555555556%;
  }
}

.p-flow-contents__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.p-flow-contents__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.8125;
  }
}

.p-flow-contents__subtitle {
  margin-top: 1.25rem;
  padding: 0.3125rem 1.25rem;
  border-left: 5px solid #0BACE3;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__subtitle {
    margin-top: 1.875rem;
  }
}

.p-flow-contents__subtitle span {
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__subtitle span {
    font-size: 1.125rem;
  }
}

.p-flow-contents__subtitle--red {
  border-left: 5px solid #F7695E;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(253, 141, 133, .1)), to(rgba(247, 105, 94, .1)));
  background: linear-gradient(90deg, rgba(253, 141, 133, .1) 11.23%, rgba(247, 105, 94, .1) 100%);
}

.p-flow-contents__subtitle--red span {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-flow-contents__subtitle--yellow {
  border-left: 5px solid #D5A732;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(227, 192, 41, .1)), color-stop(99.56%, rgba(213, 167, 50, .1)));
  background: linear-gradient(90deg, rgba(227, 192, 41, .1) 11.23%, rgba(213, 167, 50, .1) 99.56%);
}

.p-flow-contents__subtitle--yellow span {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.68%, #D5A732), to(#E3C029));
  background: linear-gradient(90deg, #D5A732 11.68%, #E3C029 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-firsttime__flow-btn {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-firsttime__flow-btn {
    margin-top: 5rem;
  }
}

.p-flow-contents__link {
  border: 3px solid #FD8D85;
  margin-top: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #FDEAF0), color-stop(50%, #FFFFFF), color-stop(90%, #F9FFE6));
  background: linear-gradient(90deg, #FDEAF0 10%, #FFFFFF 50%, #F9FFE6 90%);
  border-radius: 10px;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__link {
    padding: 2.25rem;
    margin-top: 3.75rem;
    max-width: 56.25rem;
    margin-inline: auto;
  }
}

.p-flow-contents__link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__link-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.75rem;
  }
}

.p-flow-contents__link-body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__link-body {
    display: block;
  }
}

.p-flow-contents__link-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.07em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  border-bottom: 1px solid #FD8D85;
  position: relative;
  padding-left: 1.875rem;
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__link-title {
    font-size: 1.125rem;
    line-height: 2;
    padding-left: 2.1875rem;
    padding-bottom: 0;
  }
}

.p-flow-contents__link-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4375rem;
  height: 1.4375rem;
  background: url(../img/common/icon-mynumber.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__link-title::before {
    width: 1.9375rem;
    height: 1.9375rem;
  }
}

.p-flow-contents__link-text {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.7692307692;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__link-text {
    margin-top: 1.25rem;
    line-height: 2;
  }
}

.p-flow-contents__link-btn {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__link-btn {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    margin-top: 0.9375rem;
    text-align: left;
  }
}

.p-flow-contents__link-btn a {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0.6875rem 3.25rem;
  position: relative;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__link-btn a {
    width: unset;
    padding: 0.375rem 3.0625rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .p-flow-contents__link-img {
    min-width: 20.25rem;
  }
}

.p-flow-contents__pay {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-flow-contents__pay {
    margin-top: 1.25rem;
  }
}

.p-flow-contents__pay img {
  max-width: 15.625rem;
}

.p-flow-contents__pay p {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}

.p-flow {
  padding-top: 3.125rem;
  background: #DCEEF8;
  position: relative;
}

.p-flow__top {
  margin-top: -5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__top {
    margin-top: -3.125rem;
  }
}

.p-flow__top a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .p-flow__top a img {
    display: inline-block;
    max-width: 30.625rem;
  }
}

.p-flow__wrapper {
  margin-top: 1.0625rem;
  display: grid;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.0625rem;
    position: relative;
    z-index: 1;
  }
}

.p-flow__left a:hover {
  opacity: 0.7;
}

.p-flow__right a:hover {
  opacity: 0.7;
}

.p-flow__instagram {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 5.3125rem;
  padding: 2.0625rem 1.25rem 2.125rem;
  background: url(../img/top/bg-instagram.png) no-repeat center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__instagram {
    margin-left: unset;
    margin-right: unset;
    margin-top: 4.25rem;
    padding: 2.125rem 6.9375rem 3.125rem;
  }
}

.p-flow__instagram .sb_instagram_header {
  display: none;
}

.p-flow__instagram::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.1875rem;
  height: 2.1875rem;
  background: url(../img/common/icon-instagram.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-flow__instagram::before {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.p-flow__instagram-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-flow__instagram-title {
    gap: 1.0625rem;
    font-size: 1.0625rem;
  }
}

.p-flow__instagram-title img {
  max-width: 3.375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__instagram-title img {
    max-width: 5rem;
  }
}

.p-flow__instagram-contents {
  margin-top: 1rem;
  overflow-x: hidden;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-flow__instagram-contents {
    margin-right: unset;
    margin-left: unset;
  }
}

.p-flow__instagram-contents .sbi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  overflow-x: scroll;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-left: 1.25rem;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .p-flow__instagram-contents .sbi {
    margin-right: unset;
    margin-left: unset;
    padding-left: 0;
  }
}

/*Google Chrome、Safariへの対応*/
.p-flow__instagram-contents .sbi::-webkit-scrollbar {
  display: none;
}

.p-flow__instagram-contents .sbi_item {
  min-width: 11.6875rem;
}

.p-flow__instagram-contents .sbi_item:first-child {
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__instagram-contents .sbi_item:first-child {
    padding-left: 0;
  }
}

.p-flow__instagram-btn {
  margin-top: 2.5rem;
  text-align: center;
}

.p-flow__instagram-btn .c-btn {
  max-width: 17.1875rem;
}
@media screen and (min-width: 768px) {
  .p-flow__instagram-btn .c-btn {
    max-width: 100%;
  }
}

.p-footer {
  padding: 2.875rem 0 4.625rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .08)), to(rgba(0, 0, 0, .08))), -webkit-gradient(linear, left top, right top, from(#306DCD), to(#87FBFB));
  background: linear-gradient(0deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .08) 100%), linear-gradient(90deg, #306DCD 0%, #87FBFB 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 4.0625rem 0 2.75rem;
  }
}

.p-footer::before {
  content: "";
  position: absolute;
  top: 1%;
  left: 0;
  width: 100%;
  height: 47.0625rem;
  background: url(../img/common/bubble-footer-sp.png) no-repeat center top/cover;
}
@media screen and (min-width: 768px) {
  .p-footer::before {
    top: 0;
    height: 42.5rem;
    background: url(../img/bubble-footer.png) no-repeat center top/cover;
  }
}

.p-footer__inner {
  position: relative;
  padding: 0 1.25rem;
}

.p-footer__head {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__head {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-footer__logo {
  max-width: 12.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 100%;
    margin-inline: unset;
  }
}

.p-footer__right {
  color: #fff;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__right {
    margin-top: 0;
    margin-left: 3.75rem;
  }
}

.p-footer__address {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8461538462;
  letter-spacing: 1.95px;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 3.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
  }
}

.p-footer__tel {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 4.2px;
  padding-left: 2.5rem;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-footer__tel {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 5px;
    padding-left: 3.125rem;
  }
}

.p-footer__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6875rem;
  height: 1.6875rem;
  background: url(../img/common/icon-footer-tel.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-footer__tel::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-footer__fax {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 2.08px;
}
@media screen and (min-width: 768px) {
  .p-footer__fax {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 2.3333333333;
    letter-spacing: 4px;
  }
}

.p-footer__copyright {
  margin-top: 3.75rem;
  color: #fff;
  text-align: center;
}

.p-footer__map {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__map {
    display: block;
    margin-top: 3.75rem;
  }
}

.p-footer__map-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 0.9375rem 0;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__map-btn {
    padding: 1.6875rem 0 1.4375rem;
  }
}

.p-footer__menu-text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__menu-text {
    font-size: 1rem;
  }
}

.p-footer__map-contents {
  background: rgba(255, 255, 255, .8);
  padding: 1.875rem 1.25rem;
  color: #096EA4;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__map-contents {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 5rem;
    padding: 2.5rem 3.125rem;
  }
}

.p-footer__map-contents .open {
  display: block;
}

.p-footer__map-item {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2;
  white-space: nowrap;
  position: relative;
  padding-left: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__map-item {
    font-size: 0.9375rem;
  }
}

.p-footer__map-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 2px;
  background: #096EA4;
}

.p-footer__map-item a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.p-footer__map-item:nth-child(n+2) {
  margin-top: 0.75rem;
}

.p-footer__map-item--sub {
  padding-left: 1.4375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.1428571429;
}

.p-footer__map-item--sub::before {
  display: none;
}

.p-footer__map-item--sub:nth-child(n+2) {
  margin-top: 0;
}

.p-footer__map--center {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__map--center {
    margin-top: 0;
  }
}

.p-footer__map-items-wrap {
  margin-bottom: 1.25rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(7, auto);
}
@media screen and (min-width: 768px) {
  .p-footer__map-items-wrap {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

.p-footer__map-items-wrap2 {
  grid-template-rows: repeat(5, auto);
}

.p-footer__map--right {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__map--right {
    margin-top: 0;
  }
}

.p-footer__map-bottom {
  margin-top: 1.25rem;
  grid-column: 1/-1;
  justify-self: center;
}
@media screen and (min-width: 768px) {
  .p-footer__map-bottom {
    margin-top: 0;
  }
}

.p-footer__map-bottom a {
  text-decoration: underline;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-footer__map-bottom a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

.p-footer__map-bottom a:hover {
  opacity: 0.7;
}

.p-footer__contents {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__contents {
    margin-top: 3.75rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__contents {
    max-width: 53.125rem;
    margin-inline: auto;
    grid-template-columns: 393px 1fr;
  }
}

.p-footer__contents dt {
  max-width: 7rem;
  max-height: 2.125rem;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 0 0.625rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 2.3076923077;
  letter-spacing: 3.25px;
}
@media screen and (min-width: 768px) {
  .p-footer__contents dt {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 3.75px;
  }
}

.p-footer__contents-left {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-footer__contents-left {
    gap: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 4fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-footer__contents-wrap {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-footer__contents-wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-footer__contents-wrap:nth-child(n+2) {
  margin-top: 0.625rem;
}

.p-footer__text {
  font-size: 0.8125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 600;
  line-height: 1.8461538462;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .p-footer__text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 2.1428571429;
  }
}

.p-footer__link {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    display: none;
  }
}

.p-footer__link a {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2.3076923077;
  letter-spacing: 1.95px;
  color: #fff;
  text-decoration: underline;
}

.p-footer__hamburger {
  border-radius: 10px;
  margin-right: 1.25rem;
  width: 1.875rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__hamburger {
    margin-right: 1.875rem;
  }
}

.p-footer__hamburger span {
  width: 1.5rem;
  height: 0.125rem;
  background-color: #fff;
  display: block;
  border-radius: 0.125rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-footer__hamburger span:nth-child(2) {
  margin-top: 6px;
  margin-bottom: 6px;
}

.p-footer__hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.p-footer__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.p-footer__hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -8px;
}

.p-footer__bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  opacity: 0.96;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    display: none;
  }
}

.p-footer__bottom-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer__bottom-item {
  padding: 0.625rem 0 0.875rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .5);
}

.p-footer__bottom-item:first-child {
  border-left: none;
}

.p-footer__bottom-item img {
  margin-inline: auto;
  width: 2.1875rem;
  height: 2.1875rem;
}

.p-footer__bottom-item p {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.p-greeting {
  background: url(../img/greeting/bg_greeting.png) no-repeat center/cover;
}

.p-greeting__title {
  text-align: center;
}

.p-greeting__sub-title {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #096EA4;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-greeting__sub-title {
    margin-top: 4.375rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 2;
  }
}

.p-greeting__text {
  margin-top: 3.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-greeting__text {
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-greeting__container {
  gap: 3.75rem;
  margin-top: 2.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-greeting__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    margin-top: 4.0625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-greeting__img {
  width: 76%;
  margin-inline: auto;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .p-greeting__img {
    width: 37.6470588235%;
  }
}

.p-greeting__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 285/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-greeting__img img {
    aspect-ratio: 320/400;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 25rem;
  }
}

.p-greeting__img-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8125rem;
  margin-top: 0.75rem;
}

.p-greeting__img-left {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 14px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-greeting__img-left {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.p-greeting__img-name {
  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;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-greeting__img-name {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.p-greeting__img-name span {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-greeting__img-name span {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.p-greeting__body {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .p-greeting__body {
    width: 75.2941176471%;
  }
}

.p-greeting__body-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-greeting__body-text {
    line-height: 2;
  }
}

.p-greeting__contents {
  background: rgba(255, 255, 255, .9);
  border-radius: 6px;
  display: grid;
  gap: 1.875rem;
  padding: 1.875rem 1.25rem;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
@media screen and (min-width: 768px) {
  .p-greeting__contents {
    margin-top: 5rem;
    grid-template-columns: 1fr 1fr;
    padding: 3.125rem 3.75rem;
    gap: 5rem;
  }
}

.p-greeting__career-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #096EA4;
  border-bottom: 1px solid rgba(9, 110, 164, .2);
}

.p-greeting__career-items {
  margin-top: 1.25rem;
}

.p-greeting__career-item {
  display: grid;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__career-item {
    grid-template-columns: 6.625rem 1fr;
    margin-bottom: 0;
  }
}

.p-greeting__career-year {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
}

.p-greeting__career-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-greeting__career-text {
    line-height: 2.4;
  }
}

.p-greeting__qualification-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #096EA4;
  border-bottom: 1px solid rgba(9, 110, 164, .2);
}

.p-greeting__qualification-items {
  margin-top: 1.25rem;
}

.p-greeting__qualification-item {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-greeting__qualification-item {
    line-height: 2.1333333333;
  }
}

.p-greeting2 {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-greeting2 {
    padding-top: 6.25rem;
    padding-bottom: 9.6875rem;
  }
}

.p-greeting2 .l-inner {
  display: grid;
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-greeting2 .l-inner {
    display: block;
  }
}

.p-greeting3 {
  background: #EBFAFF;
}

.p-guid {
  background: rgba(235, 250, 255, .9);
}

@media screen and (min-width: 768px) {
  .p-guid__inner {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-inline: auto;
    max-width: 75rem;
  }
}

.p-guid__container {
  max-width: 25rem;
  margin-top: 1.875rem;
  margin-inline: auto;
  place-items: center;
  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.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-guid__container {
    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;
    max-width: 75rem;
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
    row-gap: 2.75rem;
    margin-top: 3.0625rem;
  }
}

.p-guid__wrap {
  margin-top: 2.875rem;
  background-color: #D1EDFB;
  border-radius: 10px;
  padding: 1.8125rem 1.25rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-guid__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
  }
}

.p-guid__wrap-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-guid__wrap-head {
    display: contents;
  }
}

.p-guid__icon {
  max-width: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-guid__icon {
    max-width: 2.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-guid__body {
    margin-left: 1.6875rem;
  }
}

.p-guid__body-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5333333333;
  letter-spacing: 0.75px;
}

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

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

.p-guid__body-text {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0.65px;
}
@media screen and (min-width: 768px) {
  .p-guid__body-text {
    margin-top: 0.625rem;
  }
}

.p-guid__body-link {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4375rem;
  -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;
}
@media screen and (min-width: 768px) {
  .p-guid__body-link {
    margin-top: 0.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}

.p-guid__body-link a {
  color: #096EA4;
  text-decoration: underline;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-guid2 {
  background: rgba(235, 250, 255, .9);
  position: relative;
}

.p-guid2::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 100%;
  height: 11.875rem;
  background: url(../img/top/wave.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-guid2::after {
    height: 17.5rem;
  }
}

.p-guid2__container {
  max-width: 25rem;
  margin-top: 1.875rem;
  margin-inline: auto;
  gap: 1.25rem;
  row-gap: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  place-items: baseline;
}
@media screen and (min-width: 768px) {
  .p-guid2__container {
    max-width: 58.375rem;
    margin-top: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
    row-gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .home .p-guid2__container {
    max-width: 47.8125rem;
  }
}

.p-head {
  padding: 1.25rem 0 3.125rem;
  background-color: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-head {
    padding: 1.25rem 0 7.5rem;
  }
}

.breadcrumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    display: block;
    margin-top: 0.6875rem;
    padding: 0 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 0.7px;
    padding: 0 7.5rem;
  }
}

.breadcrumb a {
  text-decoration: underline;
}

.p-head__title {
  margin-top: 4.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-head__title {
    margin-top: 7.25rem;
  }
}

.p-head__body {
  max-width: 57.5rem;
  margin-inline: auto;
}

.p-head__text {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-head__text {
    margin-top: 3.75rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-head__subtitle {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 4.5px;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-head__subtitle {
    font-size: 1.875rem;
  }
}

.p-head__read {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-top: 2.1875rem;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-head__read {
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 3.75rem;
  }
}

.p-head__items {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-head__items {
    margin-top: 5.625rem;
    grid-template-columns: repeat(auto-fit, minmax(0, 235px));
    gap: 1.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-head__items2 {
  row-gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-head__items2 {
    row-gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(0, 184px));
  }
}

.p-head__items2 .c-head-btn {
  min-width: unset;
}

.p-head__btn {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-head__btn {
    margin-top: 3.75rem;
  }
}

.p-head__btn .c-btn {
  padding: 0.9375rem 2.1875rem 1rem 2.1875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-head__btn .c-btn {
    max-width: 33.75rem;
  }
}

.p-head__btn .c-btn span {
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-head__btn .c-btn span {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.p-head__wrap {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  max-width: 47.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-head__wrap {
    margin-top: 4.375rem;
    gap: 1.875rem;
  }
}

.p-head__wrap-img {
  min-width: 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-head__wrap-img {
    max-width: 8.625rem;
  }
}

.p-head__wrap-text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-head__wrap-text {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-head2 {
  background: #EBFAFF;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-head2 {
    padding-bottom: 6.25rem;
  }
}

.p-head2 img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/512;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header {
  width: 100%;
  height: 5rem;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 8.3125rem;
    overflow-x: clip;
  }
}

.home .p-header {
  background: none;
  position: fixed;
}

.p-header.headerColorScroll {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(50%, rgba(255, 255, 255, .6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(40%, rgba(255, 255, 255, .8)), color-stop(70%, rgba(255, 255, 255, .5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, .8) 40%, rgba(255, 255, 255, .5) 70%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: background 0.4s ease-out;
  transition: background 0.4s ease-out;
}

.p-header__inner {
  padding: 1.25rem 0.625rem 1.25rem 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 1.875rem clamp(20px, 3vw, 120px);
  }
}
@media screen and (min-width: 1440px) {
  .p-header__inner {
    padding: 1.875rem 3.125rem 1.25rem;
  }
}

.p-header__logo {
  max-width: 14.625rem;
  position: relative;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 19.625rem;
  }
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 234/55;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-header__logo img {
    aspect-ratio: 314/75;
  }
}

.p-header__hamburger {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 10px;
  width: 3.4375rem;
  height: 3.4375rem;
  position: fixed;
  z-index: 102;
  right: 0.625rem;
  top: 1.25rem;
  padding-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  width: 1.6875rem;
  height: 0.1875rem;
  background-color: #C5E5F2;
  display: block;
  border-radius: 0.125rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__hamburger span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
}

.p-header__hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}

.p-header__hamburger--sub.open span:nth-child(1) {
  background-color: #fff;
}

.p-header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -7px;
}

.p-header__hamburger--sub.open span:nth-child(3) {
  background-color: #7F1281;
}

.p-header__hamburger p {
  margin-top: 0.3125rem;
  color: #fff;
  font-size: 0.4375rem;
  font-weight: 700;
}

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

@media screen and (min-width: 768px) {
  .p-header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-header__items {
  margin-left: 2.25rem;
  margin-left: clamp(10px, 1vw, 36px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-header__items {
    margin-right: 0.9375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.home .p-header__items {
  margin-right: 0;
}

.p-header__item {
  position: relative;
}

.p-header__item a {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.5px;
  position: relative;
  width: 100%;
  display: block;
  padding: 0.625rem 5rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-header__item a {
    font-size: clamp(4px, 1vw, 15px);
    line-height: 2.5333333333;
    padding: 0.9375rem clamp(10px, 2vw, 15px) 1.5625rem;
    color: #282828;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__item a {
    padding: 0.9375rem 0.9375rem 2.0625rem;
  }
}

.home .p-header__item a {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.5px;
  padding: 0.9375rem clamp(10px, 2vw, 20px) 1.25rem;
  position: relative;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .home .p-header__item a {
    font-size: clamp(4px, 1vw, 15px);
    line-height: 2.5333333333;
    padding: 0.9375rem clamp(10px, 2vw, 20px) 0.9375rem;
    color: #282828;
  }
}
@media screen and (min-width: 1440px) {
  .home .p-header__item a {
    padding: 0.9375rem 1.6875rem 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .home .p-header__item a {
    border-left: 1px solid #fff;
  }
}

.p-header__item img {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__item img {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0.8125rem;
    height: 0.4375rem;
    bottom: 0.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__item img {
    bottom: 0.625rem;
  }
}

.p-header__btn {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  padding: 1.0625rem clamp(10px, 2vw, 42px) 1.0625rem clamp(10px, 2vw, 37px);
  font-size: clamp(10px, 1vw, 15px);
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
}
@media screen and (min-width: 1440px) {
  .p-header__btn {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 1.0625rem 2.625rem 1.0625rem 2.3125rem;
  }
}

.p-header__dropdown {
  visibility: hidden;
  max-width: 41.5625rem;
  max-width: 51.25rem;
  position: absolute;
  top: 3.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  padding: 1.1875rem 2.1875rem 1.125rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .95);
  -webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 101;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .p-header__dropdown {
    top: 3rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__dropdown {
    top: 3.875rem;
  }
}

.p-header__dropdown::before {
  content: "";
  position: absolute;
  top: -0.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.875rem;
  height: 0.875rem;
  z-index: 101;
  padding: 0 6.25rem;
  background: url(../img/common/dropdown.png) no-repeat center/contain;
}

.p-header__item:hover .p-header__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-header__dropdown-item {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  height: 7.0625rem;
  display: grid;
}

.p-header__dropdown-item a {
  color: #096EA4;
  text-decoration: none;
  position: relative;
  background-color: #EBFAFF;
  height: 7.0625rem;
  line-height: 1.5;
  white-space: nowrap;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  width: 8.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  padding: 0.625rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.home .p-header__dropdown-item a {
  color: #096EA4;
  text-decoration: none;
  position: relative;
  background-color: #EBFAFF;
  height: 7.0625rem;
  line-height: 1.5;
  white-space: nowrap;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  width: 8.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  padding: 0.625rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.p-header__dropdown-item img {
  display: block;
  position: static;
  width: 1.875rem;
  height: 2rem;
  margin-inline: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-header__nav-sp {
  display: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow-x: hidden;
  overflow-y: scroll;
}

.p-header__nav-sp .p-header__items {
  display: block;
  margin-left: 0;
}

.p-header__nav-sp .p-header__item:nth-child(n+2) {
  margin-top: 0.625rem;
}

.p-header__nav-sp .p-header__item-title {
  border-left: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 1.6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
  background: #E6F8FB;
  color: #096EA4;
  display: block;
  padding: 0.625rem 3.125rem;
  position: relative;
}

.p-header__nav-sp .p-header__item-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.375rem;
  height: 0.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/btn-arrow-blue.svg) no-repeat center/contain;
}

.p-header__nav-sp .p-header__item-title.open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.home .p-header__nav-sp .p-header__item-title {
  border-left: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 1.6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
  background: #E6F8FB;
  color: #096EA4;
  display: block;
  padding: 0.625rem 3.125rem;
  position: relative;
}

.p-header__nav-sp .p-header__wrapper {
  padding: 6.6875rem 0.9375rem;
}

.p-header__dropdown-sp {
  display: none;
  overflow: hidden;
  padding: 0.625rem 0.9375rem 0;
  border: 1px solid #fff;
  border-radius: 0 0 10px 10px;
  margin-top: -0.625rem;
}

.p-header__item-title.open {
  cursor: pointer;
}

.p-header__item-title.open .p-header__dropdown-sp {
  display: block;
}

.p-header__dropdown-sp-item {
  border-bottom: 1px solid #fff;
  padding: 0.5625rem 0 0;
  padding-left: 1.5625rem;
  position: relative;
  color: #fff;
}

.p-header__dropdown-sp-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.375rem;
  height: 0.75rem;
  background: url(../img/common/btn-arrow.svg) no-repeat center/contain;
}

.p-header__dropdown-sp-item:last-child {
  border-bottom: none;
}

.p-header__dropdown-sp.special {
  padding: 1.25rem 0.9375rem 0.125rem;
}

.p-header__dropdown-sp.special .p-header__dropdown-sp-item {
  border-bottom: none;
  margin-bottom: 0.5rem;
  position: relative;
}

.p-header__dropdown-sp-item.hernia {
  background: url(../img/common/header-hernia.png) no-repeat center/cover;
}

.p-header__dropdown-sp-item.anal {
  background: url(../img/common/header-anal.png) no-repeat center/cover;
}

.p-header__dropdown-sp-item.diabetes {
  background: url(../img/common/header-diabetes.png) no-repeat center/cover;
}

.p-header__dropdown-sp-item.liverandbile {
  background: url(../img/common/header-liverandbile.png) no-repeat center/cover;
}

.p-header__dropdown-sp-item.endoscope {
  background: url(../img/common/header-endoscope.png) no-repeat center/cover;
}

.p-header__banner {
  display: block;
  margin-top: 1.25rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="4" dy="4" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.15)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, .15));
          filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, .15));
  color: #fff;
  padding: 2.0625rem 2.5rem 2.0625rem;
  background: -webkit-gradient(linear, left top, right top, from(#306DCD), to(#87FBD4));
  background: linear-gradient(90deg, #306DCD 0%, #87FBD4 100%);
  border-radius: 6px;
  position: relative;
}

.p-header__banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1.875rem;
  width: 4.5rem;
  height: 6.8125rem;
  background: url(../img/common/banner-img.png) no-repeat center/contain;
}

.p-header__banner p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.25em;
}

.p-header__banner p span {
  font-size: 0.75rem;
}

.p-header__bottom {
  color: #fff;
  margin-top: 2.5rem;
}

.p-header__bottom-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 15%;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.25rem;
}

.p-header__bottom-address {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2.1538461538;
  letter-spacing: 15%;
  padding: 0 0.3125rem;
}

.p-header__bottom-tel {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 15%;
  padding: 0 0.3125rem 0 2.5rem;
  position: relative;
}

.p-header__bottom-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6875rem;
  height: 1.6875rem;
  background: url(../img/common/icon-footer-tel.svg) no-repeat center/contain;
}

.p-header__bottom-fax {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2.1538461538;
  letter-spacing: 15%;
  padding: 0 0.3125rem;
}

.p-hernia {
  padding: 3.125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-hernia {
    padding: 5rem 0 8.75rem;
  }
}

.p-hernia__title {
  text-align: center;
}

.p-hernia__read {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-hernia__read {
    margin-top: 3.75rem;
  }
}

.p-hernia__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hernia__text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-hernia__text span {
  font-weight: 700;
}

.p-hernia__method {
  padding: 3.125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-hernia__method {
    padding: 6.25rem 0 7.5rem;
  }
}

.p-hernia__wrap {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-hernia__wrap {
    margin-top: 2.5rem;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-hernia__wrap-body {
    width: 58%;
  }
}

@media screen and (min-width: 768px) {
  .p-hernia__wrap-img {
    width: 38%;
  }
}

.p-hernia__wrap-img p {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-hernia__wrap-img p {
    font-size: 0.8125rem;
  }
}

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

.p-hernia__news {
  margin-top: 3.75rem;
  padding: 2.5rem 1.25rem;
  background: rgba(221, 245, 255, .6);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-hernia__news {
    margin-top: 5rem;
    padding: 3.125rem;
  }
}

.p-hernia__news-wrap {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-hernia__news-wrap {
    margin-top: 1.875rem;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-hernia__news-body {
    width: 63.8888888889%;
  }
}

.p-hernia__news-read {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hernia__news-read {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-hernia__news-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hernia__news-text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 768px) {
  .p-hernia__news-img {
    width: 32.6666666667%;
  }
}

.p-hernia__news-img p {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-hernia__news-img p {
    font-size: 0.8125rem;
  }
}

.p-hernia__list {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-hernia__list {
    margin-top: 3.125rem;
  }
}

.p-hernia__flow-container {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-hernia__flow-container {
    margin-top: 3.125rem;
  }
}

.p-hernia__flow-items .p-flow-contents__item:not(:has(img)) {
  padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-hernia__flow-items .p-flow-contents__item:not(:has(img)) {
    padding-top: 2.5rem;
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
}

.p-hernia__flow-items .p-flow-contents__item:not(:has(img)) .p-flow-contents__body {
  width: 100%;
}

.p-hernia__flow-items .p-flow-contents__item2 .p-flow-contents__body {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-hernia__flow-items .p-flow-contents__item2 .p-flow-contents__body {
    margin-top: 1.25rem;
  }
}

.p-hernia__flow-items .p-flow-contents__img {
  position: relative;
  height: auto;
}

.p-hernia__flow-items .p-flow-contents__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-hernia__flow-items .p-flow-contents__img .img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

.p-hernia__flow-items .p-flow-contents__img .img-top.clicked {
  opacity: 0;
}

.p-hernia__guid {
  padding: 3.125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-hernia__guid {
    padding: 7.1875rem 0 10rem;
  }
}

.p-hernia__guid-read {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-hernia__guid-read {
    margin-top: 3.125rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-hernia__table {
  margin-top: 2.5rem;
}

.p-homecare {
  padding: 2.1875rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-homecare {
    padding: 6.875rem 0;
  }
}

.homecare .c-head-title {
  font-size: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .homecare .c-head-title {
    font-size: 2.8125rem;
  }
}

.p-homecare .l-inner {
  padding: 0 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-homecare .l-inner {
    padding: 0;
    max-width: 53.125rem;
    margin-inline: auto;
  }
}

.p-homecare__read {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #096EA4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-homecare__read {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-homecare__text {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-homecare__text {
    margin-top: 1.5625rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-homecare__service {
  background: #EBFAFF;
  position: relative;
  padding: 2.1875rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-homecare__service {
    padding: 5.8125rem 0 8.125rem;
  }
}

.p-homecare__service::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.25rem;
  background: url(../img/bg-wave-blue-sp.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-homecare__service::before {
    display: none;
  }
}

.p-homecare__title {
  text-align: center;
}

.p-homecare__service-text {
  margin-top: 1.4375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-homecare__service-text {
    margin-top: 3.125rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-homecare__service-text span.blue {
  margin-top: 0;
  display: inline;
  color: #096EA4;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: unset;
  text-indent: unset;
}
@media screen and (min-width: 768px) {
  .p-homecare__service-text span.blue {
    font-size: 1rem;
  }
}

.p-homecare__service-text span {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1.125rem;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.7692307692;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-homecare__service-text span {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5714285714;
    letter-spacing: 0.05em;
  }
}

.p-homecare__flow {
  position: relative;
  background: #FBFEFF;
  padding: 2.5rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow {
    padding: 3.4375rem 0 8.4375rem;
  }
}

.p-homecare__flow::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.25rem;
  background: url(../img/bg-wave-white-sp.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow::before {
    top: -2.5rem;
    height: 2.5rem;
    background: url(../img/bg-wave-white.png) no-repeat center/cover;
  }
}

.p-homecare__flow-container {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-container {
    margin-top: 3.5625rem;
    gap: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-homecare__flow-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8125rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-items {
    gap: 1.25rem;
    width: 57.1%;
  }
}

.p-homecare__flow-item {
  padding: 1.25rem 0.875rem 1.25rem 3.4375rem;
  background: #F4FCFF;
  -webkit-box-shadow: 0px 0px 10px rgba(9, 110, 164, .1);
          box-shadow: 0px 0px 10px rgba(9, 110, 164, .1);
  position: relative;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-item {
    padding: 1.25rem 2.5rem 1.875rem 5rem;
  }
}

.p-homecare__flow-item::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 41px;
  height: 36px;
  background-color: #F4FCFF;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-item::after {
    bottom: -1.875rem;
    width: 82px;
    height: 55px;
  }
}

.p-homecare__flow-item::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 41px;
  height: 36px;
  background-color: rgba(9, 110, 164, .1);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-item::before {
    bottom: -1.875rem;
    width: 49px;
    height: 30px;
  }
}

.p-homecare__flow-item:last-child::after,
.p-homecare__flow-item:last-child::before {
  display: none;
}

.p-homecare__flow-number {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: -0.875rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
  display: inline-block;
  font-size: 0.4375rem;
  font-family: "Helvetica", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.9375rem 0.1875rem;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-number {
    font-size: 0.5625rem;
  }
}

.p-homecare__flow-number span {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Helvetica", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-number span {
    font-size: 1.5625rem;
  }
}

.p-homecare__flow-number::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px rgb(149, 158, 155);
}

.p-homecare__flow-read {
  color: #096EA4;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-read {
    font-size: 1.375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-homecare__flow-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-text {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
    letter-spacing: 0.05em;
  }
}

.p-homecare__flow-images {
  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.625rem;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-images {
    gap: 1.875rem;
    width: 36.9%;
  }
}

.p-homecare__flow-img:nth-child(2) {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-img:nth-child(2) {
    display: block;
  }
}

.p-homecare__flow-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 325/210;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-homecare__flow-img img {
    aspect-ratio: 369/260;
  }
}

.p-homecare__question {
  background: #EBFAFF;
  position: relative;
  padding: 2.8125rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-homecare__question {
    padding: 6.25rem 0 0.9375rem;
  }
}

.p-homecare__question::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.25rem;
  background: url(../img/bg-wave-blue-sp.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-homecare__question::before {
    top: -2.5rem;
    height: 2.5rem;
    background: url(../img/bg-wave-blue.png) no-repeat center/cover;
  }
}

.p-homecare__question-text {
  margin-top: 1.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-homecare__question-text {
    margin-top: 2.8125rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-homecare__question-link {
  margin-top: 2.1875rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-homecare__question-link {
    margin-top: 3.125rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.p-homecare__question-btn .c-btn2 {
  min-width: unset;
  font-size: 0.875rem;
  padding: 0.9375rem 0;
}
@media screen and (min-width: 768px) {
  .p-homecare__question-btn .c-btn2 {
    font-size: 1.125rem;
    padding: 0.75rem 0;
  }
}

.p-homecare__contact {
  background: #EBFAFF;
}

.p-homecare__contact-table {
  margin-top: 1.875rem;
  border: 1px solid rgba(9, 110, 164, .2);
}
@media screen and (min-width: 768px) {
  .p-homecare__contact-table {
    margin-top: 3.75rem;
  }
}

.p-homecare__contact-table dl {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(9, 110, 164, .2);
}
@media screen and (min-width: 768px) {
  .p-homecare__contact-table dl {
    grid-template-columns: 15rem 1fr;
  }
}

.p-homecare__contact-table dl:last-child {
  border-bottom: none;
}

.p-homecare__contact-table dt {
  font-weight: 700;
  background: #EBFAFF;
  padding: 0.9375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-homecare__contact-table dt {
    padding: 0.9375rem 2.5rem;
  }
}

.p-homecare__contact-table dd {
  padding: 0.8125rem 0.625rem 0.8125rem 1.25rem;
  background: #fff;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-homecare__contact-table dd {
    padding: 0.9375rem 2.5rem;
  }
}

.p-homecare__contact-table dd a {
  color: #096EA4;
  text-decoration: underline;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-homecare__contact-table dd span {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .p-homecare__contact-table dd span {
    display: inline-block;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.p-hospitalization {
  padding: 2.8125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization {
    padding: 4.375rem 0 8.375rem;
  }
}

.p-hospitalization__title {
  text-align: center;
}

.p-hospitalization__container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__container {
    margin-top: 3.75rem;
  }
}

.p-hospitalization__contents:nth-child(n+2) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents:nth-child(n+2) {
    margin-top: 5rem;
  }
}

.p-hospitalization__contents-wrapper-sp {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-wrapper-sp {
    display: contents;
  }
}

.p-hospitalization__contents-subtitle {
  margin-top: 1.25rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-subtitle {
    margin-top: 2.5rem;
  }
}

.p-hospitalization__contents-subtitle .c-title4 {
  padding-left: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-subtitle .c-title4 {
    padding-left: 3.75rem;
    text-align: left;
  }
}

.p-hospitalization__contents-subtitle .c-title4::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-subtitle .c-title4::before {
    display: inline-block;
  }
}

.p-hospitalization__contents-wrapper {
  margin-top: 2.5rem;
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-wrapper {
    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;
  }
}

.p-hospitalization__contents-body {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-body {
    margin-top: 0;
    width: 67.5%;
  }
}

.p-hospitalization__contents-wrap {
  margin-top: 1.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}

.p-hospitalization__contents-wrap-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.68%, #D5A732), to(#E3C029));
  background: linear-gradient(90deg, #D5A732 11.68%, #E3C029 100%);
  border-radius: 13px;
  color: #fff;
  padding: 0 0.625rem;
  min-width: 6.1875rem;
  max-width: 6.1875rem;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-wrap-title {
    min-width: 6.6875rem;
    font-size: 1rem;
  }
}

.p-hospitalization__contents-wrap-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-wrap-text {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.p-hospitalization__contents-wrap-text span {
  font-weight: 700;
}

.p-hospitalization__contents-items .c-list__item {
  font-size: 0.875rem;
  padding-left: 1.6875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-items .c-list__item {
    font-size: 1rem;
    padding-left: 1.875rem;
    line-height: 2;
  }
}

.p-hospitalization__contents-items .c-list__item:nth-child(n+2) {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-items .c-list__item:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.p-hospitalization__contents-items .c-list__item::before {
  width: 0.75rem;
  height: 0.75rem;
  left: 0.625rem;
}

.p-hospitalization__contents-img {
  margin-top: 1.875rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-img {
    margin-top: 0;
    width: 32.5%;
  }
}

.p-hospitalization__contents-images2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-images2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2.1875rem;
  }
}

.p-hospitalization__contents-images2 .p-hospitalization__contents-img {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-images2 .p-hospitalization__contents-img {
    max-width: 15.625rem;
  }
}

.p-hospitalization__contents-images2 .p-hospitalization__contents-img img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 250/170;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-hospitalization__contents-images2 .p-hospitalization__contents-img p {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-hospitalization__contents-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-text {
    margin-top: 1.875rem;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-hospitalization__contents-text span {
  font-weight: 700;
}

.p-hospitalization__contents-text span.indent {
  display: block;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}

.p-hospitalization__contents-text.red {
  color: #F44436;
  font-weight: 700;
}

.p-hospitalization__contents-text.indent {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.p-hospitalization__contents-blue {
  margin-top: 1.25rem;
  background: rgba(221, 245, 255, .6);
  padding: 1.25rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-blue {
    margin-top: 2.5rem;
    padding: 2.0625rem 1.5625rem 2.0625rem 1.875rem;
  }
}

.p-hospitalization__contents-blue-text {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-blue-text {
    letter-spacing: 0.05em;
  }
}

.p-hospitalization__contents-blue-text:nth-child(n+2) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__contents-blue-text:nth-child(n+2) {
    margin-top: 0.5rem;
  }
}

.p-hospitalization__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1.25rem;
  margin-top: 1.5625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__wrapper {
    gap: 2.5rem;
    margin-top: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-hospitalization__wrapper-left,
.p-hospitalization__wrapper-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-hospitalization__wrapper-left .p-hospitalization__wrapper-table {
  min-height: 100%;
}

.p-hospitalization__wrapper-table {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-hospitalization__wrapper-table dl {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-hospitalization__wrapper-table dt {
  background: #F4F4F4;
  color: #096EA4;
  border: 1px solid rgba(9, 110, 164, .2);
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__wrapper-table dt {
    font-size: 1.25rem;
    padding: 0.3125rem 2.5rem;
  }
}

.p-hospitalization__wrapper-table dd {
  border: 1px solid rgba(9, 110, 164, .2);
  padding: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__wrapper-table dd {
    padding: 1.875rem 2.5rem;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-hospitalization__wrapper-right {
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__wrapper-right {
    gap: 2.5rem;
  }
}

.p-hospitalization__wrapper-bottom {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__wrapper-bottom {
    margin-top: 1.4375rem;
  }
}

.p-hospitalization__wrapper-bottom-text {
  padding-left: 1.3em;
  text-indent: -1.3em;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__wrapper-bottom-text {
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-hospitalization__consultation {
  padding: 3.75rem 0 5rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__consultation {
    padding: 6.25rem 0 8.75rem;
  }
}

.p-hospitalization__price {
  padding: 3.75rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price {
    padding: 4.0625rem 0 8.4375rem;
  }
}

.p-hospitalization__price .p-hospitalization__contents.u-mt60-40 {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price .p-hospitalization__contents.u-mt60-40 {
    margin-top: 3.75rem;
  }
}

.p-hospitalization__price-items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-items {
    margin-top: 1.875rem;
  }
}

.p-hospitalization__price-items .c-list__item {
  padding-left: 1.6875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-items .c-list__item {
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.875rem;
  }
}

.p-hospitalization__price-items .c-list__item::before {
  width: 0.75rem;
  height: 0.75rem;
  top: 0.375rem;
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-items .c-list__item::before {
    top: 0.5rem;
  }
}

.p-hospitalization__price-items .p-hospitalization__contents-blue {
  padding: 1.4375rem 1.875rem;
}

.p-hospitalization__price-items .p-hospitalization__contents-blue-text {
  font-size: 0.8125rem;
  line-height: 1.8;
}

.p-hospitalization__price-items .p-hospitalization__contents-wrap {
  margin-top: 0.8125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 1.875rem;
}

.p-hospitalization__price-img {
  max-width: 17.5rem;
  margin-top: 0.625rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-img {
    padding-left: 1.875rem;
    max-width: 15.625rem;
  }
}

.p-hospitalization__price-subtext {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-subtext {
    font-size: 0.875rem;
    padding-left: 1.875rem;
  }
}

.p-hospitalization__price-table {
  margin-top: 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-table {
    margin-top: 2.5rem;
  }
}

.p-hospitalization__price-table.c-table4 tr {
  width: 100%;
  grid-template-columns: 7.1875rem 5.3125rem 1fr;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-table.c-table4 tr {
    grid-template-columns: 16.25rem 19.375rem 1fr;
  }
}

.p-hospitalization__price-table.c-table4 th {
  font-size: 0.875rem;
  padding: 1rem 0.5rem 1rem 0.875rem;
  text-align: left;
  line-height: 1.2;
  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;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-table.c-table4 th {
    font-size: 1rem;
    padding: 0.5625rem 2.5rem;
    line-height: 2.5;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.p-hospitalization__price-table.c-table4 tr:first-child th {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 1rem 0.5rem;
}

.p-hospitalization__price-table.c-table4 th span {
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-table.c-table4 th span {
    font-size: 1rem;
    line-height: 2.5;
    letter-spacing: 0.05em;
  }
}

.p-hospitalization__price-table.c-table4 td {
  font-size: 0.625rem;
  padding: 0.9375rem 0.5rem;
  line-height: 1.6;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-table.c-table4 td {
    font-size: 1rem;
    padding: 0.5625rem 2.5rem;
    line-height: 2.5;
    text-align: left;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.p-hospitalization__price-table.c-table4 td span {
  line-height: 1.6;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-table.c-table4 td span {
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-hospitalization__price-table.c-table4 td.right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__price-table.c-table4 td.right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-hospitalization__info {
  padding: 3.75rem 0 5rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__info {
    padding: 6.25rem 0 10rem;
  }
}

.p-hospitalization__info .p-hospitalization__contents-subtitle {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__info .p-hospitalization__contents-subtitle {
    margin-top: 3.125rem;
  }
}

.p-hospitalization__info .p-hospitalization__contents-subtitle .c-title4 {
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__info .p-hospitalization__contents-subtitle .c-title4 {
    font-size: 1.25rem;
  }
}

.p-hospitalization__info-inner {
  max-width: 60rem;
  margin-inline: auto;
}

.p-hospitalization__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__text {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-hospitalization__info-wrapper {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__info-wrapper {
    margin-top: 2.5rem;
  }
}

.p-hospitalization__info-items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__info-items {
    margin-top: 1.5625rem;
  }
}

.p-hospitalization__info-items .c-list__item {
  padding-left: 1.6875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-hospitalization__info-items .c-list__item {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    padding-left: 1.875rem;
  }
}

.p-hospitalization__info-items .c-list__item::before {
  width: 0.75rem;
  height: 0.75rem;
  left: 0.3125rem;
  top: 0.375rem;
}

.p-hospitalization__info-items .c-list__item:nth-child(n+2) {
  margin-top: 1.25rem;
}

.p-info {
  padding-top: 1.25rem;
  position: relative;
  background: #fff url(../img/bubble-info.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-info {
    padding-top: 1.875rem;
  }
}

.p-info__news {
  text-align: center;
  padding: 0.5rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-info__news {
    padding: 1.25rem 0;
  }
}

.p-info__news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 0.1875rem;
  background: url(../img/top/line.svg) no-repeat center/contain;
}

.p-info__news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 0.1875rem;
  background: url(../img/top/line.svg) no-repeat center/contain;
}

.p-info__news-text {
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-info__news-text {
    font-size: 1rem;
  }
}

.p-info__news-slider a:hover {
  opacity: 0.7;
}

.p-info__items {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2.9375rem;
  max-width: 25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-info__items {
    margin-top: 5.1875rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.75rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 43.75rem;
    margin-inline: auto;
  }
}

.p-info__item {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-info__item {
    min-width: 8rem;
  }
}

.p-info__img {
  position: relative;
  text-align: center;
}

.p-info__img img {
  margin-inline: auto;
  max-width: 1.75rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  min-width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-info__img img {
    min-width: 2.1875rem;
    max-width: 2.1875rem;
    width: unset;
  }
}

.p-info__img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 29%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10rem;
  height: 5.625rem;
  background: url(../img/bubble.png) no-repeat center/contain;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-info__img::before {
    left: 23%;
    width: 12.6875rem;
    height: 7.5rem;
  }
}

.p-info__items a:hover .p-info__img::before {
  -webkit-animation: mochimochi 1s forwards;
          animation: mochimochi 1s forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.p-info__items a:hover .p-info__img img {
  -webkit-animation: mochimochi2 1s forwards;
          animation: mochimochi2 1s forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes mochimochi {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1, 0.8);
            transform: translate(-50%, -50%) scale(1, 0.8);
  }
  20% {
    -webkit-transform: translate(-50%, -50%) scale(0.8, 1.1);
            transform: translate(-50%, -50%) scale(0.8, 1.1);
  }
  70% {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
            transform: translate(-50%, -50%) scale(1, 1);
  }
  90% {
    -webkit-transform: translate(-50%, -50%) scale(1, 0.8);
            transform: translate(-50%, -50%) scale(1, 0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
            transform: translate(-50%, -50%) scale(1, 1);
  }
}

@keyframes mochimochi {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1, 0.8);
            transform: translate(-50%, -50%) scale(1, 0.8);
  }
  20% {
    -webkit-transform: translate(-50%, -50%) scale(0.8, 1.1);
            transform: translate(-50%, -50%) scale(0.8, 1.1);
  }
  70% {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
            transform: translate(-50%, -50%) scale(1, 1);
  }
  90% {
    -webkit-transform: translate(-50%, -50%) scale(1, 0.8);
            transform: translate(-50%, -50%) scale(1, 0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
            transform: translate(-50%, -50%) scale(1, 1);
  }
}
@-webkit-keyframes mochimochi2 {
  0% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  20% {
    -webkit-transform: scale(0.8, 1.1);
            transform: scale(0.8, 1.1);
  }
  70% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  90% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes mochimochi2 {
  0% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  20% {
    -webkit-transform: scale(0.8, 1.1);
            transform: scale(0.8, 1.1);
  }
  70% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  90% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.p-info__text {
  margin-top: 2.1875rem;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  min-height: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-info__text {
    margin-top: 2.8125rem;
    font-size: 1rem;
    letter-spacing: 0.4px;
  }
}

.p-info__news2 {
  margin-top: 2.5625rem;
  padding: 1.875rem 1.25rem;
  background: url(../img/top/bg-info-news.png) no-repeat center/cover;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-info__news2 {
    padding: 1.875rem 0 1.875rem 4.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-info__news2-title {
  position: relative;
  padding-top: 2.5rem;
  text-align: center;
}

.p-info__news2-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2rem;
  height: 2.3125rem;
  background: url(../img/icon-news.png) no-repeat center/contain;
}

.p-info__news2-wrapper {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-info__news2-wrapper {
    margin-top: 0;
    margin-left: 3.9375rem;
  }
}

.p-info__news2-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-info__news2-item a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-info__news2-item a:hover .p-info__news2-text {
  opacity: 0.7;
}

.p-info__news2-item time {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.6px;
}

.p-info__news2-text {
  margin-left: 1.3125rem;
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 768px) {
  .p-info__news2-text {
    font-size: 0.9375rem;
  }
}

.news .p-info__news2 {
  margin-top: 0;
}

.p-information {
  padding: 2.5rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-information {
    padding: 5.625rem 0 6.875rem;
  }
}

.p-information__title {
  text-align: center;
}

.p-information__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  max-width: 19.0625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-information__text {
    margin-top: 3.125rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
    max-width: 53.125rem;
  }
}

.p-information__department {
  background: #EBFAFF;
  padding: 3.125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-information__department {
    padding: 4.375rem 0 8.4375rem;
  }
}

.p-information__department-table {
  overflow-x: hidden;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-information__department-table {
    margin-right: unset;
  }
}

.p-information__table {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-information__table {
    margin-top: 3.75rem;
  }
}

.p-information__table.c-table3 tr {
  grid-template-columns: 2.5rem repeat(6, minmax(9.375rem, 1fr));
  grid-template-rows: minmax(6.25rem, 1fr);
}
@media screen and (min-width: 768px) {
  .p-information__table.c-table3 tr {
    grid-template-columns: 4.0625rem repeat(6, 1fr);
    grid-template-rows: minmax(12.5625rem, 1fr);
  }
}

.p-information__table.c-table3 tr.blue {
  grid-template-rows: unset;
}

.p-information__table.c-table3 tr th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

.p-information__table.c-table3 tr:first-child th {
  background: #06BADB;
  height: 3.125rem;
}

.p-information__table.c-table3 td {
  text-align: left;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-information__table.c-table3 td {
    padding: 0.9375rem 0.9375rem 1.875rem;
  }
}

.p-information__table.c-table3 td.none {
  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;
}

.p-information__doctor {
  padding: 3.75rem 0 4.375rem;
  background: #FBFEFF;
}
@media screen and (min-width: 768px) {
  .p-information__doctor {
    padding: 3.4375rem 0 8.75rem;
  }
}

.p-information__doctor-container {
  margin-top: 3.125rem;
  max-width: 18.4375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-container {
    margin-top: 3.75rem;
    max-width: 56.25rem;
  }
}

.p-information__doctor-contents {
  padding-bottom: 3.125rem;
}

.p-information__doctor-contents:nth-child(n+2) {
  padding-top: 1.25rem;
  border-top: 1px solid #D2D2D2;
}

.p-information__doctor-contents:last-child {
  padding-bottom: 0;
}

.p-information__doctor-position {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  background: #096EA4;
  color: #fff;
  padding: 0 0.75rem;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-position {
    font-size: 0.875rem;
    padding: 0 1.25rem;
  }
}

.p-information__doctor-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
.p-information__doctor-name {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-name {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }
}

.p-information__doctor-english {
  font-size: 0.75rem;
  font-family: "Helvetica", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-english {
    letter-spacing: 0.05em;
  }
}

.p-information__doctor-contents-flex {
  margin-top: 0.9375rem;
  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.875rem;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-contents-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-information__doctor-left {
    margin-top: -0.375rem;
    max-width: 100%;
    width: 33.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .p-information__doctor-body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 63.3333333333%;
  }
}

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

.p-information__doctor-item:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-item:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}

.p-information__doctor-item-title .c-title2 {
  white-space: nowrap;
  font-size: 0.8125rem;
  line-height: 1.6923076923;
  padding: 0 0.875rem;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-item-title .c-title2 {
    font-size: 0.9375rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
}

.p-information__doctor-item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-item-text {
    width: 83.5294117647%;
    font-size: 0.9375rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}

.p-information__doctor-message {
  margin-top: 1.25rem;
  background: rgba(221, 245, 255, .6);
  border-radius: 6px;
  padding: 0.9375rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-message {
    font-size: 0.9375rem;
  }
}

.p-information__doctor-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-banner {
    margin-top: 3.125rem;
  }
}

.p-information__doctor-banner a img {
  max-width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .p-information__doctor-banner a img {
    max-width: 34.875rem;
  }
}

.p-information__doctor-banner a:hover {
  opacity: 0.7;
}

.p-information__other {
  background: #EBFAFF;
  padding: 3.125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-information__other {
    padding: 5.625rem 0 10rem;
  }
}

.p-liverandbile {
  padding: 3.125rem 0 4.375rem;
  background: #FBFEFF;
}
@media screen and (min-width: 768px) {
  .p-liverandbile {
    padding: 5rem 0 7.5rem;
  }
}

.liverandbile .p-head__items {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .liverandbile .p-head__items {
    margin-top: 3.75rem;
  }
}

.p-liverandbile__title {
  text-align: center;
}

.p-liverandbile__subtitle {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__subtitle {
    margin-top: 4.375rem;
  }
}

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

.p-liverandbile__read {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__read {
    margin-top: 3.125rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.p-liverandbile__read--left {
  text-align: left;
  line-height: 2;
}

.p-liverandbile__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__text {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-liverandbile__text span {
  font-weight: 700;
}

.p-liverandbile__btn {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__btn {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-liverandbile__btn .c-btn {
    min-width: 30.625rem;
  }
}

.p-liverandbile__wrapper {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-liverandbile__wrapper-text {
    width: 58%;
  }
}

.p-liverandbile__wrapper-text .p-liverandbile__text {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__wrapper-text .p-liverandbile__text {
    margin-top: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-liverandbile__wrapper-img {
    width: 38%;
  }
}

.p-liverandbile__wrapper-img p {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__wrapper-img p {
    font-size: 0.8125rem;
    margin-top: 0.9375rem;
  }
}

.p-liverandbile__wrapper-img p span {
  font-weight: 700;
}

.p-liverandbile2 {
  padding: 3.125rem 0 4.375rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-liverandbile2 {
    padding: 4.375rem 0 7.5rem;
  }
}

.p-liverandbile__items {
  margin-top: 1.875rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__items {
    margin-top: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-liverandbile__item p {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__item p {
    font-size: 0.8125rem;
  }
}

.p-liverandbile__items .p-liverandbile__item {
  position: relative;
  height: auto;
}

.p-liverandbile__items .p-liverandbile__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 236/160;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-liverandbile__items .p-liverandbile__item .img-bottom {
  height: auto;
}

.p-liverandbile__items .p-liverandbile__item .img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

.p-liverandbile__items .p-liverandbile__item .img-top.clicked {
  opacity: 0;
}

.p-liverandbile3 {
  padding: 3.125rem 0 3.125rem;
  background: #FBFEFF;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-liverandbile3 {
    padding: 4.375rem 0 6.25rem;
  }
}

.p-liverandbile3::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.25rem;
  background: url(../img/bg-wave-white-sp.png) no-repeat center/cover;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .p-liverandbile3::after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    bottom: -2.5rem;
    height: 2.5rem;
    background: url(../img/bg-wave.png) no-repeat center/cover;
  }
}

.p-liverandbile__care {
  background: transparent;
  padding: 4.375rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__care {
    padding: 8.4375rem 0 8.75rem;
  }
}

.p-liverandbile__care-read {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__care-read {
    margin-top: 3.125rem;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.p-liverandbile__care-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__care-text {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-liverandbile__guid {
  padding: 3.125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__guid {
    padding: 4.375rem 0 10rem;
  }
}

.p-liverandbile_guid-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.p-liverandbile_guid-wrap-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 15px;
  padding: 0 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile_guid-wrap-title {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-liverandbile_guid-wrap-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-liverandbile_guid-wrap-text {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-liverandbile__table {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-liverandbile__table {
    margin-top: 1.25rem;
  }
}

.p-map {
  position: relative;
}

.p-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 375/375;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-map iframe {
    aspect-ratio: 1440/440;
  }
}

.p-mv {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#A5E7FF), color-stop(88.02%, rgba(217, 217, 217, 0)));
  background: linear-gradient(180deg, #A5E7FF 0%, rgba(217, 217, 217, 0) 88.02%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 100dvh;
  }
}

.p-mv::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  z-index: 1;
  background: url(../img/bg-wave-mv.png) no-repeat center/cover;
}

.p-mv__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  background: url(../img/top/bg_wave-sp.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-mv__bg {
    background: url(../img/top/bg_wave.png) no-repeat center/cover;
  }
}

.p-mv__title {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 10.6875rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    top: 30%;
    left: 5%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    max-width: 20.5625rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .p-mv__title {
    left: 15%;
  }
}

.p-mv__title2 {
  top: 21%;
  left: 50%;
  -webkit-transform: translateX(-45%);
          transform: translateX(-45%);
  min-width: 16.9375rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title2 {
    max-width: 20.5625rem;
    max-width: 100%;
    top: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-mv__btn {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  padding: 0.8125rem 3.125rem;
  content: "";
  position: absolute;
  top: 65%;
  left: 27%;
  z-index: 1;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#306DCD), to(#87FBD4));
  background: linear-gradient(90deg, #306DCD 0%, #87FBD4 100%);
}
@media screen and (min-width: 768px) {
  .p-mv__btn {
    left: 45%;
    top: 51%;
  }
}

.p-mv__img {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 62.75rem;
}

.p-mv .swiper-img source,
.p-mv .swiper-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/618;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv .swiper-img source,
  .p-mv .swiper-img img {
    aspect-ratio: 1440/837;
    height: 100dvh;
  }
}

.p-mv__banner {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__banner {
    display: block;
    position: absolute;
    right: 0;
    bottom: 14%;
    padding: 0.9375rem 11rem 1.4375rem 2.5rem;
    max-width: 25.5625rem;
    background: -webkit-gradient(linear, left top, right top, from(#306DCD), to(#87FBD4));
    background: linear-gradient(90deg, #306DCD 0%, #87FBD4 100%);
    color: #fff;
    border-radius: 20px 0 0 20px;
    z-index: 100;
  }
}

.p-mv__banner.is-fixed {
  position: fixed;
  right: 0;
  top: 8.125rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-mv__banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 3.125rem;
  width: 5.625rem;
  height: 8.5625rem;
  background: url(../img/common/banner-img.png) no-repeat center/contain;
}

.p-mv__banner-title {
  font-size: 1.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 4.5px;
}

.p-mv__banner-text {
  font-size: 0.8125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.1538461538;
  letter-spacing: 2px;
  white-space: nowrap;
}

.p-mv__content {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    display: block;
    content: "";
    position: absolute;
    top: 47%;
    left: 5%;
    background: rgba(255, 255, 255, .7);
    padding: 1.9375rem 1.5625rem 1.375rem 1.6875rem;
    border-radius: 20px;
    text-align: center;
    z-index: 1;
  }
}
@media screen and (min-width: 1440px) {
  .p-mv__content {
    left: 15%;
  }
}

.p-mv__content-btn {
  font-size: 1.0625rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  padding: 0.1875rem 6.875rem 0.25rem 7.25rem;
  border-radius: 100px;
}

.p-mv__content-table {
  margin-top: 1.25rem;
}

.p-mv__content-table-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  place-items: center;
}

.p-mv__content-table-wrap:nth-child(n+2) {
  border-top: 1px dashed #096EA4;
}

.p-mv__content-table-item {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.5333333333;
  color: #096EA4;
}

.p-mv__content-close {
  margin-top: 0.5625rem;
  font-size: 0.8125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2.4615384615;
  color: #096EA4;
  text-align: center;
  border: 1px solid #096EA4;
  border-radius: 20px;
}

.p-mv__content-text {
  margin-top: 0.875rem;
  text-align: center;
  color: #096EA4;
}

.p-mv__content-tel {
  font-size: 1.875rem;
  font-family: "Roboto", serif;
  font-weight: 600;
  color: #096EA4;
  padding-left: 1.875rem;
  position: relative;
}

.p-mv__content-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.1875rem;
  height: 1.1875rem;
  background: url(../img/common/icon-tel.svg) no-repeat center/contain;
}

.p-mv__tab {
  content: "";
  position: absolute;
  left: -18rem;
  top: 18%;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(11, 172, 227, .8)), to(rgba(0, 198, 211, .8)));
  background: linear-gradient(90deg, rgba(11, 172, 227, .8) 11.23%, rgba(0, 198, 211, .8) 100%);
  padding: 0.8125rem 0.8125rem 0.875rem 0.9375rem;
  border-radius: 0 18px 18px 0;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__tab {
    display: none;
  }
}

.p-mv__tab .p-mv__content-table {
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 2.4666666667;
  letter-spacing: 1.5px;
}

.p-mv__tab .p-mv__content-table-wrap {
  gap: 0.3125rem;
}

.p-mv__tab .p-mv__content-table-item span {
  font-family: "Roboto", serif;
  letter-spacing: 0;
}

.p-mv__tab2 {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, rgba(74, 198, 207, .8)), to(rgba(43, 210, 161, .8)));
  background: linear-gradient(90deg, rgba(74, 198, 207, .8) 11.23%, rgba(43, 210, 161, .8) 100%);
  content: "";
  position: absolute;
  top: 58%;
  left: -18rem;
  padding: 0.8125rem 0.8125rem 0.875rem 0.9375rem;
  border-radius: 0 18px 18px 0;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-mv__tab2 {
    display: none;
  }
}

.p-mv__tab.active {
  left: 0;
}

.p-mv__tab2.active {
  left: 0;
}

.p-mv__tab-title {
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-top: 1.875rem;
  position: relative;
}

.p-mv__tab-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.1875rem;
  height: 1.1875rem;
  background: url(../img/common/tab-arrow.png) no-repeat center/contain;
}

.p-mv__tab.active .p-mv__tab-title::after,
.p-mv__tab2.active .p-mv__tab-title::after {
  -webkit-transform: translateX(-50%) rotate(-180deg);
          transform: translateX(-50%) rotate(-180deg);
}

.p-mv__tab-content-body {
  background: rgba(255, 255, 255, .7);
  border-radius: 18px;
  padding: 0.125rem 1.1875rem 1.0625rem;
}

.p-mv__tab2 .p-mv__tab-content-body {
  position: relative;
  padding: 2.5rem 1.4375rem 2.5rem 1.0625rem;
}

.p-mv__tab2 .p-mv__tab-content-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4.5rem;
  height: 6.8125rem;
  background: url(../img/common/banner-img.png) no-repeat center/contain;
}

.p-mv__tab-text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #096EA4;
}

.p-mv__tab-btn {
  margin-top: 1.1875rem;
  border: 1px solid #0BACE3;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #096EA4;
}

/* リンクのデフォルト装飾を削除 */
.swiper-slide .slide-link {
  display: block;
  text-decoration: none;
  color: inherit; /* テキストの色が変わらないように設定 */
}

.swiper-slide .slide-link, a:hover {
  opacity: 1; /* ホバー時のエフェクトを追加（任意） */
}

.p-news-single {
  padding-bottom: 5rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-news-single {
    padding-bottom: 10rem;
  }
}

.p-news-single .l-inner {
  max-width: 56.25rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-news-single .l-inner {
    padding: 0;
  }
}

.p-news-single__title {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-news-single__title {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    line-height: 2.5;
  }
}

.p-news-single__time {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-news-single__time {
    margin-top: 0;
    font-size: 0.8125rem;
  }
}

.p-news-single__content h4 {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0.875rem 0.875rem;
  border-left: 6px solid #0BACE3;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-news-single__content h4 {
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
  }
}

.p-news-single__content h5 {
  margin-top: 2.5rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0.875rem 0.625rem;
  color: #096EA4;
  background: rgba(221, 245, 255, .6);
  border-bottom: 1px solid rgba(12, 102, 170, .2);
}
@media screen and (min-width: 768px) {
  .p-news-single__content h5 {
    padding: 1rem 1.875rem;
    font-size: 1.125rem;
  }
}

.p-news-single__content h6 {
  margin-top: 2.5rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0.875rem 0.625rem;
  color: #096EA4;
  border-bottom: 1px solid #108FCC;
}
@media screen and (min-width: 768px) {
  .p-news-single__content h6 {
    padding: 1rem 1.875rem;
    font-size: 1.125rem;
  }
}

.p-news-single__content p {
  padding: 1.25rem 0 0;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-news-single__content p {
    padding: 1.25rem 1.875rem 0;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-news-single__img {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__img {
    margin-top: 5rem;
  }
}

.p-news-single__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 345/220;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news-single__img img {
    aspect-ratio: 900/560;
  }
}

.nav-links {
  margin-top: 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #096EA4;
}
@media screen and (min-width: 768px) {
  .nav-links {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 4.375rem;
  }
}

.p-nav-links.only-prev .nav-links {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-nav-links.only-prev .nav-links .nav-next {
  display: none;
}

.p-nav-links.only-prev .nav-links .nav-previous {
  border-right: 1px solid #096EA4;
}

.p-nav-links.only-next .nav-links {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-nav-links.only-next .nav-links .nav-previous {
  display: none;
}

.nav-links img {
  margin-top: 0.5rem;
  width: 1rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .nav-links img {
    margin-top: 0.375rem;
    width: 2rem;
    height: 2rem;
  }
}

.nav-links .nav-subtitle {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .nav-links .nav-subtitle {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.nav-links .nav-subtext {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .nav-links .nav-subtext {
    font-size: 0.9375rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.nav-previous {
  width: 50%;
  padding: 0.625rem 0.625rem 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .nav-previous {
    padding: 1.8125rem 6rem 2.5rem 0;
    min-height: 9.5625rem;
  }
}

.nav-previous a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-previous a:hover .nav-subtitle,
.nav-previous a:hover .nav-subtext {
  text-decoration: underline;
}

.nav-next {
  width: 50%;
  padding: 0.625rem 0.625rem 0 0.625rem;
  border-left: 1px solid #096EA4;
}
@media screen and (min-width: 768px) {
  .nav-next {
    padding: 1.8125rem 0 2.5rem 6rem;
    min-height: 9.5625rem;
  }
}

.nav-next a {
  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;
}

.nav-next a:hover .nav-subtitle,
.nav-next a:hover .nav-subtext {
  text-decoration: underline;
}

.p-news-single__btn {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news-single__btn {
    margin-top: 2.5rem;
  }
}

.p-news-single__btn .c-btn {
  max-width: 20.3125rem;
  padding: 1.3125rem 5.5rem 1.3125rem 5.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
}
@media screen and (min-width: 768px) {
  .p-news-single__btn .c-btn {
    padding: 0.75rem 5.5rem 0.75rem 5.5rem;
    min-width: 20.625rem;
  }
}

.p-news-single__wrap-prev {
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__wrap-prev {
    margin-left: 2.5rem;
  }
}

.p-news-single__wrap-next {
  text-align: right;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__wrap-next {
    margin-right: 2.5rem;
  }
}

.nav-subtitle {
  display: block;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.6666666667;
}

.nav-subtext {
  display: block; /* ブロック要素にして改行 */
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.6666666667;
}

.p-news-single__top {
  text-align: center;
}

.p-news-single__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.p-news-single__wrap a {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
  padding: 0.125rem 1.625rem 0.1875rem;
  border-radius: 2px;
  white-space: nowrap;
  width: 11.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__wrap a {
    padding: 1rem 0.8125rem 0.875rem;
    font-size: 0.9375rem;
    line-height: 1;
  }
}

.p-news-single__wrap a.class {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #E3C029), color-stop(99.56%, #D5A732));
  background: linear-gradient(90deg, #E3C029 11.23%, #D5A732 99.56%);
  color: #fff;
}

.p-news-single__wrap a.closed {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #FD8D85), to(#F7695E));
  background: linear-gradient(90deg, #FD8D85 11.23%, #F7695E 100%);
  color: #fff;
}

.p-news-single__wrap a.notice {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
}

.p-news-single__wrap a.other {
  background: -webkit-gradient(linear, left top, right top, from(#D2D2D2), to(#B0B0B0));
  background: linear-gradient(90deg, #D2D2D2 0%, #B0B0B0 100%);
  color: #fff;
}

.p-news-single__wrap .p-news__new {
  left: unset;
  right: -0.625rem;
}

.p-news-single__time {
  display: block;
  text-align: center;
}

.p-news {
  background-color: #DCEEF8;
}

.p-news__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  padding-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-news__item-wrap {
    gap: 1.875rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-news__btn {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__btn {
    margin-top: 3.125rem;
  }
}

.tab-title-list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .tab-title-list {
    display: grid;
    margin-top: 5rem;
    padding-left: 0;
    gap: unset;
    grid-template-columns: repeat(5, 1fr);
  }
}

.home .tab-title-list {
  display: none;
}
@media screen and (min-width: 768px) {
  .home .tab-title-list {
    display: grid;
  }
}

.tab-title a {
  height: 100%;
  list-style: none;
  text-align: center;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.375rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #282828;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (min-width: 768px) {
  .tab-title a {
    white-space: nowrap;
    width: 11.5625rem;
    font-size: 0.9375rem;
    line-height: 2.5333333333;
    padding: 0.375rem;
  }
}

.home .tab-title {
  height: 100%;
  list-style: none;
  text-align: center;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.375rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #282828;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (min-width: 768px) {
  .home .tab-title {
    white-space: nowrap;
    width: 11.5625rem;
    font-size: 0.9375rem;
    line-height: 2.5333333333;
    padding: 0.375rem;
  }
}

@media screen and (min-width: 768px) {
  .tab-title:nth-child(n+2) {
    margin-left: 0.7rem;
  }
}

@media screen and (min-width: 768px) {
  .tab-title:nth-child(n+2) {
    margin-left: clamp(10px, 1.3vw, 19px);
  }
}
.tab-title.all a {
  border: 1px solid #D1D1D1;
}

.tab-title.class a {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #E3C029), color-stop(99.56%, #D5A732));
  background: linear-gradient(90deg, #E3C029 11.23%, #D5A732 99.56%);
  color: #fff;
}

.tab-title.closed a {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #FD8D85), to(#F7695E));
  background: linear-gradient(90deg, #FD8D85 11.23%, #F7695E 100%);
  color: #fff;
}

.tab-title.notice a {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
}

.tab-title.other a {
  background: -webkit-gradient(linear, left top, right top, from(#D2D2D2), to(#B0B0B0));
  background: linear-gradient(90deg, #D2D2D2 0%, #B0B0B0 100%);
  color: #fff;
}

.home .tab-title.all {
  border: 1px solid #D1D1D1;
}

.home .tab-title.class {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #E3C029), color-stop(99.56%, #D5A732));
  background: linear-gradient(90deg, #E3C029 11.23%, #D5A732 99.56%);
  color: #fff;
}

.home .tab-title.closed {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #FD8D85), to(#F7695E));
  background: linear-gradient(90deg, #FD8D85 11.23%, #F7695E 100%);
  color: #fff;
}

.home .tab-title.notice {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
}

.home .tab-title.other {
  background: -webkit-gradient(linear, left top, right top, from(#D2D2D2), to(#B0B0B0));
  background: linear-gradient(90deg, #D2D2D2 0%, #B0B0B0 100%);
  color: #fff;
}

.no-posts-message {
  padding: 5rem 7rem;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .no-posts-message {
    padding: 5rem 2rem;
    font-size: 1.6rem;
  }
}
li.no-posts-message::marker {
  display: none;
  color: #fff;
}

.tab-list {
  margin-top: 1.875rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-list {
    margin-top: 3.125rem;
  }
}

.tab-list.show {
  display: block;
}

@media screen and (min-width: 768px) {
  .article-list {
    padding-left: 1.25rem;
  }
}

.article-list__item {
  border-bottom: 1px solid #00C6D3;
}
@media screen and (min-width: 768px) {
  .article-list__item {
    border-bottom: none;
  }
}

.article-list__item:nth-child(n+2) {
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .article-list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875rem;
  }
}

.article-list__item a:hover .p-news__tab-title {
  text-decoration: underline;
}

.article-list__item a time {
  font-size: 0.75rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .article-list__item a time {
    margin-left: unset;
    font-size: 0.8125rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    line-height: 2.5384615385;
  }
}

.article-list__item span {
  padding: 0.375rem 0.625rem;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  display: inline-block;
  width: 8.125rem;
}
@media screen and (min-width: 768px) {
  .article-list__item span {
    padding: 0.1875rem 0.9375rem;
    font-size: 0.8125rem;
    line-height: 2.5384615385;
    width: 9.5625rem;
  }
}

.article-list__item a {
  position: relative;
}

.p-news__category {
  position: relative;
  display: inline-block;
  padding-right: 40px; /* NEWアイコン分のスペース */
}

.p-news__new {
  position: absolute;
  top: -0.9375rem;
  left: 8.625rem;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-news__new {
    left: 8.4375rem;
  }
}

.p-news__new span {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 2.5;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 0;
  width: 30px;
  text-align: center;
}

.class {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #E3C029), color-stop(99.56%, #D5A732));
  background: linear-gradient(90deg, #E3C029 11.23%, #D5A732 99.56%);
  color: #fff;
}

.closed {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #FD8D85), to(#F7695E));
  background: linear-gradient(90deg, #FD8D85 11.23%, #F7695E 100%);
  color: #fff;
}

.notice {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  color: #fff;
}

.other {
  background: -webkit-gradient(linear, left top, right top, from(#D2D2D2), to(#B0B0B0));
  background: linear-gradient(90deg, #D2D2D2 0%, #B0B0B0 100%);
  color: #fff;
}

.p-news__tab-title {
  margin-top: 0.625rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.4285714286;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news__tab-title {
    margin-top: 0;
    padding-bottom: 0;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.news .p-news {
  padding-bottom: 5rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .news .p-news {
    padding-bottom: 10rem;
  }
}

.pagination {
  margin-top: 1.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;
  gap: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 5.8125rem;
  }
}

.pagination .prev img {
  max-width: 2rem;
  margin-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .pagination .prev img {
    margin-right: 5rem;
  }
}

.pagination .next img {
  max-width: 2rem;
  margin-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .pagination .next img {
    margin-left: 5rem;
  }
}

.pagination .page-numbers.current {
  border: 1px solid #282828;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  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;
}

.outpatient .p-head__btn .c-btn {
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.625rem 2.1875rem 0.8125rem;
}
@media screen and (min-width: 768px) {
  .outpatient .p-head__btn .c-btn {
    font-size: 1.5rem;
    padding: 0.625rem 2.1875rem 0.8125rem;
  }
}

.outpatient .p-head__btn .c-btn span {
  line-height: 1.2;
}

.p-outpatient__doctor {
  background: #FBFEFF;
  overflow-x: clip;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__doctor {
    padding-top: 6.25rem;
  }
}

.p-outpatient__flow {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__flow {
    padding-top: 5.625rem;
    padding-bottom: 8.75rem;
  }
}

.p-outpatient__flow-container {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__flow-container {
    margin-top: 3.75rem;
  }
}

.p-outpatient__title {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-outpatient__flow-container .p-flow-contents__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-outpatient__second {
  position: relative;
  background: #FBFEFF;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second {
    padding-top: 5.625rem;
  }
}

.p-outpatient__second-read {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-read {
    gap: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-outpatient__second-read-body {
    width: 53.3%;
  }
}

.p-outpatient__second-read-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-read-title {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.p-outpatient__second-read-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-read-text {
    margin-top: 0.625rem;
    font-size: 1.0625rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .p-outpatient__second-read-img {
    width: 40.8%;
  }
}

.p-outpatient__second-contents {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents {
    margin-top: 3.125rem;
  }
}

.p-outpatient__second-contents-title .c-title2 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-title .c-title2 {
    font-size: 1.375rem;
  }
}

.p-outpatient__second-contents-subtitle .c-title4 {
  text-align: center;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-subtitle .c-title4 {
    text-align: left;
    padding-left: 3.125rem;
  }
}

.p-outpatient__second-contents-subtitle .c-title4::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-subtitle .c-title4::before {
    display: inline-block;
  }
}

.p-outpatient__second-contents-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-outpatient__second-contents-wrap {
  margin-top: 1.25rem;
  background: #EBFAFF;
  padding: 1.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-wrap {
    margin-top: 1.25rem;
    padding: 1.875rem 2.5rem;
  }
}

.p-outpatient__second-contents-wrap2 {
  margin-top: 1.25rem;
  background: #EBFAFF;
  padding: 1.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-wrap2 {
    margin-top: 5rem;
    padding: 1.875rem 2.5rem;
  }
}

.p-outpatient__second-contents-wrap-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-wrap-text {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-outpatient__second-contents-table {
  width: 100%;
  margin-top: 1.25rem;
}

.p-outpatient__second-contents-items {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-items {
    margin-top: 0.9375rem;
  }
}

.p-outpatient__second-contents-wrap2 .p-outpatient__second-contents-items {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-wrap2 .p-outpatient__second-contents-items {
    margin-top: 1.875rem;
  }
}

.p-outpatient__second-contents-items .c-list__item {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contents-items .c-list__item {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-outpatient__second-contact {
  background: -webkit-gradient(linear, left top, right bottom, from(#0BACE3), to(#00C6D3));
  background: linear-gradient(to bottom right, #0BACE3, #00C6D3);
  border-radius: 10px;
  text-align: center;
  position: relative;
  margin-top: 3.75rem;
}

.p-outpatient__second-contact::before {
  content: "";
  display: block;
  border-radius: 10px;
  background: #fff;
  width: 99.8%;
  height: 99.5%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.p-outpatient__second-contact-inner {
  position: relative;
  width: 98%;
  z-index: 2;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contact-inner {
    padding: 3.125rem 0 2.5rem;
  }
}

.p-outpatient__second-contact-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contact-title {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-outpatient__second-contact-tel {
  display: inline-block;
  margin-top: 1.25rem;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 5px;
  width: 100%;
  max-width: 17.5rem;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contact-tel {
    width: unset;
    max-width: 100%;
    margin-top: 1.25rem;
  }
}

.p-outpatient__second-contact-tel a {
  display: inline-block;
  font-size: 1.8125rem;
  font-family: "Helvetica", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 1px 0;
  padding: 0.125rem 1.25rem 0.125rem 3.125rem;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contact-tel a {
    font-size: 2.5rem;
    padding: 0.125rem 2.1875rem 0.125rem 4.375rem;
  }
}

.p-outpatient__second-contact-tel a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.875rem;
  height: 1.875rem;
  background: url(../img/common/icon-tel-blue.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contact-tel a::before {
    left: 1.25rem;
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.p-outpatient__second-contact-tel span {
  display: block;
  margin-inline: auto;
  border-radius: 5px;
  background: #fff;
  width: 99.2%;
  margin: 1px;
}

.p-outpatient__second-contact-fax {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #096EA4;
}
@media screen and (min-width: 768px) {
  .p-outpatient__second-contact-fax {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-patientsrights {
  background: #EBFAFF;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-patientsrights {
    padding-bottom: 10rem;
  }
}

.p-patientsrights__read {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7857142857;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-patientsrights__read {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-patientsrights__title {
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-patientsrights__title {
    margin-top: 2.5rem;
  }
}

.p-patientsrights__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7857142857;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-patientsrights__text {
    margin-top: 0.8125rem;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-patientsrights__text span {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 2.5;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-patientsrights__text span {
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.p-privacypolicy {
  background: #EBFAFF;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy {
    padding-bottom: 12.5rem;
  }
}

.p-privacypolicy__contents:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__contents:nth-child(n+2) {
    margin-top: 5rem;
  }
}

.p-privacypolicy__read {
  margin-top: 1.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__read {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-privacypolicy__subtitle {
  margin-top: 2.5rem;
}

.p-privacypolicy__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__text {
    margin-top: 1.5625rem;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-privacypolicy__text span.indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 0.625rem;
}

.p-privacypolicy__wrap {
  margin-top: 2.5rem;
  background: #FBFEFF;
  -webkit-box-shadow: 0px 0px 10px rgba(9, 110, 164, .1);
          box-shadow: 0px 0px 10px rgba(9, 110, 164, .1);
  border-radius: 3px;
  padding: 1.25rem 1.25rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__wrap {
    margin-top: 3.4375rem;
    padding: 1.875rem 3.125rem 1.875rem;
  }
}

.p-privacypolicy__wrap-title {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 0 1.25rem;
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.8125;
  letter-spacing: 4.5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__wrap-title {
    text-align: left;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 1rem 1.25rem 0.625rem;
  }
}

.p-privacypolicy__wrap-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
}

.p-privacypolicy__wrap-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__wrap-text {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-privacypolicy__wrap-text a {
  font-weight: 700;
}

.p-recruit-archive {
  padding: 3.125rem 0 5rem;
  background-color: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-recruit-archive {
    padding: 3.75rem 0 10rem;
  }
}

.recruit .p-head2 {
  padding-bottom: 0;
}

.p-recruit-archive__wrap {
  margin-top: 3.75rem;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-archive__wrap {
    max-width: 100%;
    margin-top: 6.25rem;
  }
}

.p-recruit-archive__wrap-items {
  margin-top: 1.875rem;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-archive__wrap-items {
    margin-top: 3.125rem;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-recruit-archive__no-post {
  padding-left: 1.25rem;
  margin-left: 0.625rem;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit-archive__no-post {
    padding-left: 1.25rem;
    margin-left: 3.125rem;
  }
}

.p-recruit-archive__no-post::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}

.p-recruit {
  padding: 2.8125rem 0 5rem;
  background: rgba(255, 255, 255, .76);
}
@media screen and (min-width: 768px) {
  .p-recruit {
    padding: 6.25rem 0 7.3125rem;
  }
}

.p-recruit__wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-recruit__img {
  margin-top: 1.875rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__img {
    margin-top: 4.375rem;
  }
}

.p-recruit__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/240;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-recruit__img img {
    aspect-ratio: 1200/363;
  }
}

.p-recruit__catch-copy {
  position: absolute;
  top: 10%;
  left: 12%;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 2.5px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-recruit__catch-copy {
    top: 2%;
    left: 1.875rem;
    white-space: nowrap;
    font-size: 1.25rem;
    letter-spacing: 18px;
    line-height: 3;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__catch-copy {
    letter-spacing: 25px;
  }
}

.p-recruit__message {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__message {
    margin-top: 3.5rem;
    padding-left: 10.8125rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 2.5;
    letter-spacing: 0.25em;
  }
}

.p-recruit__message span {
  color: #096EA4;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-recruit__message span {
    color: #282828;
  }
}

.p-recruit__link {
  margin-top: 2rem;
  max-width: 62.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-recruit__link {
    margin-top: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-recruit__link a:hover {
  opacity: 0.7;
}

.p-recruit__btn {
  text-align: center;
  color: #fff;
  background: url(../img/recruit-btn.jpg) no-repeat center/cover;
  padding: 2.625rem 2.5rem;
  position: relative;
  line-height: 1;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 4.5px;
}
@media screen and (min-width: 768px) {
  .p-recruit__btn {
    width: 50%;
    font-size: 1.875rem;
    padding: 3.75rem 3.75rem;
    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;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit__btn {
    padding: 3.75rem 4.375rem;
  }
}

.p-recruit__btn span {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__btn span {
    font-size: 1.25rem;
  }
}

.p-recruit__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5625rem;
  height: 1.5625rem;
  background: url(../img/common/icon-recruit.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-recruit__btn::after {
    top: unset;
    width: 2.0625rem;
    height: 2.0625rem;
    bottom: -14%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-recruit__btn:nth-child(2) {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .08)), to(rgba(0, 0, 0, .08))), -webkit-gradient(linear, left top, right top, from(#306DCD), to(#87FBFB));
  background: linear-gradient(0deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .08) 100%), linear-gradient(90deg, #306DCD 0%, #87FBFB 100%);
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__btn:nth-child(2) {
    margin-top: 0;
  }
}

.p-recruit__btn2 {
  position: relative;
  text-align: left;
  line-height: 1.7;
  padding: 1.875rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__btn2 {
    padding: 3.75rem 3.75rem;
  }
}

.p-recruit__btn2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0.9375rem;
  width: 4.6875rem;
  height: 7.0625rem;
  background: url(../img/common/banner-img.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-recruit__btn2::before {
    right: 0.375rem;
    width: 8.4375rem;
    height: 12.625rem;
  }
}

.rehabilitation .c-head-title {
  font-size: 1.4375rem;
  letter-spacing: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .rehabilitation .c-head-title {
    font-size: 2.8125rem;
    letter-spacing: 4.5px;
    margin-left: unset;
    margin-right: unset;
  }
}

.rehabilitation .p-head2 {
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .rehabilitation .p-head2 {
    padding-bottom: 5rem;
  }
}

.p-rehabilitation__contents.c-contents {
  padding: 3.75rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__contents.c-contents {
    padding: 5rem 0 8.75rem;
  }
}

.p-rehabilitation__wrap {
  margin-top: 1.875rem;
  background: rgba(255, 255, 255, .8);
  border-radius: 6px;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__wrap {
    margin-top: 5rem;
    padding: 2.5rem 3.125rem;
  }
}

.p-rehabilitation__wrap-item {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #002E72;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__wrap-item {
    letter-spacing: 0.05em;
    font-size: 1rem;
  }
}

.p-rehabilitation__wrap-item::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  border-radius: 50%;
}

.p-rehabilitation__wrap-item:nth-child(n+2) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__wrap-item:nth-child(n+2) {
    margin-top: 1.125rem;
  }
}

.p-rehabilitation__images {
  overflow: hidden;
  margin-top: 2.5rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem;
    margin-left: unset;
    margin-right: unset;
  }
}

.p-rehabilitation__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll-left 20s linear infinite;
          animation: scroll-left 20s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__track {
    -webkit-animation: none;
            animation: none;
    display: contents;
  }
}

.p-rehabilitation__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__img {
    width: unset;
  }
}

.p-rehabilitation__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__img img {
    border-radius: 6px;
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-rehabilitation__consultation {
  background: #FBFEFF;
}

.p-rehabilitation__consultation.c-contents {
  padding: 3.125rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__consultation.c-contents {
    padding: 6.0625rem 0 7.75rem;
  }
}

.p-rehabilitation__consultation-items {
  margin-top: 1.875rem;
  display: grid;
  row-gap: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__consultation-items {
    margin-top: 3.125rem;
    max-width: 59.375rem;
    margin-inline: auto;
    grid-auto-flow: column;
    grid-auto-rows: auto;
    grid-template-rows: repeat(3, auto);
    row-gap: 0.9375rem;
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.p-rehabilitation__consultation-item {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  color: #096EA4;
  padding-left: 1.6875rem;
  position: relative;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__consultation-item {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    padding-left: 2.5rem;
  }
}

.p-rehabilitation__consultation-item::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  width: 0.9375rem;
  height: 1rem;
  background: url(../img/common/icon-list.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__consultation-item::before {
    width: 1.5625rem;
    height: 1.75rem;
  }
}

.p-rehabilitation__detail {
  background: #EBFAFF;
  padding: 3.125rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail {
    padding: 6.25rem 0 8.75rem;
  }
}

.p-rehabilitation__detail-read {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-read {
    margin-top: 3.125rem;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-rehabilitation__detail-container {
  margin-top: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-container {
    margin-top: 2.8125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-body {
    width: 59.1%;
  }
}

.p-rehabilitation__detail-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-title {
    text-align: left;
  }
}

.p-rehabilitation__detail-title span {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-left: 2.3125rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-title span {
    font-size: 1.5rem;
    padding-left: 3.375rem;
    text-align: left;
  }
}

.p-rehabilitation__detail-title span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icon-department.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-title span::before {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.p-rehabilitation__detail-table {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-table {
    margin-top: 0;
  }
}

.p-rehabilitation__detail-table dl {
  display: grid;
  grid-template-columns: 3rem 1fr;
  padding: 1.4375rem 0.3125rem;
  border-bottom: 1px solid #0BACE3;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-table dl {
    grid-template-columns: 6.5625rem 1fr;
    padding: 1.6875rem 1.25rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-rehabilitation__detail-table dh {
  color: #002E72;
}

.p-rehabilitation__detail-body-text {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  letter-spacing: 0.03em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-body-text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.2142857143;
    letter-spacing: 0.05em;
  }
}

.p-rehabilitation__detail-img {
  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.5625rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-img {
    margin-top: 1.25rem;
    gap: 1.875rem;
    width: 35%;
  }
}

.p-rehabilitation__detail-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 325/180;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__detail-img img {
    aspect-ratio: 350/230;
  }
}

.p-rehabilitation__day {
  background: #FBFEFF;
  padding: 3.125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day {
    padding: 6.25rem 0 10rem;
  }
}

.p-rehabilitation__day .c-contents__contents {
  margin-top: 2.5rem;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day .c-contents__contents {
    margin-top: 3.75rem;
    gap: 1.25rem;
  }
}

.p-rehabilitation__day .c-contents__wrap {
  -webkit-box-shadow: 0px 0px 10px rgba(9, 110, 164, .1);
          box-shadow: 0px 0px 10px rgba(9, 110, 164, .1);
  border-radius: 6px;
  padding: 4.75rem 1.25rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day .c-contents__wrap {
    padding: 5rem 3.75rem 2.1875rem;
  }
}

.p-rehabilitation__day .c-contents__wrap-text span {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day .c-contents__wrap-text span {
    font-size: 1.125rem;
  }
}

.p-rehabilitation__day .c-contents__wrap-text span.small {
  font-size: 0.875rem;
  font-weight: 500;
}

.p-rehabilitation__day .c-contents__wrap p span.red {
  font-size: 0.875rem;
  font-weight: 700;
}

.p-rehabilitation__day .c-contents__wrap2 span {
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day .c-contents__wrap2 span {
    font-size: 1rem;
  }
}

.p-rehabilitation__day-time {
  margin-top: 1.25rem;
  -webkit-box-shadow: 0px 0px 10px rgba(9, 110, 164, .1);
          box-shadow: 0px 0px 10px rgba(9, 110, 164, .1);
  border-radius: 6px;
  padding: 1.875rem 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-time {
    margin-top: 2.5rem;
    padding: 2.625rem 6.125rem;
  }
}

.p-rehabilitation__day-title {
  display: inline-block;
  position: relative;
  padding-left: 2rem;
  color: #002E72;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-title {
    padding-left: 3.375rem;
    font-size: 1.5rem;
  }
}

.p-rehabilitation__day-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icon-time.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-title::before {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.p-rehabilitation__day-wrap {
  margin-top: 0.9375rem;
  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) {
  .p-rehabilitation__day-wrap {
    gap: 2.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-rehabilitation__day-wrap .c-contents__time {
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-wrap .c-contents__time {
    gap: 1rem;
  }
}

.p-rehabilitation__day-wrap .c-contents__time-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  padding: 0.0625rem 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-wrap .c-contents__time-title {
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 0.0625rem 1.0625rem;
  }
}

.p-rehabilitation__day-wrap .c-contents__time-text {
  letter-spacing: 0.03em;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-wrap .c-contents__time-text {
    letter-spacing: 0.05em;
    font-size: 1.125rem;
  }
}

.p-rehabilitation__table {
  width: 100%;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table {
    margin-top: 1.25rem;
  }
}

.p-rehabilitation__table tr {
  display: grid;
  grid-template-columns: 5rem repeat(7, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(9, 110, 164, .5);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table tr {
    grid-template-columns: 8.75rem repeat(7, 1fr);
  }
}

.p-rehabilitation__table tr:first-child th {
  color: #096EA4;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table tr:first-child th {
    padding: 0.9375rem;
    font-size: 1.125rem;
  }
}

.p-rehabilitation__table th {
  padding: 0.625rem;
  text-align: left;
  font-size: 0.8125rem;
  padding: 0.6875rem 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table th {
    padding: 0.625rem 0 0.625rem 2.5rem;
    font-size: 1rem;
  }
}

.p-rehabilitation__table td {
  padding: 0.625rem 0.3125rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table td {
    padding: 0.9375rem;
    font-size: 1.125rem;
  }
}

.p-rehabilitation__day-container {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-container {
    margin-top: 3.75rem;
  }
}

.p-rehabilitation__subtitle .c-title4 {
  font-size: 1.125rem;
  text-align: center;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__subtitle .c-title4 {
    text-align: left;
    font-size: 1.25rem;
    padding-left: 2.1875rem;
  }
}

.p-rehabilitation__subtitle .c-title4::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__subtitle .c-title4::before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url(../img/common/icon-memo.svg) no-repeat center/contain;
    width: 1.875rem;
    height: 2rem;
  }
}

.p-rehabilitation__day-item {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-item {
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 1.875rem;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-rehabilitation__day-item span {
  font-weight: 700;
}

.p-rehabilitation__day-subtext {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__day-subtext {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-rehabilitation__day-subtext a {
  color: #0BACE3;
  text-decoration: underline;
}

.p-rehabilitation__link {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__link {
    margin-top: 4.6875rem;
    gap: 1.625rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-rehabilitation__link .c-btn {
  min-width: unset;
  min-height: 3.125rem;
  max-height: 3.125rem;
  font-size: 0.8125rem;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__link .c-btn {
    min-width: 14.375rem;
    max-width: 14.375rem;
    font-size: 1rem;
    padding: 0.8125rem 1.875rem;
  }
}

.p-rehabilitation__link .c-btn::after {
  right: 1rem;
}

.p-single-recruit {
  background: #EBFAFF;
}

.single-recruit .p-head {
  padding: 1.25rem 0 3.125rem;
}
@media screen and (min-width: 768px) {
  .single-recruit .p-head {
    padding: 1.25rem 0 4.125rem;
  }
}

.p-single-recruit__entry {
  padding-top: 6.25rem;
  padding-bottom: 5rem;
  background: #EBFAFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.p-single-recruit__title {
  text-align: center;
}

.p-single-recruit__table {
  margin-top: 3.75rem;
}

.p-single-recruit__table table {
  width: 100%;
  border-collapse: collapse;
}

.p-single-recruit__table tr {
  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) {
  .p-single-recruit__table tr {
    display: table-row;
  }
}

.p-single-recruit__table th {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.03em;
  border: 1px solid rgba(9, 110, 164, .2);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__table th {
    width: 24%;
    padding: 0.6875rem 2.5rem;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.p-single-recruit__table td {
  background: #fff;
  padding: 1.25rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  border: 1px solid rgba(9, 110, 164, .2);
}
@media screen and (min-width: 768px) {
  .p-single-recruit__table td {
    padding: 0.6875rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-single-recruit__table td span {
  font-size: 0.8125rem;
}

.p-single-recruit__table td.blue {
  border-bottom: none;
  padding-bottom: 0.625rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__table td.blue {
    border: 1px solid rgba(9, 110, 164, .2);
    padding: 0.6875rem 1.25rem 0.6875rem 1.25rem;
  }
}

.p-single-recruit__table td.red {
  border-bottom: none;
  padding-bottom: 0.625rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__table td.red {
    border: 1px solid rgba(9, 110, 164, .2);
    padding: 0.6875rem 1.25rem 0.6875rem 1.25rem;
  }
}

.p-single-recruit__table td.blue span {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}

.p-single-recruit__table td.red span {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #F7695E), to(#FD8D85));
  background: linear-gradient(90deg, #F7695E 11.23%, #FD8D85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}

.p-single-recruit__table td.bb-none {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__table td.bb-none {
    padding-bottom: 0.625rem;
    border: 1px solid rgba(9, 110, 164, .2);
  }
}

.p-single-recruit__table td.bt-none {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__table td.bt-none {
    border: 1px solid rgba(9, 110, 164, .2);
  }
}

.p-single-recruit__contents {
  margin-top: 2.5rem;
  background: #FBFEFF;
  padding: 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__contents {
    margin-top: 3.75rem;
    padding: 1.875rem 0;
  }
}

.p-single-recruit__read {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-single-recruit__read span.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__read span.pc-only {
    display: inline;
  }
}

.p-single-recruit__tel {
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__tel {
    margin-top: 0.1875rem;
  }
}

.p-single-recruit__tel a {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  padding-left: 3.125rem;
}

.p-single-recruit__tel a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.375rem;
  height: 2.375rem;
  background: url(../img/recruit/icon-tel.svg) no-repeat center/contain;
}

.p-single-recruit__entry-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-single-recruit__contents-text {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__contents-text {
    margin-top: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-single-recruit__contents-text span {
  font-weight: 700;
}

.p-single-recruit__entry-form {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry-form {
    margin-top: 5rem;
  }
}

.p-single-recruit__btn {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__btn {
    margin-top: 6.25rem;
  }
}

.p-single-recruit__btn .c-btn {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
}
@media screen and (min-width: 768px) {
  .p-single-recruit__btn .c-btn {
    min-width: 20.625rem;
  }
}

.p-special {
  background: url(../img/special-bg.jpg) no-repeat center/cover;
  position: relative;
}

.p-special__cards {
  margin-top: 2.5rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5625rem;
  overflow: hidden;
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-special__cards {
    margin-top: 3.75rem;
    margin-right: unset;
    margin-left: unset;
    padding-bottom: 0;
    padding-left: 0;
    overflow-x: hidden;
  }
}

.p-special__cards .swiper-wrapper {
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-special__cards .swiper-wrapper {
    display: contents;
  }
}

.p-special__cards .swiper-slide {
  max-width: 17.1875rem;
}

.p-special__cards .swiper-pagination {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-special__cards .swiper-pagination {
    display: none;
  }
}

.p-special__cards .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 0.5px solid #096EA4;
  opacity: 1;
}

.p-special__cards .swiper-pagination-bullet-active {
  background: -webkit-gradient(linear, left top, right top, color-stop(11.23%, #0BACE3), to(#00C6D3));
  background: linear-gradient(90deg, #0BACE3 11.23%, #00C6D3 100%);
}

.p-special__btn {
  margin-top: 3.125rem;
  text-align: center;
}

.p-thanks {
  padding: 0 0 3.75rem;
  background: #EBFAFF;
}
@media screen and (min-width: 768px) {
  .p-thanks {
    padding: 0 0 7.5rem;
  }
}

.contact-thanks .c-head-title {
  font-size: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks .c-head-title {
    font-size: 2.8125rem;
  }
}

.p-thanks__inner {
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-thanks__read {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-thanks__read {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-thanks__text {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    margin-top: 2.5rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.red {
  color: #f44435;
}

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

.u-mt80-40 {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .u-mt80-40 {
    margin-top: 5rem;
  }
}

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

.u-mt90-70 {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .u-mt90-70 {
    margin-top: 5.625rem;
  }
}

.u-mt50-30 {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .u-mt50-30 {
    margin-top: 3.125rem;
  }
}

.u-mt60-40 {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .u-mt60-40 {
    margin-top: 3.75rem;
  }
}

.u-mt60-30 {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .u-mt60-30 {
    margin-top: 3.75rem;
  }
}

.u-mt20-15 {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .u-mt20-15 {
    margin-top: 1.25rem;
  }
}

.u-mt20-10 {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .u-mt20-10 {
    margin-top: 1.25rem;
  }
}

.u-mt15-7 {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .u-mt15-7 {
    margin-top: 0.9375rem;
  }
}

.u-mt0 {
  margin-top: 0;
}

.u-mt10 {
  margin-top: 0.625rem;
}

.u-mt15 {
  margin-top: 0.9375rem;
}

.u-mt20 {
  margin-top: 1.25rem;
}

.u-mt30 {
  margin-top: 1.875rem;
}

.u-mt50 {
  margin-top: 3.125rem;
}

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

@media screen and (min-width: 768px) {
  .u-pb65 {
    padding-bottom: 4.0625rem;
  }
}

.u-pt0 {
  padding-top: 0;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}
/*# sourceMappingURL=styles.css.map */
