﻿@charset "UTF-8";
html {
  width: 100%;
}
@media (max-width: 568px) {
  html {
    overflow: auto;
    height: 100%;
    width: auto;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #333;
  position: relative;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 568px) {
  body {
    font-size: 14px;
    width: auto;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

h3 {
  font-size: 2.8em;
  line-height: 1em;
  letter-spacing: 0.12em;
}
@media (max-width: 568px) {
  h3 {
    font-size: 1.7em;
    margin: 0 auto;
  }
}

section {
  position: relative;
  padding: 20vh 10vw;
}
@media (max-width: 568px) {
  section {
    padding: 10vh 4vw;
  }
}
@media (min-width: 569px) and (max-width: 1600px) {
  section {
    padding: 20vh 6vw;
  }
}

.color--blue {
  color: #11AEB6;
}

@media (max-width: 568px) {
  .disp-pc {
    display: none !important;
  }
}

@media (min-width: 569px) {
  .disp-sp {
    display: none !important;
  }
}

header#header {
  z-index: 100;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2vh 10vw;
  height: 78px;
  /*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
}
@media (min-width: 569px) and (max-width: 1600px) {
  header#header {
    padding: 2vh 6vw;
  }
}
header#header #logo {
  width: 300px;
}
header#header #logo h1 {
  margin: auto;
}
header#header #logo h1 a {
  display: block;
}
header#header #nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  list-style: none;
  gap: 22px;
}
@media (max-width: 1399px) {
  header#header #nav {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  header#header #nav {
    gap: 30px;
  }
}
header#header #nav li a {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  color: #222222;
}
header#header.HeightMin {
  position: fixed;
  z-index: 999;
  /*最前面へ*/
  height: 34px;
  left: 0;
  right: 0;
  animation: DownAnime 0.5s forwards;
  background-color: rgba(255, 255, 255, 0.8);
}
header#header.HeightMin h1,
header#header.HeightMin ul {
  margin: 0;
}
header#header.HeightMin h1 img {
  width: 200px;
}

/* ハンバーガーメニュー */
header#header-sp {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /*HeightMin-spというクラス名がついたら高さを小さく、上部固定に*/
}
header#header-sp.HeightMin-sp {
  position: fixed;
  height: 50px;
  z-index: 999;
  /*最前面へ*/
  left: 0;
  right: 0;
  animation: DownAnime 0.5s forwards;
  background-color: rgba(255, 255, 255, 0.8);
}
header#header-sp.HeightMin-sp h1,
header#header-sp.HeightMin-sp ul {
  margin: 0;
}
header#header-sp.HeightMin-sp h1 img {
  width: 180px;
}
header#header-sp .logo {
  width: 200px;
  margin-left: 10px;
}
header#header-sp .logo h1 {
  margin: 0 auto;
}
header#header-sp .logo h1 a {
  display: block;
}
header#header-sp .hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
header#header-sp .hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
header#header-sp .hamburger-menu__bar:first-child {
  top: 16px;
}
header#header-sp .hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
header#header-sp .hamburger-menu__bar:last-child {
  top: 32px;
}
header#header-sp .hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
header#header-sp .hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
header#header-sp .hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
header#header-sp .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
header#header-sp .navigation {
  display: none;
  background: #242424;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 9999;
}
header#header-sp .navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
header#header-sp .navigation__list-item {
  border-bottom: solid 1px #474747;
}
header#header-sp .navigation__list-item:first-child {
  border-top: solid 1px #474747;
}
header#header-sp .navigation__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  header#header-sp .navigation__link:hover {
    background: #333;
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-170px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flex--left,
.flex--right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 568px) {
  .flex--left,
  .flex--right {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 4vw;
  }
}

@media (max-width: 568px) {
  .flex--l {
    margin-bottom: 2em;
  }
}
.flex--left {
  flex-direction: row;
}
@media (max-width: 568px) {
  .flex--left {
    flex-direction: column;
  }
}
.flex--left .flex--r img {
  border-radius: 15px 0 0 15px;
  height: 350px;
  object-fit: cover;
}
@media (max-width: 568px) {
  .flex--left .flex--r img {
    border-radius: 0;
    height: 220px;
  }
}

.flex--right {
  flex-direction: row-reverse;
}
.flex--right .flex--l {
  text-align: right;
}
@media (max-width: 568px) {
  .flex--right .flex--l {
    text-align: left;
  }
}
.flex--right .flex--r img {
  border-radius: 0 15px 15px 0;
  height: 350px;
  object-fit: cover;
}
@media (max-width: 568px) {
  .flex--right .flex--r img {
    border-radius: 0;
    height: 220px;
    margin-bottom: 45px;
  }
}

.flex--l .text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  line-height: 2.2em;
}

@media (max-width: 568px) {
  .flex--left {
    flex-direction: column;
  }
  .flex--right {
    flex-direction: column-reverse;
  }
}
.flex--l,
.flex--r {
  display: flex;
  flex-direction: column;
}

.flex--l {
  flex: 3;
}

.flex--r {
  flex: 2;
}

p.line-left {
  position: relative;
  padding-left: 15vw;
  margin: 0;
}
p.line-left:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  border-top: 1px solid #00aec8;
  width: 14vw;
}

a.link {
  text-decoration: none;
  color: #222;
  font-weight: 800;
  padding-bottom: 2px;
  border-bottom: 1px dashed;
}
a.link.icon::after {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 600;
  line-height: 1;
  content: "\f08e";
  color: #222;
  margin-left: 0.35em;
}

/***** ブロック ******/
/* アプリ開発業者様へ */
/********************/
.for-partner {
  padding: 0px 60px;
}
@media (max-width: 568px) {
  .for-partner {
    padding: 0 14px;
  }
}
.for-partner .partner-bgimg {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 20px;
  background-image: url(../img/expand-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.for-partner .partner-bgimg.apps {
  background-image: url(../img/expand-bg2.jpg);
}
@media (max-width: 480px) {
  .for-partner .partner-bgimg {
    background-position: -70px;
  }
}
.for-partner .partner-bgimg .partner-block {
  border-radius: 20px;
  padding: 60px 60px;
  background-color: rgba(51, 51, 51, 0.4);
  color: white;
}
@media (max-width: 568px) {
  .for-partner .partner-bgimg .partner-block {
    padding: 30px 22px 22px;
  }
}
.for-partner .partner-bgimg .partner-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 568px) {
  .for-partner .partner-bgimg .partner-wrap {
    align-items: center;
  }
}
.for-partner .partner-bgimg .partner-wrap .partner-label {
  font-size: 2.8em;
  line-height: 1em;
  margin: 0 0 32px 0;
}
@media (max-width: 568px) {
  .for-partner .partner-bgimg .partner-wrap .partner-label {
    font-size: 1.8em;
    line-height: 1.3em;
  }
}
.for-partner .partner-bgimg .partner-wrap .partner-contents {
  font-size: 1.15em;
  line-height: 1.5em;
  margin: 0 0 64px 0;
}
@media (max-width: 568px) {
  .for-partner .partner-bgimg .partner-wrap .partner-contents {
    font-size: 1em;
    line-height: 1.8em;
    letter-spacing: 0.08em;
    margin: 0 0 54px 0;
  }
}
.for-partner .partner-bgimg .partner-wrap .partner-contents .case {
  border: 1px solid white;
  display: inline-block;
  padding: 4px 6px;
  margin-top: 10px;
}
@media (max-width: 568px) {
  .for-partner .partner-bgimg .partner-wrap .partner-contents .case {
    padding: 0px 6px;
    margin-top: 6px;
  }
}
.for-partner .partner-bgimg .box-btn {
  /*ボタン内spanの形状*/
  /*== 背景が流れる（左から右） */
  /*hoverした際の形状*/
}
.for-partner .partner-bgimg .box-btn .btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  padding: 18px 46px;
  text-align: center;
  outline: none;
  transition: ease 0.2s;
  font-size: 1.4em;
  border-radius: 50px;
  background-color: #FFFDFD;
}
@media (max-width: 568px) {
  .for-partner .partner-bgimg .box-btn .btn {
    padding: 20px 40px;
    font-size: 1.2em;
  }
}
.for-partner .partner-bgimg .box-btn .btn span::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.4s ease-out;
  top: 10px;
  right: -30px;
}
@media (max-width: 568px) {
  .for-partner .partner-bgimg .box-btn .btn span::before {
    top: 9px;
    right: -23px;
  }
}
.for-partner .partner-bgimg .box-btn .btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #222222;
}
.for-partner .partner-bgimg .box-btn .btn:hover span {
  color: #fff;
}
.for-partner .partner-bgimg .box-btn .bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #11AEB6;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 2);
  transform-origin: right top;
}
.for-partner .partner-bgimg .box-btn .bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 2);
}

