@charset "UTF-8";
/* ----------------------------------------------------------
   #GLOBAL
---------------------------------------------------------- */
/* メインビジュアル 
----- page/top-page/_mv ----- */
.tp-mv {
  position: relative;
  overflow: hidden;
}
.tp-mv figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.tp-mv figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.index-hero {
  position: relative;
}

#heroSlider {
  position: relative;
}
#heroSlider::before {
  content: "";
  background: #000;
  opacity: 0.3;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
#heroSlider .slick-track {
  height: 100vh;
}

.tp-mv_catch {
  color: #62A87C;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.tp-mv_catch h1 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .tp-mv_catch h1 {
    font-size: 2rem;
  }
}
.tp-mv_catch h1 span {
  display: block;
  background-color: #fff;
  padding: 15px 40px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .tp-mv_catch h1 span {
    padding: 15px 20px 10px;
  }
}
.tp-mv_catch h1 span:nth-child(1) {
  transform: translateX(-80px);
}
@media screen and (max-width: 768px) {
  .tp-mv_catch h1 span:nth-child(1) {
    transform: translateX(-30px);
  }
}
.tp-mv_catch h1 span:nth-child(2) {
  transform: translateX(80px);
  background-color: #62A87C;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .tp-mv_catch h1 span:nth-child(2) {
    transform: translateX(30px);
  }
}

.tp-mv_deco {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.tp-mv_deco figure img {
  object-position: center top;
}

@media screen and (max-width: 768px) {
  .tp-mv::before {
    width: 90px;
    height: 90px;
    left: -25px;
    rotate: 9deg;
  }
  .tp-mv::after {
    width: 145px;
    height: 350px;
    right: -53px;
    bottom: auto;
    top: 0;
  }
  .tp-mv figure {
    width: 100%;
  }
  .tp-mv figure::before {
    background-image: url("../img/top-mv_frame_sp.svg");
  }
  .tp-mv .tp-mv_catch h1 {
    font-size: 2.2rem;
  }
}
.tp-ttl_h2 {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #62A87C;
  position: relative;
  padding-bottom: 8px;
  overflow: hidden;
}
.tp-ttl_h2::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #62A87C;
  animation: flowLine 5s ease-in-out infinite;
}

@keyframes flowLine {
  0% {
    transform: translateX(-105%);
  }
  20%, 80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}
.tp-about-copy {
  font-size: 3.4rem;
  font-weight: 700;
  color: #62A87C;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1120px) {
  .tp-about-copy {
    font-size: 2.4rem;
  }
}

.tp-about-copy-sub {
  font-size: 1.6rem;
  font-weight: 700;
  color: #62A87C;
}

.tp-about-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

