.baby .heading {
  background: var(--baby-col);
}
.baby .contents h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5em;
}
.baby .contents .toc-list li a {
  border: 1px solid var(--baby-col);
  position: relative;
}
.baby .contents .toc-list li a::after {
  color: var(--baby-col);
  right: 2em;
}

.calendar h3,
.dictionary h3 {
  font-weight: normal;
  line-height: 1;
}
.calendar h3 .page-ttl,
.dictionary h3 .page-ttl {
  font-size: 28px;
}
.calendar h3 .en,
.dictionary h3 .en {
  font-size: var(--fs-l);
  color: var(--baby-col);
}

.calendar .page-nav {
  display: flex;
  justify-content: space-between;
}
.calendar .page-nav li {
  width: 48%;
}
.calendar .page-nav li a {
  color: var(--darkgray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
  line-height: 1.2;
  font-weight: 500;
  border: 2px solid var(--first-term-col);
  box-sizing: border-box;
}
.calendar .page-nav li a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
}
.calendar .article__block h4 {
  text-align: center;
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--darkgray);
}
.calendar .article__block .block {
  display: flex;
  flex-direction: column;
  row-gap: var(--gap-s);
  margin-bottom: var(--gap-m);
}
.calendar .article__block .block dt {
  font-size: var(--fs-l);
  font-weight: 500;
  text-align: center;
  padding: 0.3em 1em;
  color: var(--darkgray);
  margin-bottom: 0;
}
.calendar .article__block .block dd {
  padding: 0 var(--gap-min);
}
.calendar .article__block.development h4, .calendar .article__block.childcare-point h4 {
  background: var(--first-term-col);
}
.calendar .article__block.development .block dt, .calendar .article__block.childcare-point .block dt {
  background: var(--first-term-col-light);
}
.calendar .article__block.development .block dt {
  width: 12em;
  margin: 0 auto;
}
.calendar .article__block.development .block dd {
  text-align: center;
  margin-top: 0;
  font-weight: 500;
}
.calendar .article__block.development .block dd img {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
}
.calendar .article__block.development .block dd img.vertical {
  width: 40%;
}
.calendar .article__block.development .block dd img.vertical.w35 {
  width: 35%;
}
.calendar .article__block.development .block dd img.vertical.w30 {
  width: 30%;
}
.calendar .article__block.childcare-point h4, .calendar .article__block.baby-checkup h4 {
  margin-bottom: var(--gap-m);
}
.calendar .article__block.childcare-point .block, .calendar .article__block.baby-checkup .block {
  row-gap: var(--gap-min);
}
.calendar .article__block.baby-checkup h4 {
  background: #F8D4A9;
}
.calendar .article__block.baby-checkup .block .ttl-c {
  background: #FDEADC;
}
.calendar .article__block.baby-checkup .block .ttl-f {
  border-color: #F8D4A9;
}

.dictionary .just-born {
  padding: 1em;
  border: 1px solid var(--cream);
  border-radius: 10px;
}
.dictionary .just-born > dt {
  color: var(--baby-col);
  font-size: var(--fs-l);
  justify-content: center;
}
.dictionary .just-born > dt img {
  width: 44%;
}
.dictionary .qa {
  display: flex;
  flex-direction: column;
  row-gap: var(--gap-l);
}
.dictionary .qa > div h4 {
  border-top: 4px dotted var(--baby-col);
  color: var(--baby-col);
  font-size: var(--fs-l);
  font-weight: 500;
  padding-top: calc(var(--gap-min) / 2);
}
.dictionary .qa > div dl {
  margin-top: var(--gap-xs);
  padding: 1em;
  border: 1px solid var(--baby-col);
  border-radius: 20px;
}
.dictionary .qa > div dl dt::before, .dictionary .qa > div dl dd::before {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100vmax;
  color: #fff;
  font-size: var(--fs-m);
  flex-shrink: 0;
}
.dictionary .qa > div dl .question {
  display: flex;
  column-gap: var(--gap-min);
  align-items: center;
}
.dictionary .qa > div dl .question::before {
  content: "Q";
  background: var(--baby-col);
}
.dictionary .qa > div dl .answer {
  display: flex;
  column-gap: var(--gap-min);
  margin-top: var(--gap-xs);
}
.dictionary .qa > div dl .answer::before {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  content: "A";
  width: 30px;
  height: 30px;
  border-radius: 100vmax;
  background: var(--pregnancy-col);
  color: #fff;
  font-size: var(--fs-m);
  flex-shrink: 0;
}
.dictionary .qa > div dl .answer div ul li {
  margin-top: var(--gap-min);
}
.dictionary .qa > div dl .answer div ul .flex-image div {
  width: 55%;
}
.dictionary .qa > div dl .answer div ul .flex-image img {
  width: 40%;
  margin: 0 auto;
}
.dictionary .qa > div dl .answer div ul .flex-image img.w30 {
  width: 30%;
}
.dictionary .qa > div dl .extra {
  display: flex;
  flex-direction: column;
  margin-top: var(--gap-min);
}
.dictionary .qa > div dl .extra .prepare-list {
  flex-wrap: wrap;
  column-gap: 1em;
}
.dictionary .qa > div dl .extra .image {
  width: 20%;
  margin: var(--gap-min) auto;
}

.list dl {
  padding: 1em 0;
  border-bottom: 1px solid var(--cream);
}
.list dl:last-of-type {
  border: none;
  padding-bottom: 0;
}
.list dl dt {
  display: flex;
  align-items: center;
}
.list dl dt span {
  font-size: 12px;
}
.list dl dd .adjust:before {
  margin-top: 4px;
}
.list dl dd.flex-image img {
  width: 30%;
}
.list dl dd ruby rt {
  margin-bottom: -0.5em;
}

.symptoms-of-concern .notice-a {
  background: #fff;
  border: 1px solid var(--cream);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  row-gap: var(--gap-min);
  margin-top: var(--gap-xs);
}

.environment-for-babies .contents .lead div:first-of-type {
  width: 70%;
}
.environment-for-babies .contents .image {
  width: 20%;
  margin: 0 auto;
}

.careful .outdoor-air-bath dd .flex-image {
  column-gap: 1em;
  align-items: flex-start;
}
.careful .outdoor-air-bath dd .flex-image img {
  width: 30%;
}
.careful .child-seat > dt {
  color: var(--black);
}
.careful .child-seat > dd {
  display: flex;
  flex-direction: column;
  row-gap: var(--gap-xs);
}
.careful .child-seat > dd dl dt {
  margin-bottom: var(--gap-min);
  font-weight: 500;
}
.careful .child-seat > dd dl .two-image {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
}
.careful .child-seat > dd dl .two-image img {
  width: 24%;
}
.careful .child-seat > dd dl .two-image img:first-of-type {
  width: 40%;
}
.careful .child-seat > dd dl .flex-image {
  column-gap: 1em;
  align-items: flex-start;
}
.careful .child-seat > dd dl .flex-image img {
  width: 32%;
}

.col-baby {
  color: var(--baby-col);
}

.col-baby-dark {
  color: rgb(210, 168, 0);
}

.bg-baby-light {
  background: rgba(252, 200, 0, 0.6);
}

.bg-baby {
  background: var(--baby-col);
}/*# sourceMappingURL=baby.css.map */