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

/*スライド画像*/
.bl_hero {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url(../../img/bl_hero.webp);
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  height: 700px;

  ._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にもアニメーション適用 */

    img {
      image-rendering: auto;
    }

    ._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);
      }

      ._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%);
      }
    }

    ._googlePlay img {
      width: 80%;
      max-width: 200px;
      display: block;
      margin-right: auto;
      margin-left: auto;
    }
  }

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

  @media not screen and (min-width:520px) {
    height: 350px;

    ._catch ._txt ._big {
      font-size: 19px;
    }

    ._catch ._txt ._description {
      margin-top: 15px;
      font-size: 14px;
    }

    ._catch {
      top: 70%;
    }
  }
}

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

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

  ._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: 100%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .50);
    color: #fff;
    font-weight: bold;
    padding: 30px;
    animation: FV_slider .6s 0.2s ease-out both;

    ._ttl {
      font-size: clamp(24px, 2.4615vw, 32px);
      line-height: 1.5;
    }

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

    ._logo {
      width: 100%;
      max-width: 250px;
      image-rendering: crisp-edges;
    }

    a {
      color: #fff;
    }
  }

  /* md */
  @media not screen and (min-width:960px) {
    ._catch {
      position: relative;
      padding: 20px;
      width: 95%;
      max-width: max-content;

      ._ttl {
        font-size: 18px;
      }

      ._txt {
        font-size: 16px;
        margin-top: 0;
      }
    }
  }

  /* xs */
  @media not screen and (min-width:520px) {
    ._catch {
      padding: 15px;
      width: 100%;
      height: 100%;
      max-width: unset;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, .15);
    }
  }
}


/* ====================================================
about
==================================================== */
#about {
  counter-reset: point;
}

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

/* メディア */
.un_topAboutMedia {
  display: flex;
  align-items: center;
  gap: 30px 6%;

  .un_topAboutMedia_imgWrapper {
    flex: 0 1 35%;

    img {
      display: block;
      max-width: 100%;
      max-height: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    figcaption {
      padding-top: 10px;
    }
  }

  .un_topAboutMedia_body {
    flex: 1;
    background: white;
    padding: 30px;

    >*:last-child {
      margin-bottom: 0;
    }
  }

  .un_topAboutMedia_ttl {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 0;
  }

  .un_topAboutMedia_txt {
    *:first-child {
      margin-top: 0;
    }
  }

  &.un_topAboutMedia__rev {
    flex-direction: row-reverse;
  }

  @media not screen and (min-width:960px) {
    flex-direction: column;
    &.un_topAboutMedia__rev {
      flex-direction: column;
    }

    .un_topAboutMedia_imgWrapper {
      img {
        display: block;
        max-width: 100%;
      }

      figcaption {
        padding-top: 10px;
      }
    }

    .un_topAboutMedia_body {
      width: 100%;
      max-width: 100%;
      padding: 15px;
    }
  }

  @media not screen and (min-width:520px) {
    .un_topAboutMedia_imgWrapper {
      img {
        max-height: 375px;
      }
    }
  }
}

.un_topAboutList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 4.5%;

  > .un_topAbout_item {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: white;
    width: 100%;
    max-width: 100%;
    padding: 15px;

    >*:last-child {
      margin-bottom: 0;
    }

    ._txt {
      flex-grow: 1;
    }
  }

  @media screen and (min-width:960px) {
    gap: 30px 4.5%;
    align-items: stretch;
    flex-direction: row;

    > .un_topAbout_item {
      padding: 30px;
      width: calc((100% - 4.5%) / 2);
    }
  }
}

/* ====================================================
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%;
  }
}

.golf_course_theme {
  background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03)),url(../../img/top/bg_golfCource.webp) no-repeat center center / cover;
  background-attachment: fixed;
  background-color: var(--bg_color);
  color: var(--txt_color);
  height: 450px;

  @media not screen and (min-width: 960px) {
    background-attachment: scroll;
    height: 250px;
    background-size: unset;
    background-position: right;
  }
}
