/*
================================*/
@media screen and (min-width: 768px) {
}
.main01 {
 padding: 20px 10px;
 background-color: #fdfdfd;
 line-height: 2;
}
@media screen and (min-width: 768px) {
 .main01 {
  padding: 40px 20px;
  background-color: #fdfdfd;
  line-height: 2;
 }
}

.main01 .main-visual {
 position: relative;
 display: inline-block;
 width: 100%;
 text-align: center;
}

.main01 .main-visual__img {
 width: 100%;
 height: auto;
}

.main01 .main-visual__text {
 position: absolute;
 top: 70%; /* 画像の上部からの距離（適宜調整） */
 left: 50%;
 transform: translateX(-50%);
 padding: 5px; /* 文字画像の周囲に余白を追加 */
 background: rgba(255, 255, 255, 0.8); /* 半透明の白背景 */
 border-radius: 10px; /* 角を丸く */
 box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* 軽い影をつける */
 display: inline-block;
}
@media screen and (min-width: 768px) {
 .main01 .main-visual__text {
  position: absolute;
  top: 70%; /* 画像の上部からの距離（適宜調整） */
  left: 50%;
  transform: translateX(-50%);
  padding: 10px; /* 文字画像の周囲に余白を追加 */
  background: rgba(255, 255, 255, 0.8); /* 半透明の白背景 */
  border-radius: 10px; /* 角を丸く */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* 軽い影をつける */
  display: inline-block;
 }
}

.main01 .main-visual__text img {
 width: 100%; /* 画像のサイズ（適宜調整） */
 max-width: 450px; /* 最大サイズ */
}

.main01 .section-title {
 font-size: 1.4rem;
 text-align: center;
 padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
 .main01 .section-title {
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: 30px;
 }
}
.main01 .section-title02 {
 font-size: 1.4rem;
 text-align: center;
 padding-bottom: 30px;
 color: #ff6642;
}
@media screen and (min-width: 768px) {
 .main01 .section-title02 {
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: 30px;
  color: #ff6642;
 }
}

.main01 .news-list {
 display: flex;
 flex-direction: column;
 gap: 1em;
}
.main01 .news-item__title a {
 color: #000;
}

.main01 .news-item {
 padding: 1em;
 border: 1px solid #ddd;
 border-radius: 5px;
 background: #f9f9f9;
}

.main01 .childcare-content {
 font-size: 15px;
}
.main01 .childcare-content p {
 padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
 .main01 .childcare-content p {
  font-size: 1em;
 }
}
.main01 .childcare-benefits {
 list-style: disc;
 margin-left: 1.5em;
}

.btn {
 display: flex;
 justify-content: center;
}
.btn-style01 {
 display: inline-block;
 padding: 12px 24px;
 font-size: 1rem;
 font-weight: bold;
 color: #fff; /* 白文字 */
 background: #ff69b4; /* ピンク色（HotPink） */
 border-radius: 20px; /* 角を丸く */
 text-decoration: none;
}
@media screen and (min-width: 768px) {
 .btn-style01 {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff; /* 白文字 */
  background: #ff69b4; /* ピンク色（HotPink） */
  border-radius: 20px; /* 角を丸く */
  text-decoration: none;
 }
}

/*
================================*/
.main02 {
 padding: 20px 10px;
 background-color: #fdfdfd;
 line-height: 2;
}
@media screen and (min-width: 768px) {
 .main02 {
  padding: 40px 20px;
  background-color: #fdfdfd;
  line-height: 2;
 }
}

.main02 .section-title {
 font-size: 1.8rem;
 margin-bottom: 1.5em;
 text-align: center;
}

/* スタッフ募集 */
.main02 .staff-recruitment {
 text-align: center;
 margin-bottom: 40px;
}

.main02 .recruit-buttons .btn {
 display: inline-block;
 padding: 12px 24px;
 font-size: 1.2rem;
 color: white;
 background: #ffa500;
 border-radius: 5px;
 text-decoration: none;
}

.main02 .recruit-buttons .btn:hover {
 background: #ff8c00;
}

/* 園紹介リスト（2列に変更） */
.main02 .nursery-list {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 30px;
 justify-content: center;
}
/* レスポンシブ対応（小さい画面で1列） */
@media (max-width: 768px) {
 .main02 .nursery-list {
  grid-template-columns: 1fr; /* 1列に変更 */
 }
}

/* 園ごとのスタイル */
.main02 .nursery-item {
 background: white;
 padding: 15px;
 border-radius: 10px;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 text-align: center;
}
.main02 .items {
 display: flex;
 flex-direction: column;
 gap: 15px;
}
.main02 .items h3 {
 font-size: 18px;
}

/* 園の画像 */
.main02 .nursery-item img {
 width: 100%;
 border-radius: 8px;
}

/* 園ごとのボタン配置 */
.main02 .nursery-buttons {
 display: flex;
 justify-content: center;
 gap: 10px;
 margin-top: 10px;
 flex-direction: column;
 align-items: center;
}
@media screen and (min-width: 768px) {
 .main02 .nursery-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-direction: row;
 }
}

.main02 .nursery-buttons02 {
 display: flex;
 justify-content: center;
 gap: 30px;
 margin-top: 50px;
 flex-direction: column;
 align-items: center;
}
@media screen and (min-width: 768px) {
 .main02 .nursery-buttons02 {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  flex-direction: row;
 }
}

/* ボタンのスタイル */
.main02 .btn {
 display: inline-block;
 text-align: center;
 width: 200px;
 font-size: 1.1rem;
 font-weight: bold;
 border-radius: 20px;
 text-decoration: none;
}
@media screen and (min-width: 768px) {
 .main02 .btn {
  display: inline-block;
  text-align: center;
  width: 250px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
 }
}
.main02 .btn02 {
 display: inline-block;
 text-align: center;
 width: 250px;
 padding: 5px 10px;
 font-size: 1.3rem;
 font-weight: bold;
 border-radius: 20px;
 text-decoration: none;
}
@media screen and (min-width: 768px) {
 .main02 .btn02 {
  display: inline-block;
  text-align: center;
  width: 350px;
  padding: 10px 20px;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
 }
}

.main02 .btn-green {
 background: #218838;
 color: white;
}

/* スタッフ募集ボタン（黄色） */
.main02 .btn-yellow {
 background: #ffc107;
 color: white;
}
.main02 .btn-blue {
 background: #007bff;
 color: white;
}
