@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* 基本のフォントサイズを14px~20pxに設定 */
  font-size: clamp(1.6rem, 1.1vw, 2rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #787878;
  text-align: justify;
  line-height: 1.7;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  overflow-x: hidden;
  /* 印刷禁止 */
}

.drawer--open {
  overflow: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 959px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .br-sp {
    display: block;
  }
}

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 519px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

.l-inner {
  margin: 0 auto;
  max-width: 165rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1690px) {
  .l-inner {
    padding: 0 2rem;
  }
}

.l-inner--1600 {
  max-width: 1600px;
}

.l-inner--1500 {
  max-width: 1500px;
}

.l-inner--1000 {
  max-width: 1000px;
}

.l-inner--988 {
  max-width: 988px;
}

.l-main {
  margin-top: min(14.3rem, 8.5vw);
}

/* component
------------------------------------------------ */
.c-header {
  padding: min(2rem, 1vw) min(3rem, 1.5vw);
  width: 100%;
  background-color: #fff;
}

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

.c-header__logo {
  width: min(24.7rem, 14%);
}

.c-header__global-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-right: min(2.3rem, 1.1vw);
  font-size: 0.8em;
  line-height: 1;
}
.c-header__btn img {
  width: min(2.1rem, 1.1vw);
}

.c-header__btn--access img {
  width: min(1.8rem, 1vw);
}

.c-header__btn--search img {
  width: min(1.9rem, 1vw);
}

.c-header__tel {
  margin-right: min(3rem, 1.5vw);
  width: min(28.2rem, 15vw);
}

.c-header__emergency {
  width: min(28.1rem, 15vw);
}

.c-header__global-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
  font-size: 0.9em;
}

.c-header__menu {
  padding: 1rem min(3.35rem, 1.8vw);
  border-right: solid 1.5px #66c7ff;
}
.c-header__menu:last-child {
  border-right: none;
}

.c-section {
  position: relative;
  background-color: #fff;
  border-top: solid 2px #66c7ff;
}

.c-section--blue {
  background-color: rgba(102, 199, 255, 0.38);
}

.c-section--skyblue {
  background-color: rgba(230, 255, 255, 0.56);
}

.c-section__head {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 1rem 6rem;
  width: 32%;
  height: 9.4rem;
  text-align: right;
  -ms-flex-line-pack: center;
      align-content: center;
  color: white;
  font-size: 1.5em;
  font-weight: 600;
  background-color: #66c7ff;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
}
.c-section__head::before {
  content: "";
  display: inline-block;
  margin-right: 2.4rem;
  aspect-ratio: 1;
  width: min(3.9rem, 2vw);
  height: auto;
  vertical-align: sub;
  background-image: url(../images/common/icon_bell.png);
  background-size: contain;
}

.c-section__head--patient::before {
  aspect-ratio: 48/51;
  width: min(4.8rem, 2.5vw);
  background-image: url(../images/common/icon_human.png);
}

.c-section__head--patient::before {
  aspect-ratio: 42/38;
  width: min(4.2rem, 2.2vw);
  background-image: url(../images/common/icon_heart.png);
}

.c-section__head--calendar::before {
  aspect-ratio: 1;
  width: min(4.4rem, 2.3vw);
  background-image: url(../images/common/icon_calendar.png);
}

.c-section__head--pin::before {
  aspect-ratio: 28/45;
  width: min(2.8rem, 1.4vw);
  background-image: url(../images/common/icon_pin_02.png);
}

.c-btn {
  display: block;
  position: relative;
  margin: 3rem 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #0096e6;
}
.c-btn::before {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 0.09rem;
  background-color: #66c7ff;
}
.c-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 55%;
  right: -0.8rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  aspect-ratio: 1;
  width: min(2.3rem, 1.15vw);
  height: auto;
  background-image: url(../images/common/icon_arrow_right_01.png);
  background-size: contain;
}

.c-footer {
  position: relative;
  padding: min(10rem, 5.2vw) 0;
  background-color: #fff;
  border-top: solid 1rem rgba(102, 199, 255, 0.5019607843);
}

.c-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(10rem, 5.2vw);
  margin: 0 auto;
  max-width: 159rem;
}

.c-footer__logo {
  width: min(40rem, 20.8vw);
}

.c-footer__credit {
  padding: min(3rem, 1.56vw) 0 0 min(8.5rem, 4.4vw);
  font-size: 0.8em;
}

.c-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem min(9rem, 4.7vw);
  max-height: min(22rem, 15vw);
  font-size: 0.95em;
}

.c-footer__menu {
  -ms-flex-line-pack: center;
      align-content: center;
}
.c-footer__menu::before {
  content: "";
  display: inline-block;
  margin-right: 1.5rem;
  aspect-ratio: 1;
  width: min(2.3rem, 1.15vw);
  height: auto;
  vertical-align: sub;
  background-image: url(../images/common/icon_arrow_right_01.png);
  background-size: contain;
}

.c-footer__sns {
  text-align: center;
  font-size: 0.8em;
}

.c-footer__sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  margin-top: 2rem;
}
.c-footer__sns-wrap a {
  width: 3.5rem;
}

.c-footer__copyright {
  margin-top: 2rem;
  font-size: 1rem;
}

.c-footer__pagetop {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 1;
  width: min(10.7rem, 5.5vw);
  min-width: 6.5rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-weight: 500;
  color: white;
  line-height: 1.4;
  background-color: #66c7ff;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.c-footer__pagetop img {
  display: block;
  margin: 0 auto 0.5rem;
  width: 2.3rem;
}

/* project
------------------------------------------------ */
.p-top-mv {
  padding-bottom: min(15rem, 7.8vw);
  width: 100%;
  background-color: rgba(230, 255, 255, 0.56);
}

.p-top-mv__container {
  position: relative;
}
.p-top-mv__container::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 92%;
  height: 100%;
  background-color: #66c7ff;
  border-bottom-left-radius: 10rem;
}

.p-top-mv__copy {
  position: absolute;
  z-index: 3;
  top: 5.2rem;
  left: 50%;
  -webkit-transform: translate(-29%, 0%);
          transform: translate(-29%, 0%);
  font-size: 1.725em;
  font-weight: 400;
  color: #00205c;
  letter-spacing: 1.5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-top-mv__copy span {
  display: block;
  padding: min(3.5rem, 1.8vw) min(1.8rem, 1vw);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: min(3rem, 1.7vw);
}
.p-top-mv__copy span:nth-child(2) {
  -webkit-transform: translate(19%, 31%);
          transform: translate(19%, 31%);
}

.p-top-mv__btns {
  position: fixed;
  z-index: 2;
  bottom: 14rem;
  right: 0;
}
.p-top-mv__btns a {
  display: block;
  aspect-ratio: 1;
  width: min(10.7rem, 5.5vw);
  min-width: 6.5rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 0.95em;
  color: white;
  line-height: 1.4;
  background-color: #0096e6;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.p-top-mv__btns a:nth-child(2) {
  color: #0096e6;
  background-color: #fff;
}

.p-top-mv__slides {
  margin-right: min(6rem, 3.1vw);
  margin-bottom: 0 !important;
  background-color: #fff;
  border-bottom-left-radius: 10rem;
  border-bottom-right-radius: 10rem;
  overflow: hidden;
}
.p-top-mv__slides img {
  width: 100%;
  min-height: min(70rem, 48vw);
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-mv__slides .slick-dots {
  bottom: 3.5rem;
}
.p-top-mv__slides .slick-dots li {
  margin: 0 1.5rem;
  aspect-ratio: 1;
  width: 1.5rem;
  height: auto;
  border-radius: 50%;
  background-color: #fff;
}
.p-top-mv__slides .slick-dots li button {
  padding: 0;
  width: 100%;
  height: 100%;
}
.p-top-mv__slides .slick-dots li button::before {
  display: none;
}
.p-top-mv__slides .slick-dots li.slick-active {
  background-color: #66c7ff;
}

.p-top-mv__info {
  position: relative;
  z-index: 1;
  padding: 1.1rem 0 0.5rem;
  font-size: 0.9em;
  font-weight: 300;
  color: white;
  text-align: center;
  line-height: 2;
}
.p-top-mv__info em {
  position: relative;
  font-style: normal;
}
.p-top-mv__info em::before {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 100%;
  height: 0.09rem;
  background-color: #fff;
}
.p-top-mv__info small {
  display: block;
  font-size: 0.9em;
}

.p-top-mv__sepa {
  display: inline-block;
  margin: 0 min(2.5rem, 1.3vw);
  width: 0.08rem;
  height: min(3.2rem, 1.6vw);
  vertical-align: bottom;
  background-color: #fff;
}

.p-top-mv__emergency {
  display: block;
  margin: min(9rem, 4.7vw) auto 0;
  width: min(49.2rem, 25.6vw);
}

.p-top-mv__important {
  display: block;
  margin: min(11rem, 6.25vw) auto 0;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2rem;
}
.p-top-mv__important h2 {
  position: relative;
  margin: 0 auto 0.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ea5300;
  font-size: 1.5em;
  letter-spacing: 0.1rem;
}
.p-top-mv__important h2 img {
  position: absolute;
  top: 50%;
  left: -1rem;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: min(3.4rem, 1.77vw);
}
.p-top-mv__important a {
  position: relative;
}
.p-top-mv__important a::before {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 0.09rem;
  background-color: #787878;
}
.p-top-mv__important a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 55%;
  right: -0.8rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  aspect-ratio: 1;
  width: min(2.2rem, 1.1vw);
  height: auto;
  background-image: url(../images/common/icon_arrow_right_01.png);
  background-size: contain;
}

.p-top-info {
  padding: min(13.4rem, 7vw) 0 min(12.5rem, 6.5vw);
}

/* ---------- Tabs ---------- */
.p-top-info__cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e9e9e9;
  border-radius: min(3rem, 1.5vw);
}

