@charset "UTF-8";
body.sub_page article {
  margin-top: 100px;
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  min-height: calc(100vh - 220px);
}
body.sub_page section {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 880px) {
  body.sub_page section {
    width: 95%;
  }
}
body.sub_page ol.pankuzu {
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-left: 30px;
  list-style-type: none;
}
@media screen and (max-width: 600px) {
  body.sub_page ol.pankuzu {
    font-size: 1.2rem;
    margin-left: 5px;
  }
}
body.sub_page ol.pankuzu li {
  white-space: nowrap;
  position: relative;
  padding-right: 20px;
  margin-right: 10px;
}
body.sub_page ol.pankuzu li a {
  text-decoration: none;
}
body.sub_page ol.pankuzu li::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #333;
  position: absolute;
  right: 0;
}
body.sub_page ol.pankuzu li:last-child::after {
  content: none;
}

h1 {
  background-image: url("../images/bcg_left.png"), url("../images/bcg_right.png"), linear-gradient(180deg, #fdfaf4 0%, #f0fee9 100%); /* 一番背面 */
  background-position: left bottom, right bottom, center;
  background-repeat: no-repeat;
  background-size: auto 100%, auto 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-size: 2.5rem;
}

.wave {
  margin-top: -20px;
}

h2 {
  display: flex;
  align-items: center;
  gap: 10px; /* 桜と文字の間の余白 */
  font-weight: normal;
  margin: 20px 0;
  font-size: 2.2rem;
}
h2::before {
  content: "🌿"; /* 葉っぱの絵文字 */
  font-family: "Noto Color Emoji", sans-serif;
  font-size: 2.2rem;
}

@keyframes amoeba {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    border-radius: 50% 50% 20% 80%/20% 50% 80% 50%;
  }
}
div.dep-link {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
div.dep-link ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  font-size: 1.6rem;
}
@media screen and (max-width: 880px) {
  div.dep-link ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  div.dep-link ul {
    grid-template-columns: 1fr;
  }
}
div.dep-link ul a {
  background-color: #FCF9F0;
  border: 1px solid #EAB226;
  display: block;
  text-decoration: none;
  padding: 15px 35px 15px 15px;
  border-radius: 15px;
  color: #000000;
  position: relative;
}
div.dep-link ul a li {
  display: flex;
  align-items: center;
}
div.dep-link ul a li img {
  width: 2.4rem;
  margin-right: 5px;
}
div.dep-link ul a::after {
  position: absolute;
  content: ">";
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
}
div.dep-link ul a:hover {
  background-color: #EAB226;
  color: #ffffff;
}

.common-grad {
  background: linear-gradient(to right, #FFEFFB, #FCF9F0);
}

.ameba {
  display: inline-block; /* spanにサイズを持たせるために必須 */
  width: 100px; /* 好きな幅 */
  height: 100px; /* 好きな高さ */
  opacity: 0.8;
  position: absolute;
  top: 300px;
  left: 50px;
  background-image: url(../images/ame1.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.ameba2 {
  display: inline-block; /* spanにサイズを持たせるために必須 */
  width: 100px; /* 好きな幅 */
  height: 100px; /* 好きな高さ */
  opacity: 0.8;
  position: absolute;
  bottom: 150px;
  right: 50px;
  background-image: url(../images/ame2.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.ameba3 {
  display: inline-block; /* spanにサイズを持たせるために必須 */
  width: 100px; /* 好きな幅 */
  height: 100px; /* 好きな高さ */
  opacity: 0.9;
  position: absolute;
  top: 280px;
  right: 70px;
  background-image: url(../images/ame3.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.ameba4 {
  display: inline-block; /* spanにサイズを持たせるために必須 */
  width: 100px; /* 好きな幅 */
  height: 100px; /* 好きな高さ */
  opacity: 0.9;
  position: absolute;
  bottom: 80px;
  left: 50px;
  background-image: url(../images/ame4.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

a.dl-btn {
  display: block;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 15px;
  color: #81C961;
  border: 2px solid #81C961;
  width: 20em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  font-size: 1.6rem;
  text-decoration: none;
  text-align: center;
}
a.dl-btn:hover {
  background-color: #81C961;
  color: #ffffff;
}

.bcg-beige {
  background-color: #FCF9F0;
  padding: 10px;
  line-height: 2;
}

.is-dark div.dep-link ul a, .is-dark div.dep-link ul a:hover {
  background-color: #000000;
  color: #ffffff;
}
.is-dark .common-grad {
  background-image: none;
  border: 1px solid #ffffff;
}
.is-dark .dep13-table dl li, .is-dark .dep13-table dl dt, .is-dark .dep13-table p {
  color: #ffffff !important;
}
.is-dark .bcg-beige {
  background-color: #000000;
}
.is-dark .ameba, .is-dark .ameba2, .is-dark .ameba3, .is-dark .ameba4 {
  display: none;
}/*# sourceMappingURL=common.css.map */