/* header1 */
.page_nav {
    justify-content: space-between;
    align-items: center;
}
.page_nav > .logo {
    max-width: 180px;
}
.page_nav > .pc-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
/*  ページ内リンク */
.guidanceLinkBox {
    justify-content: space-around;
    align-items: center;
}
.guidance-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* text-align: center; */
    margin: 50px auto;
    transition: .3s;
}
.guidance-link p {
    font-size: 18px;
}
.guidance-link:hover .arrow{
    transform:translateY(10px) ;
    transition: .3s;
}
.guidance-link:hover .link-img {
    opacity: .8;
    transition: .5s;
}
.link-img {
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 50%;
}
.guidance-link1 .link-img {
	background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/D9AFE102-E5FF-4F7D-A3AA-82A765DD01CF.jpeg);
	background-position: center;
}
.guidance-link2 .link-img {
	background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/C76693A4-88DD-4C00-B33C-FB4FD9C56CB8.jpeg);
}
.guidance-link3 .link-img {
	background-image: url(https://wasedakai.or.jp/wp-content/uploads/2025/12/C703B14E-E006-4ACC-BC16-7EBA3C5E98F4.jpeg);
}
/* 下矢印 */
.arrow {
  position: relative;
  display: inline-block;
  width: 12.9px;
  height: 7.9px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 10px;
  border-radius: 9999px;
  background-color: #70C1BC;
  transform-origin: 50% calc(100% - 1.5px);
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

/* 入学までの手続き */
.process-text {
    text-align: center;
    max-width: 750px;
    margin: 50px auto;
}
.process-text > .flex {
    justify-content: flex-start;
    align-items: center;
    max-width: 350px;
    margin: 0 auto 50px auto;
    background-color: #fcfcfc;
    border-radius: 50px;
    transform: scale(1.0);
}
.process-text > .flex:hover {
    transform: scale(1.1);
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
}
/* アイコン＆テキスト */
.process-text > .flex > h2 {
    color: #Fcfcfc;
    background-color: #F77888;
    background-image: url(../img/moyou.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50px 0 0 50px;
    padding: 7px 7px 20px 13px;
    box-sizing: border-box;
    margin: 0;
}
.process-text span {
    font-size: 10px;
    margin: 0;
}
.process-text img {
    width: 2em;
    padding: 0 30px;
}

#process .process-right {
    justify-content: left;
    align-items: center;
}
#process .process-right p {
	font-size:20px;
	font-weight:bold;
}
#process .process-right p:nth-type(3) {
	margin-top: -13px;
}
#process .process-link:hover {
    color: #F77888;
    transition: .3s;
}

/* 下矢印 */
.arrow_s {
  position: relative;
}
.arrow_s:before {
    content: '';
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top: 8px solid #fcfcfc;   /* 好みで色を変えてください */ 
    position: absolute;
    left: calc(50% - 8px);
    bottom: -16px;
    margin: auto;
}
.guidance-contact {
    margin-top: 80px;
    width: 100%;
	max-width:300px;
}
.guidance-contact a {
    max-width: 230px;
}
/* 毎日持ってくるもの */
.everyday-tool {
    text-align: center;
    max-width: 799px;
    margin: 100px auto;
}
.tool-list {
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0;
}
.tool-list li {
    width: 200px;
}
.tool-img {
    width: 200px;
	aspect-ratio: 1 / 1;
/*     padding: 20px; */
    box-sizing: border-box;
    margin: 0 auto;
	border-radius: 15px;
	overflow: hidden;
}
.tool-img img {
	object-fit: cover;
	object-position: center;
}
.tool-list p {
	margin-bottom: 5px;
}
.tool-detail {
	font-size: 10px;
	line-height: 16px;
}
.tool-list li span {
    font-size: 10px;
	line-height: .8em;
}
.accordion_one {
	cursor: pointer;
}
.ac_inner {
	display:none;
	text-align:left;
}
.tool-list .ac_inner {
	padding: 0 10px;
	box-sizing:border-box;
	border: 3px solid pink;
	margin-top: -10px;
	border-radius: 15px;
}
.ac_inner span {
	margin: 0;
}
.open {
    display: block;
    /* transform: translateY(0px); */
}
/* 園においておくもの */
.school-tool {
    text-align: center;
    max-width: 1000px;
    margin: 100px auto;
}
.class-box {
    justify-content: space-between;
    align-items: center;
}
.class-box > div {
    max-width: 300px;
    border-radius: 30px;
    margin-bottom: 50px;
    background-color: #fcfcfc;
}
.hiyoko {
    border: solid 8px #F8CDD2;
}
.hiyoko h3 {
    background-color: #F8CDD2;
    padding: 1.5em;
    margin: 0;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
    /* color: #fcfcfc;
    font-size: 1.5em; */
}
.hibari {
    border: solid 8px #ECD37C;
}
.hibari h3 {
    background-color: #ECD37C;
    padding: 1.5em;
    margin: 0;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
}
.tsubame {
    border: solid 8px #70C1BC;
}
.tsubame h3 {
    background-color: #70C1BC;
    padding: 1.5em;
    margin: 0;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
}
.class-box .table {
    flex-wrap: wrap;
    width: 100%;
}
.class-box .table dt {
    text-align: left;
    width: 55%;
}
.class-box .table dd {
    text-align: right;
    margin: 0;
    width: 45%;
}
.class-box .table dt,
.class-box .table dd {
    padding: 5px 10px;
    box-sizing: border-box;
}
.class-table span {
    font-size: 10px;
}
.tool-other {
    max-width: 505px;
    text-align: left;
    margin: 0 auto;
}
.tool-other ul {
    padding: 0;
}
.name-wear {
    margin: 50px auto;
    /* padding: 20px; */
    max-width: 730px;
}
.name-wear ul {
    text-align: left;
    padding: 0;
}
.box27 {
    background-color: #fcfcfc;
    position: relative;
    padding: 0.5em 1em;
    border: solid 8px #70C1BC;
    border-radius: 30px;
}
.box27:hover {
    transform: scale(1.1);
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
}
.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -64px;
    left: 12px;
    padding: 10px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #70C1BC;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box27 p {
    margin: 0; 
    padding: 0;
}
/* 年度はじめに持ってくるもの */
.first-prepare {
    text-align: center;
    padding: 50px 0 0;
}
.prepare-box {
    max-width: 600px;
    margin: 0 auto;
}
.prepare-box ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.prepare-list li {
    width: 200px;
}
.prepare-img {
    width: 150px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
/* FAQ */
.faq-title {
    text-align: center;
}
.question {
    justify-content: flex-start;
    align-items: center;
}
.answer {
    justify-content: flex-end;
    align-items: center;
}
/*=====
レスポンシブ
=====  */
@media screen and ( max-width:1024px) {
/* フロー文字	 */
	.process-right p {
		font-size:18px;
	}
    .guidance-link {
        margin: 15px auto;
    }
	.tool-list li, .prepare-list li {
		width: 30%;
		margin-bottom:30px;
	}
    .tool-list p, .prepare-list p {
        margin: 0;
    }
    .tool-other {
        max-width: 375px;
    } 
/* 	.tool-img {
		width: 150px;
	} */
}
@media screen and ( max-width:375px) {
	.tool-list, .prepare-list {
		justify-content: space-between;
	}
	.tool-list li, .prepare-list li {
		width: 100%;
	}
}