@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

/* Layout */
.l-body {
  display: grid;
  grid-template-rows: 9.4rem 1fr auto;
  min-height: 100vh;
}
@media screen and (min-width: 960px) {
  .l-body {
    grid-template-rows: auto 1fr auto;
  }
}

.l-header {
  position: fixed;
  z-index: 1;
  grid-row: 1;
}
@media screen and (min-width: 960px) {
  .l-header {
    position: relative;
    width: 100vw;
  }
}

.l-main {
  grid-row: 2;
}
@media screen and (min-width: 960px) {
  .l-main {
    width: 100%;
    max-width: 96rem;
    justify-self: center;
  }
}

.l-footer {
  grid-row: 3;
}
@media screen and (min-width: 960px) {
  .l-footer {
    width: 100vw;
  }
}

/* リスト */
.p-list-disc {
  position: relative;
  padding-left: 1.6rem;
}
.p-list-disc:before {
  content: "";
  position: absolute;
  display: inline-block;
  background: #333;
  top: calc(0.75em + 0.25rem);
  left: 0.4rem;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.p-dl-list > dd + dt {
  margin-top: 1.6rem;
}

.p-dl-list__heading {
  font-weight: bold;
}

/* アコーディオン */
.p-accordion + * {
  border-top: 1px solid #ccc;
}

.p-accordion__header {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding: 1.5rem 3.6rem 1.5rem 0;
  cursor: pointer;
}
.p-accordion__header::-webkit-details-marker {
  display: none;
}

.p-accordion__mark {
  color: #4fc3f7;
  font-weight: bold;
}

.p-accordion__icon {
  position: absolute;
  right: 0;
}
.p-accordion__icon::before, .p-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-radius: 1px;
  height: 0.2rem;
  width: 1.4rem;
  background-color: #4fc3f7;
  transition: transform 0.1s;
}
.p-accordion__icon::after {
  transform: rotate(90deg);
}

details[open] .p-accordion__icon::after {
  transform: rotate(0);
  transition: transform 0.1s;
}
details[open] .p-accordion__header {
  font-weight: bold;
  border-bottom: 2px dashed #ccc;
}

.p-accordion__content {
  padding: 1.6rem;
}

.p-fs-small {
  font-size: 1.2rem;
}

.p-paragraph + * {
  margin-top: 0.8rem;
}

/* 見出し */
.p-page-title {
  padding: 1.6rem;
}

.p-page-title__main {
  font-size: 3rem;
}

.p-page-title__sub {
  position: relative;
  padding-left: 2rem;
  color: #4fc3f7;
  font-size: 2rem;
  font-weight: bold;
}
.p-page-title__sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 3px solid #4fc3f7;
  border-radius: 3rem;
  width: 1rem;
}

.p-heading-deco {
  position: relative;
  border-radius: 0 1rem 1rem 0;
  width: 100%;
  margin-bottom: 1.6rem;
  padding: 0.3rem 1.6rem 0.3rem 3.6rem;
  background: #c4ebfc;
}
.p-heading-deco::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
  display: inline-block;
  border-radius: 50%;
  border: solid 3px white;
  width: 4rem;
  height: 4rem;
  background: #4fc3f7 url(../img/img_daisy.png) no-repeat center center/3rem 3rem;
}

.p-heading {
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  font-weight: bold;
  font-size: 1.6rem;
}

.p-heading-border {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}

/* main */
.p-main {
  padding: 1.6rem 1.6rem 3.2rem;
}
.p-main--top {
  padding-top: 3.2rem;
}

/* @media (min-width: 900px) {
  .p-main {
    width: 91%;
    max-width: 1240px;
  }
} */
/* section */
.p-section + .p-section {
  margin-top: 3.2rem;
}

.p-section__content + .p-section__content {
  margin-top: 2.4rem;
}

.p-section__inner + .p-section__inner {
  margin-top: 1.6rem;
}

/* header */
.p-header {
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 100%;
  padding: 0.8rem;
}

@media screen and (min-width: 960px) {
  .p-header__inner {
    display: flex;
    align-items: center;
    justify-self: center;
    width: 100%;
    max-width: 96rem;
  }
}

.p-header__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.p-header__title-text {
  color: #7bc1e5;
  font-size: 0.8rem;
  line-height: 1.6;
}

.p-header__logo-img {
  width: 5rem;
  height: auto;
}
@media screen and (min-width: 960px) {
  .p-header__logo-img {
    width: 10rem;
  }
}