.p-top-info__cats > button {
  position: relative;
  padding: 1rem;
  height: 6.5rem;
  color: #6b6b6b;
  font-size: 1.1em;
  cursor: pointer;
}

/* 仕切り線 */
.p-top-info__cats > button + button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.18);
}

/* アクティブ */
.p-top-info__cats > button.is-active {
  color: #3f3f3f;
  font-weight: 600;
}

/* ---------- List ---------- */
.p-top-info__articles {
  /* JSで切り替える想定（必要なら） */
  display: none;
  list-style: none;
  margin-top: min(8.5rem, 4.4vw);
  padding: 0 3.5rem;
}

.p-top-info__articles--active {
  display: block;
}

.p-top-info__article {
  margin-top: 2.1rem;
}
.p-top-info__article article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(3rem, 1.5vw);
}

/* date */
.p-top-info__time {
  color: #787878;
}

/* category badge */
.p-top-info__cat {
  width: 24%;
  height: 3.3rem;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #787878;
  font-size: 0.85em;
  text-align: center;
  border-radius: 1rem;
  background: #ddf1fc; /* お知らせ（薄い水色） */
}

.p-top-info__cat--people {
  background: #fce8f0; /* 医療関係者（薄いピンク） */
}

.p-top-info__cat--recruit {
  background: #e0f0e8; /* 採用（薄いグリーン） */
}

/* title */
.p-top-info__title {
  width: 59%;
  font-size: 1em;
  color: #787878;
  font-weight: 500;
}

.p-top-patient {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9.6rem 4.6rem;
  padding: min(20rem, 10.4vw) 0;
}

.p-top-patient__card {
  position: relative;
  padding: 2.5rem 2.5rem 4rem;
  width: calc(25% - 3.45rem);
  text-align: center;
  background-color: #fff;
  border-radius: 5rem;
}
.p-top-patient__card::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  aspect-ratio: 1;
  width: 2.2rem;
  height: auto;
  background-image: url(../images/common/icon_arrow_right_01.png);
  background-size: contain;
}

.p-top-patient__img {
  width: 100%;
}

.p-top-patient__title {
  margin-top: 1.5rem;
  font-size: 1.3em;
  color: #0096e6;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.5;
}