/* 各セクション個別CSS */
section#firstview {
  padding-top: 8vh;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
@media (max-width: 568px) {
  section#firstview {
    padding-top: 6vh;
  }
}
section#firstview #first-catch {
  padding-left: 10vw;
  padding-right: 10vw;
}
@media (min-width: 569px) and (max-width: 1600px) {
  section#firstview #first-catch {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 568px) {
  section#firstview #first-catch {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
section#firstview #first-catch h2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.15em;
  margin-top: 0;
}
@media (max-width: 568px) {
  section#firstview #first-catch h2 {
    font-size: 20px;
    line-height: 1.6em;
  }
}
section#firstview #first-catch .sub {
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.4em;
  margin: 0 0 4px 0;
}
@media (max-width: 568px) {
  section#firstview #first-catch .sub {
    font-size: 20px;
    line-height: 1.6em;
    margin: 0px 0 2px 0;
  }
}
section#firstview #first-catch img#webland-typo {
  width: 250px;
  margin-bottom: 9px;
  margin-left: 3px;
  padding-right: 10px;
}
@media (max-width: 568px) {
  section#firstview #first-catch img#webland-typo {
    width: 120px;
    margin-bottom: 6px;
    margin-left: 2px;
    padding-right: 6px;
  }
}
section#firstview #first-bg {
  height: 80vh;
  background: url(../img/fv.jpg) no-repeat center/cover;
}
@media (max-width: 568px) {
  section#firstview #first-bg {
    height: 35vh;
  }
}
section#firstview #first-bg .text--label {
  background-color: #FFFDFD;
  display: inline-block;
  padding: 12px 1vw 12px 5vw;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

section#seamless {
  padding-left: 0;
  padding-right: 0;
  background: url(../img/bg1.svg) no-repeat center/cover;
  overflow-x: hidden;
}
section#seamless h3 {
  padding-left: 10vw;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
  font-size: 3.6em;
  letter-spacing: 0.16em;
}
@media (min-width: 569px) and (max-width: 1600px) {
  section#seamless h3 {
    padding-left: 6vw;
  }
}
@media (max-width: 568px) {
  section#seamless h3 {
    padding-left: 5vw;
  }
}
@media (max-width: 568px) {
  section#seamless h3 {
    font-size: 2.6em;
    margin-bottom: 0.3em;
    padding-left: 0;
  }
}
section#seamless h3 span.dotte {
  margin-left: -0.2em;
  color: #11AEB6;
}
section#seamless .flex--l {
  flex: 3;
}
@media (min-width: 569px) and (max-width: 1600px) {
  section#seamless .flex--l {
    flex: 2;
  }
}
section#seamless .flex--r {
  gap: 60px;
}
section#seamless #seamless-text span {
  font-size: 1.2em;
}

@media (max-width: 568px) {
  section#ai,
  section#partnerships {
    overflow: hidden;
  }
}
section#ai h3,
section#partnerships h3 {
  font-size: 2.5em;
  letter-spacing: 0.08em;
  line-height: 1.5em;
  padding-bottom: 8px;
}
@media (max-width: 568px) {
  section#ai h3,
  section#partnerships h3 {
    font-size: 1.6em;
  }
}

section#ai {
  padding-left: 0;
  padding-right: 0;
  background-color: #f7f7f7;
}
section#ai .flex--left {
  padding-left: 10vw;
}
@media (min-width: 569px) and (max-width: 1600px) {
  section#ai .flex--left {
    padding-left: 6vw;
  }
}
@media (max-width: 568px) {
  section#ai .flex--left {
    padding-left: 5vw;
  }
}
section#ai .flex--left .flex--l {
  z-index: 1;
}
@media (max-width: 568px) {
  section#ai .flex--left .flex--l {
    width: 100%;
  }
}
section#ai h3 {
  position: relative;
}
section#ai h3:before {
  content: "Harnessing AI and Machine Learning";
  position: absolute;
  color: #ffffff;
  z-index: -1;
  bottom: 0.4em;
  left: -2px;
  font-size: 1.8em;
  line-height: 0.85em;
}
@media (max-width: 568px) {
  section#ai h3:before {
    font-size: 1.55em;
    right: -10px;
  }
}

