@charset "utf-8";
/* CSS Document */
.footer_recruit{display:none;}


.top_video_player {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.top_video_player .body_txt {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: 0.06em;
}

.top_video_player .video_box {
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  background: #000;
}

.top_video_player video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.fv{
  position: relative;
  overflow: hidden;
}

.fv .contents{
  position: relative;
  min-height: 100vh;
}

.fv .contents .imgbox{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fv .contents .imgbox::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.08) 42%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.fv .contents .imgbox .img1{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not(.gjs-dashed) .fv .contents .imgbox .img1,
body:not(.gjs-dashed) .fv .contents .imgbox::after{
  opacity: 0.5;
  -ms-filter: blur(30px);
  filter: blur(30px);
}

body.indexon .fv .contents .imgbox .img1,
body.indexon .fv .contents .imgbox::after{
  animation-name: fvimg1;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

body.indexon .fv .contents .imgbox .img1{
  animation-delay: 0.4s;
}

body.indexon .fv .contents .imgbox::after{
  animation-delay: 0.8s;
}

@keyframes fvimg1{
  0%{
    opacity: 0.5;
    -ms-filter: blur(30px);
    filter: blur(30px);
  }
  100%{
    opacity: 1;
    -ms-filter: blur(0);
    filter: blur(0);
  }
}

.fv .company_box{
  position: absolute;
  left: clamp(70px, 13vw, 190px);
  top: clamp(95px, 15vw, 170px);
  z-index: 4;
}

.fv .company_box h1{
  margin-bottom: clamp(18px, 2vw, 26px);
  color: #111;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.fv .company_box p{
  color: #111;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.fv .contents .txtbox{
  position: absolute;
  left: clamp(70px, 15vw, 220px);
  bottom: clamp(110px, 14vw, 170px);
  z-index: 4;
}

.fv .contents .txtbox .jp{
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: 0.14em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

.fv .contents .txtbox .en{
  color: #fff;
  font-family: "Roboto Mono", "Oswald", sans-serif;
  font-size: clamp(34px, 6vw, 86px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.55);
}

body:not(.gjs-dashed) .fv .company_box,
body:not(.gjs-dashed) .fv .contents .txtbox .jp,
body:not(.gjs-dashed) .fv .contents .txtbox .en{
  opacity: 0;
  -ms-filter: blur(15px);
  filter: blur(15px);
}

body.indexon .fv .company_box{
  animation: fvtxtFade 1.4s ease 1.2s forwards;
}

body.indexon .fv .contents .txtbox .jp{
  animation: fvtxtFade 1.4s ease 1.8s forwards;
}

body.indexon .fv .contents .txtbox .en{
  animation: fvtxtFade 1.4s ease 2.2s forwards;
}

@keyframes fvtxtFade{
  0%{
    opacity: 0;
    transform: translateY(18px);
    -ms-filter: blur(15px);
    filter: blur(15px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
    -ms-filter: blur(0);
    filter: blur(0);
  }
}

.fv .sc_icon{
  position: absolute;
  width: 8%;
  left: 0;
  bottom: 0;
  z-index: 5;
  flex-direction: column;
  gap: 10px;
}

.fv .sc_icon p{
  color: #111;
  font-family: "Roboto Mono", sans-serif;
  writing-mode: vertical-rl;
  letter-spacing: 0.1rem;
}

.fv .sc_icon .icon{
  position: relative;
  width: 1px;
  height: 180px;
}

.fv .sc_icon .icon::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  animation: sc_icon 2.4s ease infinite;
}

@keyframes sc_icon{
  0%{
    top: auto;
    bottom: 0;
    height: 100%;
  }
  48%{
    top: auto;
    bottom: 0;
    height: 0;
  }
  50%{
    bottom: auto;
    top: 0;
    height: 0;
  }
  98%{
    bottom: auto;
    top: 0;
    height: 100%;
  }
  100%{
    bottom: 0;
    top: auto;
    height: 100%;
  }
}



@media screen and (max-width: 576px){
  .fv .contents{
    min-height: 100svh;
  }

  .fv .contents .imgbox{
    height: 100svh;
  }

  .fv .contents .imgbox .img1{
    width: 145%;
    max-width: none;
    transform: translateX(-22%);
  }

  .fv .company_box{
    left: 24px;
    width: calc(100% - 48px);
  }

  .fv .company_box h1{
    font-size: 28px;
  }

  .fv .contents .txtbox{
    left: 24px;
    bottom: 62px;
    width: calc(100% - 48px);
  }

  .fv .contents .txtbox .en{
    font-size: clamp(32px, 12vw, 52px);
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

  .fv .sc_icon{
    display: none;
  }
}
.section02 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.section02 .section02_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-right: 0;
  padding-left: max(90px, calc((100vw - 1280px) / 2));
  padding-right: 0;
  box-sizing: border-box;
}

.section02 .titlebox1 {
  padding-left: 0;
  padding-right: 0;
}

.section02 .business_list {
  display: grid;
  gap: clamp(80px, 8vw, 120px);
}

.section02 .business_item {
  --business-gap: clamp(40px, 7vw, 90px);
  align-items: center;
  justify-content: space-between;
  gap: var(--business-gap);
}

.section02 .business_txtbox {
  width: min(430px, calc((100% - var(--business-gap)) * 0.42));
}

.section02 .business_img {
  width: calc((100% - var(--business-gap)) * 0.58);
  margin-right: 0;
}

.section02 .business_img .imgbox {
  width: 100%;
  overflow: hidden;
}

.section02 .business_img .imgbox img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section02 .business_num {
  line-height: 1;
}

.section02 .business_txtbox h3 {
  letter-spacing: 0.08em;
}

.section02 .business_txtbox .body_txt {
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .section02 .section02_inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section02 .business_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .section02 .business_txtbox {
    order: 2;
    width: 100%;
  }

  .section02 .business_img {
    order: 1;
    width: 100%;
  }
}
.blog_section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.blog_section .contents {
  align-items: flex-start;
  gap: clamp(55px, 7vw, 100px);
}

.blog_section .blog_left {
  flex: 0 0 clamp(180px, 18vw, 260px);
}

.blog_section .webgene-blog {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 55px) clamp(28px, 4vw, 48px);
}

.blog_section .webgene-item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog_section .webgene-item .imgbox {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 0;
  overflow: hidden;
}

.blog_section .webgene-item .imgbox img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog_section .blog_meta {
  justify-content: flex-start;
}

.blog_section .webgene-item .date {
  color: #777;
  font-size: 12px;
  line-height: 1;
}

.blog_section .webgene-item .catename {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #0B0BAC;
  background: #fff;
  color: #0B0BAC;
  font-size: 12px;
  line-height: 1.2;
}

.blog_section .webgene-item h2 {
  margin-bottom: 8px;
  color: #111;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.blog_section .blog_txt {
  color: #111;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .blog_section .contents {
    display: block;
  }

  .blog_section .blog_left {
    margin-bottom: 42px;
  }

  .blog_section .webgene-blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }
}
@media screen and (max-width: 576px) {
  .blog_section .webgene-blog {
    grid-template-columns: 1fr;
  }
}
.section03 {
  position: relative;
  overflow: hidden;
}

.section03 .section03_inner {
  --section03-gap: clamp(50px, 7vw, 100px);
  width: 100%;
  max-width: none;
  margin-right: 0;
  padding-left: max(90px, calc((100vw - 1280px) / 2));
  padding-right: 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: var(--section03-gap);
}

.section03 .section03_txtbox {
  width: min(510px, calc((100% - var(--section03-gap)) * 0.46));
  color: #fff;
}

.section03 .section03_txtbox h3 {
  letter-spacing: 0.08em;
}

.section03 .section03_txtbox .body_txt {
  letter-spacing: 0.08em;
}

.section03 .section03_img {
  width: calc((100% - var(--section03-gap)) * 0.54);
  margin-right: 0;
}

.section03 .section03_img .imgbox {
  width: 100%;
  overflow: hidden;
}

.section03 .section03_img .imgbox img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
}

.section03 .company_link_list {
  width: min(430px, 100%);
}

.section03 .company_link {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2vw, 26px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
}

.section03 .company_link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.section03 .company_link p {
  line-height: 1;
  letter-spacing: 0.12em;
}

.section03 .company_link span {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.section03 .company_link i {
  color: #9CB7F4;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.section03 .company_link:hover {
  opacity: 1;
}

.section03 .company_link:hover i {
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .section03 .section03_inner {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }

  .section03 .section03_img {
    order: 1;
    width: 100%;
    margin-bottom: 36px;
  }

  .section03 .section03_txtbox {
    order: 2;
    width: 100%;
  }

  .section03 .section03_img .imgbox img {
    aspect-ratio: 16 / 10;
  }
}
.section03_top_img {
  position: relative;
  overflow: hidden;
  height:auto;
}

.section03_top_img a {
  display: block;
  width: 100%;
  height: 100%;
}

.section03_top_img .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section03_top_img .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media screen and (max-width: 768px) {
  .section03_top_img {
    height: max(220px, 34vw);
  }
}

@media screen and (max-width: 576px) {
  .section03_top_img {
    height: max(200px, 48vw);
  }
}
.instagram {
  background: #f4f4f4;
}


/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

