@charset "utf-8";
/*-------------------------------------------------
PC表示：960px〜
スマホ　320〜959px（brakepoint: 520px 960px）
-------------------------------------------------*/

/*スライド画像*/
.bl_hero{
  position: relative;
  background-image: url(../img/bl_hero.webp);
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  height: 600px;
}


/* テキストとアイコンのinner */
.bl_hero_inner {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}



.bl_hero ._catch {
  text-align: left;
  position: absolute;
  z-index: 20;
  margin: 0;
  top: calc(50% + 45px);
  left: 0;
  width: max-content;
  transform: translateY(-50%);
  padding: 0 1em;
  /* font-size: min(3.5vw, 50px);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 0.1em rgba(0, 51, 102, 0.5),0 0 0.4em rgba(0, 51, 102,0.5),0 0 0.6em rgba(0, 51, 102,0.5),0 0 0.8em rgba(0, 51, 102,0.5),0 0 1em rgba(0, 51, 102,0.5); */
  display: flex;
  align-items: center;
  gap: 20px;
  animation: FV_slider .6s 0.2s ease-out both; /* catchにもアニメーション適用 */
}
.bl_hero ._catch img {
  image-rendering: auto;
}
.bl_hero ._catch ._txt ._description {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-top: 20px;
  text-shadow: 0 0 0.1em rgba(0, 51, 102, 0.5),0 0 0.4em rgba(0, 51, 102,0.5),0 0 0.6em rgba(0, 51, 102,0.5),0 0 0.8em rgba(0, 51, 102,0.5),0 0 1em rgba(0, 51, 102,0.5);
}
.bl_hero ._catch ._txt ._big {
  color: #444;
  font-weight: bold;
  font-size: clamp(26px, 3.07vw,40px);
  text-shadow: 0 0 0.1em rgb(255 255 255 / 80%), 0 0 0.2em rgb(255 255 255 / 80%), 0 0 0.3em rgb(255 255 255 / 80%), 0 0 0.4em rgb(255 255 255 / 80%), 0 0 0.5em rgb(255 255 255 / 80%);
}

/* md */
@media not screen and (min-width:960px) {
  .bl_hero ._icon img {
    width: clamp(60px, 9.896vw ,95px);
  }
}

/* xs */
@media not screen and (min-width:520px) {
  .bl_hero{
    height: 350px;
  }
  .bl_hero ._catch ._txt ._big {
    font-size: 19px;
  }
  .bl_hero ._catch ._txt ._description {
    margin-top: 15px;
    font-size: 14px;
  }
  .bl_hero ._catch {
    top: 70%;
  }
}

.bl_hero ._copyRight {
  z-index: 21;
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #fff;
  font-weight: bold;
}

.bl_hero_inner {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1250px;
  margin: auto;
}

.bl_hero_inner ._catch {
  text-align: left;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  z-index: 20;
  margin: 0;
  top: calc(50%);
  width: max-content;
  max-width: 90%;
  max-width: 100%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, .60);
  color: #fff;
  font-weight: bold;
  padding: 30px;
  animation: FV_slider .6s 0.2s ease-out both;
}
.bl_hero_inner ._catch ._ttl {
  font-size: clamp(24px, 2.4615vw,32px);
  line-height: 1.5;
}

.bl_hero_inner ._catch ._txt {
  font-size: clamp(18px, 1.6923vw,22px);
  margin-top: 20px;
}

.bl_hero_inner ._catch a {
  color: #fff;
}

/* md */
@media not screen and (min-width:960px) {
  .bl_hero_inner ._catch {
    padding: 20px;
    width: 95%;
    max-width: max-content;
  }
  .bl_hero_inner ._catch ._ttl {
    font-size: 18px;
  }
  
  .bl_hero_inner ._catch ._txt {
    font-size: 1.6rem;
    margin-top: 0;
  }
}

/* xs */
@media not screen and (min-width:520px) {
  .bl_hero_inner ._catch {

    padding: 15px;
  }
}




/* ====================================================
about
==================================================== */

.un_aboutRadius {
  border-radius: 36% 64% 31% 69% / 63% 41% 59% 37%;
}

/* ====================================================
Works
==================================================== */
.un_worksThumbGrid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 4.5%;
}

.un_worksThumbGrid > ._item {
  color: #000;
}
.un_worksThumbGrid ._thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid #ddd;
  transition: filter .3s;
}

.un_worksThumbGrid figcaption {
  padding-top: 1em;
}

.un_worksThumbGrid > ._item:hover ._thumb img {
  filter: brightness(90%);
}


@media screen and (min-width:520px) {
  .un_worksThumbGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 4.5%;
  }
}

/* lg */
@media screen and (min-width:960px) {
  .un_worksThumbGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 4.5%;
  }
}