/* nav */
.p-global-nav {
  width: 100%;
  padding: 0.8rem 0.8rem 0;
  background: #fff;
}
.p-global-nav .p-global-nav-list > * + * {
  border-left: 1px solid #ccc;
}

.p-global-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-global-nav-list {
    justify-content: flex-start;
  }
}

.p-global-nav-list__item {
  color: #555;
  font-size: 1.3rem;
}
.p-global-nav-list__item.is-active {
  font-weight: bold;
  color: #4fc3f7;
}
@media screen and (min-width: 960px) {
  .p-global-nav-list__item {
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-global-nav-list__item:hover {
    font-weight: bold;
  }
}

.p-global-nav-link {
  padding: 0.8rem;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .p-global-nav-link {
    padding-inline: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-global-nav-link:hover {
    text-decoration: underline;
  }
}

.p-highlight {
  background-image: linear-gradient(0deg, rgba(251, 191, 36, 0.5019607843) 0.5em, transparent 0.5em);
  font-weight: bold;
}

/* ページ内リンク */
.p-in-page-link-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.6rem;
  width: 100%;
}

.p-in-page-link-list__item {
  width: calc(50% - 1rem);
}

.p-in-page-link {
  position: relative;
  display: flex;
  gap: 0.5rem;
  border: 1px solid #4fc3f7;
  border-radius: 0.8rem;
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.p-in-page-link::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 50%;
  border-top: 3px solid #4fc3f7;
  border-right: 3px solid #4fc3f7;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(135deg) translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .p-in-page-link:hover {
    background-color: #eee;
  }
}

/* footer */
.p-footer {
  padding: 1.2rem 1.6rem;
  border-top: 1px solid #ccc;
}

.p-footer__inner {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-footer__inner {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    justify-self: center;
    width: 100%;
    max-width: 96rem;
  }
}

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

.p-sns-link {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.p-sns-button {
  height: 3.6rem;
}

/*トップ */
.p-main-visual {
  position: relative;
}

.p-main-visual__img {
  height: auto;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-main-visual__catch {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  color: #fff;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  -webkit-text-stroke: 4px #4fc3f7;
  paint-order: stroke;
}

.text-animation {
  opacity: 0;
}

.text-animation.is-animated {
  opacity: 1;
  transform: translateX(2rem);
  animation-name: fadeIn;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(2rem);
  }
}
/* ご利用の流れ */
.p-flow-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-flow {
  container-type: inline-size;
  width: 100%;
}

.p-flow__item {
  border-radius: 1.5rem;
  background: #f4f6fa;
  position: relative;
  padding: 2rem;
}
.p-flow__item:not(:last-child) {
  margin-bottom: 2rem;
}
.p-flow__item:not(:last-child)::before, .p-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 2.6rem;
  border-top: 3px solid #4fc3f7;
  border-right: 3px solid #4fc3f7;
  width: 1rem;
  height: 1rem;
  transform: rotate(135deg);
}
.p-flow__item:not(:last-child)::after {
  bottom: -1rem;
}
.p-flow__item:not(:last-child)::before {
  bottom: 0;
}

/* .p-flow__item-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
} */
.p-flow__heading {
  font-size: 1.2em;
  font-weight: bold;
}

.p-flow__step {
  color: #4fc3f7;
  margin-right: 0.5em;
}

@container (min-width: 800px) {
  .p-flow__item-inner {
    flex-direction: row;
    gap: 2rem;
  }
  .p-flow__heading {
    width: 30%;
  }
}
/* サービス内容 */
.p-table {
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
.p-table + .p-table {
  margin-top: 1.6rem;
}

.p-table__row > * {
  padding: 0.4rem 0.8rem;
}
.p-table__row + .p-table__row {
  border-top: 0.4rem solid #fff;
}
.p-table__row:last-child {
  border-bottom: 1px solid #ccc;
}

.p-table__item.p-table__title + .p-table__item.p-table__title {
  border-left: 0.4rem solid #fff;
}
.p-table__item--center {
  text-align: center;
}

.p-table__title {
  background-color: #f2f2f2;
  font-weight: bold;
}

.p-table__heading {
  background-color: #f0f8ff;
  font-weight: bold;
}

.p-calendar {
  border-width: 0;
  width: 100%;
  max-width: 96rem;
  height: 50rem;
}
@media (min-width: 960px) {
  .p-calendar {
    height: 60rem;
  }
}

/* お問い合わせ *//*# sourceMappingURL=style.css.map */