@charset "UTF-8";
/* --------------------------------------------------------
variable
-------------------------------------------------------- */
/*-------- 診療案内 css --------*/
/* モバイルレイアウト : 480 px およびそれ以下. */
/* --------------------------------------------------------
header
-------------------------------------------------------- */
/* --------------------------------------------------------
section #link1 (初診の流れ)
-------------------------------------------------------- */
.flowBg {
  position: relative;
  margin: 20% auto 10%;
  padding: 16% 4% 10%;
  background-color: #FFF8EE;
  border-radius: 20px;
  text-align: center;
}

img.stepImg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.flowTxt {
  text-align: left;
}
.flowTxt p {
  margin: 0.5em 0;
}
.flowTxt p strong {
  color: #F49FA9;
}
.flowTxt p strong.adult {
  color: #6EC8D8;
}
.flowTxt ul {
  margin: 0;
  padding-left: 1.5em;
}
.flowTxt ul li {
  margin: 0;
}

.flowTxt h3,
.flowLast h3 {
  color: #F1AC43;
  font-size: 1.5rem;
  margin: 1em 0 0;
}

/* step2 ご来院・問診票の記入(お持ち頂くもの) */
.luggage {
  margin: 10% 0 0;
  padding: 5% 3%;
  background-color: #FFF;
  border: #F1AC43 solid 2px;
  border-radius: 20px;
  text-align: left;
}

.luggage p {
  margin: 0 0 0.5em;
}

.luggage p.orange {
  font-size: 1.2rem;
}

.luggage p.br_sp {
  text-align: left;
  font-weight: 700;
}

.luggage .br_sp span {
  display: inline-block;
}

.luggage ul {
  margin: 0 0 1em 1em;
  padding: 0;
  list-style-type: none;
}

.luggage ul li {
  margin-left: 0;
}

.luggage ul li::before {
  content: "□";
  padding: 0 0.1em 0 0;
  margin: 0 0 0 -1.1em;
}

/* 初診の流れ（最後） */
.flowLast {
  text-align: center;
}

.flowLast h3,
.flowLast p {
  text-align: left;
}

.flowLast h3 {
  margin: 25% auto 0;
  padding: 5% 0 0;
  position: relative;
}
.flowLast h3 span.child {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, -100%);
  margin: 0 auto;
  padding: 3% 5%;
  display: block;
  color: #FFF;
  font-size: 0.9em;
  text-align: center;
  background-color: #F1AC43;
  border-radius: 10px;
}

/* --------------------------------------------------------
section #link2 (健診のご案内)
-------------------------------------------------------- */
section#link2 {
  width: 100%;
}

.checkupBg {
  background-color: #FDF3F5;
}

.checkup_wrap {
  margin: 0 auto;
  padding: 10% 0;
  width: 90%;
  text-align: center;
}

.checkupTxt {
  text-align: left;
}

.checkupTxt h3 {
  margin: 2em 0 0;
  font-weight: 700;
}

.checkupTxt h3 img {
  margin: 0 0.5em 5px 0;
}

.checkupTxt ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #F49FA9;
  display: flex;
  flex-wrap: wrap;
}

.checkupTxt ul li {
  width: 50%;
}

.checkupTxt a {
  display: inline-block;
}

/* --------------------------------------------------------
section #link3 (Q&A)
-------------------------------------------------------- */
details {
  margin: 1em 0;
}

.details-summary {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5em 1.5em;
  color: #6EC8D8;
  background-color: #EFFCFE;
  border-radius: 100px;
  transition: all 0.3s;
}
.details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}
.details-summary:before {
  content: url(../img/txt_01.webp);
  margin: 6px 0.5em 0 0;
}
.details-summary .btn {
  position: absolute;
  top: 37%;
  right: 4%;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition-duration: 0.2s;
}
.details-summary .btn:before, .details-summary .btn:after {
  content: "";
  background-color: #6EC8D8;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  transform-origin: center center;
}
.details-summary .btn:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.details-summary.is-active .btn {
  transform: rotate(-180deg);
}
.details-summary.is-active .btn:before {
  content: none;
}

.details-summary::-webkit-details-marker {
  display: none;
}

.details-content {
  padding: 0.5em 1.5em;
  display: flex;
  align-items: flex-start;
}
.details-content:before {
  content: url(../img/txt_02.webp);
  margin: 6px 0.5em 0 0;
}
.details-content p {
  margin: 0 0 20px;
}
.details-content p:last-of-type {
  margin: 0 0 0;
}

/* タブレットレイアウト : 768 px～。モバイルレイアウトからスタイルを継承。 */
@media print, screen and (min-width: 768px) {
  /* --------------------------------------------------------
  header
  -------------------------------------------------------- */
  /* --------------------------------------------------------
  section #link1 (初診の流れ)
  -------------------------------------------------------- */
  .flowBg {
    position: relative;
    margin: 50px auto;
    padding: 50px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .flowBg.step6 {
    margin: 0 auto;
  }
  img.stepImg {
    position: static;
    transform: translateX(0) translateY(0);
    margin-right: 1em;
    order: 1;
  }
  img.flowImg {
    order: 3;
  }
  .flowTxt {
    margin-right: auto;
    max-width: 650px;
    order: 2;
  }
  .flowTxt h3,
  .flowLast h3 {
    font-size: 22px;
    margin: 0;
  }
  /* step2 ご来院・問診票の記入(お持ち頂くもの) */
  .luggage {
    margin: 0 0 0 100px;
    padding: 20px 20px 0;
    width: 100%;
    order: 4;
    background: #FFF url(../img/pic_01.webp) no-repeat right 50px center;
  }
  .luggage p {
    margin: 0;
  }
  .luggage p.orange {
    font-size: 18px;
  }
  /* 初診の流れ（最後） */
  .flowLast {
    position: relative;
    margin: 100px auto 0;
    max-width: 630px;
  }
  .flowLast h3 {
    margin: 0;
    padding: 0.5em 0 0;
    position: static;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .flowLast h3 span.child {
    position: static;
    transform: translate(0%, 0%);
    margin: 0;
    padding: 10px 15px;
    display: block;
    color: #FFF;
    font-size: 0.9em;
    text-align: center;
    background-color: #F1AC43;
    border-radius: 10px;
  }
  .flowLastImg01,
  .flowLastImg02 {
    position: absolute;
    top: 50%;
  }
  .flowLastImg01 {
    left: -3%;
    transform: translateX(-100%) translateY(-50%);
  }
  .flowLastImg02 {
    right: -3%;
    transform: translateX(100%) translateY(-50%);
  }
  .flowLast p.center {
    text-align: center;
  }
  /* --------------------------------------------------------
  section #link2 (健診のご案内)
  -------------------------------------------------------- */
  section#link2 {
    width: 100%;
    max-width: 100%;
  }
  .checkupBg {
    margin: 50px auto 0;
  }
  .checkup_wrap {
    margin: 0 auto;
    padding: 50px 0;
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  img.checkupImg {
    margin-right: 35px;
  }
  .checkupTxt h3 {
    margin: 0;
  }
  .checkupTxt p {
    margin: 0.5em 0;
    padding-left: 3em;
  }
  .checkupTxt ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 3em;
  }
  .checkupTxt ul li {
    width: auto;
    margin-right: 1em;
  }
  .checkupTxt a {
    margin-bottom: 1em;
  }
  /* --------------------------------------------------------
  section #link3 (Q&A)
  -------------------------------------------------------- */
  details {
    margin: 1em auto;
    max-width: 1000px;
  }
} /*# sourceMappingURL=first.css.map */