@charset "UTF-8";
.page_ttl_sub1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page_ttl_sub1 .pts_ttl1 {
  font-size: 30px;
  font-weight: bold;
  margin: 0.2em auto;
}
.page_ttl_sub1 .pts_ttl2 {
  font-size: 21px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 50px;
  padding: 0.3em 1em;
}

.h3_blue {
  background-color: #7AC1F2;
  color: #fff;
  font-weight: bold;
  font-size: clamp(24px, 2.5vw, 33px);
  padding: 10px 20px 20px 20px;
  margin: 30px 0;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
  letter-spacing: 3px;
}
.h3_blue span {
  display: inline-block;
  position: relative;
}
.h3_blue span::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: 23px;
  background-image: url(../img/top_usagi.png);
  width: 44px;
  height: 67px;
  transition: transform 0.3s ease;
  /* アニメーション効果を追加 */
}
.h3_blue::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 1%;
  width: 98%;
  border-bottom: 2px dashed #fff;
  /* ✅ 破線を作る */
}
.h3_blue:hover span::after {
  transform: translateY(-10px);
  /* ホバー時に画像を10px上へ移動 */
}

.h3_blue_bear {
  background-color: #7AC1F2;
  color: #fff;
  font-weight: bold;
  font-size: clamp(24px, 2.5vw, 33px);
  padding: 10px 20px 20px 20px;
  padding: 10px 5px 20px 5px;
  margin: 30px 0;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
  letter-spacing: 3px;
}
.h3_blue_bear span {
  display: inline-block;
  position: relative;
}
.h3_blue_bear span::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: 36px;
  background-image: url(../img/top_kuma.png);
  width: 56px;
  height: 56px;
  transition: transform 0.3s ease;
}
.h3_blue_bear::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 1%;
  width: 98%;
  border-bottom: 2px dashed #fff;
  /* ✅ 破線を作る */
}
.h3_blue_bear:hover span::after {
  transform: translateY(-10px);
  /* ホバー時に画像を10px上へ移動 */
}

.h3_pnk_risu {
  background-color: #FF8EBC;
  color: #fff;
  font-weight: bold;
  font-size: clamp(24px, 2.5vw, 33px);
  padding: 10px 20px 20px 20px;
  padding: 10px 5px 20px 5px;
  margin: 30px 0;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
  letter-spacing: 3px;
}
.h3_pnk_risu span {
  display: inline-block;
  position: relative;
}
.h3_pnk_risu span::after {
  content: "";
  position: absolute;
  left: -45px;
  bottom: 23px;
  background-image: url(../img/top_risu.png);
  width: 50px;
  height: 57px;
  transition: transform 0.3s ease;
  /* アニメーション効果を追加 */
}
.h3_pnk_risu::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 1%;
  width: 98%;
  border-bottom: 2px dashed #fff;
  /* ✅ 破線を作る */
}
.h3_pnk_risu:hover span::after {
  transform: translateY(-10px);
  /* ホバー時に画像を10px上へ移動 */
}

/*おしらせ一覧*/
.news_block {
  border-radius: 15px;
  border: 1px solid #EBC854;
  padding: 1.5em;
  width: 100%;
  width: 95%;
  margin: auto;
  background: #ffffff;
}

.nws_ul {
  display: flex;
  flex-direction: column;
}
.nws_ul a:hover {
  opacity: 0.5;
}

.nws_li {
  border-bottom: 1px dotted #EBC854;
  padding-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1em 0;
}
.nws_li p:first-child {
  width: 10%;
  font-size: 20px;
  font-weight: bold;
  max-width: 100px;
  display:contents;
}
.nws_li p:nth-child(2) {
  width: 20%;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  max-width: 173px;
  border-radius: 10px;
  text-align: center;
  padding: 0.1em;
}
.nws_li p:last-child {
  width: 70%;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 1100px) {
  .nws_li {
    border-bottom: 1px dotted #EBC854;
    padding-bottom: 0.5em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nws_li p:first-child {
    width: 15%;
    font-size: 20px;
    font-weight: bold;
  }
  .nws_li p:nth-child(2) {
    width: 25%;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    max-width: 173px;
    border-radius: 10px;
    text-align: center;
  }
  .nws_li p:last-child {
    width: 60%;
    font-size: 18px;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .page_ttl_sub1 .pts_ttl1 {
    font-size: 30px;
    font-size: clamp(18px, 6vw, 30px);
    font-weight: bold;
    margin: 0.2em auto;
  }
  .page_ttl_sub1 .pts_ttl2 {
    font-size: 21px;
    font-size: clamp(16px, 5vw, 21px);
    font-weight: bold;
    background-color: #fff;
    border-radius: 50px;
    padding: 0.3em 1em;
  }
  .news_block {
    width: 98%;
  }
  .nws_li {
    border-bottom: 1px dotted #EBC854;
    padding-bottom: 0.5em;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .nws_li p:first-child {
    width: 25%;
    font-size: 20px;
    font-weight: bold;
    min-width: 170px;
  }
  .nws_li p:nth-child(2) {
    width: 75%;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    max-width: 173px;
    border-radius: 10px;
    text-align: center;
    min-width: 170px;
  }
  .nws_li p:last-child {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
  }
}
/*お知らせ　＞　日常保育*/
.flx_lnkbox {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2em;
}

.lnk_block1 {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 1em;
  margin-top: 3em;
}


.lnk_ylw {
  background-color: #EBC854;
  display: flex;
  min-width: 450px;
  padding: 1em 0.5em;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.lnk_ylw p {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.lnk_ylw img {
  display: block;
  aspect-ratio: 1/1;
  width: 30px;
}
.lnk_ylw:hover {
  opacity: 0.5;
}
.lnk_block1._va1 {
  flex-flow:column;
  align-items: center;
  width:100%;
}
input[type="submit"].lnk_ylw{
  max-width:100%;
  width:clamp(300px,45vw,450px);
  text-align:center;
  font-size: clamp(20px,2.8vw,28px);
  font-weight: bold;
  color: #fff;
  line-height:1;
}

.lnk_grn {
  background-color: #8CDB5E;
  display: flex;
  min-width: 450px;
  padding: 1em 0.5em;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.lnk_grn p {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.lnk_grn img {
  display: block;
  aspect-ratio: 1/1;
  width: 30px;
}
.lnk_grn:hover {
  opacity: 0.5;
}

.lnk_pnk {
  background-color: #FF8EBC;
  display: flex;
  min-width: 450px;
  padding: 1em 0.5em;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.lnk_pnk p {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.lnk_pnk img {
  display: block;
  aspect-ratio: 1/1;
  width: 41px;
}
.lnk_pnk:hover {
  opacity: 0.5;
}

.lnk_blue {
  background-color: #7AC1F2;
  display: flex;
  min-width: 450px;
  padding: 1em 0.5em;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.lnk_blue p {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.lnk_blue img {
  display: block;
  aspect-ratio: 1/1;
  width: 41px;
}
.lnk_blue:hover {
  opacity: 0.5;
}

.lnk_pnk2 {
  background-color: #FFFFFF;
  display: flex;
  min-width: 450px;
  padding: 1em 0.5em;
  border: 2px solid #FF8EBC;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.lnk_pnk2 p {
  font-size: 28px;
  font-weight: bold;
  color: #4D4D4D;
}
.lnk_pnk2 img {
  display: block;
  aspect-ratio: 1/1;
  width: 30px;
}
.lnk_pnk2:hover {
  opacity: 0.5;
}

.flx_lnkbox2 {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-bottom: 2em;
  max-width: 1200px;
  margin: 4em auto 4em;
  justify-content: space-around;
}
.flx_lnkbox2 a {
  width: 33.3333333333%;
  min-width: auto;
}

.date_tblock {
  width: 95%;
  margin: 3em auto 4em;
}

.date_ttl {
  background-color: #EBC854;
  border-radius: 20px 20px 0 0;
  color: #fff;
  border: 1px solid #EBC854;
  display: flex;
  padding: 0.5em;
  align-items: center;
}
.date_ttl p:first-child {
  display:contents;
  width: 15%;
  font-size: 26px;
  font-weight: bold;
  border-right: 2px solid #fff;
  text-align: right;
  padding-right: 0.5em;
}
.date_ttl p:last-child {
  width: 85%;
  font-weight: bold;
  font-size: 30px;
  padding-left: 0.5em;
}

.date_tbox {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 1em;
  border: 1px solid #EBC854;
}
.date_tbox img {
  display: block;
  max-width: 400px;
  margin: 1em auto;
  width: 100%;
}
.date_tbox p {
  color: #4D4D4D;
  font-size: 18px;
  font-weight: 400;
  margin-top: 1em;
  margin-bottom: 1.5em;
}
.date_tbox a {
  font-weight: 600;
  color: #29A5FB;
  margin-bottom: 1em;
}

@media screen and (max-width: 1100px) {
  .date_ttl p:first-child {
    width: 15%;
    font-size: 20px;
  }
  .date_ttl p:last-child {
    width: 85%;
    font-size: 25px;
  }
  .lnk_grn {
    min-width: 300px;
  }
  .lnk_grn p {
    font-size: 20px;
  }
  .lnk_grn img {
    width: 23px;
  }
  .lnk_pnk {
    min-width: 300px;
  }
  .lnk_pnk p {
    font-size: 20px;
  }
  .lnk_pnk img {
    width: 23px;
  }
  .lnk_blue {
    min-width: 300px;
  }
  .lnk_blue p {
    font-size: 20px;
  }
  .lnk_blue img {
    width: 23px;
  }
  .lnk_ylw {
    min-width: 300px;
  }
  .lnk_ylw p {
    font-size: 20px;
  }
  .lnk_ylw img {
    width: 23px;
  }
  .lnk_pnk2 {
    min-width: 300px;
  }
  .lnk_pnk2 p {
    font-size: 20px;
  }
  .lnk_pnk2 img {
    width: 23px;
  }
}
@media screen and (max-width: 767px) {
  .date_tblock {
    width: 98%;
  }
  .date_tbox p {
    font-size: 16px;
  }
  .date_ttl {
    flex-direction: column;
  }
  .date_ttl p:first-child {
    width: 100%;
    font-size: 19px;
    text-align: left;
    padding-left: 0.5em;
    border-right: none;
  }
  .date_ttl p:last-child {
    width: 100%;
    font-size: 21px;
  }
  .flx_lnkbox {
    flex-wrap: wrap;
    gap: 20px;
  }
  .flx_lnkbox2 {
    flex-direction: column;
    gap: 20px;
    margin: 2em auto;
  }
  .flx_lnkbox2 a {
    max-width: 290px;
    width: 100%;
  }
  .lnk_grn {
    margin: auto;
    width: 95%;
    max-width: 350px;
    min-width: auto;
  }
  .lnk_grn p {
    font-size: 18px;
  }
  .lnk_grn img {
    width: 23px;
  }
  .lnk_pnk {
    margin: auto;
    width: 95%;
    max-width: 350px;
    min-width: auto;
  }
  .lnk_pnk p {
    font-size: 18px;
  }
  .lnk_pnk img {
    width: 23px;
  }
  .lnk_blue {
    margin: auto;
    width: 95%;
    max-width: 350px;
    min-width: auto;
  }
  .lnk_blue p {
    font-size: 18px;
  }
  .lnk_blue img {
    width: 23px;
  }
  .lnk_ylw {
    margin: auto;
    width: 95%;
    max-width: 350px;
    min-width: auto;
  }
  .lnk_ylw p {
    font-size: 18px;
  }
  .lnk_ylw img {
    width: 23px;
  }
  .lnk_pnk2 {
    margin: auto;
    width: 95%;
    max-width: 350px;
    min-width: auto;
  }
  .lnk_pnk2 p {
    font-size: 18px;
  }
  .lnk_pnk2 img {
    width: 23px;
  }
  .h3_blue_bear {
    font-size: clamp(20px, 2.5vw, 30px);
  }
  .h3_blue_bear span {
    display: inline-block;
    position: relative;
  }
  .h3_blue_bear span::after {
    content: "";
    position: absolute;
    right: -10px;
    top: -50px;
  }
  .h3_pnk_risu {
    font-size: clamp(20px, 2.5vw, 30px);
  }
  .h3_pnk_risu span {
    display: inline-block;
    position: relative;
  }
  .h3_pnk_risu span::after {
    content: "";
    position: absolute;
    left: -10px;
    top: -50px;
  }
}
/*保育目標*/
.target_flex {
  display: flex;
  flex-wrap: wrap;
}
.target_flex .tgt_block:nth-child(1) {
  width: 50%;
}
.target_flex .tgt_block:nth-child(1) dl {
  border: 3px solid #8CDB5E;
  margin: auto;
}
.target_flex .tgt_block:nth-child(1) dl img {
  display: block;
  max-width: 90px;
  aspect-ratio: 1/1;
  transition: transform 0.3s ease;
}
.target_flex .tgt_block:nth-child(1) dl img:hover {
  transform: translateY(-10px);
}
.target_flex .tgt_block:nth-child(2) {
  width: 50%;
}
.target_flex .tgt_block:nth-child(2) dl {
  border: 3px solid #7AC1F2;
  margin: auto;
}
.target_flex .tgt_block:nth-child(2) dl img {
  display: block;
  max-width: 56px;
  aspect-ratio: 1/1;
  transition: transform 0.3s ease;
}
.target_flex .tgt_block:nth-child(2) dl img:hover {
  transform: translateY(-10px);
}
.target_flex .tgt_block:nth-child(3) {
  width: 100%;
}
.target_flex .tgt_block:nth-child(3) dl {
  border: 3px solid #EBC854;
  margin: auto;
}
.target_flex .tgt_block:nth-child(3) dl img {
  display: block;
  max-width: 43px;
  aspect-ratio: 43/67;
  transition: transform 0.3s ease;
}
.target_flex .tgt_block:nth-child(3) dl img:hover {
  transform: translateY(-10px);
}
.target_flex .tgt_block:nth-child(4) {
  width: 50%;
}
.target_flex .tgt_block:nth-child(4) dl {
  border: 3px solid #FF8EBC;
  margin: auto;
}
.target_flex .tgt_block:nth-child(4) dl img {
  display: block;
  max-width: 50px;
  aspect-ratio: 50/57;
  transition: transform 0.3s ease;
}
.target_flex .tgt_block:nth-child(4) dl img:hover {
  transform: translateY(-10px);
}
.target_flex .tgt_block:nth-child(5) {
  width: 50%;
}
.target_flex .tgt_block:nth-child(5) dl {
  border: 3px solid #FF8EBC;
  margin: auto;
}
.target_flex .tgt_block:nth-child(5) dl img {
  display: block;
  max-width: 50px;
  aspect-ratio: 50/57;
  transition: transform 0.3s ease;
}
.target_flex .tgt_block:nth-child(5) dl img:hover {
  transform: translateY(-10px);
}

.tgt_dl {
  border-radius: 300px;
  background-color: #FCFCDE;
  display: flex;
  flex-direction: column;
  max-width: 451px;
  max-height: 451px;
  aspect-ratio: 1/1;
  justify-content: flex-start;
  align-items: center;
  padding: 2em 0.8em;
}
.tgt_dl dt {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 0.5em;
}
.tgt_dl dd li {
  position: relative;
  padding-left: 30px;
  list-style: none;
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: 500;
}
.tgt_dl dd li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: url(../img/common/green/monthly-letter/tulip.png) no-repeat center;
  background-size: contain;
}

.clb_box {
  position: relative;
  margin-top: 10em;
}
.clb_box .clb_ttl {
  position: absolute;
  display: flex;
  top: -52px;
  left: 35px;
  background: url(../img/common/green/monthly-letter/board_bg.png) no-repeat center;
  background-size: contain;
  /* 画像が縮小されないようにする */
  aspect-ratio: 13/3;
  width: 420px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.clb_box .clb_ttl img {
  display: block;
  aspect-ratio: 1/1;
  max-width: 60px;
  max-height: 60px;
}
.clb_box .clb_ttl p {
  font-size: 28px;
  font-weight: bold;
}
.clb_box .clb_txtbox {
  border: 1px solid #EBC854;
  padding: 5em 1em 2em;
}
.clb_box .clb_txtbox p {
  font-size: 18px;
}

.clb_ftbox {
  display: flex;
  gap: 10px;
  margin: 2em auto;
}
.clb_ftbox p {
  font-size: 18px;
  width: 75%;
}
.clb_ftbox img {
  display: block;
  width: 25%;
  aspect-ratio: 333/167;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.clb_ftbox img:hover {
  transform: translateY(-10px);
}

@media screen and (max-width: 900px) {
  .target_flex .tgt_block:nth-child(1) {
    width: 100%;
  }
  .target_flex .tgt_block:nth-child(1) dl {
    border: 3px solid #8CDB5E;
    margin: 0 auto 2em;
  }
  .target_flex .tgt_block:nth-child(2) {
    width: 100%;
  }
  .target_flex .tgt_block:nth-child(2) dl {
    border: 3px solid #7AC1F2;
    margin: 0 auto 2em;
  }
  .target_flex .tgt_block:nth-child(3) {
    width: 100%;
  }
  .target_flex .tgt_block:nth-child(3) dl {
    border: 3px solid #EBC854;
    margin: 0 auto 2em;
  }
  .target_flex .tgt_block:nth-child(4) {
    width: 100%;
  }
  .target_flex .tgt_block:nth-child(4) dl {
    border: 3px solid #FF8EBC;
    margin: 0 auto 2em;
  }
  .target_flex .tgt_block:nth-child(5) {
    width: 100%;
  }
  .target_flex .tgt_block:nth-child(5) dl {
    border: 3px solid #FF8EBC;
    margin: 0 auto 2em;
  }
  .target_flex .tgt_dl dd li {
    font-size: 17px;
  }
  .target_flex .tgt_dl dd li::before {
    width: 20px;
    height: 20px;
    top: 4px;
  }
  .clb_ftbox {
    flex-direction: column;
  }
  .clb_ftbox p {
    width: 100%;
  }
  .clb_ftbox img {
    max-width: 333px;
    width: 100%;
    margin: 1em auto;
  }
  .clb_box {
    margin-top: 6em;
  }
  .clb_box .clb_ttl {
    max-width: 300px;
    width: 100%;
    left: 5px;
    top: -30px;
  }
  .clb_box .clb_ttl img {
    display: block;
    aspect-ratio: 1/1;
    max-width: 30px;
    max-height: 30px;
  }
  .clb_box .clb_ttl p {
    font-size: 20px;
    font-weight: bold;
  }
  .clb_box .clb_txtbox {
    padding: 4em 1em 2em;
  }
}
/*おひさまクラブ*/
.ohsm_ul {
  list-style: none;
  padding-left: 0;
  max-width: 1000px;
  margin: 3em auto 6em;
}
.ohsm_ul .ohsm_li {
  position: relative;
  padding-left: 1.5em;
  font-size: 18px;
  margin-bottom: 1em;
}
.ohsm_ul .ohsm_li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #004EA1;
  font-size: 1em;
  line-height: 1.5;
}
.ohsm_ul li:last-child {
  border-top: 2px dashed #7AC1F2;
  border-bottom: 2px dashed #7AC1F2;
  padding: 1em 0 1em 1.5em;
  font-size: 18px;
}
.ohsm_ul li:last-child::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1em;
  color: #004EA1;
  font-size: 1em;
  line-height: 1.5;
}

.ohsm_li2 {
  position: relative;
  min-height: 200px;
  padding-top: 2.5em;
}
.ohsm_li2 .ohsm_ttl {
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/common/green/ohisama-club/ohisama-club.png) no-repeat center;
  background-size: contain;
  /* 画像が縮小されないようにする */
  aspect-ratio: 89/92;
  min-width: 178px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #8E5913;
}
.ohsm_li2 .ohsm_txt {
  padding: 1em 0 1em 11em;
  border: 1px solid #57360A;
  background-color: #FFF8E4;
  border-radius: 30px;
  width: 95%;
  margin: auto;
}

.green_houshin .green_flex .pink_kids {
  padding-bottom: 180px;
}
.green_houshin .green_flex .pink_kids .pkds_ttl {
  background: url(../img/common/green/ohisama-club/pink_kids1.png) no-repeat center;
  background-size: contain;
  /* 画像が縮小されないようにする */
  aspect-ratio: 103/22;
  width: 309px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #4D4D4D;
  margin: 0 auto 1em;
}
.green_houshin .green_flex .pink_kids .pkds_txt {
  color: #4D4D4D;
  font-size: 18px;
}

.green_houshin .green_flex .pink_kids::after {
  background-image: url(../img/common/green/ohisama-club/pink_kids2.png);
  width: 498px;
  height: 76px;
  right: 3.3333333333%;
}

@media screen and (max-width: 767px) {
  .ohsm_ul {
    width: 95%;
    margin: auto;
  }
  .ohsm_ul .ohsm_li {
    font-size: 16px;
  }
  .ohsm_ul li:last-child {
    font-size: 16px;
  }
  .ohsm_li2 {
    position: relative;
    min-height: 200px;
    padding-top: 5em;
    margin-bottom: 2em;
  }
  .ohsm_li2 .ohsm_ttl {
    position: absolute;
    left: 2px;
    top: 0;
    background: url(../img/common/green/ohisama-club/ohisama-club.png) no-repeat center;
    background-size: contain;
    /* 画像が縮小されないようにする */
    aspect-ratio: 89/92;
    min-width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #8E5913;
  }
  .ohsm_li2 .ohsm_txt {
    padding: 4em 1em 1em;
    border: 1px solid #57360A;
    background-color: #FFF8E4;
    border-radius: 30px;
    width: 95%;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .green_houshin .green_flex .pink_kids {
    padding-bottom: 180px;
  }
  .green_houshin .green_flex .pink_kids .pkds_ttl {
    background: url(../img/common/green/ohisama-club/pink_kids1.png) no-repeat center;
    background-size: contain;
    /* 画像が縮小されないようにする */
    aspect-ratio: 103/22;
    width: 98%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    color: #4D4D4D;
    margin: 0 auto 1em;
  }
  .green_houshin .green_flex .pink_kids .pkds_txt {
    color: #4D4D4D;
    font-size: 16px;
  }
}
/*安心できる保育のために*/
.miemasu_fbox {
  display: flex;
  width: 95%;
  margin: 3em auto;
  gap: 25px;
}
.miemasu_fbox .lf_35 {
  width: 30%;
}
.miemasu_fbox .lf_35 img {
  display: block;
  aspect-ratio: 398/303;
  max-width: 398px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mems_ul {
  list-style: none;
  padding-left: 0;
  width: 70%;
}
.mems_ul li {
  position: relative;
  border-bottom: 2px dashed #7AC1F2;
  padding: 1em 0 1em 1.5em;
  font-size: 18px;
}
.mems_ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1em;
  color: #004EA1;
  font-size: 1em;
  line-height: 1.5;
}
.mems_ul .aed_li {
  border-top: 2px dashed #7AC1F2;
}
.mems_ul .aed_li::before {
  content: none;
}
.mems_ul .mems_bld {
  font-size: 23px;
  font-weight: bold;
}
.mems_ul .mems_lif {
  display: flex;
  gap: 10px;
  font-size: 23px;
  font-weight: bold;
}
.mems_ul .mems_lif .mems_p1 {
  width: 35%;
  max-width: 137px;
}
.mems_ul .mems_lif .mems_p2 {
  width: 65%;
  font-size: 18px;
  font-weight: 500;
}

._aedbox {
  gap: 70px;
  align-items: center;
}
._aedbox .lf_35 {
  width: 35%;
}
._aedbox .mems_ul {
  max-width: 550px;
  width: 65%;
}
._aedbox .mems_ul .aed_li {
  padding: 1em 0.5em;
}

.miemasu {
  display: block;
  width: 90%;
  max-width: 822px;
  aspect-ratio: 411/106;
  margin: 3em auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.miemasu img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .miemasu_fbox {
    display: flex;
    width: 95%;
    margin: 3em auto;
    flex-direction: column;
  }
  .miemasu_fbox .lf_35 {
    width: 90%;
    margin: auto;
  }
  .miemasu_fbox .lf_35 img {
    display: block;
    aspect-ratio: 398/303;
    max-width: 300px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
  }
  .mems_ul {
    list-style: none;
    padding-left: 0;
    width: 100%;
  }
  .miemasu {
    display: block;
    width: 90%;
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  ._aedbox {
    gap: 70px;
    align-items: center;
  }
  ._aedbox .lf_35 {
    width: 90%;
  }
  ._aedbox .mems_ul {
    max-width: 550px;
    width: 100%;
  }
  ._aedbox .mems_ul .aed_li {
    padding: 1em 0.5em;
  }
}
@media screen and (max-width: 500px) {
  .mems_ul .mems_bld {
    font-size: 20px;
    font-weight: bold;
  }
  .mems_ul .mems_lif {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
  }
  .mems_ul .mems_lif .mems_p1 {
    max-width: none;
    width: 100%;
  }
  .mems_ul .mems_lif .mems_p2 {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
  }
}
/*主な年間行事*/
.ev_txt1 {
  max-width: 1200px;
  width: 95%;
  margin: 1em auto;
  font-weight: bold;
  font-size: 25px;
  font-size: clamp(20px, 2vw, 25px);
  color: #4D4D4D;
}

.harunogyoji {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 210px;
  padding: 5em 0 1em;
  margin: auto;
}
.harunogyoji:hover::after {
  transform: translateY(-40px);
}
.harunogyoji::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: -128px;
  top: 50px;
  background-image: url("../img/common/green/event/haru_gyoji.png");
  width: 120px;
  height: 101px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.harunogyoji span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  margin-left: -2px;
  z-index: 1;
  padding: 0.5em;
}
.harunogyoji span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5em;
  height: 2.5em;
  background-color: #DEEEB2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.harunogyoji span:nth-child(even)::before {
  background-color: #CDE981;
}

.natunogyoji {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 210px;
  padding: 5em 0 1em;
  margin: auto;
}
.natunogyoji:hover::before, .natunogyoji:hover::after {
  transform: translateY(-30px);
}
.natunogyoji::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: -50px;
  top: 50px;
  background-image: url("../img/common/green/event/natu_gyoji1.png");
  width: 46px;
  height: 109px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.natunogyoji::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: -84px;
  top: 29px;
  background-image: url("../img/common/green/event/natu_gyoji2.png");
  width: 105px;
  height: 125px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.natunogyoji span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  margin-left: -2px;
  z-index: 1;
  padding: 0.5em;
}
.natunogyoji span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5em;
  height: 2.5em;
  background-color: #BAEFF8;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.natunogyoji span:nth-child(even)::before {
  background-color: #6AE2F6;
}

.akigyoji {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 210px;
  padding: 5em 0 1em;
  margin: auto;
}
.akigyoji:hover::after {
  transform: rotate(10deg) translateY(-40px);
}
.akigyoji::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: -120px;
  top: 70px;
  background-image: url("../img/common/green/event/aki_gyoji1.png");
  width: 112px;
  height: 64px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  transform: rotate(10deg);
}
.akigyoji span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  margin-left: -2px;
  z-index: 1;
  padding: 0.5em;
}
.akigyoji span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5em;
  height: 2.5em;
  background-color: #FFE4B7;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.akigyoji span:nth-child(even)::before {
  background-color: #FFC182;
}

.huyunogyoji {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 210px;
  padding: 5em 0 1em;
  margin: auto;
}
.huyunogyoji:hover::before, .huyunogyoji:hover::after {
  transform: translateY(-30px);
}
.huyunogyoji::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: -50px;
  top: 70px;
  background-image: url("../img/common/green/event/huyu_gyoji1.png");
  width: 57px;
  height: 63px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.huyunogyoji::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: -84px;
  top: 50px;
  background-image: url("../img/common/green/event/huyu_gyoji2.png");
  width: 90px;
  height: 90px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.huyunogyoji span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  margin-left: -2px;
  z-index: 1;
  padding: 0.5em;
}
.huyunogyoji span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5em;
  height: 2.5em;
  background-color: #D4D3F6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.huyunogyoji span:nth-child(even)::before {
  background-color: #C4C2FB;
}

.gyoji_itemodd {
  display: flex;
  gap: 20px;
  max-width: 1080px;
  justify-content: center;
  align-items: center;
  margin: 3em auto;
  flex-wrap: wrap;
}
.gyoji_itemodd .g_itemflexc {
  display: flex;
  flex-direction: column;
  width: 40%;
}
.gyoji_itemodd .g_itemflexc img {
  display: block;
  max-width: 500px;
  aspect-ratio: 500/411;
  width: 100%;
}
.gyoji_itemodd .g_itemflexc p {
  font-size: 18px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  line-height: 1.5em;
  padding-top: 0.5em;
}

.gyj_boxodd {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gyj_boxodd p {
  font-size: 28px;
  font-weight: 500;
  height: 105px;
  width: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
}

.gyoji_itemeven {
  display: flex;
  gap: 20px;
  max-width: 1080px;
  justify-content: center;
  align-items: center;
  margin: 3em auto;
  flex-wrap: wrap-reverse;
}
.gyoji_itemeven .g_itemflexc {
  display: flex;
  flex-direction: column;
  width: 40%;
}
.gyoji_itemeven .g_itemflexc img {
  display: block;
  max-width: 500px;
  aspect-ratio: 500/411;
  width: 100%;
}
.gyoji_itemeven .g_itemflexc p {
  font-size: 18px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  line-height: 1.5em;
  padding-top: 0.5em;
}

.gyoji_ul {
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
.gyoji_ul li {
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  font-size: 18px;
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 500;
  padding-left: 0.5em;
}

.gyoji_sprng li {
  border-bottom: 2px dashed #7FBE41;
}

.gyoji_smmr li {
  border-bottom: 2px dashed #6AE2F6;
}

.gyoji_autm li {
  border-bottom: 2px dashed #FFC182;
}

.gyoji_wntr li {
  border-bottom: 2px dashed #C4C2FB;
}

.gyoji_mth4 {
  background: url(../img/common/circle_yellow.png) no-repeat;
}

.gyoji_mth5, .gyoji_mth8 {
  background: url(../img/common/circle_orange3.png) no-repeat;
}

.gyoji_mth6 {
  background: url(../img/common/circle_blue1.png) no-repeat;
}

.gyoji_mth7 {
  background: url(../img/common/circle_blue2.png) no-repeat;
}

.gyoji_mth9 {
  background: url(../img/common/circle_pink1.png) no-repeat;
}

.gyoji_mth10 {
  background: url(../img/common/circle_orange2.png) no-repeat;
}

.gyoji_mth11 {
  background: url(../img/common/circle_orange1.png) no-repeat;
}

.gyoji_mth12 {
  background: url(../img/common/circle_pink2.png) no-repeat;
}

.gyoji_mth01 {
  background: url(../img/common/circle_purple1.png) no-repeat;
}

.gyoji_mth02 {
  background: url(../img/common/circle_purple2.png) no-repeat;
}

.gyoji_mth03 {
  background: url(../img/common/circle_green1.png) no-repeat;
}

@media screen and (max-width: 767px) {
  .ev_txt1 {
    max-width: 1200px;
    width: 93%;
    margin: 1em auto;
    font-weight: bold;
    font-size: 17px;
    font-size: clamp(16px, 2vw, 17px);
    color: #4D4D4D;
  }
  .gyoji_ul {
    min-width: auto;
    width: 100%;
  }
  .gyoji_itemodd {
    flex-direction: column;
    margin: 6em auto;
  }
  .gyoji_itemodd .g_itemflexc {
    display: flex;
    flex-direction: column;
    width: 98%;
  }
  .gyoji_itemodd .g_itemflexc img {
    display: block;
    max-width: 450px;
    margin: auto;
  }
  .gyj_boxodd {
    width: 100%;
  }
  .gyoji_itemeven {
    flex-direction: column-reverse;
    margin: 6em auto;
  }
  .gyoji_itemeven .g_itemflexc {
    display: flex;
    flex-direction: column;
    width: 98%;
  }
  .gyoji_itemeven .g_itemflexc img {
    display: block;
    max-width: 450px;
    margin: auto;
  }
}
@media screen and (max-width: 450px) {
  .harunogyoji::after {
    right: -49px;
    top: 74px;
    width: 70px;
    height: 60px;
  }
  .harunogyoji span {
    font-size: 20px;
  }
  .natunogyoji::before {
    left: -7px;
    top: 62px;
    width: 30px;
    height: 90px;
  }
  .natunogyoji::after {
    right: -32px;
    top: 49px;
    width: 65px;
    height: 78px;
  }
  .natunogyoji span {
    font-size: 20px;
  }
  .akigyoji::after {
    right: -50px;
    top: 87px;
    width: 68px;
    height: 42px;
  }
  .akigyoji span {
    font-size: 20px;
  }
  .huyunogyoji::before {
    left: -12px;
    top: 50%;
    width: 40px;
    height: 45px;
  }
  .huyunogyoji::after {
    right: -31px;
    top: 50%;
    width: 55px;
    height: 57px;
  }
  .huyunogyoji span {
    font-size: 20px;
  }
}
/*課外教室*/
.w1080bx {
  max-width: 1080px;
  width: 100%;
  margin: 1em auto 6em;
}

.unp_mrkr {
  font-weight: bold;
  font-size: 28px;
  font-size: clamp(19px, 3vw, 26px);
  color: #4D4D4D;
  position: relative;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5em auto 2.5em;
}
.unp_mrkr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 49%;
  transform: translateX(-50%);
  width: 100%;
  height: 6px;
  background-color: #F3FB1E;
  border-radius: 999px;
}

.lssn_ttlitem1 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_orange3.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.lssn_ttlitem2 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_blue1.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.lssn_ttlitem3 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_yellow.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.ikyki_ttlitem1 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_orange3.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.ikyki_ttlitem2 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_blue1.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.ikyki_ttlitem3 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_yellow.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.ikyki_ttlitem4 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_pink1.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.ikyki_ttlitem5 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_green1.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.ikyki_ttlitem6 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_orange3.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.ikyki_ttlitem7 {
  font-size: 26px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  color: #4D4D4D;
  background: url(../img/common/circle_yellow.png) no-repeat;
  height: 70px;
  line-height: 70px;
  padding-left: 0.7em;
  background-size: contain;
}

.photo_block {
  display: flex;
  gap: 20px;
}

.pt_box {
  background: url(../img/common/photobox.png) no-repeat center top;
  background-size: contain;
  width: 100%;
  max-width: 426px;
  aspect-ratio: 426/323;
  /*margin: auto;*/
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7%;
}
.pt_box img {
  max-width: 340px;
  aspect-ratio: 170/109;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.hukidasi {
  position: relative;
  display: flex;
  align-items: center;
  margin: 1.5em 0 1.5em 15px;
  padding: 7px 30px;
  /*min-width: 400px;*/
  max-width: 100%;
  color: #4D4D4D;
  font-size: 18px;
  font-size: clamp(16px, 3vw, 18px);
  background: #FFF1DE;
  border-radius: 30px;
  width: 100%;
}
.hukidasi::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #FFF1DE;
}
.hukidasi p {
  margin: 0;
  padding: 0;
}

.albm_bpx article:nth-child(even) .photo_block {
  flex-direction: row-reverse;
}

.albm_bpx article:nth-child(even) .photo_block .hukidasi {
  margin: 1.5em 15px 1.5em 0;
}

.albm_bpx article:nth-child(even) .photo_block .hukidasi::before {
  right: -14px;
  left: auto;
  border-left: 15px solid #FFF1DE;
  border-right: none;
}

.lss_br {
  display: none;
}

@media (max-width: 768px) {
  .lssn_ttlitem1, .lssn_ttlitem2, .lssn_ttlitem3, .ikyki_ttlitem1, .ikyki_ttlitem2, .ikyki_ttlitem3, .ikyki_ttlitem4, .ikyki_ttlitem5, .ikyki_ttlitem6, .ikyki_ttlitem7 {
    margin-bottom: 2em;
    line-height: 3em;
  }
  .lss_br {
    display: block;
  }
  .photo_block, .albm_bpx article:nth-child(even) .photo_block {
    flex-direction: row-reverse;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .pt_box {
    background: url(../img/common/photobox.png) no-repeat center top;
    background-size: contain;
    width: 100%;
    max-width: 426px;
    aspect-ratio: 426/323;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 63px;
  }
  .pt_box img {
    max-width: 340px;
    aspect-ratio: 170/109;
    width: 80%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hukidasi {
    min-width: auto;
    margin-left: 0;
    text-align: left;
  }
  .hukidasi::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 47%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #FFF1DE;
  }
  .albm_bpx article:nth-child(even) .photo_block .hukidasi {
    min-width: auto;
    margin-right: 0;
    text-align: left;
  }
  .albm_bpx article:nth-child(even) .photo_block .hukidasi::before {
    content: "";
    position: absolute;
    top: -12px;
    right: 47%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #FFF1DE;
  }
}
/*育友会（保護者会）*/
.ikyki_ul {
  list-style: none;
  padding-left: 0;
  max-width: 1000px;
  margin: 3em auto 6em;
}
.ikyki_ul li:first-child {
  position: relative;
  border-bottom: 2px dashed #7AC1F2;
  padding: 1em 0 1em 1.5em;
  font-size: 18px;
  border-top: 2px dashed #7AC1F2;
}
.ikyki_ul li:first-child::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1em;
  color: #004EA1;
  font-size: 1em;
  line-height: 1.5;
}
.ikyki_ul .ikyki_li {
  position: relative;
  border-bottom: 2px dashed #7AC1F2;
  padding: 1em 0 1em 1.5em;
  font-size: 18px;
}
.ikyki_ul .ikyki_li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1em;
  color: #004EA1;
  font-size: 1em;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .ikyki_ul {
    width: 95%;
    margin: auto;
  }
  .ikyki_ul li:first-child, .ikyki_ul .ikyki_li {
    font-size: 16px;
  }
}
/*園児募集要項*/
.admsn_ttl {
  font-weight: bold;
  font-size: 28px;
  font-size: clamp(21px, 3vw, 28px);
  color: #4D4D4D;
  max-width: 1300px;
  margin: auto;
}
.admsn_ttl::after {
  content: "●";
  color: #F5A346;
}
.admsn_ttl::before {
  content: "●";
  color: #F5A346;
}

.admsn_flex {
  border: 1px solid #EBC854;
  max-width: 1200px;
  width: 100%;
  margin: 1em auto;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.admsn_flex .admsn_fp1 {
  background-color: #FEFF92;
  width: 40%;
  font-size: 24px;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: bold;
  color: #58380D;
  text-align: center;
  border-right: 1px solid #EBC854;
  padding: 0.5em;
  border-radius: 15px 0 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admsn_flex .admsn_fp2 {
  background-color: #FFFFFF;
  width: 60%;
  font-size: 18px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  color: #58380D;
  text-align: left;
  padding: 0.5em;
  border-radius: 0 15px 15px 0;
  display: flex;
  align-items: center;
  justify-content: left;
}
.admsn_flex .admsn_fp2 .admsnfp2_ul {
  margin-bottom: 1em;
}
.admsn_flex .admsn_fp2 .admsnfp2_ul .admsn_pint::before {
  content: "●";
  color: #F5A346;
  padding-right: 0.2em;
}
.admsn_flex .admsn_fp2 .admsnfp2_ul li:nth-child(n+2) {
  padding-left: 1em;
}
.admsn_flex ._noflexadmsn {
  display: block;
}

.admsn_flex2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 827px;
  margin: 1em auto 5em;
}
.admsn_flex2 .admsnf2_p {
  width: 100%;
  color: #ffffff;
  font-weight: bold;
  font-size: 22px;
  font-size: clamp(18px, 3vw, 22px);
  background-color: #57360A;
  border-radius: 30px 30px 0 0;
  padding: 0.5em;
  text-align: center;
}
.admsn_flex2 .admsnf2_div {
  width: 100%;
  padding: 1em 0.5em;
  border-radius: 0 0 30px 30px;
  background-color: #FFF8E4;
  border: 1px solid #57360A;
}
.admsn_flex2 .admsnf2_div .admsnf2_ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.admsn_flex2 .admsnf2_div .admsnf2_ul li {
  color: #4A2D06;
  font-weight: bold;
  font-size: 20px;
  font-size: clamp(18px, 3vw, 20px);
}
.admsn_flex2 .admsnf2_div .admsnf2_ul li span {
  font-weight: 500;
  font-size: 18px;
  font-size: clamp(16px, 3vw, 18px);
}
.admsn_flex2 .admsnf2_div .admsnf2_ul .admsf2_li2 {
  padding-right: 0.5em;
}

._zouh3grrn span:after {
  bottom: -2px;
}

._zouh3grrnbr span:after {
  bottom: -2px;
}

._zouh3grrn2 span:after {
  bottom: -2px;
}

@media screen and (max-width: 767px) {
  ._zouh3grrn span:after {
    right: -70px;
    right: 0;
    bottom: 27px;
    width: 57px;
    height: 56px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  ._zouh3grrnbr span:after {
    right: -70px;
    right: 0;
    bottom: 64px;
    width: 57px;
    height: 56px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  ._zouh3grrnbr2 span:after {
    right: -70px;
    right: 0;
    bottom: 25px;
    width: 57px;
    height: 56px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  ._brzou span:after {
    right: 0;
    bottom: 57px;
  }
  .admsn_flex {
    flex-direction: column;
  }
  .admsn_flex .admsn_fp1 {
    width: 100%;
    border-radius: 15px 15px 0 0;
    border-right: 0;
    border-bottom: 1px solid #EBC854;
  }
  .admsn_flex .admsn_fp2 {
    width: 100%;
    border-radius: 0 0 15px 15px;
  }
}
/*概要*/
.abut_mapbox {
  max-width: 1200px;
  margin: 1em auto 5em;
  width: 95%;
  max-height: 500px;
  height: 100%;
  aspect-ratio: 12/5;
}
.abut_mapbox iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.abutlf_ul {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 90%;
  margin: 5em auto 5em;
}

.abutlf_li {
  border-radius: 15px;
  border: 1px solid #EBC854;
  background-color: #ffffff;
  padding: 1em 1em 1em 10em;
  position: relative;
  margin-bottom: 5em;
  min-height: 131px;
}
.abutlf_li::before {
  content: "";
  position: absolute;
  background-image: url(../img/common/leaves.png);
  top: -24px;
  left: -27px;
  width: 177px;
  height: 161px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.abutlf_li .leaf_label {
  position: absolute;
  top: 28px;
  left: 20px;
  font-size: 22px;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: bold;
  color: #58380D;
  z-index: 2;
  background: transparent;
  text-align: center;
}
.abutlf_li p {
  color: #333333;
  font-size: 18px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 400;
}

.enka_box {
  max-width: 1200px;
  margin: 2em auto 5em;
  border: 1px solid #EBC854;
  border-radius: 20px;
  padding: 2em;
  background-color: #ffffff;
}

.enka_ttlbox {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 155px;
  margin-top: 2em;
}
.enka_ttlbox::before {
  content: "";
  position: absolute;
  background-image: url(../img/common/green/about/enka_ttl.png);
  top: -24px;
  left: 52%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  height: 155px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: #ffffff;
}
.enka_ttlbox p {
  top: 28px;
  left: 20px;
  font-weight: bold;
  color: #8E5913;
  z-index: 2;
  background: transparent;
  text-align: center;
}
.enka_ttlbox p:first-child {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 0.3em;
}
.enka_ttlbox p:last-child {
  font-size: clamp(17px, 2vw, 20px);
}

.enka_txt1 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: bold;
  color: #8E5913;
  padding-left: 1.5em;
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 1em auto;
}
.enka_txt1::before {
  content: "1.";
  position: absolute;
  left: 0;
  top: 0;
}

.enka_txt2box {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 4em;
  padding-bottom: 10em;
}
.enka_txt2box::before {
  content: "";
  position: absolute;
  background-image: url(../img/common/green/about/enka_txt.png);
  top: 42px;
  left: 52%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  height: 295px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 0.3s ease;
}
.enka_txt2box p {
  top: -7px;
  left: 30px;
  font-weight: bold;
  color: #8E5913;
  z-index: 2;
  background: transparent;
  text-align: left;
  font-size: clamp(18px, 2vw, 22px);
  position: relative;
  padding-left: 1.5em;
}
.enka_txt2box p::before {
  content: "2.";
  position: absolute;
  left: 0;
  top: 0;
}

.enka_txt2box:hover::before {
  transform: translate(-50%, -20px);
}

.abt_sngbox {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 2em auto;
}

.sng_ytb {
  width: 50%;
}
.sng_ytb iframe {
  max-width: 569px;
  width: 100%;
  aspect-ratio: 569/428;
}

.sng_txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sng_txt p {
  font-weight: bold;
  font-size: clamp(27px, 2vw, 44px);
  text-align: center;
  width: 100%;
  color: #8E5913;
}
.sng_txt img {
  display: block;
  max-width: 562px;
  width: 100%;
  aspect-ratio: 562/285;
  -o-object-fit: contain;
     object-fit: contain;
}

.abt_sisetu {
  display: flex;
  justify-content: space-between;
  margin: 8em auto 0em;
  flex-wrap: wrap;
}
.abt_sisetu .sisetu_box {
  width: 31.6666666667%;
  position: relative;
  padding-bottom: 9em;
}
.abt_sisetu .sisetu_box img {
  display: block;
  max-width: 370px;
  width: 100%;
  aspect-ratio: 35/26;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.abt_sisetu .sisetu_box .brdr_orng {
  border-radius: 20px;
  border: 6px solid #F5A346;
  background-color: #F5A346;
}
.abt_sisetu .sisetu_box .brdr_pnk {
  border-radius: 20px;
  border: 6px solid #FF8EBC;
  background-color: #FF8EBC;
}

.sisetu_yllw {
  position: absolute;
  background-image: url(../img/common/green/about/yellow.png);
  top: -30px;
  height: 115px;
  max-width: 345px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translate(-50%, -37%);
  font-weight: bold;
  font-size: 28px;
  font-size: clamp(26px, 2vw, 28px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: calc(2.4em - 19 * (100vw - 900px) / 1020);
}

.sisetu_blue {
  position: absolute;
  background-image: url(../img/common/green/about/blue.png);
  top: -30px;
  height: 115px;
  max-width: 345px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translate(-50%, -37%);
  font-weight: bold;
  font-size: 28px;
  font-size: clamp(26px, 2vw, 28px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: calc(2.4em - 19 * (100vw - 900px) / 1020);
}

@media screen and (max-width: 900px) {
  .abt_sisetu .sisetu_box {
    width: 47.5%;
  }
  .sisetu_blue, .sisetu_yllw {
    font-size: clamp(23px, 2vw, 26px);
    padding-bottom: calc(3.1em - 19 * (100vw - 500px) / 400);
    transform: translate(-50%, -24%);
  }
}
@media screen and (max-width: 767px) {
  .enka_txt2box:hover::before {
    transform: none;
  }
  .enka_txt2box {
    justify-content: flex-start;
    height: 295px;
    margin-top: 4em;
  }
  .enka_txt2box::before {
    content: "";
    position: absolute;
    background-image: url(../img/common/green/about/enka_txt_ph.png);
    top: 134px;
    top: 191px;
    left: auto;
    right: 0;
    max-width: 1200px;
    width: 100%;
    height: 220px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 1;
    transform: none;
  }
  .enka_txt2box p {
    left: 0;
  }
  .enka_box {
    padding-bottom: 8em;
  }
  .abt_sngbox {
    flex-direction: column;
  }
  .sng_ytb {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sng_txt {
    width: 100%;
    margin: 2em auto 5em;
  }
}
@media screen and (max-width: 500px) {
  .abutlf_ul {
    margin: 5em auto 5em;
  }
  .abutlf_li {
    padding: 5em 1em 1em 1em;
    position: relative;
    margin-bottom: 5em;
    min-height: 200px;
  }
  .abutlf_li::before {
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 120px;
  }
  .abutlf_li .leaf_label {
    top: -15px;
    left: 49%;
    transform: translateX(-50%);
  }
  .abt_sisetu {
    flex-direction: column;
    align-items: center;
  }
  .abt_sisetu .sisetu_box {
    width: 95%;
  }
  .sisetu_blue, .sisetu_yllw {
    font-size: 20px;
    padding-bottom: calc(3.1em - 16 * (100vw - 300px) / 200);
    transform: translate(-50%, -24%);
  }
}
/*お問合せ*/
.cntct_txt1 {
  font-weight: bold;
  font-size: 25px;
  font-size: clamp(18px, 2vw, 25px);
  color: #4D4D4D;
  max-width: 1200px;
  width: 95%;
  margin: 1em auto 2em;
}

.cntct_tel {
  border: 1px solid #EBC854;
  border-radius: 15px;
  padding: 0.2em;
  background-color: #ffffff;
  font-size: 85px;
  font-size: clamp(36px, 4vw, 85px);
  color: #F5A346;
  max-width: 957px;
  width: 95%;
  margin: 1em auto 0;
  text-align: center;
}
.cntct_tel a {
  display: block;
  width: 100%;
}
.cntct_tel a:hover {
  opacity: 0.5;
}
.cntct_tel a span {
  font-size: 53px;
  font-size: clamp(20px, 2vw, 53px);
  padding-right: 0.2em;
}

.cntct_prbsy {
  max-width: 1200px;
  width: 95%;
  margin: 3em auto;
  background-color: #F2F2F2;
  padding: 2em;
}
.cntct_prbsy p:first-child {
  padding: 0 0.5em;
  border-left: 10px solid #4d4d4d;
  color: #4d4d4d;
  font-weight: bold;
  font-size: 25px;
  font-size: clamp(19px, 2vw, 25px);
  margin-bottom: 0.5em;
}
.cntct_prbsy p:last-child {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
}

.cntct_box {
  max-width: 1200px;
  margin: 3em auto;
  width: 95%;
  display: flex;
  flex-direction: column;
}

.cntct_li {
  display: flex;
  border: 1px solid #EBC854;
  border-radius: 15px;
  margin-bottom: 1em;
}
.cntct_li .li_ttl1 {
  width: 40%;
  display: flex;
  font-weight: bold;
  background-color: #FEFF92;
  border-right: 1px solid #EBC854;
  border-radius: 15px 0 0 15px;
  padding: 0.5em;
  align-items: center;
  gap: 10px;
}
.cntct_li .li_ttl1 p:first-child {
  padding: 0.1em 0.5em;
  font-size: clamp(16px, 2vw, 20px);
  color: #ffffff;
  background-color: #F5A346;
  border-radius: 5px;
}
.cntct_li .li_ttl1 p:last-child {
  font-size: clamp(18px, 2vw, 24px);
  color: #58380D;
}
.cntct_li .li_ttl2 {
  width: 60%;
  padding: 0.5em;
  font-size: clamp(16px, 3vw, 20px);
  background-color: #ffffff;
  border-radius: 0 15px 15px 0;
}
.cntct_li .li_ttl2 input {
  width: 100%;
}
.cntct_li .li_ttl2 input:focus {
  outline: none;
}
.cntct_li .li_ttl2 textarea {
  width: 100%;
  min-height: 200px;
  resize: none;
}
.cntct_li .li_ttl2 textarea:focus {
  outline: none;
}
.cntct_li .__radio {
  display: flex;
  gap: 10px;
}
.cntct_li .__radio input {
  width: auto;
}
.cntct_li .__radio label {
  width: auto;
  margin-right: 1em;
}

.sousin_kanryo {
  max-width: 1200px;
  margin: auto;
  width: 95%;
}
.sousin_kanryo .sousin_ttl {
  font-weight: bold;
  font-size: clamp(22px, 3vw, 30px);
  color: #58380D;
  text-align: center;
  margin-bottom: 1em;
}
.sousin_kanryo .sousin_txt {
  font-weight: 500;
  font-size: clamp(16px, 3vw, 22px);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cntct_li {
    flex-direction: column;
  }
  .cntct_li .li_ttl1 {
    border-right: none;
    width: 100%;
    border-bottom: 1px solid #EBC854;
    border-radius: 15px 15px 0 0;
  }
  .cntct_li .li_ttl2 {
    width: 100%;
    border-radius: 0 0 15px 15px;
  }
  .sousin_kanryo .sousin_txt {
    text-align: left;
  }
}
@media screen and (max-width: 450px) {
  .cntct_tel a {
    display: flex;
    flex-direction: column;
    line-height: 0.8em;
    padding-bottom: 0.2em;
  }
  .cntct_tel a span {
    padding-right: 0;
  }
  .cntct_prbsy {
    padding: 2em 1em;
  }
  .cntct_prbsy p:first-child {
    margin-bottom: 0.8em;
  }
}
/*保育の流れと内容*/
.flow_day1box {
  max-width: 1200px;
  width: 95%;
  margin: 2em auto;
  padding: 4em 2em;
  background-color: #F9F0D4;
  border-radius: 30px;
}

.flow_timeflex {
  display: flex;
}
.flow_timeflex .ftf_left {
  display: flex;
  align-items: center;
  align-items: flex-start;
  width: 60%;
  gap: 30px;
}
.flow_timeflex .ftf_left img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 140px;
}
.flow_timeflex .ftf_left p {
  font-weight: bold;
  font-size: 31px;
  font-size: clamp(20px, 3vw, 31px);
  color: #4D4D4D;
  text-align: left;
}
.flow_timeflex .ftf_left p span {
  font-family: "kodomo-rounded", sans-serif;
  font-size: 42px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  color: #4D4D4D;
}
.flow_timeflex .ftf_right {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}
.flow_timeflex .ftf_right img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  width: 100%;
}
.flow_timeflex .ftf_right .ftf_r900img {
  aspect-ratio: 339/95;
  max-width: 339px;
}
.flow_timeflex .ftf_right .ftf_r930img {
  aspect-ratio: 399/261;
  max-width: 399px;
}
.flow_timeflex .ftf_right .ftf_r1400img {
  aspect-ratio: 269/213;
  max-width: 269px;
}
.flow_timeflex .__ftf_left80 {
  width: 80%;
}
.flow_timeflex .__ftf_right20 {
  width: 20%;
}

.yazirusi {
  width: 100%;
  margin: 2em auto;
}

.yazirusi1 {
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 60px;
  margin-left: 200px;
}

.hoikuzikan {
  display: flex;
  border: 3px solid #7AC1F2;
  border-radius: 30px;
  background-color: #92CDF6;
  margin: 1em auto 2em;
  min-height: 150px;
}
.hoikuzikan li:first-child {
  width: 30%;
  background-color: #92CDF6;
  border-radius: 30px 0 0 30px;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hoikuzikan li:first-child p {
  font-weight: bold;
  font-size: clamp(18px, 3vw, 25px);
  color: #4D4D4D;
}
.hoikuzikan li:last-child {
  width: 70%;
  padding: 1em;
  background-color: #ffffff;
  border-radius: 0 30px 30px 0;
}

.hzk1_flx {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 500;
  font-size: clamp(17px, 2vw, 23px);
}
.hzk1_flx p {
  width: 50%;
}
.hzk1_flx p:first-child {
  color: #4D4D4D;
}
.hzk1_flx p:last-child {
  color: #4CA9E9;
}

.hzk1_flx2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hzk1_flx2 .hzk_ttl {
  color: #F5A346;
  font-weight: bold;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 0.3em;
}
.hzk1_flx2 .__top1emttl {
  margin-top: 1em;
}

.__brddd {
  padding-bottom: 1em;
  border-bottom: 1px dashed #707070;
}

.hoikuzikan2flex {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  width: 100%;
}
.hoikuzikan2flex p {
  font-weight: 500;
  font-size: clamp(16px, 2vw, 24px);
  color: #4CA9E9;
}

.str_txt {
  position: relative;
  line-height: 54px;
  height: 54px;
  padding-left: 3.8em;
  margin: 1em auto;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 1200px;
}
.str_txt::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  background-image: url("../img/common/green/flow/star1.png");
  width: 56px;
  height: 54px;
}

.senmonhoiku, .engaihoiku, .birthday, .wanokai {
  display: flex;
}
.senmonhoiku .engaihoiku_img, .senmonhoiku .birthday_img, .senmonhoiku .wanokai_img, .engaihoiku .engaihoiku_img, .engaihoiku .birthday_img, .engaihoiku .wanokai_img, .birthday .engaihoiku_img, .birthday .birthday_img, .birthday .wanokai_img, .wanokai .engaihoiku_img, .wanokai .birthday_img, .wanokai .wanokai_img {
  display: block;
  width: 30%;
  max-width: 456px;
  aspect-ratio: 456/343;
  -o-object-fit: contain;
     object-fit: contain;
}
.senmonhoiku .senmongiku_img, .engaihoiku .senmongiku_img, .birthday .senmongiku_img, .wanokai .senmongiku_img {
  display: block;
  width: 35%;
  max-width: 450px;
  aspect-ratio: 456/343;
  -o-object-fit: contain;
     object-fit: contain;
}
.senmonhoiku .senmon_hul, .engaihoiku .senmon_hul, .birthday .senmon_hul, .wanokai .senmon_hul {
  width: 65%;
  display: flex;
  flex-direction: column;
  padding-left: 0.5em;
}
.senmonhoiku .engai_hul, .senmonhoiku .birthday_hul, .senmonhoiku .wanokai_hul, .engaihoiku .engai_hul, .engaihoiku .birthday_hul, .engaihoiku .wanokai_hul, .birthday .engai_hul, .birthday .birthday_hul, .birthday .wanokai_hul, .wanokai .engai_hul, .wanokai .birthday_hul, .wanokai .wanokai_hul {
  width: 70%;
}

.senmonhoiku {
  justify-content: space-between;
}

.engaihoiku {
  gap: 20px;
}

.birthday {
  gap: 20px;
  align-items: center;
}

.wanokai {
  gap: 30px;
}

.senmon_mozi {
  display: flex;
  position: relative;
  width: 100%;
  padding-left: 4em;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 2px dashed #7FBE41;
  gap: 10px;
}
.senmon_mozi::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  background-image: url("../img/common/green/flow/butterfly.png");
  width: 60px;
  height: 52px;
}
.senmon_mozi p:first-child {
  font-weight: bold;
  font-size: 26px;
  font-size: clamp(23px, 2vw, 26px);
  white-space: nowrap;
  flex-shrink: 0;
}
.senmon_mozi p:last-child {
  font-weight: 500;
  font-size: 18px;
  font-size: clamp(16px, 2vw, 18px);
  width: auto;
}

.engai_hul {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
}
.engai_hul li {
  width: 50%;
  position: relative;
  padding-left: 3em;
  font-weight: bold;
  font-size: clamp(17px, 2vw, 21px);
  margin-bottom: 2em;
}
.engai_hul li::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 51%;
  transform: translateY(-50%);
  width: 45px;
  height: 43px;
}
.engai_hul .flg_pnk::before {
  background-image: url("../img/common/green/flow/flag_pink.png");
}
.engai_hul .flg_blue::before {
  background-image: url("../img/common/green/flow/flag_lightblue.png");
}
.engai_hul .flg_green::before {
  background-image: url("../img/common/green/flow/flag_green.png");
}
.engai_hul .flg_orng::before {
  background-image: url("../img/common/green/flow/flag_orange.png");
}

.birthday_hul .birthday_li {
  width: 100%;
  position: relative;
  padding-left: 3em;
  font-size: clamp(16px, 2vw, 18px);
  z-index: 2;
}
.birthday_hul .birthday_li::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  width: 96px;
  height: 81px;
  background-image: url("../img/common/green/flow/tiara.png");
  z-index: -1;
}

.wanokai_hul .wanokai_li {
  width: 100%;
  position: relative;
  padding-left: 8em;
  padding-bottom: 6em;
  font-size: clamp(16px, 2vw, 18px);
  z-index: 2;
}
.wanokai_hul .wanokai_li::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 187px;
  height: 271px;
  background-image: url("../img/common/green/flow/wanokai.png");
  z-index: -1;
}

.__flex46 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 20px;
}
.__flex46 .azukari_img, .__flex46 .otomari_img, .__flex46 .sougei_img, .__flex46 .seihuku_img {
  width: 40%;
  display: block;
  max-width: 479px;
  aspect-ratio: 479/360;
  -o-object-fit: contain;
     object-fit: contain;
}
.__flex46 .__pintul {
  width: 60%;
}

.appl_li {
  width: 100%;
  position: relative;
  padding-left: 3.2em;
  padding-bottom: 1.5em;
  padding-top: 1em;
  font-size: clamp(16px, 2vw, 18px);
  z-index: 2;
  border-bottom: 2px dashed #7FBE41;
}
.appl_li::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-image: url("../img/common/green/flow/apple.png");
  z-index: -1;
}

.ytb_li {
  width: 100%;
  position: relative;
  padding-left: 3.2em;
  padding-bottom: 1.5em;
  padding-top: 1em;
  font-size: clamp(16px, 2vw, 18px);
  z-index: 2;
  border-bottom: 2px dashed #7FBE41;
}
.ytb_li::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 47%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-image: url("../img/common/green/flow/clover.png");
  z-index: -1;
}

.hana_li {
  width: 100%;
  position: relative;
  padding-left: 3.2em;
  padding-bottom: 1.5em;
  padding-top: 1em;
  font-size: clamp(16px, 2vw, 18px);
  z-index: 2;
  border-bottom: 2px dashed #7FBE41;
}
.hana_li::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-image: url("../img/common/green/flow/flower2.png");
  z-index: -1;
}

.kureyon {
  position: relative;
  z-index: 0;
}
.kureyon::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  transform: rotate(-15deg) translateY(29%);
  width: 200px;
  height: 132px;
  background-image: url("../img/common/green/flow/kureyon1.png");
  z-index: 2;
  transition: transform 0.3s ease;
}
.kureyon:hover::after {
  transform: rotate(-15deg) translateY(10%);
}

.hana2_li {
  width: 100%;
  position: relative;
  padding-left: 3.2em;
  padding-bottom: 1.5em;
  padding-top: 1em;
  font-size: clamp(16px, 2vw, 18px);
  z-index: 2;
  border-bottom: 2px dashed #7FBE41;
}
.hana2_li::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 47%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-image: url("../img/common/green/flow/flower3.png");
  z-index: -1;
}

.nuigurumi {
  position: relative;
  z-index: 0;
}
.nuigurumi::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
  transform: translateY(29%);
  width: 200px;
  height: 132px;
  background-image: url("../img/common/green/flow/nuigurumi.png");
  z-index: 2;
  transition: transform 0.3s ease;
}
.nuigurumi:hover::after {
  transform: translateY(10%);
}

.bus {
  position: relative;
  z-index: 0;
}
.bus::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 20%;
  bottom: 0;
  transform: rotate(8deg) translateY(29%);
  width: 278px;
  height: 77px;
  background-image: url("../img/common/green/flow/basu.png");
  z-index: 2;
  transition: transform 0.3s ease;
}
.bus:hover::after {
  transform: rotate(8deg) translateY(10%);
}

.enpitu {
  position: relative;
  z-index: 0;
}
.enpitu::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
  transform: translateY(29%);
  width: 152px;
  height: 152px;
  background-image: url("../img/common/green/flow/pencil1.png");
  z-index: 2;
  transition: transform 0.3s ease;
}
.enpitu:hover::after {
  transform: translateY(10%);
}

@media screen and (max-width: 900px) {
  .senmonhoiku, .birthday {
    flex-direction: column;
  }
  .senmonhoiku .senmongiku_img, .senmonhoiku .birthday_img, .birthday .senmongiku_img, .birthday .birthday_img {
    width: 100%;
    margin: 1em auto 2em;
    max-width: 350px;
  }
  .senmonhoiku .senmon_hul, .senmonhoiku .birthday_hul, .birthday .senmon_hul, .birthday .birthday_hul {
    width: 100%;
  }
  .engaihoiku, .wanokai {
    flex-direction: column-reverse;
  }
  .engaihoiku .engaihoiku_img, .engaihoiku .wanokai_img, .wanokai .engaihoiku_img, .wanokai .wanokai_img {
    width: 100%;
    margin: 1em auto 2em;
    max-width: 350px;
  }
  .engaihoiku .engai_hul, .engaihoiku .wanokai_hul, .wanokai .engai_hul, .wanokai .wanokai_hul {
    width: 100%;
  }
  .senmon_mozi {
    flex-direction: column;
    align-items: flex-start;
  }
  .senmon_mozi::before {
    top: 12px;
    transform: none;
  }
  .__flex46 {
    flex-direction: column;
  }
  .__flex46 .azukari_img, .__flex46 .otomari_img, .__flex46 .sougei_img, .__flex46 .seihuku_img {
    width: 100%;
    max-width: 350px;
    margin: 1em auto 5em;
  }
  .__flex46 .__pintul {
    width: 100%;
  }
  .__cmreverse {
    flex-direction: column-reverse;
  }
  .kureyon::after {
    width: 122px;
    height: 105px;
    top: 33%;
    left: 26%;
    transform: rotate(-15deg) translateY(0);
    transition: transform 0.3s ease;
  }
  .kureyon:hover::after {
    transform: rotate(-15deg) translateY(-20px);
  }
  .nuigurumi::after {
    width: 168px;
    height: 100px;
    top: 30%;
    right: 19%;
    transform: translateY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom left;
  }
  .nuigurumi:hover::after {
    transform: translateY(10%);
  }
  .bus::after {
    top: 30%;
    right: 20%;
    left: auto;
    width: 150px;
    height: 77px;
    transition: transform 0.3s ease;
  }
  .bus:hover::after {
    transform: rotate(8deg) translateY(10%);
  }
  .enpitu::after {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 19%;
    transform: translateY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom left;
  }
  .enpitu:hover::after {
    transform: translateY(10%);
  }
}
@media screen and (max-width: 767px) {
  .flow_timeflex {
    flex-direction: column;
  }
  .flow_timeflex .ftf_left {
    width: 100%;
    margin-bottom: 2em;
  }
  .flow_timeflex .ftf_right {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
  .flow_timeflex .ftf_right .ftf_r1400img {
    max-width: 200px;
  }
  .yazirusi1 {
    margin: auto;
  }
  .hoikuzikan {
    flex-direction: column;
  }
  .hoikuzikan li:first-child {
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
  .hoikuzikan li:last-child {
    border-radius: 0 0 30px 30px;
    width: 100%;
  }
  .hzk1_flx {
    flex-direction: column;
  }
  .hzk1_flx p {
    width: 100%;
  }
  .hoikuzikan2flex {
    flex-direction: column;
  }
  .str_txt {
    line-height: 24px;
    height: auto;
    padding-left: 2em;
  }
  .str_txt::before {
    width: 26px;
    height: 24px;
  }
  .engaihoiku .engai_hul {
    max-width: 350px;
    margin: auto;
  }
  .engaihoiku .engai_hul li {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .ytb_li, .hana2_li {
    padding: 5em 0.2em 2em 0.2em;
  }
  .ytb_li::before, .hana2_li::before {
    top: 24%;
    left: 44%;
  }
  .nuigurumi::after {
    width: 128px;
    height: 90px;
    top: 21%;
    right: 2%;
  }
  .appl_li, .hana_li {
    padding: 5em 0.2em 2em 0.2em;
  }
  .appl_li::before, .hana_li::before {
    top: 24%;
    left: 44%;
  }
  .kureyon::after {
    width: 118px;
    height: 90px;
    top: 24%;
    left: 1em;
  }
  .bus::after {
    top: 21%;
    right: 10px;
    left: auto;
    width: 150px;
    height: 70px;
    transition: transform 0.3s ease;
  }
  .bus:hover::after {
    transform: rotate(8deg) translateY(10%);
  }
  .enpitu::after {
    width: 80px;
    height: 80px;
    top: 21%;
    right: 2%;
  }
}
@media screen and (max-width: 450px) {
  .flow_timeflex .ftf_left {
    flex-direction: column;
    align-items: flex-start;
  }
  .wanokai_hul .wanokai_li {
    width: 100%;
    position: relative;
    padding-left: 6em;
    padding-bottom: 8em;
    z-index: 2;
  }
  .wanokai_hul .wanokai_li::before {
    top: 55px;
  }
}
.br_767px {
  display: none;
}

.br__450px {
  display: none;
}

#sub_header_wrap #page_title_wrap .page_title span.br_ttl450, #sub_header_wrap #page_title_wrap .page_title span.br_ttl350 {
  display: none;
  padding: none;
}

@media screen and (max-width: 767px) {
  .br_767px {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  #sub_header_wrap #page_title_wrap .page_title span.br_ttl450 {
    display: block;
    width: 100%;
  }
  .br__450px {
    display: block;
  }
}
@media screen and (max-width: 350px) {
  #sub_header_wrap #page_title_wrap .page_title span.br_ttl350 {
    display: block;
    width: 100%;
  }
}
/*ページネーション*/
.pager {
  margin: 3em auto;
  padding: 0.5em 0;
  background-color: #fff;
  width: 100%;
  font-weight: 600;
  font-family: "hiraginomg_w4";
  max-width: 650px;
}

.pager .pagination {
  text-align: center;
  display: flex;
}

.pager .pagination .num {
  padding: 0;
  display: block;
  max-width: 40px;
  height: 40px;
  text-align: center;
  width: 100%;
  margin: auto;
}

.page_b {
  width: 100%;
  display: flex;
  margin: auto;
}

.pre,
.next {
  padding: 0;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  width: 20%;
}

.num a {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  color: #574237;
  text-decoration: none;
  transition: all 0.3s ease;
}

.num a span {
  background-color: #EBC854;
  font-size: 17px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  color: #fff;
  font-weight: bold;
}

.pre a,
.next a {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  color: #574237;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.pager .pagination li a:hover {
  opacity: 0.5;
}

.pager .pagination li a.active span {
  background: #fff;
  color: #EBC854;
  border: 1px solid #EBC854;
  font-weight: bold;
}

.bg_pink {
  background-color: #FF8EBC;
}

.bg_orange {
  background-color: #EBC854;
}

.bg_blue {
  background-color: #5BECEC;
}

.bg_blue2 {
  background-color: #7AC1F2;
}

.bg_green {
  background-color: #8CDB5E;
}

.txt_cntr {
  text-align: center;
}/*# sourceMappingURL=common_2.css.map */


.page_c .wp-pagenavi{
  width: 100%;
  display: flex;
  justify-content: center;
  grid-column-gap: 0.5em;
  margin: auto;
}
.page_c .wp-pagenavi a,
.page_c .wp-pagenavi span {
  display:flex;
  justify-content: center;
  align-items: center;
  width:clamp(34px,4.3vw,43px);
  aspect-ratio:1 / 1;
  line-height:1;
  background-color: #EBC854;
  font-size: clamp(15px,1.7vw,17px);
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  color: #fff;
}

.page_c .wp-pagenavi a:hover {
  opacity: 0.5;
}

.page_c .wp-pagenavi a {
  background: #fff;
  color: #EBC854;
  border: 1px solid #EBC854;
  font-weight: bold;
}

