@charset "UTF-8";
.animate__delay-11s {
  animation-delay: 11s;
}

.animate__delay-13s {
  animation-delay: 13s;
}

.animate__delay-13-half-s {
  animation-delay: 13.5s;
}

.animate__delay-14s {
  animation-delay: 14s;
}

#menu-btn {
  position: fixed;
  cursor: pointer;
  top: 5px;
  right: 0px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #4D4D4D;
  position: absolute;
  transition: all 0.5s;
}

#menu-btn span::before {
  bottom: 8px;
}

#menu-btn span::after {
  top: 8px;
}

#menu-btn-check:checked ~ #menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked ~ #menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ #menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check:checked ~ #menu-content {
  left: 0;
}

#menu-btn-check {
  display: none;
}

#menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.5s;
  border-left: 2.5px solid #FFFFFF;
}

#menu-content ul {
  padding: 70px 10px 0;
}

#menu-content ul li {
  border-bottom: solid 1px #FFFFFF;
  list-style: none;
}

#menu-content ul li p {
  display: block;
  font-weight: bold;
  width: 100%;
  font-size: 125%;
  box-sizing: border-box;
  color: #FFFFFF;
  text-decoration: none;
  padding: 40px 25px 10px 10px;
  position: relative;
}

#menu-content ul li {
  display: block;
  width: 100%;
  font-size: 100%;
  box-sizing: border-box;
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 25px 10px 10px;
  position: relative;
}

#menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.page-navi .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-navi .wp-pagenavi .extend,
.page-navi .wp-pagenavi .pages,
.page-navi .wp-pagenavi .current,
.page-navi .wp-pagenavi a {
  text-align: center;
  width: 60px;
  height: 60px;
  margin: 0 20px;
  line-height: 56px;
}
@media screen and (max-width: 750px) {
  .page-navi .wp-pagenavi .extend,
  .page-navi .wp-pagenavi .pages,
  .page-navi .wp-pagenavi .current,
  .page-navi .wp-pagenavi a {
    width: 12.2vw;
    height: 19.2vw;
    line-height: 18.2vw;
    font-size: 3.73333vw;
    margin: 0 1.38vw;
  }
}
.page-navi .wp-pagenavi .current {
  border: none;
  color: #111;
}
.page-navi .wp-pagenavi a {
  color: #fff;
  background-color: #111;
}

