@charset "UTF-8";
/* 全要素の余白をゼロにする */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* リストのマーク（・）を消す */
ul,
ol {
  list-style: none;
}

/* 見出しの文字サイズや太さをリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リンクの下線をなくす（あとでbaseで調整） */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像の下の隙間をなくす */
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* フォームの見た目を基本に戻す */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* ボタンのカーソルをポインターに */
button {
  cursor: pointer;
}

/* tableのセル間余白をなくす */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: clamp(14px, 1.4vw, 16px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #181818;
  background-color: #fffcf7;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: "Noto Sans", sans-serif;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*------------------------
title
--------------------------*/
.midashi__l {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .midashi__l {
    font-size: 2rem;
  }
}
.midashi__l--left {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .midashi__l--left {
    font-size: 2rem;
  }
}
.midashi__l--white {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.midashi__m {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
.midashi__s {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
.midashi__lead {
  text-align: center;
  margin-top: 24px;
}

/*------------------------
mv
// --------------------------*/
header {
  width: 100%;
  height: 90vh;
}
@media (min-width: 1024px) {
  header {
    height: 100vh;
  }
}

.logo {
  max-width: 260px;
  margin: 0 auto;
  width: 40%;
}
.logo__wrap {
  background-color: #fff;
  padding: 4px 0;
}

.mv {
  background-image: url(../assets/img/mv_sp.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .mv {
    background-image: url(../assets/img/mv_pc.jpg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    height: 90vh;
  }
}
.mv__txt {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 24px 0;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .mv__txt {
    width: 60%;
    margin: 0 auto 0 0;
    padding: 5% 0;
  }
}
.mv__title {
  margin-top: 100px;
}
.mv__title p {
  background-color: #fff;
  padding: 4px 8px;
  display: inline-block;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .mv__title p {
    font-size: 2.4rem;
  }
}
.mv__title p span {
  color: #f38049;
}
.mv__points {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media (min-width: 1024px) {
  .mv__points {
    gap: 16px;
    position: static;
    transform: none;
    max-width: 480px;
  }
}
.mv__point {
  color: #fff;
  display: flex;
  background-color: rgba(253, 222, 82, 0.9);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  width: 110px;
  height: 110px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .mv__point {
    width: 140px;
    height: 140px;
  }
}
.mv__point img {
  width: 32px;
  height: auto;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .mv__point img {
    width: 40px;
  }
}
.mv__point p {
  font-size: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .mv__point p {
    font-size: 1.125rem;
  }
}
.mv .mv__btn {
  width: 90%;
  padding: 16px 0;
  background-color: #f38049;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  border-radius: 50px;
  flex-direction: row;
  color: #fff;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.mv .mv__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .mv .mv__btn {
    max-width: 480px;
    width: 100%;
    margin: 40px auto 0 0;
  }
}
.mv .mv__btn p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
.mv .mv__btn img {
  width: 24px;
  margin-left: 8px;
}
@media (min-width: 768px) {
  .mv .mv__btn img {
    width: 32px;
  }
}

/*------------------------
lead area
--------------------------*/
.lead {
  text-align: center;
  font-weight: 700;
}
.lead p + p {
  margin-top: 16px;
}
.lead__img {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.lead__img img {
  width: 48%;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .lead__img img {
    width: 32%;
  }
}

/*------------------------
point
--------------------------*/
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.features__item {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 20% 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 8px 20px;
}
@media (min-width: 768px) {
  .features__item {
    grid-template-rows: auto 1fr;
  }
}
.features__icon {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .features__icon {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.features__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f38049;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .features__title {
    grid-column: 2/3;
    grid-row: 1/2;
    font-size: 1.25rem;
  }
}
.features__text {
  font-size: 0.875rem;
  color: #181818;
  grid-column: 1/4;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .features__text {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .points {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.point__icon {
  width: 32px;
  height: auto;
  display: block;
}
.point__txt {
  font-size: 0.875rem;
  color: #181818;
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
}
@media (min-width: 768px) {
  .point__txt {
    font-size: 1rem;
  }
}

/*------------------------
achievements
--------------------------*/
.achievements {
  background-color: #fff;
  border-radius: 15px;
}
.achievements__inner {
  width: 80%;
  margin: 20px auto;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .achievements__inner {
    width: 80%;
    padding: 40px 0 20px;
  }
}

/*------------------------
slider
--------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 100s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 33.3333333333vw;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .scroll-infinity__item {
    width: 20vw;
  }
}

.scroll-infinity__item > img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.scroll-infinity__item:last-child {
  margin-right: 0;
}

/*------------------------
hospital
--------------------------*/
.hospital {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hospital {
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
  }
}
.hospital__info {
  width: 100%;
  z-index: 10;
  position: relative;
}
@media (min-width: 768px) {
  .hospital__info {
    width: 50%;
  }
}
.hospital__map {
  width: 100%;
  margin-top: -10px;
  z-index: 5;
  position: relative;
}
@media (min-width: 768px) {
  .hospital__map {
    margin-left: -20%;
    width: 70%;
  }
}

/*------------------------
voice
--------------------------*/
.voice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 40px auto 0;
}
@media (min-width: 1024px) {
  .voice {
    grid-template-columns: repeat(3, 1fr);
  }
}
.voice__box {
  display: grid;
  grid-template-columns: 16% 1fr;
  grid-template-rows: auto auto;
  gap: 8px 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  align-items: center;
}
@media (min-width: 576px) {
  .voice__box {
    padding: 20px 16px;
    grid-template-columns: 24% 1fr;
  }
}
.voice__icon {
  grid-column: 1;
  width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}
.voice__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.voice__info {
  grid-column: 2;
  grid-row: 1;
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}
.voice__info span {
  font-size: 0.75rem;
}
.voice__message {
  grid-column: 1/-1;
  grid-row: 2;
  font-size: 0.875rem;
  align-self: flex-start;
}

/*------------------------
sns
--------------------------*/
.sns {
  text-align: center;
}
.sns__info li {
  display: inline-block;
}

/*------------------------
foote
--------------------------*/
.footer {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
}
@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    max-width: 800px;
  }
}
.footer__wrap {
  background-color: #fff;
}
.footer__logo {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 30%;
  }
}
.footer__txt {
  font-size: 0.75rem;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .footer__txt {
    margin-top: 0;
    width: 65%;
  }
}

.copy {
  background-color: #c3d3e5;
  padding: 4px 0;
  font-size: 0.75rem;
  text-align: center;
}

/*------------------------
表示切り替え（PC / SP）
--------------------------*/
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 575px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.fadein {
  transition: 1s;
  opacity: 0;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--up.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--down.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--left.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--right.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*--------------
mv fadein
----------------*/
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-0 {
  transition-delay: 0.2s;
}

.delay-1 {
  transition-delay: 0.4s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.container__full {
  width: 100%;
  margin: 0 auto;
}
.container__l {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.container__m {
  max-width: 800px;
  width: 70%;
  margin: 0 auto;
}

.bg--blue {
  background-color: #c3d3e5;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .bg--blue {
    padding: 80px 0;
  }
}

.bg--blue--sns {
  background-color: #c3d3e5;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .bg--blue--sns {
    padding: 40px 0;
  }
}

.garally {
  margin: 80px auto 0;
  width: 100%;
}

.mt--ss {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .mt--ss {
    margin-top: 16px;
  }
}

.mt--s {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .mt--s {
    margin-top: 40px;
  }
}

.mt--m {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mt--m {
    margin-top: 80px;
  }
}

.mt--l {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .mt--l {
    margin-top: 120px;
  }
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

.cta-button {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 999px;
  background-color: #f38049;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  transform: translateY(0);
  min-width: 350px;
}
.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.cta-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.cta-button__icon img {
  width: 1.6em;
  height: auto;
}
.cta-button__text {
  white-space: nowrap;
}

/* btn--blackのスタイル */
.btn--black,
a.btn--black {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 4rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  border-radius: 100vh;
  transition: opacity 0.3s;
}

.btn--black:hover,
a.btn--black:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */