@charset "utf-8";
/* CSS Document */
/*
---------------------------------------------------共通
*/
article + article {
  margin-top: 20vh;
}
section {}
#pageTitle {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 60%;
  min-height: 120px;
  background-image: url("../images/pageTitle_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
main h1 {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  font-weight: normal;
  margin: -1em auto 2em;
  background-color: rgb(255, 255, 255, 0.8);
  padding: 2em 0;
  background-image: url("../images/pageTitle_bg1.png"), url("../images/pageTitle_bg2.png");
  background-repeat: no-repeat;
  background-position: left bottom, right top;
  background-size: 30%;
  z-index: -1
}
main h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background:
    linear-gradient(135deg, #faf7f2 4px, transparent 0), linear-gradient(225deg, #faf7f2 4px, transparent 0);
  background-size: 8px 8px;
}
main h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background:
    linear-gradient(-45deg, #FAF7F2 4px, transparent 0), linear-gradient(45deg, #FAF7F2 4px, transparent 0);
  background-size: 8px 8px;
}
main h2 {
  text-align: center;
  margin-bottom: 2em;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.photo img {
  width: 100%;
  height: auto;
}
.editable ul {
  margin: 0 auto 1rem;
}
.editable ul li {
  padding: 0.5rem 0 0.5rem 1rem;
  vertical-align: middle;
  text-indent: 1em;
}
.editable ul li::before {
  content: "◆";
  padding-right: 1rem;
  color: #839E67
}
.editable ol {
  margin: 0 auto 1rem;
  list-style-position: inside;
}
.editable ol li {
  padding: 0.5rem 0 0.5rem 1rem;
  vertical-align: middle;
  text-indent: 1em;
}
.editable ol li::marker {
  color: #3A5A40;
}
.editable table {
  width: 100%;
  border: 2px solid #666;
  border-collapse: collapse;
}
.editable table tr th {
  padding: 0.5rem 1rem;
  border: 1px solid #666;
  text-align: left;
  vertical-align: top;
}
.editable table tr td {
  padding: 0.5rem 1rem;
  border: 1px solid #666;
  text-align: left;
  vertical-align: top;
}
/*
---------------------------------------------------ホーム
*/
#topv {
  position: absolute;
  inset: 0;
  aspect-ratio: 3/1;
  width: 100%;
  height: auto;
  z-index: -1;
}
#topv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#topv::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/tree1.png") no-repeat left bottom;
  background-size: 20%;
  z-index: 100;
}
#topv::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/tree2.png") no-repeat right bottom;
  background-size: 20%;
  z-index: 100;
}
#news {
  width: 100%;
  padding-top: calc(100vw / 4);
  margin: 0 auto;
}
#news .frame {
  position: relative;
  width: 60%;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2em;
  padding: 2em;
}
#news .frame::before {
  content: "";
  position: absolute;
  top: -5vh;
  right: -5vw;
  width: 100%;
  height: 100%;
  background: url("../images/cut01.png") no-repeat right top;
  background-size: 20%;
  z-index: -1;
}
#news .frame::after {
  content: "";
  position: absolute;
  bottom: -5vh;
  left: -5vw;
  width: 100%;
  height: 100%;
  background: url("../images/cut02.png") no-repeat left bottom;
  background-size: 20%;
  z-index: -1;
}
#news .frame div:first-child {
  border-top: 1px dashed #839E67;
}
#news .frame div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0.5em 0;
  padding: 0.5em 0;
  border-bottom: 1px dashed #839E67;
}
#news .frame div h4 {
  width: 25%;
}
#news .frame div p {
  width: 75%;
}
#aim .frame {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 80%;
  margin: 0 auto;
  background-image: url(../images/cut04.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 15vw;
}
#aim h3 {
  position: relative;
  top: -2em;
  left: -2em;
  transform: rotate(-10deg);
  z-index: 3;
}
#aim .aim1 {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: center;
  background-image: url(../images/cut03.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 15vw;
}
#aim .aim1 h3 {
  grid-column: 1 / -1;
}
#aim .aim1 .photo img {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  mask-image: url("../images/aim_mask01.png");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  -webkit-mask-image: url("../images/aim_mask01.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
}
#aim .aim1 .copy {
  padding-left: 2em;
}
#aim .aim1 .catchCopy {
  translate: -5em 0;
}
#aim .aim2 {
  align-self: flex-end;
  width: 60%;
}
#aim .aim2 ul li {
  margin: 0.5em 0;
  background: no-repeat left 0.5em;
  background-size: 1.5em;
  padding-left: 3em;
  text-indent: 0em;
}
#aim .aim2 ul li:nth-child(6n+1) {
  background-image: url(../images/icon01.png)
}
#aim .aim2 ul li:nth-child(6n+2) {
  background-image: url(../images/icon02.png)
}
#aim .aim2 ul li:nth-child(6n+3) {
  background-image: url(../images/icon03.png)
}
#aim .aim2 ul li:nth-child(6n+4) {
  background-image: url(../images/icon04.png)
}
#aim .aim2 ul li:nth-child(6n+5) {
  background-image: url(../images/icon05.png)
}
#aim .aim2 ul li:nth-child(6n) {
  background-image: url(../images/icon06.png)
}
#info {
  position: relative;
  width: 100%;
  padding: 3em 0;
  background-image: url(../images/info_bg.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: auto;
}
#info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20px;
  background:
    linear-gradient(135deg, #faf7f2 10px, transparent 0), linear-gradient(225deg, #faf7f2 10px, transparent 0);
  background-size: 20px 20px;
}
#info::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background:
    linear-gradient(-45deg, #FAF7F2 10px, transparent 0), linear-gradient(45deg, #FAF7F2 10px, transparent 0);
  background-size: 20px 20px;
}
#info .frame {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#info .infoTable {
  width: 48%
}
#info .infoTable table {
  width: 100%
}
#info .infoTable tr:nth-child(2n+1) {
  background-color: #FAF7F2;
}
#info .infoTable tr:nth-child(2n) {
  background-color: #f2eee9;
}
#info .infoTable th {
  text-align: center;
  padding: 0.25em 1em;
  border-radius: 1em;
  white-space: nowrap;
}
#info .infoTable td {
  padding: 0.25em 1em;
  border-radius: 1em;
}
#info .gmap {
  width: 48%
}
#info .gmap iframe {
  width: 100%;
  min-height: 300px;
  border: 4px solid #fff;
  border-radius: 1em;
}
#gallery {
  width: 100%;
  padding: 0 5vw;
  margin-bottom: 100px;
  background-image: url("../images/gallery_bg01.png"), url("../images/gallery_bg02.png");
  background-repeat: no-repeat;
  background-position: left center, right center;
  background-size: 15%, 15%;
}
#gallery section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
#gallery figure {
  position: relative;
  overflow: visible;
  padding: 1em 1em 0 0;
  margin: 1em;
  line-height: 1em;
}
#gallery figure:nth-child(4n+1), #gallery figure:nth-child(4n+2) {
  transform: translateX(-5vw);
}
#gallery figure:nth-child(4n+3), #gallery figure:nth-child(4n+4) {
  transform: translateX(5vw);
}
#gallery figure:nth-child(4n+1)::before {
  content: "";
  display: block;
  position: absolute;
  width: 40%;
  height: 100%;
  top: -1em;
  left: -1.5em;
  background-image: url(../images/tape01.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
#gallery figure:nth-child(4n+2)::before {
  content: "";
  display: block;
  position: absolute;
  width: 40%;
  height: 100%;
  top: -1em;
  left: -1.5em;
  background-image: url(../images/tape02.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
#gallery figure:nth-child(4n+3)::before {
  content: "";
  display: block;
  position: absolute;
  width: 40%;
  height: 100%;
  top: -1em;
  left: -1.5em;
  background-image: url(../images/tape03.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
#gallery figure:nth-child(4n+4)::before {
  content: "";
  display: block;
  position: absolute;
  width: 40%;
  height: 100%;
  top: -1em;
  left: -1.5em;
  background-image: url(../images/tape04.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
#gallery figure:nth-child(4n+4)::after {
  content: "";
  display: block;
  position: absolute;
  width: 25%;
  height: 100%;
  top: -10%;
  right: 0;
  background-image: url(../images/cut05.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
#gallery figure img {
  width: 100%;
  height: auto;
  border-radius: 0 0 2em 0;
}
#gallery figcaption {
  font-size: 0.9em;
  text-align: center;
}
/*
---------------------------------------------------園について
*/
#gaiyou {
  position: relative;
  width: 100%;
}
#gaiyou .gaiyouTable {
  width: 60%;
  margin: auto;
}
#gaiyou .gaiyouTable tr:nth-child(2n+1) {
  background-color: rgb(255, 255, 255, 0.6);
}
#gaiyou .gaiyouTable tr:nth-child(2n) {
  background-color: #f2eee9;
}
#gaiyou .gaiyouTable th {
  text-align: center;
  padding: 0.25em 1em;
  border-radius: 1em;
  white-space: nowrap;
}
#gaiyou .gaiyouTable td {
  padding: 0.25em 1em;
  border-radius: 1em;
}
#disclosure {
  display: block;
}
#disclosure .linkList {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#disclosure .linkList ul li {
  margin: 0.5em 0;
  background: no-repeat left 0.5em;
  background-size: 1.5em;
  padding-left: 3em;
  text-indent: 0em;
}
#disclosure .linkList ul li:nth-child(6n+1) {
  background-image: url(../images/icon01.png)
}
#disclosure .linkList ul li:nth-child(6n+2) {
  background-image: url(../images/icon02.png)
}
#disclosure .linkList ul li:nth-child(6n+3) {
  background-image: url(../images/icon03.png)
}
#disclosure .linkList ul li:nth-child(6n+4) {
  background-image: url(../images/icon04.png)
}
#disclosure .linkList ul li:nth-child(6n+5) {
  background-image: url(../images/icon05.png)
}
#disclosure .linkList ul li:nth-child(6n) {
  background-image: url(../images/icon06.png)
}
#disclosure .linkList ul li a {
  color: #5A473D;
}
#disclosure .linkList ul li a:hover {
  color: #D23F2A
}
#support {
  position: relative;
  margin-bottom: 100px;
}
#support .frame {
  position: relative;
  width: 60%;
  margin: auto auto 1em;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2em;
  padding: 2em;
}
#support .frame:nth-child(2n) {
  position: relative;
  left: -5vw
}
#support .frame:nth-child(2n+1) {
  position: relative;
  right: -5vw;
}
#support .frame h3 {
  color: #3A5A40;
  background: url(../images/h3_bg.png) repeat-x left bottom;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
