@charset "UTF-8";
:root {
  --color_base: #09576C;
  --color_body: #FFF9F6;
  --color_pink_01: #E95887;
  --color_pink_02: #ECA385;
  --color_red_01: #b45757;
  --color_greige_01: #E6CEC5;
  --color_orange_01: #E07D2E;
  --color_orange_02: #FF7B28;
  --color_orange_03: #FF9436;
  --color_orange_04: #FFA11F;
  --color_orange_05: #FF7F68;
  --color_yellow_01: #F4C334;
  --color_bluegreen_01: #B6D1CF;
  --headerFixedPadding: 0px;
}

/* ------------------------------------
// top
------------------------------------ */
.pagetitle img {
  width: clamp(15.8rem, 11vw, 15.8rem);
}

#mvContainer {
  margin-bottom: 0rem;
}

.innerlink {
  padding-right: var(--headerFixedPadding);
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
@media screen and (max-width: 768px) {
  .innerlink {
    padding-inline: 2rem;
  }
}
.innerlink {
  display: grid;
  grid-template-columns: repeat(auto-fit, clamp(16rem, 13.2vw, 19rem));
  justify-content: center;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 10rem;
}
.innerlink li {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  aspect-ratio: 1;
}
.innerlink li a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: 1rem;
  background: #FFF;
  border-radius: 50vh;
}
.innerlink li a:hover {
  background: var(--color_greige_01);
}
.innerlink li a p {
  text-align: center;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
.innerlink li a .photo {
  align-self: self-end;
  max-width: 50%;
  margin: 0 auto;
  aspect-ratio: 178/150;
  position: relative;
}
.innerlink li a .photo img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

/* ------------------------------------
// #general
------------------------------------ */
#general h2 {
  font-size: clamp(2.4rem, 2.8vw, 4rem);
  margin-bottom: 3rem;
  font-weight: 500;
}
#general h3 {
  font-size: clamp(1.8rem, 1.7vw, 2.4rem);
  margin-bottom: 2rem;
  font-weight: 600;
}
#general .general_container {
  display: grid;
  grid-template-columns: 1fr clamp(30rem, 37.5vw, 54rem);
  grid-template-areas: "sectionbody photo";
  padding-right: var(--headerFixedPadding);
  align-items: center;
  gap: clamp(2rem, 3.5vw, 5rem);
}
#general .general_container .sectionbody {
  grid-area: sectionbody;
  width: fit-content;
  margin: 0 auto;
}
#general .general_container .photo {
  grid-area: photo;
}
#general .general_container p {
  margin-top: 2rem;
  max-width: 580px;
}
#general .general_container section + section {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #general .general_container {
    grid-template-columns: 1fr;
    grid-template-areas: "sectionbody" "photo";
  }
  #general .general_container .photo {
    margin: 0 auto 0 0;
  }
  #general .general_container .sectionbody {
    padding: 0 2rem;
  }
  #general .general_container .photo {
    max-width: 300px;
  }
}
#general .general_container_data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #general .general_container_data {
    width: min(1200px, 100% - 3rem);
  }
}
#general .general_container_data {
  padding-right: var(--headerFixedPadding);
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
@media screen and (max-width: 768px) {
  #general .general_container_data {
    padding-inline: 2rem;
  }
}
#general .general_container_data {
  margin: 4rem auto 0;
}
#general .general_container_data section {
  background: #F9F9F9;
  padding: 0 clamp(2rem, 2.1vw, 3rem) clamp(2rem, 2.1vw, 3rem) clamp(2rem, 2.1vw, 3rem);
  border-radius: 30px;
}
#general .general_container_data section h3 {
  position: relative;
  text-align: center;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  padding: 1rem;
  top: -2rem;
}
#general .general_container_data section h3 i {
  position: relative;
  font-style: normal;
  font-weight: 500;
  z-index: 2;
  color: #FFF;
}
#general .general_container_data section h3::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: var(--color_yellow_01);
  filter: url(#doo-wap);
  z-index: 0;
}
#general .general_container_data section h3 + ul, #general .general_container_data section h3 + p {
  margin-top: -2rem;
}
#general .general_container_data section ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#general .general_container_data section ul li {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
}
#general .general_container_data section ul li::before {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  display: block;
  background: var(--color_bluegreen_01);
  mask: url(/lib/img/medical/icon_dot.webp) no-repeat center/contain;
}
@media screen and (max-width: 1024px) {
  #general .general_container_data {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  #general .general_container_data section ul {
    grid-template-columns: 1fr;
  }
}
#general #kensa {
  text-align: center;
  margin-top: 5rem;
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #general #kensa {
    width: min(1200px, 100% - 3rem);
  }
}
#general #kensa {
  padding-right: var(--headerFixedPadding);
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
@media screen and (max-width: 768px) {
  #general #kensa {
    padding-inline: 2rem;
  }
}
#general #kensa a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #general #kensa p {
    text-align: left;
  }
}