@keyframes brickFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.c-brick-gallery {
  --gap: 15px;
}
@media screen and (max-width: 768px) {
  .c-brick-gallery {
    --gap: 8px;
  }
}
.c-brick-gallery {
  --item-width: min(180px, calc((100% - (var(--gap) * 3)) / 4));
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  width: 100%;
  overflow: hidden;
}
.c-brick-gallery .c-brick-row {
  display: flex;
  justify-content: flex-end;
  gap: var(--gap);
}
.c-brick-gallery .c-brick-row:nth-child(even) img:last-child {
  margin-right: calc(var(--item-width) / 2 + var(--gap) / 2);
}
.c-brick-gallery .c-brick-row:nth-child(1) img:nth-child(1) {
  animation-delay: 0.5s;
}
.c-brick-gallery .c-brick-row:nth-child(1) img:nth-child(2) {
  animation-delay: 1s;
}
.c-brick-gallery .c-brick-row:nth-child(1) img:nth-child(3) {
  animation-delay: 0.9s;
}
.c-brick-gallery .c-brick-row:nth-child(1) img:nth-child(4) {
  animation-delay: 0.3s;
}
.c-brick-gallery .c-brick-row:nth-child(2) img:nth-child(1) {
  animation-delay: 0.7s;
}
.c-brick-gallery .c-brick-row:nth-child(2) img:nth-child(2) {
  animation-delay: 0.7s;
}
.c-brick-gallery .c-brick-row:nth-child(2) img:nth-child(3) {
  animation-delay: 0.4s;
}
.c-brick-gallery .c-brick-row:nth-child(2) img:nth-child(4) {
  animation-delay: 0.7s;
}
.c-brick-gallery .c-brick-row:nth-child(3) img:nth-child(1) {
  animation-delay: 0.5s;
}
.c-brick-gallery .c-brick-row:nth-child(3) img:nth-child(2) {
  animation-delay: 1.2s;
}
.c-brick-gallery .c-brick-row:nth-child(3) img:nth-child(3) {
  animation-delay: 0.9s;
}
.c-brick-gallery .c-brick-row:nth-child(3) img:nth-child(4) {
  animation-delay: 0.1s;
}
.c-brick-gallery .c-brick-row:nth-child(4) img:nth-child(1) {
  animation-delay: 1.1s;
}
.c-brick-gallery .c-brick-row:nth-child(4) img:nth-child(2) {
  animation-delay: 0.1s;
}
.c-brick-gallery .c-brick-row:nth-child(4) img:nth-child(3) {
  animation-delay: 1.1s;
}
.c-brick-gallery .c-brick-row:nth-child(4) img:nth-child(4) {
  animation-delay: 0.4s;
}
.c-brick-gallery .c-brick-row:nth-child(5) img:nth-child(1) {
  animation-delay: 0.1s;
}
.c-brick-gallery .c-brick-row:nth-child(5) img:nth-child(2) {
  animation-delay: 0.8s;
}
.c-brick-gallery .c-brick-row:nth-child(5) img:nth-child(3) {
  animation-delay: 0.6s;
}
.c-brick-gallery .c-brick-row:nth-child(5) img:nth-child(4) {
  animation-delay: 0.2s;
}
.c-brick-gallery .c-brick-row:nth-child(6) img:nth-child(1) {
  animation-delay: 0.8s;
}
.c-brick-gallery .c-brick-row:nth-child(6) img:nth-child(2) {
  animation-delay: 0.3s;
}
.c-brick-gallery .c-brick-row:nth-child(6) img:nth-child(3) {
  animation-delay: 0.7s;
}
.c-brick-gallery .c-brick-row:nth-child(6) img:nth-child(4) {
  animation-delay: 0.2s;
}
.c-brick-gallery img {
  width: var(--item-width);
  aspect-ratio: 2/1;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0;
}
.c-brick-gallery.is-animated img {
  animation: brickFadeIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.tp-company_ttl {
  text-align: center;
}
.tp-company_ttl span {
  display: inline-block;
  background-color: #62A87C;
  border-radius: 5px;
  padding: 10px 30px 7px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .tp-company_ttl span {
    font-size: 1.8rem;
    padding: 10px 15px 7px;
  }
}

.tp-company_item {
  border: solid 1px #62A87C;
  border-radius: 20px;
  padding: 40px 20px;
  height: 100%;
}
.tp-company_item img {
  display: block;
  width: 145px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto;
}
.tp-company_item h3 {
  font-size: 1.8rem;
  margin: 50px auto 30px;
  text-align: center;
  color: #62A87C;
  font-weight: 700;
}

.tp-work_flex {
  display: flex;
  position: relative;
}
.tp-work_flex::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 10%;
  max-width: 850px;
  width: 80%;
  height: 778px;
  background: url(../img/index/work-bg-img-01.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 30px;
}

.tp-work_list {
  background-color: #FFFFEB;
  padding: 150px 150px 150px 80px;
  border-radius: 0 80px 80px 0;
  width: 100%;
  position: relative;
  z-index: 0;
  margin-left: -15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.tp-work_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: url(../img/index/work-bg-img-02.png) no-repeat;
  background-position: right;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .tp-work_list {
    padding: 150px 80px 150px 15px;
  }
}

.tp-work_list_item {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.tp-work_list_item:hover h3 {
  transform: translateX(10px);
  color: #E6BB58;
  transition: all 0.3s;
}
.tp-work_list_item figure {
  overflow: hidden;
  border-radius: 10px;
}
.tp-work_list_item img {
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.tp-work_list_item h3 {
  color: #62A87C;
  font-size: 1.6rem;
  margin-top: 10px;
  font-weight: 700;
  background-color: #fff;
  padding: 6px 15px 4px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .tp-work_list_item h3 {
    font-size: 1.4rem;
  }
}

.tp-work_right {
  background-color: #A9E0BD;
  border-radius: 80px 0 0 80px;
  padding: 120px 30px;
  position: relative;
  width: 100%;
  z-index: 2;
  margin: 100px -15px -60px -60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .tp-work_right {
    font-size: 3rem;
    padding: 120px 15px;
  }
}

.category-list {
  position: sticky;
  top: 100px;
}
.category-list h4 {
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .category-list h4 {
    font-size: 2.2rem;
  }
}
.category-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .category-list ul {
    gap: 15px;
  }
}
.category-list ul li a {
  background-color: #62A87C;
  border-radius: 100px;
  display: block;
  padding: 5px 20px 3px;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s;
  font-weight: 700;
}
.category-list ul li a:hover {
  background-color: #2E563D;
}
@media screen and (max-width: 768px) {
  .category-list ul li a {
    font-size: 1.3rem;
    padding: 5px 15px 3px;
  }
}

.tp-topics {
  background-color: #A9E0BD;
  padding: 60px 20px;
  border-radius: 20px;
  position: relative;
}
.tp-topics::before {
  content: "";
  background: url(../img/index/topics-deco-left.svg) no-repeat;
  position: absolute;
  top: -70px;
  left: 20px;
  width: 215px;
  height: 70px;
  object-fit: contain;
}
.tp-topics::after {
  content: "";
  background: url(../img/index/topics-deco-left.svg) no-repeat;
  position: absolute;
  top: -70px;
  right: 20px;
  width: 142px;
  height: 70px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .tp-topics::after {
    display: none;
  }
}
.tp-topics h2 {
  font-size: 9rem;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .tp-topics h2 {
    font-size: 6rem;
  }
}

.tp-topics_list_item a:hover {
  color: #E6BB58;
}
.tp-topics_list_item a:hover .tp-topics_cate span {
  transition: all 0.3s;
  background-color: #E6BB58;
}
.tp-topics_list_item a:hover .tp-topics_cate time {
  transition: all 0.3s;
  color: #E6BB58;
}
.tp-topics_list_item a:hover .tp-topics_txt {
  transition: all 0.3s;
  color: #E6BB58;
}
.tp-topics_list_item a:hover img {
  transform: scale(1.05);
  transition: all 0.3s;
}
.tp-topics_list_item figure {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.tp-topics_list_item img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.tp-topics_info {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 20px 15px;
}

.tp-topics_cate span {
  background-color: #62A87C;
  color: #fff;
  font-size: 1.4rem;
  display: inline-block;
  padding: 4px 15px;
  border-radius: 100px;
  line-height: normal;
}
.tp-topics_cate time {
  font-size: 1.3rem;
  color: #62A87C;
  font-weight: 500;
  margin-left: 10px;
}

.tp-topics_txt {
  margin-top: 15px;
  color: #62A87C;
  font-size: 1.6rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.contact-inner {
  background-color: #62A87C;
  border-radius: 20px;
  padding: 40px 40px 40px 80px;
}
@media screen and (max-width: 768px) {
  .contact-inner {
    padding: 40px 15px 0 15px;
  }
}
.contact-inner h2 {
  color: #fff;
  font-size: 9rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .contact-inner h2 {
    font-size: 6rem;
  }
}
.contact-inner h3 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .contact-inner h3 {
    font-size: 1.8rem;
  }
}
.contact-inner p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-inner p {
    font-size: 1.5rem;
  }
}

.contact-post {
  position: relative;
  width: 252px;
}
.contact-post .post-img {
  position: absolute;
  bottom: -40px;
  right: 30px;
  width: 252px;
  transition: opacity 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  .contact-post .post-img {
    position: unset;
    display: block;
    margin: 0 0 0 auto;
    max-height: 200px;
  }
}
.contact-post .post-img__default {
  opacity: 1;
  z-index: 2;
}
.contact-post .post-img__hover {
  opacity: 0;
  z-index: 1;
}
.contact-post .mail-img {
  position: absolute;
  bottom: 280px;
  left: -20px;
  width: 80px;
  opacity: 0;
  transform: translate(-40px, -40px);
  transition: all 0.4s ease-out;
  z-index: 3;
}

/* --- ホバー時の連動 --- */
.contact-inner:has(.c-btn__contact:hover) .contact-post .post-img__default {
  opacity: 0;
}
.contact-inner:has(.c-btn__contact:hover) .contact-post .post-img__hover {
  opacity: 1;
}
.contact-inner:has(.c-btn__contact:hover) .contact-post .mail-img {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=index.css.map */