#support .split {
  display: grid;
  grid-template-columns: 30% auto;
  grid-gap: 1em;
  align-items: flex-start;
}
/*
---------------------------------------------------園の生活
*/
#daily {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#daily .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
#daily .frame {
  position: relative;
  width: 80%;
  margin: -4em auto 1em;
}
#daily .frame h3 {
  position: relative;
  top: 2em;
  text-align: center;
}
#daily .frame table {
  width: 100%;
  padding-top: 1em;
  background-color: #fff; /* 0914 plus*/
  border-radius: 15px; /* 0914 plus*/
}
#daily .frame table th {
  padding: 0.25em 1em;
}
#daily .frame table td {
  padding: 0.25em 1em;
}
#daily .frame table.baby {
  border: 10px solid transparent;
  border-image: url("../images/table_border01.png") 10 round;
}
#daily .frame table.baby tr:nth-child(2n+1) {
  background-color: rgb(243, 154, 138, 0.2);
}
#daily .frame table.kids {
  border: 10px solid transparent;
  border-image: url("../images/table_border02.png") 10 round;
}
#daily .frame table.kids tr:nth-child(2n+1) {
  background-color: rgb(139, 199, 232, 0.2);
}
#daily .frame ul li {
  list-style: disc;
  list-style-position: outside;
  margin-left: 2em;
}
#daily .photo {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1em;
  align-items: center;
}
#daily .photo figure {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0px 1px 4px rgb(156, 145, 139, 0.4);
}
#daily .photo figure:nth-child(2n) {
  margin-top: 2em;
}
#daily .photo figure figcaption {
  font-size: 0.9em;
  text-align: center;
}
#year {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#year .frame {
  margin-bottom: 2em;
}
#year .frame table {
  width: fit-content;
  max-width: 100%;
  margin: auto;
  border: 10px solid transparent;
  border-image: url("../images/table_border03.png") 10 round;
    background-color: #fff; /* 0914 plus*/
  border-radius: 15px; /* 0914 plus*/
}
#year .frame table tr:nth-child(2n+1) {
  background-color: rgb(136, 185, 127, 0.2);
}
#year .frame table th {
  padding: 0.25em 1em;
  white-space: nowrap;
}
#year .frame table td {
  padding: 0.25em 1em;
}
#year .frame table strong {
  color: #839E67;
  font-weight: normal;
}
#year .frame ul {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
#year .frame ul li {
  list-style: disc;
  list-style-position: outside;
  margin-left: 2em;
}
#year .photo {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1em;
  align-items: center;
}
#year .photo figure {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0px 1px 4px rgb(156, 145, 139, 0.4);
}
#year .photo figure:nth-child(2n+1) {
  margin-top: 2em;
}
#year .photo figure figcaption {
  font-size: 0.9em;
  text-align: center;
}
#activities {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
#activities .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  align-items: center;
}
#activities .frame {
  position: relative;
  width: 100%;
  background-color: rgb(136, 185, 127, 0.1);
  border-radius: 2em;
  padding: 2em;
}
#activities .frame:first-of-type::before {
  content: "";
  position: absolute;
  bottom: -5vh;
  left: -5vw;
  width: 100%;
  height: 100%;
  background: url("../images/cut02.png") no-repeat left bottom;
  background-size: 30%;
  z-index: -1;
}
#activities .frame:last-of-type::before {
  content: "";
  position: absolute;
  top: -5vh;
  right: -5vw;
  width: 100%;
  height: 100%;
  background: url("../images/cut01.png") no-repeat right top;
  background-size: 30%;
  z-index: -1;
}
#activities .frame h3 {
  text-align: center;
  color: #3A5A40;
  margin-bottom: 0.5em;
}
#activities figure img {
  width: 100%;
  height: auto;
  border: 4px solid #fff;
}
/*
---------------------------------------------------入園案内
*/
#admission {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
#admission .photo {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  padding: 0 10%;
}
#admission .photo::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/tree3.png") no-repeat left bottom;
  background-size: 20%;
  z-index: 100;
}
#admission .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/tree4.png") no-repeat right bottom;
  background-size: 20%;
  z-index: 100;
}
#admission .photo img {
  width: 100%;
  height: auto;
  mask-image: url("../images/admi_mask.png");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  -webkit-mask-image: url("../images/admi_mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
}
#admission .frame {
  margin-bottom: 2em;
}
#admission .frame h3 {
  position: relative;
  text-align: left;
  color: #3A5A40;
  background: url(../images/h3_bg.png) repeat-x left bottom;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
