@charset "utf-8";

/* =========================
  初期状態
========================= */
html.is-loading,
body.is-loading {
  overflow: hidden;
}

body {
  margin: 0;
}

/* =========================
  ロード画面
========================= */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}
.loading.is-skip {
  display: none;
}

.loading__video-wrap {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.loading__video {
  opacity: 0;

  visibility: hidden;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loading.is-video-ready .loading__video {
  opacity: 1;

  visibility: visible;
}

/* 動画終了後、一旦白くする */
.loading.is-white .loading__video-wrap {
  opacity: 0;
  visibility: hidden;
}

/* 最後にロード画面を消す */
.loading.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

/* =========================
  FV
========================= */

.fv {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 100vh;
  z-index: 5;
}

.fv .bg {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: opacity 1.4s ease;
}

.fv .inner {
  opacity: 0;
  transform: translateY(20px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv .fv-logo {
  max-width: 363px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.fv .fv-logo .tit-ja {
  font-family: var(--font-notosans);
  font-weight: 500;
  font-size: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem);
  color: #000;
}

/* 初回ロード後 */

body.is-loaded .fv .bg,
body.is-loaded .fv .fv-logo {
  opacity: 1;
  transition: opacity 1.4s ease;
}

body.is-loaded .fv .fv-logo,
body.is-session-loaded .fv .fv-logo {
  transition-delay: 0.4s;
}

body.is-loaded .fv .inner {
  opacity: 1;
}

/* 1セッション内で2回目以降 */

body.is-session-loaded .fv .bg,
body.is-session-loaded .fv .fv-logo,
body.is-session-loaded .fv .inner {
  opacity: 1;
}

.sec-title,
.sec-title02 {
  display: flex;
  flex-direction: column;
}

.sec-title .tit-en,
.sec-title02 .tit-en {
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: clamp(2rem, 1.772rem + 0.97vw, 2.938rem);
  color: #000;
}

.sec-title02 .tit-en {
  font-size: clamp(2rem, 1.454rem + 2.33vw, 4.25rem);
  white-space: nowrap;
}

.sec-title .tit-ja,
.sec-title02 .tit-ja {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  color: #000;
}

.sec-title02 .tit-ja {
  font-size: clamp(0.75rem, 0.568rem + 0.78vw, 1.5rem);
}

.t_news .inner {
  padding-top: 130px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.t_news .inner .sec-title {
  align-items: center;
  justify-content: center;
}

.t_news .sec-body {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.t_news .sec-body .webgene-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6%;
}

.t_news .element {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.t_news .element .date .date-month,
.t_news .element .date .date-separate {
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.212rem + 1.23vw, 2.688rem);
  color: #000;
}

.t_news .element .date .date-day {
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: clamp(1.125rem, 0.958rem + 0.71vw, 1.813rem);
  color: #000;
}

.t_news .element .cate {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
  text-align: right;
  color: #000;
}

.t_news .thumimg {
  aspect-ratio: 295/264;
  overflow: hidden;
}

.t_news .thumimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--default);
}

.t_news .ItemTit {
  font-weight: 400;
  font-size: 16px;
  line-height: calc(24 / 16);
  color: #000;
}

.t_news .webgene-item:hover .thumimg img {
  transform: scale(1.2);
}

.t_about {
  position: relative;
  z-index: 5;
}

.t_about .img01,
.t_about .img02 {
  position: absolute;
}

.t_about .img01 {
  max-width: 401px;
  width: 100%;
  top: 612px;
  right: 5%;
}

.t_about .img02 {
  max-width: 280px;
  width: 100%;
  bottom: 160px;
  left: 30%;
}

.t_about::before {
  content: "";
  background: url(/system_panel/uploads/images/20260630150640586517.png) no-repeat top/cover;
  z-index: -1;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 1321px;
  pointer-events: none;
}

.t_about .inner {
  padding: 764px 0 375px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.t_about .inner .sec-head {
  display: flex;
  flex-direction: column;
  gap: 23px;
  max-width: 623px;
  width: 41%;
}

.t_about .inner .sec-body {
  margin-top: 226px;
  margin-right: 5%;
  max-width: 550px;
  width: 36%;
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.t_reason .sec-title02 {
  align-items: flex-end;
  justify-content: flex-end;
}

.t_reason .inner {
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.t_reason .sec-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.t_reason .label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: 17px;
  color: #000;
  padding-bottom: 14px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.t_reason .label::after {
  content: "";
  width: 100%;
  height: 1px;
  transform: translateX(-100%);
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: var(--default);
}

.t_reason .item {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.t_reason .item .group {
  display: grid;
  grid-template-columns: 23% 30% 40%;
  justify-content: space-between;
}
.t_reason .item .group .tit-ja {
  font-weight: 400;
  font-size: clamp(1.375rem, 1.223rem + 0.65vw, 2rem);
  line-height: calc(55 / 32);
  color: #000;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--default);
}

.t_reason .item .group .desc,
.t_reason .item .group img {
  transform: translateY(20px);
  opacity: 0;
  transition: var(--default);
  transition-delay: 0.1s;
}

.t_reason .item .group img {
  transition-delay: 0.2s;
}

.t_reason .item .group .desc p {
  line-height: calc(27 / 16);
}

.t_reason .item.is-active .label::after {
  transform: translateX(0);
}

.t_service {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.t_service .sec-body {
  display: flex;
  height: 658px;
  justify-content: space-between;
}

.t_service .sec-body .img {
  position: relative;
  height: 100%;
  max-width: 1202px;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

.t_service .sec-body .img .bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.t_service .sec-body .img-left img {
  object-position: right;
}

.t_service .sec-body .img-right {
  margin-left: calc(-602 / 1920 * 100vw);
  justify-content: flex-end;
}

.t_service .sec-body .img-right .morebtn {
  margin-right: 10%;
}
.t_service .sec-body .img-left .morebtn::before {
  background: url(/system_panel/uploads/images/20260630175756601604.svg) no-repeat center/contain;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  animation: circleTextRotate 60s linear infinite;
}

.t_service .sec-body .img-right .morebtn::before {
  background: url(/system_panel/uploads/images/20260630180248215781.svg) no-repeat center/contain;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  animation: circleTextRotate 60s linear infinite;
}
.t_service .sec-body .img-right img {
  object-position: left;
}

.t_service .sec-body .morebtn {
  position: relative;
  max-width: 385px;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 23px 30px;
  z-index: 5;
}

.t_service .sec-body .morebtn a {
  width: 326px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #fff;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.t_service .sec-body .morebtn a .tit-main {
  font-weight: 400;
  font-size: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
  color: #fff;
}

.t_service .sec-body .morebtn .column {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t_service .sec-body .img-left .morebtn {
  margin-left: 10%;
}

@keyframes circleTextRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.t_area .inner {
  padding: 90px 0 80px;
  display: flex;
  align-items: flex-start;
}

.t_area .inner .sec-head {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.t_area .sec-body {
  max-width: 911px;
  width: 100%;
  padding: 129px 163px 297px 123px;
  position: relative;
  z-index: 5;
  margin-left: -124px;
}

.t_area .sec-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url(/system_panel/uploads/images/20260630182355740853.svg) no-repeat center/contain;
  width: 100%;
  height: 100%;
}

.t_access .inner {
  padding-bottom: 160px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.t_access .sec-head {
  display: flex;
  flex-direction: column;
  gap: 47px;
}

.t_access .sec-head .map {
  width: 100%;
}

.t_access .sec-head .map iframe {
  width: 100%;
  height: 642px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.t_access .sec-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.t_access .sec-body .sec-text {
  margin-top: 39px;
  max-width: 551px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.t_access .sec-body .list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.t_access .sec-body .list .item {
  display: grid;
  grid-template-columns: 30% 35%;
  justify-content: space-between;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  color: #000;
  position: relative;
}

.t_access .sec-body .list .item::before {
  content: "";
  width: 40%;
  height: 1px;
  background-color: #000000;
  position: absolute;
  left: 19%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.t_access .sec-body .sec-img {
  max-width: 771px;
  width: 100%;
  height: 443px;
}

.t_access .sec-body .sec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t_insta .sec-title {
  align-items: center;
}

.t_insta .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 160px;
}

.t_insta .sec-body .webgene-blog {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.t_insta .sec-body .webgene-blog .imgBx01:hover {
  opacity: 50%;
}

.t_insta .sec-body .webgene-blog .webgene-item-main-image,
.t_insta .sec-body .webgene-blog video {
  aspect-ratio: 1/1;
  width: 100%;
}

.t_insta .sec-body .webgene-blog .py-3 {
  padding: 0 !important;
}

.t_insta .sec-body .webgene-blog .imgBx01 {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  transition: 0.4s ease;
}
.t_contact {
  padding: 160px 0;
}
.t_contact .inner {
  position: relative;
  z-index: 5;
}

.t_contact .inner .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t_contact .box-inner {
  max-width: 834px;
  padding: 80px 0 160px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.t_contact .sec-head {
  padding-bottom: 60px;
  border-bottom: 1px solid #fff;
}

.t_contact .sec-head .sec-title {
  align-items: center;
  margin-bottom: 40px;
}

.t_contact .sec-head .sec-title .tit-en,
.t_contact .sec-head .sec-title .tit-ja {
  color: #fff;
}

.t_contact .sec-head .desc {
  margin-bottom: 32px;
}

.t_contact .sec-head .desc p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.t_contact .sec-head .telbox {
  border: 1px solid #fff;
}

.t_contact .sec-head .telbox a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 40px 0;
  color: #fff;
}

.t_contact .sec-head .telbox a .tit-main {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  color: #fff;
}

.t_contact .sec-head .telbox a .column {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
  color: #fff;
}

.t_contact .sec-head .telbox a .column span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem) !important;
}

.t_contact .sec-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.t_contact .sec-body .sec-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t_contact .sec-body .sec-title .tit-main {
  font-weight: 400;
  font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
  color: #fff;
  text-align: center;
}

.t_contact .sec-body .sec-title .tit-sub {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  text-align: center;
  color: #fff;
}

.t_contact .sec-form {
  background: rgba(255, 255, 255, 0.63);
}

@media (max-width: 1400px) {
  .t_news .inner {
    width: 80%;
  }
  .t_about .inner,
  .t_reason .inner {
    width: 90%;
  }

  .t_service .sec-body .img-right {
    margin-left: -40%;
  }
}

@media (max-width: 1200px) {
  .fv .fv-logo {
    max-width: calc(207 / 375 * 100vw);
  }

  .fv .fv-logo img {
    width: 90%;
    margin: 0 auto;
  }
  .fv .fv-logo .tit-ja {
    white-space: nowrap;
  }
  .t_news .inner {
    width: 90%;
  }
  .t_news .sec-body {
    width: 100%;
  }
  .t_service .sec-body {
    flex-direction: column;
    height: auto;
  }
  .t_service .sec-body .img {
    max-width: none;
    padding: 96px 0;
    justify-content: center;
  }

  .t_service .sec-body .img-left .morebtn,
  .t_service .sec-body .img-right .morebtn {
    margin: 0;
  }

  .t_service .sec-body .img .bg.sp-hidden {
    display: none;
  }
  .t_service .sec-body .img .bg.pc-hidden {
    display: block;
  }
  .t_service .sec-body .img-right {
    margin-left: 0;
  }

  .t_area .sec-body {
    padding: 129px 69px 140px 123px;
  }
  .t_access .sec-head .map iframe {
    height: 333px;
  }

  .logowrap {
    display: none;
  }

  .t_about .img02 {
    left: 18%;
  }
  .t_about .inner .sec-body {
    width: 45%;
    margin-right: 0;
  }
  .t_reason .item .group {
    grid-template-columns: 27% 30% 35%;
  }
  .t_access .sec-body {
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
  }
}

@media (max-width: 1023px) {
  .t_news .sec-body .webgene-blog {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .t_news .inner {
    padding-top: 64px;
    width: 65%;
  }

  .t_about::before {
    background: url(/system_panel/uploads/images/20260701031843634055.png) no-repeat top/cover;
    height: calc(258 / 375 * 100vw);
    top: 56px;
  }

  .t_about .inner {
    width: 80%;
    padding: calc(314 / 375 * 100vw) 0 120px;
    flex-direction: column;
    gap: calc(356 / 375 * 100vw);
  }
  .t_about .inner .sec-head {
    max-width: calc(290 / 375 * 100vw);
    width: 100%;
  }
  .t_about .img01 {
    right: auto;
    left: 10%;
    top: 63%;
    max-width: calc(190 / 375 * 100vw);
  }
  .t_about .img02 {
    bottom: auto;
    top: 48%;
    left: auto;
    right: 8%;
    max-width: calc(151 / 375 * 100vw);
  }

  .t_about .inner .sec-head {
    gap: 9px;
  }
  .t_about .inner .sec-body {
    margin-top: 0;
    width: 100%;
  }
  .t_reason .inner {
    width: 80%;
  }
  .t_reason .sec-body {
    gap: 80px;
  }
  .t_reason .item .group {
    display: flex;
    flex-direction: column;
  }
  .t_reason .item {
    gap: 20px;
  }
  .t_reason .item .group .tit-ja {
    margin-bottom: 20px;
  }
  .t_reason .item .group .desc {
    margin-bottom: 32px;
  }
  .t_area .inner {
    flex-direction: column;
    gap: 60px;
    width: 100%;
    padding: 80px 0;
  }
  .t_area .inner .sec-head {
    width: 80%;
    margin: 0 auto;
  }
  .t_area .sec-body {
    padding: 0;
    max-width: none;
    margin: auto;
  }
  .t_area .sec-body::before {
    content: none;
  }

  .t_area .sec-body img.sp-hidden {
    display: none;
  }
  .t_area .sec-body img.pc-hidden {
    display: block;
  }
  .t_contact .box-inner {
    width: 83%;
  }
}

@media (max-width: 767px) {
  .t_about .img02 {
    top: 35%;
  }
  .t_about .img01 {
    top: 46%;
  }
  .t_service .sec-body .morebtn {
    max-width: 231px;
  }
  .t_access .inner {
    width: 100%;
  }
  .t_access .sec-head .sec-title,
  .t_access .sec-body {
    width: 90%;
    margin: 0 auto;
  }
  .t_access .sec-body .list .item {
    grid-template-columns: 21% 46%;
  }
  .t_access .sec-body .list .item::before {
    width: 24%;
    left: 24%;
  }
  .t_insta .sec-body .webgene-blog {
    grid-template-columns: repeat(3, 1fr);
  }
  .t_contact .inner {
    width: 100%;
  }
  .t_contact .box-inner {
    width: 90%;
    padding: 80px 0;
  }
  .t_access .sec-body .sec-img {
    height: calc(192/400*100vw);
  }
}

.t_reason .item.is-active .group .tit-ja,
.t_reason .item.is-active .group .desc,
.t_reason .item.is-active .group img,
.gjs-dashed .t_reason .item .group .tit-ja,
.gjs-dashed .t_reason .item .group .desc,
.gjs-dashed .t_reason .item .group img {
  transform: translateY(0);
  opacity: 1;
}

.gjs-dashed .loading {
  position: relative;
}

.gjs-dashed .fv .bg,
.gjs-dashed .fv .inner,
.gjs-dashed .fv .fv-logo,
.gjs-dashed .loading__video {
  opacity: 1;
  visibility: visible;
}
