@charset "UTF-8";
/* ------------------------------------------------------------
// design
------------------------------------------------------------ */
.service-page-title-img {
  background: url(../images/service/page-title-image.jpg) no-repeat center center/cover;
}

/* アンカーリンク全体のスタイル */
ul.anchor-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 100px;
}
ul.anchor-links li a {
  display: inline-block;
  padding: 10px 20px 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  border-radius: 10px;
  box-shadow: inset 0px 0px 30px rgba(255, 255, 255, 0.6), inset 8px 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, background-color 0.3s;
}
ul.anchor-links li a:hover {
  font-weight: 700;
  transform: scale(1.05);
}
@media print, screen and (max-width: 767px) {
  ul.anchor-links {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 80px;
  }
  ul.anchor-links li a {
    font-size: 13px;
    padding: 8px 6px 7px;
  }
}

/* 色を個別にカスタマイズ */
ul.anchor-links li:nth-child(1) a {
  background-color: #fdb1b1;
}

ul.anchor-links li:nth-child(2) a {
  background-color: #c8f3ca;
}

ul.anchor-links li:nth-child(3) a {
  background-color: #b3e5f6;
}

ul.anchor-links li:nth-child(4) a {
  background-color: #f9ecc1;
}

ul.anchor-links li:nth-child(5) a {
  background-color: #fdd6b1;
}

ul.anchor-links li:nth-child(6) a {
  background-color: #f7b1fd;
}

ul.anchor-links li:nth-child(7) a {
  background-color: #cccccc;
}

.diagonal-line-background {
  width: 100%;
  height: 16px;
  margin: 100px 0;
  background-size: auto auto;
  background: #ffffff;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, #f5f5f5 6px, #f5f5f5 8px);
}
@media print, screen and (max-width: 767px) {
  .diagonal-line-background {
    height: 10px;
    margin: 50px 0;
  }
}