#admission .frame .pdf li::before {
  font-family: 'Material Symbols Rounded';
  content: '\ea7d';
  vertical-align: -2px;
  padding-right: 0.5em;
  color: #D23F2A
}
#admission .frame .pdf a {
  color: #D23F2A
}
#admission .frame .pdf a:hover {
  color: #F39A8A
}
/*
---------------------------------------------------職員募集
*/
#recruitNotice .catchCopy {
  position: relative;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#recruitNotice .text {
  text-align: center;
}
#recruitNotice .phone {
  display: inline-block;
  margin: 2em auto 0;
}
#recruitNotice .phone a {
  font-size: 1.5em;
  padding: 0.5em 2em;
  color: #fff;
  background-color: #7E93C9;
  border-radius: 2em;
  outline: 4px solid #fff;
}
#recruitNotice .phone a:hover {
  background-color: #384D9F;
}
#recruitNotice .phone span {
  padding-right: 1em;
  animation: ringring 1s ease-in-out infinite;
}
@keyframes ringring {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
#recruit {
  position: relative;
  margin-bottom: 100px;
}
#recruit .frame {
  position: relative;
  width: 60%;
  margin: auto auto 1em;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2em;
  padding: 2em;
}
#recruit .frame:first-of-type {
  position: relative;
  left: -5vw
}
#recruit .frame:first-of-type::before {
  content: "";
  position: absolute;
  top: -5vh;
  right: -5vw;
  width: 100%;
  height: 100%;
  background: url("../images/cut02.png") no-repeat right top;
  background-size: 20%;
  z-index: -1;
}
#recruit .frame:last-of-type {
  position: relative;
  right: -5vw;
}
#recruit .frame:last-of-type::before {
  content: "";
  position: absolute;
  bottom: -5vh;
  left: -5vw;
  width: 100%;
  height: 100%;
  background: url("../images/cut01.png") no-repeat left bottom;
  background-size: 20%;
  z-index: -1;
}
#recruit .frame h3 {
  color: #3A5A40;
  background: url(../images/h3_bg.png) repeat-x left bottom;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