section#partnerships {
  padding-left: 0;
  padding-right: 0;
  background: url(../img/cross-pc.png) no-repeat left bottom/45%;
}
@media (max-width: 1200px) {
  section#partnerships {
    background-size: 43%;
  }
}
@media (max-width: 568px) {
  section#partnerships {
    background: url(../img/cross-sp.png) no-repeat right bottom/50%;
  }
}
section#partnerships .flex--right {
  padding-right: 10vw;
}
@media (min-width: 569px) and (max-width: 1600px) {
  section#partnerships .flex--right {
    padding-right: 6vw;
  }
}
@media (max-width: 568px) {
  section#partnerships .flex--right {
    padding-right: 5vw;
  }
}
@media (max-width: 1200px) {
  section#partnerships .flex--right {
    padding-right: 2vw;
  }
}
section#partnerships .flex--right .flex--l {
  z-index: 1;
}
section#partnerships h3 {
  position: relative;
}
section#partnerships h3:before {
  content: "Cross-SectorPartnerships";
  position: absolute;
  color: rgba(17, 174, 182, 0.12);
  z-index: -1;
  bottom: 1.2em;
  right: 20px;
  font-size: 1.8em;
  line-height: 0.85em;
}
@media (max-width: 568px) {
  section#partnerships h3:before {
    font-size: 1.55em;
    right: -10px;
  }
}

section#partnerships-cta {
  padding-top: 6vh;
  padding-bottom: 10vh;
}
@media (max-width: 568px) {
  section#partnerships-cta {
    padding-top: 4vh;
    padding-bottom: 2vh;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

section#web3 {
  background-color: #FFFDFD;
  background: url(../img/bg2.svg) no-repeat center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  gap: 80px;
}
@media (max-width: 568px) {
  section#web3 {
    gap: 60px;
  }
}
section#web3 h3 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 40px;
}
section#web3 h3 span {
  color: #11AEB6;
}
section#web3 h3:after {
  content: "";
  position: absolute;
  width: 13em;
  left: -0.6em;
  bottom: -32px;
  background: url(../img/line1.svg) no-repeat center/contain;
  height: 20px;
}
@media (max-width: 568px) {
  section#web3 h3:after {
    width: 100%;
    left: 0;
  }
}
section#web3 .maintext {
  line-height: 2.2em;
}
section#web3 .points .point-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
}
@media (max-width: 568px) {
  section#web3 .points .point-container {
    flex-direction: column;
    gap: 30px;
  }
}
section#web3 .points .point-container .point-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  background-color: #11aeb6;
  color: white;
  padding: 30px;
  gap: 30px;
  max-width: 340px;
}
@media (min-width: 569px) and (max-width: 1600px) {
  section#web3 .points .point-container .point-box {
    max-width: 260px;
  }
}
section#web3 .points .point-container .point-box p {
  margin: 0;
}
section#web3 .points .point-container .point-box img {
  height: 80px;
}
section#web3 .points .point-container .point-box .point-label {
  font-size: 1.2em;
}

section#business {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
@media (max-width: 568px) {
  section#business {
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 90px;
  }
}
section#business .flex--right {
  padding-right: 10vw;
  padding-top: 90px;
  padding-bottom: 140px;
}
@media (min-width: 569px) and (max-width: 1600px) {
  section#business .flex--right {
    padding-right: 6vw;
  }
}
@media (max-width: 568px) {
  section#business .flex--right {
    padding-right: 5vw;
  }
}
@media (max-width: 568px) {
  section#business .flex--right {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
@media (max-width: 568px) {
  section#business .flex--right .flex--l {
    margin-bottom: 10px;
  }
}
section#business .headline {
  text-align: center;
}
section#business .headline .head-lead h3,
section#business .headline .head-sub p {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.15em;
}
@media (max-width: 568px) {
  section#business .headline .head-lead h3,
  section#business .headline .head-sub p {
    font-size: 24px;
  }
}
section#business .headline .head-lead {
  position: relative;
}
section#business .headline .head-lead:before {
  content: "";
  background: url(../img/business-partner.svg) no-repeat center/contain;
  width: 101%;
  position: absolute;
  height: 240px;
  left: -5px;
  bottom: -36px;
}
@media (min-width: 980px) {
  section#business .text p {
    font-size: 1.05em;
    line-height: 2.8em;
  }
}
@media (min-width: 1400px) {
  section#business .text p {
    font-size: 1.2em;
  }
}
@media (max-width: 568px) {
  section#business .text p {
    margin: 0 auto;
  }
}

