@charset "UTF-8";
/*==================================================
Basic Settings (Breakpoints / Widths / Font-bases)
==================================================*/
/*==================================================
Mixins
==================================================*/
/*==================================================
SCSS Variables (for compatibility)
==================================================*/
/* Page-specific colors */
/* Typo Scale */
/*==================================================
Spacing
==================================================*/
/* メニュー
	--------------------------------------------------------------------------------------------- */
.p-menu {
  padding-bottom: 4em;
}
.p-menu__list {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  flex-wrap: wrap;
  gap: 2em;
}
@media (max-width: 960px) {
  .p-menu__list {
    gap: 2px;
    font-size: var(--fs-sm);
  }
}
@media (max-width: 960px) {
  .p-menu__list li {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .p-menu__list li + li {
    border-left: 1px solid var(--color-border);
    padding-left: 2em;
  }
}
.p-menu__list a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: var(--color-text);
  font-weight: bold;
  gap: 0.5em;
}
@media (max-width: 960px) {
  .p-menu__list a {
    background: var(--color-surface);
    padding: 1em;
  }
}
.p-menu__list a .cmn-icon {
  background: var(--color-text);
  width: 2em;
  height: 1em;
  border-radius: 0.5em;
}
.p-menu__list a .cmn-icon * {
  border-color: var(--color-bg);
}
.p-menu__list a:hover {
  text-decoration: none;
  color: var(--color-accent);
}
.p-menu__list a:hover .cmn-icon {
  background: var(--color-accent);
}

/* 保育内容
	--------------------------------------------------------------------------------------------- */
.p-about {
  --maxWidth: 30em;
}
.p-about .cmn-flex-row {
  gap: 2em;
}
@media (max-width: 960px) {
  .p-about .cmn-flex-row {
    flex-direction: column;
  }
}
.p-about__text {
  max-width: var(--maxWidth);
  width: 60%;
  margin: 0 auto;
  line-height: 200%;
}
@media (max-width: 960px) {
  .p-about__text {
    max-width: none;
    width: 100%;
  }
}
.p-about__image {
  width: calc(40% - 4em);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (max-width: 960px) {
  .p-about__image {
    max-width: none;
    width: 100%;
  }
}
.p-about__image > li {
  width: 60%;
}
.p-about__image > li:nth-child(2n+1) {
  margin-left: auto;
}
@media (max-width: 960px) {
  .p-about__image {
    max-width: 100%;
    flex-direction: row;
    gap: 0.5em;
  }
}

/* デイリープログラム
	--------------------------------------------------------------------------------------------- */
.p-routine {
  --maxwidth: 600px;
}
@media (max-width: 960px) {
  .p-routine .cmn-flex-row {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}
.p-routine__table {
  max-width: var(--maxwidth);
  margin-bottom: 3em;
  text-align: center;
}
.p-routine__table__th__time {
  background: var(--color-bg);
}
.p-routine__table__th__baby {
  color: var(--color-bg);
  background: var(--color-main);
}
.p-routine__table__th__kids {
  color: var(--color-bg);
  background: var(--color-accent);
}
.p-routine__table__td__time {
  background: var(--color-neutral_subtle);
  padding-left: 0.25em;
  padding-right: 0.25em;
}
@media (min-width: 960px) {
  .p-routine__table__td__time {
    min-width: 10em;
  }
}
.p-routine__table__td__baby {
  background: var(--color-main_subtle);
  padding-left: 0.25em;
  padding-right: 0.25em;
}
@media (min-width: 960px) {
  .p-routine__table__td__baby {
    min-width: 10em;
  }
}
.p-routine__table__td__kids {
  background: var(--color-accent_subtle);
  padding-left: 0.25em;
  padding-right: 0.25em;
}
@media (min-width: 960px) {
  .p-routine__table__td__kids {
    min-width: 10em;
  }
}
.p-routine .p-time {
  max-width: var(--maxwidth);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.p-routine .p-time__item {
  width: 100%;
}
.p-routine .p-time__item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8em;
  background: var(--color-neutral_subtle);
  padding: 1em;
  color: var(--color-text);
}
.p-routine__image {
  max-width: 15em;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: sticky;
  top: 1em;
  right: 0;
  height: 100%;
}
@media (max-width: 960px) {
  .p-routine__image {
    max-width: 100%;
    flex-direction: row;
    gap: 0.5em;
    flex-wrap: wrap;
  }
}
@media (max-width: 960px) {
  .p-routine__image > p {
    width: calc((100% - 0.5em) / 2);
  }
}

/* 楽しく学べるカリキュラム
	--------------------------------------------------------------------------------------------- */
.p-curriculum {
  text-align: center;
}
.p-curriculum .p-fukidashi {
  position: relative;
  padding: 0 25px; /* 文字と線の間の余白 */
  text-align: center;
  display: inline-block;
  margin-bottom: 0.5em;
}
.p-curriculum .p-fukidashi::before, .p-curriculum .p-fukidashi::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 1px; /* 線の太さ */
  height: 20px; /* 線の長さ */
  background-color: #333; /* 線の色 */
}
.p-curriculum .p-fukidashi {
  /* 左の線 */
}
.p-curriculum .p-fukidashi::before {
  left: 5px;
  transform: rotate(-45deg);
}
.p-curriculum .p-fukidashi {
  /* 右の線 */
}
.p-curriculum .p-fukidashi::after {
  right: 5px;
  transform: rotate(45deg);
}
.p-curriculum__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 4em) / 2);
}
@media (max-width: 640px) {
  .p-curriculum__item {
    width: 100%;
  }
}
.p-curriculum__title {
  color: var(--color-main);
  font-weight: bold;
  background: var(--color-main);
  color: var(--color-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
}
.p-curriculum dl {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}
.p-curriculum dl dt {
  padding: 1em 2em;
  padding-bottom: 0;
  background: var(--color-neutral_subtle);
  margin-top: 0.5em;
}
.p-curriculum dl dd {
  padding: 1em 2em;
  padding-top: 0;
  background: var(--color-neutral_subtle);
}
.p-curriculum .cmn-text--lg {
  font-size: 1em;
  margin-bottom: 0;
}

/* 園のいちねん
	--------------------------------------------------------------------------------------------- */
.p-annual {
  --annualWidth: 44em;
}
.p-annual__list {
  max-width: var(--annualWidth);
  width: 60%;
}
@media (max-width: 640px) {
  .p-annual__list {
    max-width: none;
    width: 100%;
  }
}
.p-annual__list dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 2px;
}
.p-annual__list dl + dl {
  margin-top: 1em;
}
.p-annual__list dl dt {
  min-width: 5em;
  padding: 1em;
  background: var(--color-main);
  color: var(--color-bg);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-annual__list dl dd {
  background: var(--color-neutral_subtle);
  width: calc(100% - 5em);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.5em;
  padding: 1em;
}
.p-annual__list dl dd span:not(:last-of-type)::after {
  content: "／";
  display: inline-block;
  padding-left: 0.5em;
}
.p-annual__image {
  width: calc(40% - 4em);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: sticky;
  top: 1em;
  right: 0;
  height: 100%;
}
@media (max-width: 640px) {
  .p-annual__image {
    max-width: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.p-annual__image p {
  width: 100%;
}
@media (max-width: 640px) {
  .p-annual__image p {
    width: calc((100% - 1em) / 2);
  }
}

/*# sourceMappingURL=childcare.css.map */