.note-text {
  background: repeating-linear-gradient(to bottom, #ffffff 0, #ffffff 48px, #dddddd 49px 50px);
  line-height: 50px; /* ライン間隔に一致 */
  margin: 0 0 100px; /* ブロック要素の余白を削除 */
  padding: 5px 10px; /* 上下と左右の余白 */
  font-size: 16px; /* テキストサイズ */
  white-space: normal; /* 改行を適切に表示 */
}
.note-text span {
  font-weight: 700;
}
@media print, screen and (max-width: 767px) {
  .note-text {
    background: repeating-linear-gradient(to bottom, #ffffff 0, #ffffff 38px, #dddddd 39px 40px);
    line-height: 40px; /* ラインの間隔と一致させる */
    padding: 5px;
    margin-bottom: 50px;
  }
}

.about-box {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}
.about-box .image {
  width: 33%;
}
.about-box .content {
  flex: 1;
  line-height: 2;
  padding: 40px;
  background: #fafafa; /* 背景色 */
  background-image: radial-gradient(circle, #f5f5f5 1px, transparent 1px); /* ドット */
  background-size: 10px 10px; /* ドットの間隔 */
  border-radius: 60px;
}
.about-box .content .item-title {
  font-size: 40px;
  color: coral;
  margin-bottom: 20px;
}
.about-box .content ul {
  margin-bottom: 40px;
}
.about-box .content ul li {
  margin-bottom: 10px;
  padding: 5px 1.7em;
  background: #ffffff;
  border-radius: 6px;
}
.about-box .content ul li::before {
  top: 1.1em;
  left: 1em;
}
.about-box .content span {
  display: inline-block;
  font-weight: 700;
  margin-right: 6px;
  margin-bottom: 10px;
  padding: 0 2px;
  border-radius: 6px;
}
.about-box .content .kurumi-color {
  background: #c8f3ca;
}
.about-box .content .suimi-color {
  background: #b3e5f6;
}
.about-box .content .himari-color {
  background: #f9ecc1;
}
.about-box .content .nichika-color {
  background: #fdd6b1;
}
@media print, screen and (max-width: 991px) {
  .about-box {
    gap: 20px;
  }
  .about-box .content {
    padding: 30px;
    border-radius: 30px;
  }
}
@media print, screen and (max-width: 767px) {
  .about-box {
    flex-direction: column;
    gap: 30px;
  }
  .about-box .image {
    width: 80%;
  }
  .about-box .content {
    padding: 20px;
    border-radius: 10px;
  }
  .about-box .content .item-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .about-box .content ul li {
    margin-bottom: 10px;
  }
  .about-box .content span {
    display: block;
    font-weight: 500;
    text-align: center;
  }
}

.feature-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.feature-box .box {
  width: calc((100% - 40px) / 2);
  padding: 60px;
  border: 5px solid #c8f3ca;
  border-radius: 60px;
}
.feature-box .box .title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 10px;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 20px;
  padding: 0 0 2px 15px;
  border-left: 4px solid #fe6666;
}
.feature-box .box .title span {
  font-size: 16px;
}
@media print, screen and (max-width: 767px) {
  .feature-box {
    flex-direction: column;
    gap: 20px;
  }
  .feature-box .box {
    width: 100%;
    padding: 40px 30px;
    border: 4px solid #c8f3ca;
    border-radius: 10px;
  }
  .feature-box .box .title {
    font-size: 24px;
    padding: 0 0 2px 12px;
    border-left: 3px solid #fe6666;
  }
  .feature-box .box .title span {
    font-size: 15px;
  }
}

.table-ttl {
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  background: #fe6666;
  border-bottom: 3px solid #ffffff;
  border-radius: 10px 10px 0 0;
}

.table-schedule {
  width: 100%;
}
.table-schedule tr {
  display: grid;
  grid-template-columns: 100px auto;
}
.table-schedule tr th,
.table-schedule tr td {
  text-align: left;
  vertical-align: top;
  padding: 1.5em;
}
.table-schedule tr th {
  font-weight: 700;
  text-align: center;
  border-top: 1px dashed #ffffff;
}
.table-schedule tr td {
  border-top: 1px dashed #cccccc;
}
.table-schedule tr:first-child th,
.table-schedule tr:first-child td {
  border-top: none;
}
.table-schedule tr:last-child th {
  border-radius: 0 0 0 10px;
}
@media screen and (max-width: 767px) {
  .table-schedule tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .table-schedule tr th,
  .table-schedule tr td {
    display: block;
    width: 100%;
    border-top: none;
    padding: 1em;
  }
  .table-schedule tr th {
    padding: 0.5em 1em;
  }
  .table-schedule tr:last-child th {
    border-radius: 0;
  }
}

.schedule-box {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.schedule-box .box {
  width: calc((100% - 50px) / 2);
}
.schedule-box .box:first-child table tr th {
  background: #e6fcff;
}
.schedule-box .box:last-child table tr th {
  background: #fee5ff;
}
@media screen and (max-width: 991px) {
  .schedule-box {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .schedule-box {
    flex-direction: column;
  }
  .schedule-box .box {
    width: 100%;
  }
}

.guide-note {
  font-size: 16px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .guide-note {
    font-size: 15px;
    padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 10px;
  }
}

.flow-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* 各項目間のスペース */
  margin: 0 15px;
}
.flow-content .flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 20px; /* 丸みを持たせる */
  width: 100%; /* 項目の幅 */
  max-width: 1199px; /* 最大幅を制限 */
  background-color: #fffaf0; /* 柔らかい背景色 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ふんわりした影 */
}
.flow-content .flow-item .flow-number {
  font-size: 28px;
  font-weight: bold;
  color: #ff8c00; /* 明るいオレンジで目立たせる */
  margin-bottom: 10px;
}
.flow-content .flow-item .flow-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.flow-content .flow-item .flow-detail {
  color: #555;
  line-height: 1.8;
}
.flow-content .flow-item .flow-detail .flow-04 {
  color: #ffffff;
  margin-top: 10px;
  padding: 4px 5px 2px;
  background: #fe996c;
  border-radius: 6px;
}
.flow-content .flow-item .flow-arrow {
  width: 0;
  height: 0;
  border-left: 25px solid transparent; /* 左右の三角形部分 */
  border-right: 25px solid transparent;
  border-top: 25px solid #ff8c00; /* 下向き矢印の色 */
  margin-top: -10px; /* アイテム間の調整 */
}
@media screen and (max-width: 767px) {
  .flow-content .flow-item {
    text-align: left;
  }
}

.flow-content .flow-item:last-child + .flow-arrow {
  display: none; /* 最後の項目の下の矢印を非表示 */
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  margin: 20px 60px 40px;
}
.contact-info .info-box {
  width: calc((100% - 20px) / 2);
  padding: 20px;
  border-radius: 6px;
}
.contact-info .info-box .tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-info .info-box .tel-number .label {
  display: inline-block;
  font-size: 13px;
  color: #ffffff;
  line-height: 1;
  padding: 4px 8px 2px;
  background: #3e749d;
  border-radius: 3px;
}
.contact-info .info-box .tel-number .number {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #333333;
}
@media (max-width: 991px) {
  .contact-info {
    flex-direction: column;
    margin: 20px 0 40px;
  }
}
@media (max-width: 767px) {
  .contact-info .info-box {
    width: 100%;
  }
  .contact-info .info-box .tel-number {
    gap: 10px;
  }
  .contact-info .info-box .tel-number .number {
    font-size: 30px;
  }
}

.time-holiday {
  font-weight: 700;
  text-align: center;
}

.tel-box-1 {
  background: #c8f3ca;
}

.tel-box-2 {
  background: #b3e5f6;
}

.tel-box-3 {
  background: #f9ecc1;
}

.tel-box-4 {
  background: #fdd6b1;
}

.support-box {
  display: flex;
  align-items: center;
  gap: 40px;
}
.support-box .text-box {
  flex: 1;
}
.support-box .circle-box {
  width: 550px;
}
.support-box .circle-box .venn-diagram {
  position: relative;
  width: 100%;
  height: 500px;
}
.support-box .circle-box .venn-diagram .circle {
  position: absolute;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.7; /* 透過度を調整 */
}
.support-box .circle-box .venn-diagram .circle .text,
.support-box .circle-box .venn-diagram .circle .subtext {
  width: 100%;
}
.support-box .circle-box .venn-diagram .circle .text {
  font-size: 24px;
  color: #ffffff;
  z-index: 100;
}
.support-box .circle-box .venn-diagram .circle .subtext {
  font-size: 15px;
}
.support-box .circle-box .venn-diagram .circle1 {
  top: 0;
  left: 125px;
  background: #f4a460; /* 保育士（オレンジ） */
}
.support-box .circle-box .venn-diagram .circle2 {
  top: 200px;
  left: 0;
  background: #87cefa; /* 専門職スタッフ（青） */
}
.support-box .circle-box .venn-diagram .circle3 {
  top: 200px;
  left: 250px;
  background: #90ee90; /* 教員（緑） */
}
@media (max-width: 991px) {
  .support-box {
    flex-direction: column;
    gap: 40px;
  }
  .support-box .text-box {
    width: 100%;
  }
  .support-box .circle-box {
    width: 100%;
  }
  .support-box .circle-box .venn-diagram {
    width: 550px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .support-box .circle-box {
    width: 100%;
  }
  .support-box .circle-box .venn-diagram {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    height: auto;
  }
  .support-box .circle-box .venn-diagram .circle {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 20px;
    border-radius: 6px;
  }
  .support-box .circle-box .venn-diagram .circle .text,
  .support-box .circle-box .venn-diagram .circle .subtext {
    width: 100%;
  }
  .support-box .circle-box .venn-diagram .circle .text {
    font-size: 20px;
    color: #333333;
    padding: 10px;
    background: #ffffff;
    border-radius: 3px;
  }
  .support-box .circle-box .venn-diagram .circle .subtext {
    margin-top: 20px;
  }
}