@charset "UTF-8";

:root {
  --font-base:  "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --color-wh: #ffffff;
  --color-gray: #8D98A7;
}
body {
  font-family: var(--font-base);
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  background: rgba(141, 152, 167, 0.7);
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  pointer-events: none;
  backdrop-filter: blur(10px);
}
body.active {
  overflow: hidden;
}
body.active::before {
  opacity: 1;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main {
  padding: 60px 0 0;
}

.gn_header {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: fixed;
  z-index: 999;
  transition: all 0.3s ease; /* ふんわり切り替える用（お好みで） */
}
.gn_header_logo {
  width: 140px;
}
.gn_header_logo img {
  width: 100%;
}
.gn_header_container {
  display: none;
}

.gn_header.is-scrolled {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.gn_header.is-scrolled .gn_header_logo-before {
  display: none;
}
.gn_header.is-scrolled .gn_header_container {
  width: 100%;
  display: flex; /* フレックスボックスで表示 */
  justify-content: space-between; /* ロゴとボタンを左右に分ける */
  align-items: center;
  padding: 0 24px; /* 左右の余白はお好みで調整してください */
}
.gn_header_logo-after {
  width: 168px;
}

.gn_header_menu {
  width: 100%;
  height: 90dvh;
  display: block;
  padding: 60px 0 48px;
  background-color: var(--color-wh);
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  pointer-events: none;
}
.gn_header_menu_container {
  width: 100%;
  padding: 43px 24px 0;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_header_menu_list li:not(:last-child) {
  margin: 0 0 28px;
}
.gn_header_menu_link {
  display: block;
}
.gn_header_menu_link span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ADADAD;
  display: block;
  margin: 0 0 10px;
}
.gn_header_menu_link p {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.gn_header_menu_thumbnail  {
  display: none;
}

.gn_header_menu.active {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 920px) {
  .gn_header {
    height: 60px;
  }
  .gn_header_logo {
    width: 148px;
  }
  .gn_header.is-scrolled .gn_header_container {
    padding: 0 40px; /* 左右の余白はお好みで調整してください */
  }
  .gn_header_logo-after {
    width: 344px;
  }
  .gn_header_menu {
    padding: 60px 0;
    height: auto;
    overflow-y: visible;
  }
  .gn_header_menu_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 43px 40px 0;
  }
  .gn_header_menu_list {
    flex: 0 1 min(37.8571428571vw, 530px);
  }
  .gn_header_menu_link {
    width: fit-content;
  }
  .gn_header_menu_link p {
    font-size: min(1.42857142857vw, 20px);
    line-height: 1.15;
    position: relative;
  }
  .gn_header_menu_link p::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #2b2b2b;
    position: absolute;
    bottom: -4px;
    left: 0;
    scale: 0 1;
    transition: scale 0.3s ease-out;
    transform-origin: 100% 0;
  }
  .gn_header_menu_link:hover p::before {
    scale: 1 1;
    transform-origin: 0 0;
  }
  .gn_header_menu_thumbnail {
    display: block;
    width: 100%;
    height: min(29vw, 406px);
    flex: 0 1 min(43.5vw, 609px);
  }
}

.openbtn {
  width: 50px;
  height: 12px;
  position: relative;
  cursor: pointer;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background: #2b2b2b;
}
.openbtn span:nth-child(1) {
  top: 0;
}
.openbtn span:nth-child(2) {
  top: 100%;
}
.openbtn.active span {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.openbtn.active span:nth-child(1) {
  rotate: 15deg;
}
.openbtn.active span:nth-child(2) {
  rotate: -15deg;
}

.gn_hero {
  width: 100%;
  height: calc(100dvh - 60px);
  background-image: image-set(url(../img/gn/mv-sp.jpg) 1x, url(../img/gn/mv-sp@2x.jpg) 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gn_hero_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}
.gn_hero_logo {
  width: 180px;
}
.gn_hero_txtArea {
  width: 100%;
  color: var(--color-wh);
  max-width: 350px;
}
.gn_hero_ttl {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.gn_hero_txt {
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.07em;
  display: block;
  margin: 24px 0;
}
.gn_hero_point {
  display: flex;
  justify-content: space-between;
}
.gn_hero_point_cell {
  width: calc((100% - 10px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-wh);
  padding: 8px 0;
}
.gn_hero_point_cell p {
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  color: var(--color-wh);
}
@media (min-width: 920px) {
  .gn_hero {
    width: 100%;
    height: calc(100vh - 60px);
    background-image: image-set(url(../img/gn/mv.jpg) 1x, url(../img/gn/mv@2x.jpg) 2x);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .gn_hero_inner {
    flex-direction: row-reverse;
    padding: 40px;
  }
  .gn_hero_logo {
    width: 240px;
  }
  .gn_hero_txtArea {
    max-width: 580px;
  }
  .gn_hero_ttl {
    font-size: 36px;
  }
  .gn_hero_txt {
    margin: 36px 0 40px;
  }
  .gn_hero_point {
    justify-content: flex-start;
    gap: 7px;
  }
  .gn_hero_point_cell {
    width: 162px;
    padding: 10px 0;
  }
  .gn_hero_point_cell p {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .gn_hero_inner {
    padding: 0 56px 0 82px;
  }
  .gn_hero_logo {
    width: 270px;
  }
}

.gn_concept {
  width: 100%;
  height: 100vh;
  position: relative;
}
.gn_concept_visual {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gn_concept_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
  color: var(--color-wh);
  max-width: 1400px;
  margin: 0 auto;
}
.gn_concept_mark {
  width: 639px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0.15;
  pointer-events: none;
}
.gn_concept_ttl {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  position: relative;
}
.gn_concept_txtArea {
  position: relative;
}
.gn_concept_catch {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.gn_concept_txtArea p {
  line-height: 1.6;
  text-align: justify;
  display: block;
  margin: 12px 0 40px;
}
.stream_line {
  background-image: linear-gradient(to right, var(--color-wh), var(--color-wh));
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.25;
  padding-bottom: 4px;
  width: fit-content;
}
.gn_concept_txtArea .stream_line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 12px;
}
.gn_concept_txtArea .stream_line .txt {
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0;
}
.gn_concept_txtArea .stream_line .icon-arrow {
  rotate: 90deg;
}
.gn_concept_txtArea .stream_line .icon-arrow::before,
.gn_concept_txtArea .stream_line .icon-arrow::after {
  width: 16px;
  height: 16px;
  background: var(--color-wh);
}
.gn_concept_mark,
.gn_concept_ttl,
.gn_concept_txtArea {
  visibility: hidden;
}
@media (min-width: 920px) {
  .gn_concept_inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
  }
  .gn_concept_mark {
    width: 61.42857142857vw;
  }
  .gn_concept_ttl {
    flex: 0 1 420px;
    font-size: 40px;
  }
  .gn_concept_txtArea {
    flex: 0 1 420px;
  }
  .gn_concept_catch {
    font-size: 18px;
  }
  .gn_concept_txtArea p {
    margin: 24px 0 60px;
  }

  .stream_line:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }

  .gn_concept_txtArea .stream_line {
    width: fit-content;
    gap: 16px;
    padding: 0 0 16px;
  }
  .gn_concept_txtArea .stream_line .txt {
    flex: 0 1 160px;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .gn_concept_inner {
    padding: 0 138px;
  }
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}

.section_ttl {
  text-align: center;
}
.section_ttl_en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  display: block;
  margin: 0 auto 24px;
}
.section_ttl_jp {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.section_ttl_jp-pc {
  display: none;
}
@media (min-width: 600px) {
  .section_ttl_jp-sp {
    display: none;
  }
  .section_ttl_jp-pc {
    display: block;
  }
}
@media (min-width: 920px) {
  .section_ttl_en {
    font-size: 18px;
    margin: 0 auto 32px;
  }
  .section_ttl_jp {
    font-size: 40px;
    line-height: 1.15;
  }
}

.gn_strengths {
  padding: 100px 0;
}
.gn_strengths_container {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_strengths_head {
  margin: 0 0 40px;
}
.gn_strengths_txt {
  margin: 0 0 60px;
}
.gn_strengths_txt p {
  letter-spacing: 0.04em;
  text-align: center;
}
.gn_strengths_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gn_strengths_item:not(:last-child) {
  margin: 0 0 40px;
}
.gn_strengths_item_img {
  width: 100%;
}
.gn_strengths_item_head {
  margin: 0 0 12px;
}
.gn_strengths_item_num {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.gn_strengths_item_ttl {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  display: block;
  margin: 4px 0 0;
}
.gn_strengths_item_txtArea p {
  text-align: justify;
}
@media (min-width: 920px) {
  .gn_strengths {
    padding: 200px 0;
  }
  .gn_strengths_container {
    padding: 0 56px;
  }
  .gn_strengths_head {
    margin: 0 0 60px;
  }
  .gn_strengths_txt {
    margin: 0 0 80px;
  }
  .gn_strengths_item {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .gn_strengths_item:not(:last-child) {
    margin: 0 0 80px;
  }
  .gn_strengths_item_img {
    flex: 0 1 min(45.4285714286vw, 636px);
  }
  .gn_strengths_item_txtArea {
    flex: 0 1 460px;
  }
  .gn_strengths_item_head {
    width: fit-content;
    padding: 0 0 4px 60px;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--color-gray);
  }
  .gn_strengths_item_num {
    font-size: 18px;
  }
  .gn_strengths_item_ttl {
    font-size: 18px;
  }
  .gn_strengths_item_txtArea p {
    padding-left: 60px;
  }

  .gn_strengths_item:nth-child(2) {
    flex-direction: row-reverse;
  }
  .gn_strengths_item:nth-child(2) .gn_strengths_item_head {
    width: 100%;
    padding: 0 60px 4px 0;
  }
  .gn_strengths_item:nth-child(2) .gn_strengths_item_txtArea p {
    width: 410px;
    padding-left: 0;
  }
}
.gn_method {
  padding: 100px 0;
  background-color: var(--color-gray);
  overflow: hidden;
  color: var(--color-wh);
}
.gn_method_container {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_method_head {
  margin: 0 0 40px;
}
.gn_method_txt {
  text-align: center;
  margin: 0 0 40px;
}
.gn_method_catch {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin: 0 0 12px;
}
.gn_method_item {
  width: 100%;
}
.gn_method_item_ttl {
  width: 220px;
  margin: 0 0 16px;
}
.gn_method_item_ttl img {
  width: 100%;
  height: 100%;
}
.gn_method_item_txtArea p {
  text-align: justify;
}
.gn_method_item_house {
  width: 100%;
  margin: 0 0 24px;
}
.gn_method_item-image {
  display: block;
  margin: 12px 0 40px;
}
.gn_method_item_shinkabe {
  width: 100%;
}
.gn_method_item-shinkabe .gn_method_item_ttl {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-wh);
  padding: 10px;
}
.gn_method_item-shinkabe .gn_method_item_ttl span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.gn_method_item_award {
  width: calc(100% - 30px);
  margin: 16px auto 0;
}
@media (min-width: 920px) {
  .gn_method {
    padding: 200px 0 156px;
  }
  .gn_method_container {
    padding: 0;
  }
  .gn_method_head {
    margin: 0 0 60px;
  }
  .gn_method_txt {
    margin: 0 0 78px;
  }
  .gn_method_catch {
    font-size: 20px;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
  }
  .gn_method_inner {
    padding: 0 120px;
  }
  .gn_method_item-method {
    height: min(42vw, 588px);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    position: relative;
  }
  .gn_method_item_txtArea {
    width: min(28vw, 392px);
  }
  .gn_method_item_house {
    width: min(64.2857142857vw, 900px);
    position: absolute;
    top: 50%;
    left: min(30.8571428571vw, 432px);
    translate: 0 -50%;
  }
  .gn_method_item-image {
    margin: 12px 0 80px;
  }
  .gn_method_item-shinkabe {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .gn_method_item_shinkabe {
    flex: 0 1 min(39.6428571429vw, 555px);
  }
  .gn_method_item-shinkabe .gn_method_item_txtArea {
    width: 310px;
  }
  .gn_method_item-shinkabe .gn_method_item_ttl {
    width: fit-content;
    padding: 11px 12px;
    margin: 0 auto 24px 0;
  }
  .gn_method_item-shinkabe .gn_method_item_ttl span {
    font-size: 18px;
  }
  .gn_method_item_award {
    /*width: calc(100% - min(2.14285714286vw, 30px));*/
    width: calc(100% - 30px);
    margin: 24px auto 0 0;
  }
}
@media (min-width: 1200px) {
  .gn_method_inner {
    padding: 0 219px;
  }
}
.gn_res {
  padding: 100px 0;
}
.gn_res_container {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_res_head {
  margin: 0 0 40px;
}
.gn_res_txt {
  text-align: center;
  margin: 0 0 40px;
}
.gn_res_catch {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin: 0 0 12px;
}
.gn_res_txt p {
  letter-spacing: -0.02em;
}
.gn_res_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gn_res_img {
  width: 127px;
  margin: 0 auto;
}
.gn_res_content_head {
  margin: 0 0 24px;
}
.gn_res_content_ttl {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--color-gray);
}
.gn_res_content_ttl rt {
  font-size: 8px;
}
.gn_res_content_item:not(:last-child) {
  margin: 0 0 40px;
}
.gn_res_content_catch {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  display: block;
  margin: 0 0 12px;
}
.gn_res_content_item p {
  text-align: justify;
}
.gn_res_content_item p span {
  font-size: 8px;
  position: relative;
  top: -4px;
}
.gn_res_content_taishin {
  margin: 40px 0 0;
}
.gn_res_content_item small {
  font-size: 10px;
  line-height: 1.5;
  text-align: justify;
  display: block;
  margin: 12px 0 0;
}
.gn_res_content_taishin small {
  margin: 20px 0 0;
}
.gn_res_content_techno {
  display: block;
  margin: 24px 0 0;
}
.gn_res_content_proofWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.gn_res_content_proof {
  width: 180px;
  display: block;
  margin: 0 auto 24px;
}
.gn_res_content_proof small {
  margin: 8px 0 0;
}
@media (min-width: 920px) {
  .gn_res {
    padding: 200px 0;
  }
  .gn_res_container {
    padding: 0 120px;
  }
  .gn_res_head {
    margin: 0 0 60px;
  }
  .gn_res_head .section_ttl_en {
    margin: 0 0 40px;
  }
  .gn_res_txt {
    margin: 0 0 80px;
  }
  .gn_res_catch {
    font-size: 20px;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
  }
  .gn_res_txt p {
    letter-spacing: 0.04em;
  }
  .gn_res_row {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .gn_res_side {
    flex: 0 1 min(16.92857142857vw, 237px);
  }
  .gn_res_sticky {
    position: sticky;
    top: 120px;
  }
  .gn_res_img {
    width: 100%;
    margin: 0;
  }
  .gn_res_content {
    flex: 0 1 min(45.42857142857vw, 636px);
  }
  .gn_res_content_ttl {
    font-size: 24px;
  }
  .gn_res_content_catch {
    font-size: 18px;
    margin: 0 0 24px;
  }
  .gn_res_content_techno {
    margin: 40px 0 0;
  }
  .gn_res_content_proofWrap {
    flex-direction: row-reverse;
    gap: 40px;
  }
  .gn_res_content_proofWrap div {
    flex: 1 1 0;
  }
  .gn_res_content_proof {
    width: 100%;
    flex: 0 1 180px !important;
  }
}
@media (min-width: 1200px) {
  .gn_res_container {
    padding: 0 219px;
  }
}
.gn_test {
  width: 100%;
  height: 1000px;
  position: relative;
}
.gn_test_visual {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gn_test_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  max-width: 1400px;
  position: relative;
  color: var(--color-wh);
  margin: 0 auto;
}
.gn_test_head {
  margin: 0 0 40px;
}
.gn_test_txt {
  text-align: center;
  margin: 0 0 40px;
}
.gn_test_txt p {
  letter-spacing: -0.02em;
}
.gn_test_catch {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  display: block;
  margin: 0 0 12px;
}
.gn_test_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 350px;
  margin: 0 auto;
}
.gn_test_video {
  width: 100%;
  position: relative;
}
.gn_test_video video {
  width: 100%;
  height: auto;          /* 追記: 高さを自動計算させる */
  aspect-ratio: 16 / 9;  /* 追記: 動画の縦横比を指定（※動画に合わせて変更してください） */
  object-fit: cover;     /* 追記: 枠内に綺麗に収める */
  display: block;
}
.gn_playBtn {
  display: none;
  align-items: center;
  gap: 8px;
  background-color: #28282866;
  border: none;
  padding: 4px 12px 4px 4px;
  border-radius: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: opacity 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.gn_playBtn i {
  width: 32px;
  height: 32px;
  flex: 0 1 32px;
  border-radius: 9999px;
  background-color: var(--color-wh);
  position: relative;
}
.gn_playBtn i::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left: 12px solid #000;
  border-right-width: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -35% -50%;
}
.gn_playBtn span {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-wh);
}
.gn_playBtn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.gn_test_count {
  display: flex;
  align-items: baseline;
}
.gn_test_count_num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.gn_test_count_txt {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.gn_test_counter_subs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  border-top: 1px solid var(--color-wh);
  margin: 24px 0 20px;
}
.gn_test_count-sub {
  display: block;
  width: 72px;
}
.gn_test_count_value {
  display: flex;
  align-items: baseline;
}
.gn_test_count_label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.04em;
  display: block;
  margin: 4px 0 0;
}
.gn_test_count-main {
  justify-content: center;
  gap: 4px;
}
.gn_test_count-main .gn_test_count_num {
  font-weight: 400;
  font-size: 110px;
  letter-spacing: -0.05em;
}
.gn_test_count-main .gn_test_count_txt {
  font-size: 40px;
}
.gn_test_counter p {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .gn_test {
    height: 75.07142857142vw;
  }
  .gn_test_inner {
    padding: 0 120px;
  }
  .gn_test_head {
    margin: 0 0 60px;
  }
  .gn_test_head .section_ttl_en {
    margin: 0 0 40px;
  }
  .gn_test_txt {
    margin: 0 0 69px;
  }
  .gn_test_catch {
    font-size: 18px;
    margin: 0 0 16px;
  }
  .gn_test_content {
    flex-direction: row;
    max-width: 100%;
    margin: 0;
  }
  .gn_test_video {
    flex: 0 1 511px;
  }
  .gn_test_counter {
    flex: 1 1 0;
  }
  .gn_test_counter_subs {
    margin: 32px 0 24px;
  }
  .gn_test_count-sub {
    width: 80px;
  }
  .gn_test_count_label {
    font-size: 12px;
  }
  .gn_test_count-main {
    justify-content: flex-start;
  }
  .gn_test_count-main .gn_test_count_num {
    font-size: 130px;
  }
  .gn_test_count-main .gn_test_count_txt {
    font-size: 48px;
  }

  .gn_playBtn {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .gn_test_inner {
    padding: 0 219px;
  }
  .gn_test_content {
    gap: 60px;
  }
}
.gn_loop {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-wh);
  padding: 32px 0;
}
.gn_loop .infiniteslide {
  display: flex;
  align-items: center;
  gap: 50px;
}
.gn_loop .infiniteslide div {
  width: auto;
  height: 56px;
}
.gn_loop .infiniteslide div img {
  width: auto;
  height: 56px;
}
@media (min-width: 920px) {
  .gn_loop {
    padding: 60px 0;
  }
}
.gn_sv {
  width: 100%;
  height: 680px;
  background-image: image-set(url(../img/gn/sv-sp.jpg) 1x, url(../img/gn/sv-sp@2x.jpg) 2x);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.gn_sv_txtArea {
  width: 100%;
  color: var(--color-wh);
  padding: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.gn_sv_ttl {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.gn_sv_catch {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: block;
  margin: 24px 0 12px;
}
.gn_sv_txt {
  text-align: justify;
}
@media (min-width: 600px) {
  .gn_sv {
    background-image: image-set(url(../img/gn/sv.jpg) 1x, url(../img/gn/sv@2x.jpg) 2x);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 920px) {
  .gn_sv {
    height: 51.42857142857vw;
  }
  .gn_sv_txtArea {
    padding: 60px;
  }
  .gn_sv_ttl {
    font-size: 32px;
  }
  .gn_sv_catch {
    font-size: 18px;
    margin: 40px 0 16px;
  }
  .gn_sv_txt {
    width: 480px;
  }
}
.gn_design {
  padding: 100px 0;
  background-color: var(--color-gray);
  overflow: hidden;
  color: var(--color-wh);
}
.gn_design_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_design_head {
  padding: 0 20px;
  margin: 0 0 40px;
}
.gn_design_head .section_ttl_jp {
  font-size: 22px;
}
.gn_design_txt {
  text-align: center;
  padding: 0 20px;
  margin: 0 0 40px;
}
.gn_design_catch {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin: 0 0 12px;
}
.gn_design_thumb {
  margin: 0 0 40px;
}
.gn_design_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  padding: 0 20px;
}
.gn_design_item {
  width: calc((100% - 16px) / 2);
}
.gn_design_item_head {
  margin: 0 0 8px;
}
.gn_design_item_ttl {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  height: 48px;
}
.gn_design_item_head p {
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
  display: block;
  margin: 0 0 2px;
}
.gn_design_item_head .small {
  font-size: 7px;
}
.gn_design_item_img {
  width: 100%;
  margin: 0 0 8px;
}
.gn_design_item_txt {
  font-size: 12px;
  line-height: 1.6;
  text-align: justify;
}

.gn_design_item:nth-child(2) {
  transition-delay: 0.25s;
}
.gn_design_item:nth-child(4) {
  transition-delay: 0.25s;
}
.gn_design_item:nth-child(6) {
  transition-delay: 0.25s;
}
@media (min-width: 600px) {
  .gn_design_item_head .small {
    font-size: 10px;
  }
  .gn_design_item_ttl {
    height: auto;
  }
  .gn_design_item_ttl .br_sp {
    display: none;
  }
}
@media (min-width: 920px) {
  .gn_design {
    padding: 200px 0;
  }
  .gn_design_container {
    padding: 0 136px;
  }
  .gn_design_head {
    padding: 0;
    margin: 0 0 60px;
  }
  .gn_design_head .section_ttl_en {
    margin: 0 0 40px;
  }
  .gn_design_head .section_ttl_jp {
    font-size: 40px;
  }
  .gn_design_txt {
    padding: 0;
    margin: 0 0 80px;
  }
  .gn_design_catch {
    font-size: 20px;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
  }
  .gn_design_thumb {
    margin: 0 0 60px;
  }
  .gn_design_list {
    padding: 0;
  }
  .gn_design_item_head {
    margin: 0 0 16px;
  }
  .gn_design_item_ttl {
    font-size: 18px;
    letter-spacing: 0.04em;
  }
  .gn_design_item_head p {
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .gn_design_item_head .small {
    font-size: 13px;
  }
  .gn_design_item_img {
    margin: 0 0 16px;
  }
  .gn_design_item_txt {
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .gn_design_item:nth-child(3) {
    transition-delay: 0.5s;
  }
  .gn_design_item:nth-child(4) {
    transition-delay: 0s;
  }
  .gn_design_item:nth-child(5) {
    transition-delay: 0.25s;
  }
  .gn_design_item:nth-child(6) {
    transition-delay: 0.5s;
  }
}
@media (min-width: 1200px) {
  .gn_design_list {
    gap: 60px 25px;
  }
  .gn_design_item {
    width: calc((100% - 50px) / 3);
  }
}
.gn_gene {
  padding: 100px 0;
  background-color: #DFE2E6;
}
.gn_gene_container {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_gene_head {
  margin: 0 0 40px;
}
.gn_gene_txt {
  text-align: center;
  margin: 0 0 40px;
}
.gn_gene_catch {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin: 0 0 12px;
}
.gn_gene_content {
  background-color: #F2F2F2;
  padding: 40px 30px;
}
.gn_gene_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.gn_gene_item_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gn_gene_item_person {
  width: 140px;
  height: 140px;
  margin: 0 0 16px;
}
.gn_gene_item_moment {
  width: 100%;
  padding: 12px 0;
  background-color: #8D98A7;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-wh);
  margin: 0 0 24px;
}
.gn_gene_item_season {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #8D98A7;
}
.gn_gene_item_season span {
  width: fit-content;
  padding: 8px;
  border: 1px solid #8D98A7;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.gn_gene_item_season p {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.gn_gene_item_plan_image {
  width: calc(100% - 36px);
  margin: 0 auto 20px;
  display: block;
}
.gn_gene_item_plan_catch {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin: 0 0 16px;
}
.gn_gene_item_plan_txtArea p {
  text-align: justify;
  letter-spacing: 0.04em;
}
.gn_gene_tri {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.gn_gene_tri img {
  width: 40px;
}
.gn_gene_structure {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 40px 30px;
}
.gn_gene_structure_ttl {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  display: block;
  margin: 0 0 20px;
}
.gn_gene_structure_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gn_gene_structure_txtArea p {
  text-align: justify;
  margin: 0 0 16px;
}
.gn_gene_structure_exp {
  width: 100%;
  display: block;
}
@media (min-width: 920px) {
  .gn_gene {
    padding: 200px 0;
  }
  .gn_gene_container {
    padding: 0 120px;
  }
  .gn_gene_head {
    margin: 0 0 60px;
  }
  .gn_gene_head .section_ttl_en {
    margin: 0 0 40px;
  }
  .gn_gene_txt {
    margin: 0 0 80px;
  }
  .gn_gene_catch {
    font-size: 20px;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
  }
  .gn_gene_item_plan_catch {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .gn_gene_item_plan_image {
    width: calc(100% - 22px);
    margin: 0 auto 24px 0;
  }
  .gn_gene_structure {
    padding: 40px;
  }
  .gn_gene_structure_ttl {
    font-size: 24px;
  }
  .gn_gene_structure_row {
    flex-direction: row-reverse;
    gap: 25px;
  }
  .gn_gene_structure_img {
    flex: 0 1 min(31.4285714286vw, 440px);
  }
  .gn_gene_structure_txtArea {
    flex: 1 1 0;
  }
  .gn_gene_structure_txtArea p {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1200px) {
  .gn_gene_container {
    padding: 0 137px;
  }
  .gn_gene_content {
    padding: 80px 60px;
  }
  .gn_gene_item {
    flex-direction: row;
    gap: 40px;
  }
  .gn_gene_item_info {
    flex: 0 1 325px;
  }
  .gn_gene_item_plan {
    flex: 1 1 0;
  }
  .gn_gene_tri {
    justify-content: flex-start;
    padding: 0 143px;
  }
}
.gn_insp {
  padding: 100px 0;
}
.gn_insp_container {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_insp_head {
  margin: 0 0 40px;
}
.gn_insp_txt {
  text-align: center;
  margin: 0 0 40px;
}
.gn_insp_catch {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin: 0 0 12px;
}
.gn_insp_content {
  margin: 0 0 60px;
}
.gn_insp_item_img {
  width: 100%;
  margin: 0 0 40px;
}
.gn_insp_item_ttl {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--color-gray);
  display: block;
  margin: 0 0 24px;
}
.gn_insp_item_catch {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.gn_insp_item_txtArea p {
  text-align: justify;
}
.gn_insp_item_graph {
  margin: 0 0 40px;
}
.gn_insp_item_txtArea .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.gn_insp_item_wood {
  width: 150px;
}
.gn_insp_item_wood small {
  font-size: 12px;
  line-height: 1;
  text-align: justify;
  display: block;
  margin: 4px 0 0;
}
.gn_insp_item_video {
  width: 100%;
  height: fit-content;
  position: relative;
  max-width: 350px;
  margin: 40px auto;
}
.gn_insp_item_video video {
  width: 100%;
  height: auto;          /* 追記: 高さを自動計算させる */
  aspect-ratio: 16 / 9;  /* 追記: 動画の縦横比を指定（※動画に合わせて変更してください） */
  object-fit: cover;     /* 追記: 枠内に綺麗に収める */
  display: block;
}

.gn_insp_item-first {
  margin: 0 0 60px;
}
.gn_insp_item-sec {
  margin: 0 0 60px;
}
.gn_insp_proof_table {
  width: 100%;
  overflow-x: scroll;
  padding: 0 0 8px;
  margin: 0 0 40px;
}
.gn_insp_proof_table div {
  width: 659px;
}
.gn_insp_proof_panels {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 40px;
}
.gn_insp_proof_panels_item p {
  line-height: 1;
  text-align: justify;
  display: block;
  margin: 4px 0 0;
}
.gn_insp_proof_award {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid #CCCCCC;
}
.gn_insp_proof_award_mark {
  width: 105px;
}
.gn_insp_proof_award_catch {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin: 0 0 12px;
}
.gn_insp_proof_award_txtArea p {
  text-align: justify;
}
@media (min-width: 600px) {
  .gn_insp_proof_panels {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .gn_insp_proof_panels_item {
    width: calc((100% - 20px) / 2);
  }
  .gn_insp_proof_award {
    flex-direction: row;
  }
  .gn_insp_proof_award_mark {
    width: 105px;
    flex: 0 1 105px;
  }
  .gn_insp_proof_award_txtArea {
    flex: 1 1 0;
  }
}
@media (min-width: 920px) {
  .gn_insp {
    padding: 200px 0;
  }
  .gn_insp_container {
    padding: 0 120px;
  }
  .gn_insp_head {
    margin: 0 0 60px;
  }
  .gn_insp_head .section_ttl_en {
    margin: 0 0 40px;
  }
  .gn_insp_txt {
    margin: 0 0 80px;
  }
  .gn_insp_catch {
    font-size: 20px;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
  }
  .gn_insp_content {
    margin: 0 0 40px;
  }
  .gn_insp_item {
    width: 100%;
    display: flex;
    gap: 60px;
    margin: 0 0 40px;
  }
  .gn_insp_item_img {
    flex: 0 1 min(31.57142857142vw, 442px);
  }
  .gn_insp_item_txtArea {
    flex: 1 1 0;
  }
  .gn_insp_item_ttl {
    font-size: 24px;
    margin: 0 0 40px;
  }
  .gn_insp_item_catch {
    font-size: 18px;
    margin: 0 0 24px;
  }
  .gn_insp_item_graph {
    flex: 0 1 min(32.85714285714vw, 460px);
    margin: 0;
  }
  .gn_insp_item_graph img {
    max-width: 400px;
    height: auto;
  }
  .gn_insp_item_video {
    flex: 0 1 min(31.57142857142vw, 442px);
    max-width: 100%;
    margin: 0;
  }

  .gn_insp_item-first {
    flex-direction: row-reverse;
    margin: 0 0 40px;
  }
  .gn_insp_item-sec {
    margin: 0 0 60px;
  }
  .gn_insp_item_txtArea-wood {
    flex: 0 1 min(31.57142857142vw, 442px);
    position: relative;
    margin: -40px 0 0;
  }

  .gn_insp_proof_table {
    width: 100%;
    overflow-x: auto;
  }
  .gn_insp_proof_table div {
    width: 100%;
  }
  .gn_insp_proof_panels {
    gap: 25px;
    margin: 0 0 70px;
  }
  .gn_insp_proof_panels_item {
    width: calc((100% - 50px) / 3);
  }
  .gn_insp_proof_award {
    gap: 40px;
    padding: 20px 40px;
  }
  .gn_insp_proof_award_catch {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .gn_insp_container {
    padding: 0 219px;
  }
  .gn_insp_item_txtArea .row {
    flex-direction: row;
    align-items: flex-start;
  }
  .gn_insp_item_wood {
    width: 100%;
    flex: 0 1 min(10.71428571428vw, 150px);
  }
  .gn_insp_item_txtArea .row p {
    flex: 1 1 0;
  }
  /*.gn_insp_item_graph {*/
  /*  padding: 0 min(4.28571428571vw, 60px) 0 0;*/
  /*}*/
}

.gn_showroom {
  padding: 200px 0 0;
  margin: -200px 0 0;
}
.gn_showroom_gallery .infiniteslide div {
  width: 480px;
}
.gn_showroom_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px 105px;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_showroom_head .section_ttl {
  text-align: left;
}
.gn_showroom_catch {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 16px;
}
.gn_showroom_txtArea p {
  text-align: justify;
}
@media (min-width: 920px) {
  .gn_showroom_gallery {
    margin: 0 0 80px;
  }
  .gn_showroom_gallery .infiniteslide div {
    width: 68.57142857142vw;
  }
  .gn_showroom_container {
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 20px 200px;
  }
  .gn_showroom_head {
    width: fit-content;
  }
  .gn_showroom_head .section_ttl_en {
    margin: 0 0 40px;
  }
  .gn_showroom_txtArea {
    flex: 0 1 480px;
  }
  .gn_showroom_catch {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .gn_showroom_txtArea p {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1200px) {
  .gn_showroom_container {
    padding: 0 137px 200px;
  }
}
.gn_plan {
  width: 100%;
  background-image: image-set(url(../img/gn/plan_visual.jpg) 1x, url(../img/gn/plan_visual@2x.jpg) 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 0 26px;
}
.gn_plan_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  position: relative;
  color: var(--color-wh);
}
.gn_plan_txtArea {
  display: contents;
}
.gn_plan_head {
  margin: 0 0 24px;
  order: 1;
}
.gn_plan_head .section_ttl {
  text-align: left;
}
.gn_plan_head .section_ttl_en {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin: 0;
}
.gn_plan_head p {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  display: block;
  margin: 0 0 16px;
}
.gn_plan_txt {
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  margin: 0 0 55px;
  order: 2;
}
.gn_plan_cs {
  width: fit-content;
  background-color: transparent;
  border: 1px solid var(--color-wh);
  padding: 16px 24px;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 auto;
  order: 3;
}
@media (min-width: 920px) {
  .gn_plan {
    padding: 17.92857142857vw 0;
  }
  .gn_plan_inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
  }
  .gn_plan_txtArea {
    width: fit-content;
    display: block;
  }
  .gn_plan_head {
    margin: 0 0 32px;
    order: 0;
  }
  .gn_plan_head .section_ttl_en {
    font-size: 40px;
  }
  .gn_plan_head p {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .gn_plan_txt {
    font-size: 18px;
    text-align: right;
    margin: 0;
    order: 0;
  }
  .gn_plan_cs {
    margin: 0;
    order: 0;
  }
}
@media (min-width: 1200px) {
  .gn_plan_inner {
    padding: 0 137px;
  }
}
.gn_contact {
  padding: 100px 0 16px;
  background: linear-gradient(180deg, #C9CDD4 0%, #97A3B7 100%);
}
.gn_contact_container {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gn_contact_head {
  margin: 0 0 32px;
}
.gn_contact_head .section_ttl_en {
  font-size: 32px;
  line-height: 1.25;
  margin: 0;
}
.gn_contact_txt {
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}
.gn_contact_catch {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: block;
  margin: 0 0 16px;
}
.gn_contact_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0 0 24px;
}
.gn_contact_bnr {
  width: 100%;
  height: 146px;
  background: #2b2b2b;
  color: var(--color-wh);
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  display: block;
}
.gn_contact_bnr::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #C9CDD4 0%, #97A3B7 100%);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.gn_contact_bnr_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 16px 16px 20px;
  position: relative;
}
.gn_contact_bnr_txtArea {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
}
.gn_contact_bnr_catch {
  font-weight: 700;
  font-size: 16px !important;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: justify;
}
.gn_contact_bnr_txtArea p {
  font-size: 12px;
  text-align: justify;
}
.gn_contact_bnr .icon-arrow::before,
.gn_contact_bnr .icon-arrow::after {
  background-color: var(--color-wh);
}
.gn_contact_loop {
  width: 100%;
  overflow: hidden;
  opacity: 0.2;
}
.gn_contact_loop .infiniteslide {
  display: flex;
  align-items: center;
  gap: 50px;
}
.gn_contact_loop .infiniteslide div {
  width: auto;
  height: 56px;
}
.gn_contact_loop .infiniteslide div img {
  width: auto;
  height: 56px;
}
@media (min-width: 920px) {
  .gn_contact {
    padding: 120px 0 24px;
  }
  .gn_contact_container {
    padding: 0 120px;
  }
  .gn_contact_head {
    margin: 0 0 48px;
  }
  .gn_contact_head .section_ttl_en {
    font-size: 40px;
  }
  .gn_contact_catch {
    font-size: 20px;
    margin: 0 0 24px;
  }
  .gn_contact_row {
    flex-direction: row;
    gap: 40px;
  }
  .gn_contact_bnr {
    height: 200px;
    max-width: 100%;
  }
  .gn_contact_bnr::before {
    opacity: 0;
  }
  .gn_contact_bnr_inner {
    align-items: flex-end;
    padding: 32px 24px 24px;
  }
  .gn_contact_bnr_catch {
    font-size: 20px !important;
  }
  .gn_contact_bnr:hover {
    color: #2b2b2b;
  }
  .gn_contact_bnr:hover::before {
    opacity: 1;
  }
  .gn_contact_bnr:hover .icon-arrow::before,
  .gn_contact_bnr:hover .icon-arrow::after {
    background-color: #2b2b2b;
  }
  .gn_contact_loop .infiniteslide div {
    height: 120px;
  }
  .gn_contact_loop .infiniteslide div img {
    height: 120px;
  }
}
@media (min-width: 1200px) {
  .gn_contact_container {
    padding: 0 200px;
  }
  .gn_contact_bnr_txtArea p {
    font-size: 15px;
  }
}

.gn_area {
  padding: 60px 0 16px;
  background: linear-gradient(180deg, #5C5C5C 0%, #282828 100%);
}
.gn_area_container {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  color: var(--color-wh);
}
.gn_area_head {
  text-align: center;
  margin: 0 0 40px;
}
.gn_area_catch {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: block;
  margin: 16px 0 0;
}
.gn_area_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0 0 24px;
}
.gn_area_bnr {
  width: 100%;
  height: 146px;
  background: var(--color-wh);
  color: #2b2b2b;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  display: block;
}
.gn_area_bnr::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #C9CDD4 0%, #97A3B7 100%);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.gn_area_bnr_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 16px 16px 20px;
  position: relative;
}
.gn_area_bnr_txtArea {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
}
.gn_area_bnr_catch {
  font-weight: 700;
  font-size: 16px !important;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: justify;
}
.gn_area_bnr_txtArea p {
  font-size: 12px;
  text-align: justify;
}
.gn_area_bnr .icon-arrow::before,
.gn_area_bnr .icon-arrow::after {
  background-color: #2b2b2b;
}
.gn_area_loop {
  width: 100%;
  overflow: hidden;
  opacity: 0.2;
  margin: 20px 0 0;
}
.gn_area_loop .infiniteslide {
  display: flex;
  align-items: center;
  gap: 50px;
}
.gn_area_loop .infiniteslide div {
  width: auto;
  height: 56px;
}
.gn_area_loop .infiniteslide div img {
  width: auto;
  height: 56px;
}
@media (min-width: 920px) {
  .gn_area {
    padding: 120px 0 24px;
  }
  .gn_area_head {
    margin: 0 0 68px;
  }
  .gn_area_catch {
    font-size: 20px;
    margin: 24px 0 0;
  }
  .gn_area_bnr {
    width: 480px;
    height: 200px;
    max-width: 100%;
  }
  .gn_area_bnr::before {
    opacity: 0;
  }
  .gn_area_bnr_inner {
    align-items: flex-end;
    padding: 32px 24px 24px;
  }
  .gn_area_bnr_catch {
    font-size: 20px !important;
  }
  .gn_area_bnr:hover {
    color: #2b2b2b;
  }
  .gn_area_bnr:hover::before {
    opacity: 1;
  }
  .gn_area_loop {
    margin: 25px 0 0;
  }
  .gn_area_loop .infiniteslide div {
    height: 120px;
  }
  .gn_area_loop .infiniteslide div img {
    height: 120px;
  }
}

.animation {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  line-height: 1.2;
  position: relative !important;
}
.text-split {
  overflow: hidden;
}
.text-split span {
  display: inline-block;
  min-width: 0.15em;
}
.animation--1 .text-split span {
  transform: translateY(150%);
}
.animation--1 .is-active .text-split span {
  transform: translateY(0);
  transition: transform cubic-bezier(0.7, 0.2, 0.1, 1) 0.8s;
}
.animation--1 .is-active .text-split span:nth-child(1) {
  transition-delay: 0s;
}
.animation--1 .is-active .text-split span:nth-child(2) {
  transition-delay: 0.04s;
}
.animation--1 .is-active .text-split span:nth-child(3) {
  transition-delay: 0.08s;
}
.animation--1 .is-active .text-split span:nth-child(4) {
  transition-delay: 0.12s;
}
.animation--1 .is-active .text-split span:nth-child(5) {
  transition-delay: 0.16s;
}
.animation--1 .is-active .text-split span:nth-child(6) {
  transition-delay: 0.2s;
}
.animation--1 .is-active .text-split span:nth-child(7) {
  transition-delay: 0.24s;
}
.animation--1 .is-active .text-split span:nth-child(8) {
  transition-delay: 0.28s;
}
.animation--1 .is-active .text-split span:nth-child(9) {
  transition-delay: 0.32s;
}
.animation--1 .is-active .text-split span:nth-child(10) {
  transition-delay: 0.36s;
}
.animation--1 .is-active .text-split span:nth-child(11) {
  transition-delay: 0.4s;
}
.animation--1 .is-active .text-split span:nth-child(12) {
  transition-delay: 0.44s;
}
.animation--1 .is-active .text-split span:nth-child(13) {
  transition-delay: 0.48s;
}
.animation--1 .is-active .text-split span:nth-child(14) {
  transition-delay: 0.52s;
}
.animation--1 .is-active .text-split span:nth-child(15) {
  transition-delay: 0.56s;
}
.animation--1 .is-active .text-split span:nth-child(16) {
  transition-delay: 0.6s;
}
.animation--1 .is-active .text-split span:nth-child(17) {
  transition-delay: 0.64s;
}
.animation--1 .is-active .text-split span:nth-child(18) {
  transition-delay: 0.68s;
}
.animation--1 .is-active .text-split span:nth-child(19) {
  transition-delay: 0.72s;
}
.animation--1 .is-active .text-split span:nth-child(20) {
  transition-delay: 0.76s;
}
.animation--1 .is-active .text-split span:nth-child(21) {
  transition-delay: 0.8s;
}
.animation--1 .is-active .text-split span:nth-child(22) {
  transition-delay: 0.84s;
}
.animation--1 .is-active .text-split span:nth-child(23) {
  transition-delay: 0.88s;
}
.animation--1 .is-active .text-split span:nth-child(24) {
  transition-delay: 0.92s;
}
.animation--1 .is-active .text-split span:nth-child(25) {
  transition-delay: 0.96s;
}
.animation--1 .is-active .text-split span:nth-child(26) {
  transition-delay: 1s;
}
.animation--1 .is-active .text-split span:nth-child(27) {
  transition-delay: 1.04s;
}
.animation--1 .is-active .text-split span:nth-child(28) {
  transition-delay: 1.08s;
}
.animation--1 .is-active .text-split span:nth-child(29) {
  transition-delay: 1.12s;
}
.animation--1 .is-active .text-split span:nth-child(30) {
  transition-delay: 1.16s;
}