#recruit .frame .pdf {
  margin: 0.5em 0;
}
#recruit .frame .pdf a {
  color: #D23F2A;
}
#recruit .frame .pdf a::before {
  font-family: 'Material Symbols Rounded';
  content: '\ea7d';
  vertical-align: -2px;
  padding-right: 0.5em;
}
/*
---------------------------------------------------おしらせ
*/
#blog {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
#blogContents {
  width: 75%;
}
#blogContents section {
  margin-bottom: 120px;
}
#blogContents h2 {
  position: relative;
  width: 100%;
  text-align: left;
  color: #3A5A40;
  background: url(../images/h3_bg.png) repeat-x left bottom;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 0;
}
#blogContents h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 30%;
  height: 100%;
  top: -10%;
  right: 0;
  background-image: url(../images/cut04.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
#blogContents .date {
  text-align: left;
  margin-bottom: 1em;
}
#blogContents .blogKiji p {
  text-align: justify;
}
#blogContents .blogKiji ul {
  padding-left: 2em;
}
#blogContents .blogKiji ul li {
  list-style: disc !important;
  list-style-position: outside;
}
#blogContents .blogKiji ol {
  padding-left: 2em;
}
#blogContents .blogKiji ol li {
  list-style-position: outside;
}
#blogContents .blogKiji table {
  width: 100%;
  border: 2px solid #9C918B;
  border-collapse: collapse;
}
#blogContents .blogKiji table tr th {
  border: 1px solid #9C918B;
  background-color: rgb(156, 145, 139, 0.1);
  padding: 0.5em 1em;
}
#blogContents .blogKiji table tr td {
  border: 1px solid #9C918B;
  padding: 0.5em 1em;
}
#blogContents .blogPdf {
  margin: 1em 0;
  padding-left: 4em;
  text-indent: -1.5em;
}
#blogContents .blogPdf li a {
  color: #D23F2A
}
#blogContents .blogPdf li a:hover {
  color: #F39A8A
}
#blogContents .blogPdf li a::before {
  font-family: 'Material Symbols Rounded';
  content: '\ea7d';
  vertical-align: -2px;
  padding-right: 0.5em;
}
#blogContents .blogPhoto {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#blogContents .blogPhoto figure {
  width: 32%;
  line-height: 1em;
  margin-top: 2em;
}
#blogContents .blogPhoto img {
  width: 100%;
  height: auto;
  border-radius: 0 1em 0 1em;
}
#blogContents .blogPhoto figcaption {
  font-size: 0.9em;
  text-align: center;
}
#blogContents .youtube {
  line-height: 0;
  width: 60%;
  height: auto;
  margin: 2em auto;
}
#blogContents .youtube iframe {
  aspect-ratio: 16/9;
}
#categoly {
  width: 20%;
  border-radius: 2em;
  padding: 1em;
  background-color: #fff;
}
#categoly h3 {
  text-align: center;
  margin-bottom: 1em;
}
#categoly ul {}
#categoly ul li {
  margin-bottom: 1em;
  padding: 0.25em 1em;
  border-radius: 2em;
}
#categoly ul li:nth-child(4n+1) {
  background-color: #F39A8A;
}
#categoly ul li:nth-child(4n+2) {
  background-color: #E5C15B;
}
#categoly ul li:nth-child(4n+3) {
  background-color: #88B97F;
}
#categoly ul li:nth-child(4n) {
  background-color: #7E93C9;
}
#categoly ul li a {
  display: block;
  position: relative;
  color: #fff;
}
#categoly ul li a:hover {
  display: block;
  position: relative;
  top: -3px;
}
#blogNumber {
  width: 100%;
  margin-bottom: 100px;
}
#blogNumber .number {
  width: 100%;
  line-height: 2em;
}
#blogNumber .number .split {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
#blogNumber .number ul li {
  width: 2em;
  height: 2em;
  margin: 0 0.5em;
  text-align: center;
  font-weight: bold;
}
#blogNumber .number a {
  display: block;
  color: #839E67;
}
#blogNumber .number a:hover {
  color: #3A5A40;
}
#blogNumber .number a.active {
  background-color: #839E67;
  color: #FAF7F2;
  border-radius: 1em;
}
/*
---------------------------------------------------レスポンシブ1366
*/
@media screen and (max-width:1366px) {
  /*
---------------------------------------------------1366ここまで
*/
}
/*
---------------------------------------------------レスポンシブ1024
*/
@media screen and (max-width:1024px) {
  #topv::before {
    background-size: 25%;
  }
  #topv::after {
    background-size: 25%;
  }
  #news .frame {
    position: relative;
    width: 80%;
  }
  #blogContents .youtube {
    width: 100%;
  }
  /*
---------------------------------------------------1024ここまで
*/
}
/*
---------------------------------------------------レスポンシブ480
*/
@media screen and (max-width: 480px) {
  article + article {
    margin-top: 10vh;
  }
  main h1 {
    background-size: 50%;
  }
  main h2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
  }
  main h2 img {
    width: 100%;
    height: auto;
  }
  #topv {
    aspect-ratio: 4 / 3;
  }
  #topv::before {
    background-size: 30%;
  }
  #topv::after {
    background-size: 30%;
  }
  #news {
    width: 100%;
    padding-top: 25vh;
    margin: 0 auto;
  }
  #news .frame {
    position: relative;
    width: 80%;
  }
  #news .frame div h4 {
    width: 100%;
  }
  #news .frame div p {
    width: 100%;
  }
  #news .frame::before {
    background-size: 30%;
  }
  #news .frame::after {
    background-size: 30%;
  }
  #info .infoTable {
    width: 100%;
    margin-bottom: 1em;
  }
  #info .gmap {
    width: 100%
  }
  #aim .frame {
    padding-bottom: 20vw;
    background-image: url(../images/cut04.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 20vw;
  }
  #aim h3 {
    position: relative;
    top: -2em;
    left: 0;
    transform: rotate(-10deg);
    z-index: 3;
  }
  #aim .aim1 .copy {
    padding-left: 0em;
  }
  #aim .aim1 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    background-image: url(../images/cut03.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 15vw;
  }
  #aim .aim1 .catchCopy {
    translate: 0 -2em;
  }
  #aim .aim1 .catchCopy img {
    width: 100%;
    height: auto;
  }
  #aim .aim1 .text {
    translate: 0 -2em;
  }
  #aim .aim2 {
    align-self: flex-end;
    width: 100%;
  }
  #gallery {
    margin-bottom: 80px;
    background-size: 20%, 20%;
  }
  #gallery section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #gallery figure {
    position: relative;
    overflow: visible;
    padding: 0.5em 0.5em 0 0;
    margin: 0.5em;
    line-height: 1em;
  }
  #gallery figure:nth-child(4n+1)::before {
    top: -0.5em;
    left: -1em;
  }
  #gallery figure:nth-child(4n+2)::before {
    top: -0.5em;
    left: -1em;
  }
  #gallery figure:nth-child(4n+3)::before {
    top: -0.5em;
    left: -1em;
  }
  #gallery figure:nth-child(4n+4)::before {
    top: -0.5em;
    left: -1em;
  }
  #gaiyou .gaiyouTable {
    width: 80%;
    margin: auto;
  }
  #gaiyou .gaiyouTable th {
    display: inline-block;
    white-space: wrap;
    width: 100%;
    text-align: left;
  }
  #gaiyou .gaiyouTable td {
    display: inline-block;
    width: 100%;
  }
  #daily .split {
    display: grid;
    grid-template-columns: 100%;
    gap: 2rem;
  }
  #daily .frame {
    width: 100%;
  }
  #daily .photo {
    grid-template-columns: 100%;
  }
  #daily .photo figure:nth-child(2n) {
    margin-top: 0;
    margin-left: -5vw;
  }
  #daily .photo figure:nth-child(2n+1) {
    margin-left: 5vw;
  }
  #year .frame ul {
    width: 100%;
  }
  #year .photo {
    grid-template-columns: 100%;
  }
  #year .photo figure:nth-child(2n+1) {
    margin-top: 0;
    margin-left: -5vw;
  }
  #year .photo figure:nth-child(2n) {
    margin-top: 0;
    margin-left: 5vw;
  }
  #activities {
    width: 80%;
  }
  #activities .split {
    grid-template-columns: 100%;
  }
  #activities .frame:first-of-type::before {
    position: absolute;
    bottom: auto;
    top: -5vh;
    left: -5vw;
  }
  #activities .frame:last-of-type::before {
    position: absolute;
    top: auto;
    bottom: -5vh;
    right: -5vw;
  }
  #support .frame {
    position: relative;
    width: 80%;
  }
  #support .split {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 1em;
    align-items: flex-start;
  }
  #admission {
    width: 80%;
  }
  #recruit .frame {
    position: relative;
    width: 80%;
    margin: auto auto 1em;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2em;
    padding: 2em;
  }
  #blog {
    flex-wrap: wrap;
  }
  #blogContents {
    width: 100%;
  }
  #blogContents h2::before {
    content: "";
    display: none;
  }
  #blogContents .blogPhoto figure {
    width: 100%;
  }
  #categoly {
    width: 100%;
    margin-bottom: 2em;
  }
  /*
---------------------------------------------------480ここまで
*/
}