.p-top-patient__info {
  margin-top: 0.3rem;
  font-size: 0.9em;
  font-weight: 500;
}

.p-top-pickup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: min(22rem, 11.4vw) 0 min(28rem, 14.6vw);
}

.p-top-pickup__card {
  position: relative;
  width: 32.1%;
  text-align: center;
}
.p-top-pickup__card:nth-child(2) {
  width: 35.8%;
}

.p-top-pickup__image {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
}
.p-top-pickup__image::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 199, 255, 0.2);
  border-radius: 3rem;
}

.p-top-pickup__img {
  width: 100%;
}

.p-top-pickup__btn {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -7.1rem);
          transform: translate(-50%, -7.1rem);
  padding-bottom: 2rem;
  width: 56%;
  text-align: center;
  border-radius: 1rem;
  background-color: #fff;
  border-bottom: solid 0.8rem rgba(120, 120, 120, 0.6862745098);
}
.p-top-pickup__btn h3 {
  padding: 1rem;
  margin-bottom: 1.3rem;
  height: 7rem;
  font-size: 1.3em;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #0096e6;
  font-weight: 500;
  border-bottom: solid 1px #0096e6;
}

.p-top-sche {
  padding: min(10.7rem, 5.5vw) 0 min(15rem, 7.8vw);
}

.p-top-sche__container {
  padding: min(7.6rem, 3.9vw) min(9.5rem, 4.9vw);
  background-color: #fff;
}

.p-top-sche__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 4.3rem;
  list-style: none;
}

.p-top-sche__list {
  position: relative;
  width: calc(25% - 3.225rem);
  color: #0096e6;
  background-color: rgba(102, 199, 255, 0.38);
}
.p-top-sche__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 1rem 1.2rem 1.3rem;
  line-height: 1.3;
}
.p-top-sche__list a::before {
  content: "";
  display: inline-block;
  margin-right: 0.7rem;
  aspect-ratio: 1;
  width: min(2.3rem, 1.15vw);
  height: auto;
  background-image: url(../images/common/icon_arrow_right_01.png);
  background-size: contain;
}
.p-top-sche__list img {
  display: block;
  margin: 0 0 0 auto;
  width: 25%;
}

.p-top-sche__info {
  display: block;
  margin: min(5rem, 2.6vw) auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-sche__time,
.p-top-sche__horiday {
  position: relative;
  padding-left: 2.5rem;
}
.p-top-sche__time::before,
.p-top-sche__horiday::before {
  content: "●";
  position: absolute;
  left: 0;
}
.p-top-sche__time a,
.p-top-sche__horiday a {
  position: relative;
  margin-left: 1rem;
  padding: 0 3.5rem;
  color: white;
  background-color: #66c7ff;
  border-radius: 2rem;
  line-height: 1.5;
}
.p-top-sche__time a::after,
.p-top-sche__horiday a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  aspect-ratio: 1;
  width: min(2.3rem, 1.15vw);
  height: auto;
  background-image: url(../images/common/icon_arrow_right_01.png);
  background-size: contain;
}

.p-top-sche__horiday,
.p-top-sche__caution {
  margin-top: 1rem;
}

.p-top-sche__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(13rem, 6.8vw);
  margin-top: min(8.1rem, 4.2vw);
}

.p-top-sche__line,
.p-top-sche__facebook {
  aspect-ratio: 425/145;
  width: min(42.5rem, 22.1vw);
  min-width: 26rem;
  color: white;
  font-size: 1.5em;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: 2rem;
  background-color: #06c755;
}

.p-top-sche__facebook {
  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;
  background-color: #0866ff;
}
.p-top-sche__facebook img {
  margin-right: 1.2rem;
  width: min(3.3rem, 1.7vw);
  min-width: 2.5rem;
}

.p-top-access {
  padding: min(21.8rem, 11.3vw) 0 min(10.7rem, 5.6vw);
}

.p-top-access__map iframe {
  aspect-ratio: 1000/531;
  width: 100%;
  height: auto;
}

.p-top-access__btn::after {
  background-image: url(../images/common/icon_arrow_right_02.png);
}

/* utility
------------------------------------------------ */
/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */