@charset "UTF-8";
/* CSS Document */

h1{
	font-size: 2.5rem;
	text-align: center;
	  font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", "Arial Rounded MT Bold", "游ゴシック", sans-serif;
	margin: 20px auto;
}
/*❎TOPイメージ*/
.top-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-img {
  margin-top: 100px;
  background-image: url("../img/enji-img/enji-top02.png");
  background-size: cover;
  background-position: center 20%;
  min-height: 80vh;
  clip-path: polygon(
    50% 0%,
    100% 0,
    100% 35%,
    100% 70%,
    80% 90%,
    50% 100%,
    20% 90%,
    0% 70%,
    0% 35%,
    0 0
  );
  z-index: 1;
  position: relative;
}

.top-frame {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;

}

.top-frame img {
  width: 100%;
  display: block;
}

.top-frame.hidden {
  opacity: 0;
}

@media screen and (max-width: 1100px) {
  .top-img {
    margin-top: 60px;
    min-height: 50vh;
  }
}





/*❎入園までの流れ*/
.section-01{
	margin-top: 100px;
}
.section-01img{
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	justify-content: center;
}
.section-01img img{
	max-width: 800px;
	width: 40%;
}

.section-01 p {
  width: 70%;
  margin: 0 auto;
  color: #FD5E34;
  font-weight: 600;
  padding: 20px 25px;
  border-radius: 20px;
}



@media screen and (max-width: 1100px) {

.section-01img img{
	max-width: 800px;
	width: 80%;
}
}


/*❎利用定員*/
.section-02{
	margin: 100px 0 5px;
}
caption{
	font-size: 1.5rem;
	font-weight: bold;
	text-align: left;
	margin-bottom: 5px;
}
.custom-table {
  width: 80%;
	max-width: 900px;
  border-collapse: collapse;
  margin: 30px auto 10px;
  font-size: 0.95rem;
}

.custom-table th,
.custom-table td {
  border: 1px solid #FD5E34;
  padding: 8px 12px;
  text-align: center;
  vertical-align: middle;
}

.custom-table th {
  background-color: #fff8f4;
  font-weight: bold;
}

.custom-table td {
  background-color: #fff;
	font-weight: bold;
}

.custom-table tbody td:nth-child(3),
.custom-table tbody td:nth-child(4) {
  
  font-weight: bold;
}
.note{
	font-size: 1.2rem;
}


/*❎入園申込受付*/
.section-02-2{
	margin: 100px auto 50px;
}
/*申込用紙ボタン*/
.pdf-download-btn {
	margin: 50px auto;
  display: inline-block;
  padding: 12px 25px;
  background-color: #FD5E34;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.pdf-download-btn:hover {
  background-color: #ff8a65;
}

/*❎入園時の費用*/
.section-03,.section-04{
	margin: 50px auto;
}


/*❎入園後の費用*/
.simple-table {
  width: 60%;
  border-collapse: collapse;
  margin:20px auto;
}
.simple-table span{
	font-size: 1rem;
}

.simple-table th,
.simple-table td {
  border: 1px solid #ffd8bb;
  padding: 8px 12px;
  vertical-align: top;
  text-align: left;
}

.simple-table th {
  background-color: #fef1e6;
  font-weight: bold;
  width: 250px;
}

.center-table th,
.center-table td {
  text-align: center;
}

.note {
  font-size: 0.9rem;
  color: #555;
}

@media screen and (max-width: 1100px) {
.simple-table {
  width: 90%;
 
}	
}


/*❎制服について*/

.section-05-bottom-deco,.section-05-top-deco{
	display: block;
	width: 100%;
}

/* 制服セクション */
.section-05 {
  background-color: #fef1e6;
  margin: 0;
  padding: 50px 0 ;
}

/* セクションタイトル */
.section-05 h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #5c3a1d;
  font-family: "Kosugi Maru", sans-serif;
}

/* 横並びリスト */
.section-05 ul {
  display: flex;
		flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各アイテム */
.section-05 li {
  position: relative;
  width: 300px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 背後の正円 */
.section-05 li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* 制服画像 */
.section-05 img {
  position: relative;
  z-index: 1;
 width: 100%;
	min-width: 200px;
	height: auto;
	max-height: 300px;
	object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* テキスト */
.section-05 p {
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #5c3a1d;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1320px) {
.section-05 li {
  width: 450px;
  height: 360px;

}
}



/*❎スクールバスについて*/
.section-06{
	background-color: #9ae6f7;
	background-image: url("../img/enji-img/bus-back.png");
	background-size: cover;
	background-position: 30% center;
	width: 100%;
	
}
.bus{
	width: 90%;
	max-width: 700px;
}


.contact{
	background-image: url("../img/enji-img/contact-backimg.png");
}