/* ------------------------------------
// #allergy
------------------------------------ */
#allergy {
  background: #FFF;
  position: relative;
  z-index: 0;
  padding-top: 9.7222222222vw;
  padding-bottom: 6.9444444444vw;
  margin-top: 5rem;
  margin-bottom: calc(6.9444444444vw + 3rem);
}
#allergy::before {
  content: "";
  width: 100vw;
  height: 9.7222222222vw;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color_body) url(/lib/img/cmn/bg_whitewave_01.webp) no-repeat center bottom/cover;
}
#allergy::after {
  content: "";
  width: 100vw;
  height: 6.9444444444vw;
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  background: url(/lib/img/cmn/bg_whitewave_02.webp) no-repeat center top/cover;
}
#allergy > * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #allergy::before {
    bottom: calc(100% - 2px);
  }
}
#allergy h2 {
  font-size: clamp(2.4rem, 2.8vw, 4rem);
  margin-bottom: 3rem;
  font-weight: 500;
}
#allergy h3 {
  font-size: clamp(1.8rem, 1.7vw, 2.4rem);
  margin-bottom: 2rem;
  font-weight: 600;
}
#allergy .allergy_container {
  display: grid;
  grid-template-columns: clamp(30rem, 37.5vw, 54rem) 1fr;
  grid-template-areas: "photo sectionbody";
  padding-right: var(--headerFixedPadding);
  align-items: center;
  gap: clamp(2rem, 3.5vw, 5rem);
}
#allergy .allergy_container .sectionbody {
  grid-area: sectionbody;
  width: fit-content;
  margin: 0 auto;
}
#allergy .allergy_container .photo {
  grid-area: photo;
}
#allergy .allergy_container p {
  margin-top: 2rem;
  max-width: 580px;
}
#allergy .allergy_container section + section {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #allergy .allergy_container {
    grid-template-columns: 1fr;
    grid-template-areas: "sectionbody" "photo";
  }
  #allergy .allergy_container .photo {
    margin: 0 auto 0 0;
  }
  #allergy .allergy_container .sectionbody {
    padding: 0 2rem;
  }
  #allergy .allergy_container .photo {
    max-width: 300px;
  }
}
#allergy .allergy_container_data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #allergy .allergy_container_data {
    width: min(1200px, 100% - 3rem);
  }
}
#allergy .allergy_container_data {
  padding-right: var(--headerFixedPadding);
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
@media screen and (max-width: 768px) {
  #allergy .allergy_container_data {
    padding-inline: 2rem;
  }
}
#allergy .allergy_container_data {
  margin: 4rem auto 0;
}
#allergy .allergy_container_data section {
  background: #F9F9F9;
  padding: 0 clamp(2rem, 2.1vw, 3rem) clamp(2rem, 2.1vw, 3rem) clamp(2rem, 2.1vw, 3rem);
  border-radius: 30px;
}
#allergy .allergy_container_data section h3 {
  position: relative;
  text-align: center;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  padding: 1rem;
  top: -2rem;
}
#allergy .allergy_container_data section h3 i {
  position: relative;
  font-style: normal;
  font-weight: 500;
  z-index: 2;
  color: #FFF;
}
#allergy .allergy_container_data section h3::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: var(--color_bluegreen_01);
  filter: url(#doo-wap);
  z-index: 0;
}
#allergy .allergy_container_data section h3 + ul, #allergy .allergy_container_data section h3 + p {
  margin-top: -2rem;
}
#allergy .allergy_container_data section ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#allergy .allergy_container_data section ul li {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
}
#allergy .allergy_container_data section ul li::before {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  display: block;
  background: url(/lib/img/medical/icon_dot.webp) no-repeat center/contain;
}
@media screen and (max-width: 1024px) {
  #allergy .allergy_container_data {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  #allergy .allergy_container_data section ul {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------
// #vaccine
------------------------------------ */
#vaccine .vaccine_container {
  display: grid;
  grid-template-columns: 1fr clamp(30rem, 37.5vw, 54rem);
  grid-template-areas: "sectionbody photo";
  padding-left: var(--headerFixedPadding);
  align-items: center;
  gap: clamp(2rem, 3.5vw, 5rem);
}
#vaccine .vaccine_container .sectionbody {
  grid-area: sectionbody;
  width: fit-content;
  margin: 0 auto;
}
#vaccine .vaccine_container .photo {
  grid-area: photo;
}
#vaccine .vaccine_container h2 {
  font-size: clamp(2.4rem, 2.8vw, 4rem);
  margin-bottom: 3rem;
  font-weight: 500;
}
#vaccine .vaccine_container h3 {
  font-size: clamp(1.8rem, 1.7vw, 2.4rem);
  margin-bottom: 2rem;
  font-weight: 600;
}
#vaccine .vaccine_container p {
  margin-top: 2rem;
  max-width: 580px;
}
#vaccine .vaccine_container section + section {
  margin-top: 5rem;
}
#vaccine .vaccine_container ul.prepeard li {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
}
#vaccine .vaccine_container ul.prepeard li::before {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  display: block;
  background: url(/lib/img/medical/icon_dot.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  #vaccine .vaccine_container {
    grid-template-columns: 1fr;
    grid-template-areas: "sectionbody" "photo";
  }
  #vaccine .vaccine_container .photo {
    margin: 0 0 0 auto;
  }
  #vaccine .vaccine_container .sectionbody {
    padding: 0 2rem;
  }
  #vaccine .vaccine_container .photo {
    max-width: 300px;
  }
}
#vaccine #sessyu,
#vaccine #price,
#vaccine #schedule {
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #vaccine #sessyu,
  #vaccine #price,
  #vaccine #schedule {
    width: min(1200px, 100% - 3rem);
  }
}
#vaccine #sessyu,
#vaccine #price,
#vaccine #schedule {
  padding-right: var(--headerFixedPadding);
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
@media screen and (max-width: 768px) {
  #vaccine #sessyu,
  #vaccine #price,
  #vaccine #schedule {
    padding-inline: 2rem;
  }
}
#vaccine #sessyu,
#vaccine #price,
#vaccine #schedule {
  margin: 4rem auto;
}
#vaccine #sessyu h3,
#vaccine #price h3,
#vaccine #schedule h3 {
  font-size: clamp(1.8rem, 1.7vw, 2.4rem);
  margin-bottom: 4rem;
  font-weight: 600;
  text-align: center;
}
@keyframes scrollHint {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}
#vaccine #sessyu .tableToggle,
#vaccine #price .tableToggle {
  display: none;
}
#vaccine #sessyu .ichiranTable,
#vaccine #price .ichiranTable {
  background: #FFF;
  padding: 1.5rem;
  position: relative;
}
#vaccine #sessyu .ichiranTable .scroolComment,
#vaccine #price .ichiranTable .scroolComment {
  display: none;
}
#vaccine #sessyu .ichiranTable table,
#vaccine #price .ichiranTable table {
  width: 100%;
}
#vaccine #sessyu .ichiranTable table th,
#vaccine #sessyu .ichiranTable table td,
#vaccine #price .ichiranTable table th,
#vaccine #price .ichiranTable table td {
  padding: 1.5rem 1rem;
  text-align: center;
  background-image: repeating-linear-gradient(90deg, #eca385, #eca385 5px, transparent 5px, transparent 15px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
#vaccine #sessyu .ichiranTable table thead th,
#vaccine #sessyu .ichiranTable table thead td,
#vaccine #price .ichiranTable table thead th,
#vaccine #price .ichiranTable table thead td {
  background: none;
}
#vaccine #sessyu .ichiranTable table thead th span,
#vaccine #price .ichiranTable table thead th span {
  display: block;
  padding: 1rem;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  position: relative;
}
#vaccine #sessyu .ichiranTable table thead th span::before,
#vaccine #price .ichiranTable table thead th span::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: #eca385;
  filter: url(#doo-wap);
  z-index: 0;
}
#vaccine #sessyu .ichiranTable table thead th span > *,
#vaccine #price .ichiranTable table thead th span > * {
  position: relative;
  font-style: normal;
}
#vaccine #sessyu .ichiranTable table tbody th,
#vaccine #price .ichiranTable table tbody th {
  text-align: left;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #vaccine #sessyu,
  #vaccine #price {
    padding-inline: 0;
  }
  #vaccine #sessyu .tableToggle,
  #vaccine #price .tableToggle {
    display: block;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
    background: var(--color_pink_02);
    color: #FFF;
    padding: 4px 2rem;
    border-radius: 5px;
    margin: 0 auto 2rem;
  }
  #vaccine #sessyu .tableToggle::after,
  #vaccine #price .tableToggle::after {
    content: "▼";
    display: inline-block;
    margin-left: 0.5rem;
  }
  #vaccine #sessyu .tableToggle.current::after,
  #vaccine #price .tableToggle.current::after {
    content: "▲";
  }
  #vaccine #sessyu .ichiranTable,
  #vaccine #price .ichiranTable {
    display: none;
    overflow-x: scroll;
    padding: 0.5rem;
    padding-top: 1rem;
  }
  #vaccine #sessyu .ichiranTable .scroolComment,
  #vaccine #price .ichiranTable .scroolComment {
    display: inline-flex;
    position: sticky;
    left: 1.5rem;
    align-items: center;
    font-weight: 500;
    font-size: 1.2rem;
    color: #FFF;
    background: var(--color_bluegreen_01);
    padding: 0.3rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    animation: scrollHint 1.2s ease-in-out infinite;
    transition: opacity 0.3s ease;
  }
  #vaccine #sessyu .ichiranTable .scroolComment.is-hidden,
  #vaccine #price .ichiranTable .scroolComment.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  #vaccine #sessyu .ichiranTable table th,
  #vaccine #sessyu .ichiranTable table td,
  #vaccine #price .ichiranTable table th,
  #vaccine #price .ichiranTable table td {
    white-space: nowrap;
    padding: 1rem 0.5rem;
  }
  #vaccine #sessyu .ichiranTable table tr:nth-child(2n-1) th,
  #vaccine #sessyu .ichiranTable table tr:nth-child(2n-1) td,
  #vaccine #price .ichiranTable table tr:nth-child(2n-1) th,
  #vaccine #price .ichiranTable table tr:nth-child(2n-1) td {
    background-color: var(--color_body);
  }
}
#vaccine #price .ichiranTable {
  background: #FFF;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