section#closing {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  font-size: 2.6em;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.26em;
  color: #FFFDFD;
  background-color: #11AEB6;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/bg3.svg);
}
@media (max-width: 568px) {
  section#closing {
    padding: 110px 0;
  }
}
section#closing .padding {
  padding-left: 20vw;
  padding-right: 20vw;
}
@media (max-width: 568px) {
  section#closing .padding {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
section#closing .wrap {
  position: relative;
  width: 100%;
  text-align: center;
}
@media (max-width: 568px) {
  section#closing {
    font-size: 1.4em;
    letter-spacing: 0.2em;
  }
}
@media (max-width: 1200px) {
  section#closing {
    background-image: url(../img/bg3_1200.svg);
  }
}
section#closing .black {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-weight: 900;
}

section#news {
  padding: 12vh 20vw;
  overflow: hidden;
  background-color: #f7f7f7;
}
@media (max-width: 568px) {
  section#news {
    padding: 10vh 8vw;
  }
}
section#news .news-container .news-head {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 60px;
}
section#news .news-container .news-head h3.news-head-lead {
  position: relative;
  font-size: 5em;
  margin: 0;
  color: #333;
}
section#news .news-container .news-head h3.news-head-lead:after {
  position: absolute;
  content: "+";
  font-size: 0.6em;
  color: #11aeb6;
  top: -18px;
  right: -36px;
}
section#news .news-container .news-head p.news-head-sub {
  font-size: 1.6em;
  letter-spacing: 0.2em;
  margin: 0;
  color: #333;
}
section#news .news-container ul.news-list {
  overflow: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px 90px;
  height: 290px;
  list-style: none;
  align-content: flex-start;
  letter-spacing: 0.15em;
  padding: 0 3vw;
}
@media (min-width: 568px) and (max-width: 1600px) {
  section#news .news-container ul.news-list {
    gap: 30px 40px;
  }
}
@media (max-width: 568px) {
  section#news .news-container ul.news-list {
    flex-wrap: nowrap;
    border: 3px solid #b7b7b7;
    padding: 25px;
  }
}
section#news .news-container ul.news-list::-webkit-scrollbar {
  background: #FFFDFD;
  width: 5px;
  height: 5px;
}
section#news .news-container ul.news-list::-webkit-scrollbar-thumb {
  background-color: rgb(139, 139, 139);
}
section#news .news-container ul.news-list::-webkit-scrollbar-thumb:hover {
  background-color: rgb(194, 194, 194);
}
section#news .news-container ul.news-list li {
  width: 40%;
}
@media (min-width: 568px) and (max-width: 1600px) {
  section#news .news-container ul.news-list li {
    width: 44%;
  }
}
@media (max-width: 568px) {
  section#news .news-container ul.news-list li {
    width: 100%;
  }
}
section#news .news-container ul.news-list li a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  text-decoration: none;
  color: #222222;
}
section#news .news-container ul.news-list li a span.date {
  font-size: 1em;
}
section#news .news-container ul.news-list li a span.date:after {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 600;
  line-height: 1;
  content: "\f08e";
  margin-left: 5px;
  font-size: 0.8em;
}
section#news .news-container ul.news-list li a span.title {
  font-size: 1.1em;
  font-weight: 800;
}
@media (min-width: 568px) and (max-width: 1600px) {
  section#news .news-container ul.news-list li a span.title {
    font-size: 1em;
    font-weight: 700;
  }
}

