@charset "UTF-8";
#home h2 {
  padding: 0;
  background: none;
}
#home .sec_title {
  font-size: clamp(1.875rem, 0.966rem + 4.55vw, 4.375rem);
  margin-bottom: 0;
  line-height: 1.25;
}
#home .sec_title + p {
  margin: 0;
  padding-left: 2em;
}
@media screen and (max-width: 599px) {
  #home .sec_title + p {
    padding-left: 1em;
  }
}
#home #sec_kv {
  position: relative;
}
@media screen and (max-width: 599px) {
  #home #sec_kv {
    padding-top: 0 !important;
  }
}
#home #sec_kv figure {
  margin-top: 0;
}
#home #sec_kv .main_kv {
  transform: translateX(-6%);
  height: 90vh;
}
#home #sec_kv .main_kv img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: 65% 40%;
     object-position: 65% 40%;
  border-bottom-right-radius: 2rem;
}
#home #sec_kv .float {
  position: absolute;
}
#home #sec_kv .float.kamome {
  width: 50%;
  max-width: 30rem;
  bottom: -5%;
  left: 6%;
  animation: fuwafuwa 5s ease-in-out infinite;
}
@media screen and (max-width: 599px) {
  #home #sec_kv .float.kamome {
    bottom: 10%;
    width: 50%;
  }
}
#home #sec_kv .float.logo.pc {
  display: block;
  max-width: 42%;
  min-width: 35rem;
  left: -6%;
  top: 20%;
}
@media screen and (max-width: 599px) {
  #home #sec_kv .float.logo.pc {
    display: none;
  }
}
#home #sec_kv .float.logo.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  #home #sec_kv .float.logo.sp {
    display: block;
    width: 70%;
    max-width: 46rem;
    left: 0;
    top: 25%;
  }
}
#home #sec_kv .float.cloud {
  bottom: 10%;
  right: 0;
  width: 20%;
  max-width: 26rem;
}
@media screen and (max-width: 599px) {
  #home #sec_kv .float.cloud {
    width: 40%;
    bottom: 30%;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
    /* 浮き上がる距離 */
  }
  80% {
    transform: translateY(0);
  }
}
#home #sec_news .news_tab ul {
  padding: 0;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
#home #sec_news .news_tab ul li {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid var(--wp--preset--color--theme-blue);
  border-radius: 2rem;
  width: 100%;
  display: block;
  flex: 1;
  position: relative;
  height: auto;
}
@media screen and (max-width: 599px) {
  #home #sec_news .news_tab ul li {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}
#home #sec_news .news_tab ul li.active {
  color: var(--wp--preset--color--theme-white);
  background-color: var(--wp--preset--color--theme-blue);
}
#home #sec_news .news_tab ul li.active::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: var(--wp--preset--color--theme-blue);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
#home #sec_news .news_index {
  position: relative;
}
#home #sec_news .news_index .post_wrapper {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  transition: 0.3s all;
  width: 100%;
}
#home #sec_news .news_index .post_wrapper.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
#home #sec_news .news_index .post_wrapper ul {
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  display: flex;
  gap: 1.25rem;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #home #sec_news .news_index .post_wrapper ul {
    flex-direction: column;
  }
}
#home #sec_news .news_index .post_wrapper ul li {
  flex: 1;
  max-width: 50%;
}
@media screen and (max-width: 599px) {
  #home #sec_news .news_index .post_wrapper ul li {
    max-width: none;
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
  }
}
#home #sec_news .news_index .post_wrapper ul li figure {
  border-radius: 10px;
  height: auto;
  overflow: hidden;
  margin-bottom: 1rem;
  height: -moz-fit-content;
  height: fit-content;
}
#home #sec_news .news_index .post_wrapper ul li figure img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 599px) {
  #home #sec_news .news_index .post_wrapper ul li figure {
    flex: 1;
  }
}
@media screen and (max-width: 599px) {
  #home #sec_news .news_index .post_wrapper ul li .post_info {
    flex: 1;
  }
}
#home #sec_news .news_index .post_wrapper ul li .post_cat {
  font-size: var(--wp--preset--font-size--small);
  text-align: center;
  display: inline-block;
  background: #000;
  color: #FFF;
  border-radius: 2rem;
  padding: 0.2em 2em;
  margin-bottom: 1.5rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 599px) {
  #home #sec_news .news_index .post_wrapper ul li .post_cat {
    font-size: var(--wp--preset--font-size--smallest);
    padding: 0.5em;
    margin-bottom: 0.5rem;
  }
}
#home #sec_news .news_index .post_wrapper ul li .post_date {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--theme-gray);
}
#home #sec_news .news_index .post_wrapper ul li .post_title {
  font-size: var(--wp--preset--font-size--medium);
  margin: 0;
  margin-bottom: 0.625rem;
  font-weight: 500;
}
#home #sec_news .news_index .post_wrapper ul li .post_more {
  text-decoration: none;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--theme-blue);
  position: relative;
}
#home #sec_news .news_index .post_wrapper ul li .post_more::after {
  display: block;
  content: "";
  padding-left: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../../assets/images/icon_more.svg) no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
}
#home #sec_topics .wp-block-columns .wp-block-column {
  transition: 0.3s all;
}
#home #sec_topics .wp-block-columns .wp-block-column:hover {
  transform: scale(1.05);
}
#home #sec_topics .wp-block-columns .wp-block-column figure {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  text-align: left;
}
#home #sec_topics .wp-block-columns .wp-block-column figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.75rem;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  color: var(--wp--preset--color--theme-white);
  font-weight: 500;
  font-size: var(--wp--preset--font-size--large);
}
#home #sec_inquiry {
  transform: translateY(50%);
  z-index: 2;
}
@media screen and (max-width: 599px) {
  #home #sec_inquiry {
    margin-top: -6rem;
    transform: translate(-7%, 50%);
    border-radius: 0 25px 25px 0 !important;
  }
}
#home #sec_inquiry .box {
  max-width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  #home #sec_inquiry .box {
    max-width: 90%;
  }
}
@media screen and (max-width: 599px) {
  #home #sec_inquiry .box {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transform: translateX(7%);
  }
}
#home #sec_inquiry .box .description {
  gap: 3em;
}
@media (max-width: 1199px) {
  #home #sec_inquiry .box .description {
    width: 100%;
    flex-direction: column;
    gap: 1.5em;
  }
}
@media screen and (max-width: 599px) {
  #home #sec_inquiry .box .description p {
    width: 100%;
  }
  #home #sec_inquiry .box .description .wp-block-buttons {
    width: 100%;
  }
  #home #sec_inquiry .box .description .wp-block-buttons .wp-block-button {
    flex: 1;
  }
}
#home #sec_info .banner_wrapper {
  max-width: 879px;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-right: auto;
  margin-left: auto;
}
#home #sec_info .banner_wrapper figure {
  width: calc((100% - 3rem) / 4);
}
@media screen and (max-width: 599px) {
  #home #sec_info .banner_wrapper figure {
    width: calc((100% - 1rem) / 2);
  }
  #home #sec_info .banner_wrapper figure img {
    width: 100%;
  }
}
#home .bg-overflow.right {
  position: relative;
}
#home .bg-overflow.right::before {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  display: block;
  position: absolute;
  content: "";
  background: var(--wp--preset--color--theme-aquablue);
  width: 100vw;
  height: calc(100% + 7.5rem);
  z-index: -1;
  top: -3.75rem;
  left: -10%;
}
@media screen and (max-width: 599px) {
  #home .bg-overflow.right::before {
    width: 100vh;
    left: -50vw;
  }
}/*# sourceMappingURL=home.css.map */