#vaccine #price .ichiranTable table {
  margin-inline: auto;
  width: fit-content;
}
#vaccine {
  /*schedule*/
}
#vaccine #schedule p {
  text-align: center;
}
#vaccine #schedule .link a {
  margin-inline: auto;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 26px;
  padding: 2rem 1rem;
  position: relative;
  color: #FFF;
  max-width: 500px;
  gap: 1rem;
  align-items: center;
  font-weight: 500;
}
#vaccine #schedule .link a:after {
  content: "";
  width: 26px;
  aspect-ratio: 1;
  display: block;
  background: url(/lib/img/cmn/icon_link_02.svg) no-repeat center/contain;
  z-index: 3;
}
#vaccine #schedule .link a span {
  display: grid;
  grid-template-columns: 26px 1fr;
  position: relative;
  gap: 1rem;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
#vaccine #schedule .link a span:before {
  content: "";
  width: 32px;
  aspect-ratio: 1;
  display: block;
  background: url(/lib/img/cmn/icon_pdf.webp) no-repeat center/contain;
  z-index: 3;
}
#vaccine #schedule .link a::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: var(--color_pink_02);
  filter: url(#doo-wap);
  z-index: 0;
}
#vaccine #schedule .link a:hover::before {
  background: var(--color_bluegreen_01);
}
#vaccine #schedule .link a > * {
  position: relative;
}
@media screen and (max-width: 768px) {
  #vaccine #schedule p {
    text-align: left;
  }
}