section#contact {
  padding: 9vh 20vw;
}
@media (max-width: 568px) {
  section#contact {
    padding: 6vh 2vw 8vh;
  }
}
section#contact .googleform-wrapper {
  position: relative;
  width: 100%;
  height: 896px;
  overflow-y: scroll;
}
@media (max-width: 568px) {
  section#contact .googleform-wrapper {
    height: 1124px;
  }
}
section#contact .googleform-wrapper::-webkit-scrollbar {
  background: #FFFDFD;
  width: 5px;
  height: 5px;
}
section#contact .googleform-wrapper::-webkit-scrollbar-thumb {
  background-color: rgb(139, 139, 139);
}
section#contact .googleform-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgb(194, 194, 194);
}
section#contact .googleform-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  background-color: #222222;
  color: white;
}
footer .footer-wrap {
  padding: 10vh 10vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 568px) {
  footer .footer-wrap {
    flex-direction: column;
  }
}
@media (min-width: 569px) {
  footer .footer-wrap {
    align-items: flex-end;
  }
}
@media (min-width: 569px) and (max-width: 1600px) {
  footer .footer-wrap {
    padding: 10vh 6vw;
  }
}
footer .logo img {
  width: 300px;
}
@media (min-width: 569px) and (max-width: 1600px) {
  footer .logo {
    width: 226px;
  }
}
@media (max-width: 568px) {
  footer .logo img {
    margin-bottom: 35px;
    margin-left: -8px;
  }
}
footer .office-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
}
footer .office-info p {
  margin: 0;
}
footer .copyright {
  font-size: 12px;
  line-height: 1.5em;
}
@media (min-width: 569px) {
  footer .copyright {
    margin-top: 30px;
  }
}
footer #footer-right {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (max-width: 568px) {
  footer #footer-right {
    align-items: flex-start;
  }
}
footer .contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 78px;
}
@media (max-width: 568px) {
  footer .contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
footer .contact .contact-label {
  position: relative;
}
footer .contact .contact-label span:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 6px;
  border-bottom: 1px solid #FFFDFD;
  bottom: 6px;
  margin-left: 6px;
  border-right: 2px solid #FFFDFD;
  transform: skew(40deg);
}
footer .contact .contact-link a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}
footer ul.menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  gap: 30px;
}
@media (max-width: 568px) {
  footer ul.menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    padding-left: 0px;
    margin: 40px 0;
  }
}
@media (min-width: 569px) and (max-width: 1600px) {
  footer ul.menu {
    gap: 20px;
  }
}
footer ul.menu li a {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  color: #FFFDFD;
}

/********************************/
/******** アニメーション *********/
/********************************/
/*========= タイピング ==========*/
.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  animation: typinganime 0.8s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*========= スライドアップ ==========*/
.js-slide-up-row {
  position: relative;
  opacity: 0;
  width: fit-content;
}

.js-slide-up-row.is-setup {
  opacity: 1;
}

.js-slide-up-row__base {
  opacity: 0;
}

.js-slide-up-row__line,
.js-slide-up-row__checker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.js-slide-up-row__text {
  display: block;
}

.u-visually-hidden {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/*========= フェードイン ==========*/
.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*========= ボタン ==========*/
.ctabtn {
  text-align: center;
  margin-top: 90px;
}
@media (max-width: 568px) {
  .ctabtn {
    margin-top: 60px;
  }
}
.ctabtn .btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #222222;
  padding: 18px 46px;
  text-align: center;
  outline: none;
  transition: ease 0.2s;
  font-size: 1.4em;
}
@media (max-width: 568px) {
  .ctabtn .btn {
    padding: 20px 40px;
    font-size: 1.2em;
  }
}
.ctabtn .btn span::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.4s ease-out;
  top: 10px;
  right: -30px;
}
@media (max-width: 568px) {
  .ctabtn .btn span::before {
    top: 9px;
    right: -23px;
  }
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #222222;
}

.btn:hover span {
  color: #fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #222222;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 2);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 2);
}

/*========= 流れるボール ==========*/
.intro--line {
  position: relative;
  height: 1px;
  background: rgba(142, 158, 168, 0.5);
  margin-top: 10px;
}
.intro--line .intro--ball {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #8e9ea8;
  border-radius: 8px;
  top: -2px;
  animation: moveX 3s ease infinite;
}
.intro--line.white {
  position: absolute;
  top: 147px;
  background: #FFFDFD;
  width: 100%;
}
@media (max-width: 568px) {
  .intro--line.white {
    top: 73px;
  }
}
.intro--line.white .intro--ball {
  background: #FFFDFD;
  width: 8px;
  height: 8px;
  top: -4px;
  animation: moveXfull 6s ease infinite;
}

@keyframes moveX {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(300px);
  }
}
@keyframes moveXfull {
  0% {
    opacity: 0;
    transform: translateX(30vw);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(70vw);
  }
}
/*========= 線を引く ==========*/
.linedraw {
  background-image: linear-gradient(to top, #11AEB6 2px, transparent 1px);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 0% 100%;
}
.linedraw.active {
  animation-name: linedraw-a, linedraw-b;
  animation-duration: 3s, 0s;
  animation-delay: 0s, 0.5s;
  animation-fill-mode: forwards;
}

@keyframes linedraw-a {
  30% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
@keyframes linedraw-b {
  100% {
    background-position: left bottom;
  }
}/*# sourceMappingURL=style.original.css.map */