.round-object {
  width: 300px;
  height: 300px;
  box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.25);
  transition: all 0.3s;
}
.round-object:hover {
  background-image: linear-gradient(to right, #93c5fd, #a5b4f0, #3b82f6);
  box-shadow: 5px 5px 5px rgba(255, 255, 255, 0.25);
}
.round-object:hover .round-object-top {
  opacity: 0.5;
}
.round-object:hover .round-object-middle {
  color: black;
  opacity: 0.01;
}
.round-object:hover .round-object-bottom {
  background-color: #93c5fd;
}
.round-object:hover .round-object-bottom p {
  color: white;
}
.round-object:hover .round-text {
  display: block;
}
.round-object:hover .hover-animate__fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.single img {
  margin-top: 36px;
  margin-bottom: 36px;
}
.single h2 {
  padding-top: 12px;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 38px;
  font-weight: bold;
}
@media (max-width: 750px) {
  .single h2 {
    font-size: 5.8vw;
    line-height: 35px;
    margin-bottom: 4.26666667vw;
  }
}
.single h3 {
  padding-top: 12px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 38px;
  font-weight: bold;
}
@media (max-width: 750px) {
  .single h3 {
    font-size: 4.8vw;
    line-height: 35px;
    margin-bottom: 4.26666667vw;
  }
}
.single h4 {
  padding-top: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 38px;
  font-weight: bold;
}
@media (max-width: 750px) {
  .single h4 {
    font-size: 3.8vw;
    line-height: 35px;
    margin-bottom: 4.26666667vw;
  }
}
.single p {
  font-size: 16px;
  line-height: 37px;
  margin-bottom: 36px;
}
@media (max-width: 750px) {
  .single p {
    font-size: 4vw;
    line-height: 8vw;
    margin-bottom: 5.86667vw;
  }
}
.single p:last-child {
  margin-bottom: 0;
}
.single ul {
  list-style-type: disc;
}
.single ol {
  list-style-type: decimal;
}
.single ul,
.single ol {
  padding: 32px 66px;
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 28px;
}
@media (max-width: 750px) {
  .single ul,
  .single ol {
    text-align: center;
    padding: 9.33vw 9.53vw;
    margin-bottom: 10.66667vw;
    font-size: 3.46667vw;
    line-height: 6.93333vw;
  }
}
.single ul li,
.single ol li {
  font-size: 16px;
  line-height: 37px;
  margin-bottom: 36px;
}
@media (max-width: 750px) {
  .single ul li,
  .single ol li {
    font-size: 4vw;
    line-height: 8vw;
    margin-bottom: 5.86667vw;
  }
}
.single ul li:last-child,
.single ol li:last-child {
  margin-bottom: 0;
}
.single a {
  text-decoration: underline;
  color: #F6DE79;
  border-color: #F6DE79;
}
.single b,
.single strong {
  font-weight: 700;
}
.single code {
  padding-left: 8px;
  padding-right: 8px;
  font-weight: bold;
  border-radius: 4px;
  color: #547699;
  background-color: #F6DE79;
}
.single aside ol {
  list-style-type: decimal;
  margin-left: 24px;
  padding-left: 24px;
}
.single aside ol li {
  margin-top: 16px;
  text-decoration: underline;
}

.slider {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar {
  display: none;
}
.slider .slider-track {
  display: flex;
  flex-wrap: nowrap;
}
.slider .slide {
  flex: 0 0 33.3333333333%;
  scroll-snap-align: start;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

.font-work-sans {
  font-family: "Work Sans", sans-serif;
}

.grid-rows-3-custom {
  grid-template-rows: 1fr 0.5fr 1fr;
}

.inner-shadow-top {
  box-shadow: inset 0 0.5rem 0.7rem rgba(0, 0, 0, 0.05);
}

.shadow-top-left {
  box-shadow: -4px -4px 10px rgba(255, 255, 255, 0.08);
}

.title-deco {
  position: relative;
}
.title-deco::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: -15px;
  width: 0.5rem;
  height: 1rem;
  background: #3174ba;
  background: linear-gradient(to bottom, #3174ba 50%, #2ca7d1 50.1%);
}

.paren-number-list {
  list-style: none;
  padding-left: 0;
  counter-reset: custom-counter 0;
}
.paren-number-list li {
  position: relative;
}
.paren-number-list li::before {
  position: absolute;
  top: 0;
  left: -2rem;
  content: "(" counter(custom-counter) ") ";
  counter-increment: custom-counter;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.loading-letter {
  animation: blink 1s ease-in-out infinite;
}

/* 各文字に遅延を設定 */
.loading-letter:nth-child(1) {
  animation-delay: 0s;
}

.loading-letter:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-letter:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-letter:nth-child(4) {
  animation-delay: 0.3s;
}

.loading-letter:nth-child(5) {
  animation-delay: 0.4s;
}

.loading-letter:nth-child(6) {
  animation-delay: 0.5s;
}

.loading-letter:nth-child(7) {
  animation-delay: 0.6s;
}

.loading-letter:nth-child(8) {
  animation-delay: 0.7s;
}

.loading-letter:nth-child(9) {
  animation-delay: 0.8s;
}

.loading-letter:nth-child(10) {
  animation-delay: 0.9s;
}

@media (min-width: 640px) {
  .trapezoid-title {
    -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  }
}
.trapezoid-image {
  -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.trapezoid-step {
  -webkit-clip-path: polygon(0 0, 90% 0%, 100% 100%, 10% 100%);
          clip-path: polygon(0 0, 90% 0%, 100% 100%, 10% 100%);
}

.animated-container {
  /* アニメーションの初期状態を設定 */
  transform: translateY(-100%);
  will-change: transform;
}

.gray-line {
  position: relative;
}
.gray-line::before {
  content: "";
  position: absolute;
  transform: rotate(10deg);
  width: 19.125rem;
  left: 6px;
  top: -187px;
  height: 200%;
  z-index: -1;
  background-color: #f4f4f4;
}
@media (max-width: 600px) {
  .gray-line::before {
    width: 8.125rem;
    left: 80px;
    top: -171px;
  }
}

@keyframes slideInDown {
  to {
    transform: translateY(0);
  }
}
.animated-container.animate {
  animation: slideInDown 1s ease forwards;
}/*# sourceMappingURL=style.css.map */