/* ------------------------------------
// #checkupfamily
------------------------------------ */
#checkupfamily {
  background: #FFF;
  position: relative;
  z-index: 0;
  padding-top: 9.7222222222vw;
  padding-bottom: 6.9444444444vw;
  margin-top: 5rem;
  margin-bottom: calc(6.9444444444vw + 3rem);
}
#checkupfamily::before {
  content: "";
  width: 100vw;
  height: 9.7222222222vw;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color_body) url(/lib/img/cmn/bg_whitewave_01.webp) no-repeat center bottom/cover;
}
#checkupfamily::after {
  content: "";
  width: 100vw;
  height: 6.9444444444vw;
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  background: url(/lib/img/cmn/bg_whitewave_02.webp) no-repeat center top/cover;
}
#checkupfamily > * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #checkupfamily::before {
    bottom: calc(100% - 2px);
  }
}
#checkupfamily .checkupfamily_container {
  display: grid;
  grid-template-columns: clamp(30rem, 37.5vw, 54rem) 1fr;
  grid-template-areas: "photo sectionbody";
  padding-right: var(--headerFixedPadding);
  align-items: center;
  gap: clamp(2rem, 3.5vw, 5rem);
}
#checkupfamily .checkupfamily_container .sectionbody {
  grid-area: sectionbody;
  width: fit-content;
  margin: 0 auto;
}
#checkupfamily .checkupfamily_container .photo {
  grid-area: photo;
}
#checkupfamily .checkupfamily_container h2 {
  font-size: clamp(2.4rem, 2.8vw, 4rem);
  margin-bottom: 3rem;
  font-weight: 500;
}
#checkupfamily .checkupfamily_container p {
  margin-top: 2rem;
  max-width: 580px;
}
#checkupfamily .checkupfamily_container section + section {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #checkupfamily .checkupfamily_container {
    grid-template-columns: 1fr;
    grid-template-areas: "sectionbody" "photo";
  }
  #checkupfamily .checkupfamily_container .photo {
    margin: 0 auto 0 0;
  }
  #checkupfamily .checkupfamily_container .sectionbody {
    padding: 0 2rem;
  }
  #checkupfamily .checkupfamily_container .photo {
    max-width: 300px;
  }
}

#test .section {
  display: grid;
  grid-template-columns: 1fr clamp(30rem, 37.5vw, 54rem);
  grid-template-areas: "text photo";
  align-items: center;
  gap: clamp(2rem, 3.5vw, 5rem);
}
#test .section .text {
  grid-area: text;
}
#test .section .photo {
  grid-area: photo;
}
#test .section:nth-child(odd) {
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
#test .section:nth-child(even) {
  grid-template-columns: clamp(30rem, 37.5vw, 54rem) 1fr;
  grid-template-areas: "photo text";
  padding-right: var(--headerFixedPadding);
}