@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "-apple-system", "BlinkMacSystemFont", "YuGothic", "Yu Gothic", sans-serif;
  color: #707070;
}

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

a {
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
  padding-left: 0;
}

.mb-sm {
  margin-bottom: 16px !important;
}

.mb-md {
  margin-bottom: 32px !important;
}
@media screen and (min-width: 1024px) {
  .mb-md {
    margin-bottom: 60px !important;
  }
}

.mb-lg {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 1024px) {
  .mb-lg {
    margin-bottom: 130px !important;
  }
}

.mb-sec {
  margin-bottom: 100px !important;
}
@media screen and (min-width: 1024px) {
  .mb-sec {
    margin-bottom: 180px !important;
  }
}

.pb-sm {
  padding-bottom: 16px !important;
}
@media screen and (min-width: 1024px) {
  .pb-sm {
    margin-bottom: 20px !important;
  }
}

.pb-md {
  padding-bottom: 32px !important;
}
@media screen and (min-width: 1024px) {
  .pb-md {
    padding-bottom: 60px !important;
  }
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 1024px) {
  .pb-lg {
    padding-bottom: 170px !important;
  }
}

.pb-max {
  padding-bottom: 150px !important;
}
@media screen and (min-width: 1024px) {
  .pb-max {
    padding-bottom: 350px !important;
  }
}

.content-width {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 600px) {
  .flex-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
}

#main-content {
  position: relative;
  z-index: 0;
}

.font-sm {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .font-sm {
    font-size: 16px;
  }
}

.font-md, body {
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .font-md, body {
    font-size: 17px;
  }
}

.font-lr {
  font-size: 17px;
}
@media screen and (min-width: 1024px) {
  .font-lr {
    font-size: 23px;
  }
}

.font-lg {
  font-size: 25px;
}
@media screen and (min-width: 1024px) {
  .font-lg {
    font-size: 32px;
  }
}

.font-title {
  font-size: 44px;
}
@media screen and (min-width: 1024px) {
  .font-title {
    font-size: 72px;
  }
}

.font-subtitle {
  font-size: 32px;
}
@media screen and (min-width: 1024px) {
  .font-subtitle {
    font-size: 42px;
  }
}

.font-pagetitle {
  font-size: 60px;
}
@media screen and (min-width: 1024px) {
  .font-pagetitle {
    font-size: 100px;
  }
}

.title-color {
  color: #254E35;
}

.title-color2 {
  color: #EC6104;
}

#global-container {
  overflow: hidden;
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #254E35;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 130px;
}
@media (max-width: 599px) {
  #splash_logo img {
    width: 90px;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 
----------------------------------------------------------------------
MV */
#header {
  position: relative; /*h1の中央寄せ配置の起点とするためのrelative*/
}

#video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#header.bg-black {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh; /*高さを全画面にあわせる*/
}
#header .header-menu {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
#header .mv-txt {
  position: absolute;
  left: 5%;
  top: 70vh;
  color: white;
}
@media (max-width: 599px) {
  #header .mv-txt {
    top: 55vh;
  }
}
#header .mv-txt h2 {
  letter-spacing: 4px;
  line-height: 1.2;
}
@media (max-width: 599px) {
  #header .mv-txt h2 {
    line-height: 1;
  }
}
#header .mv-txt span {
  color: #E55C00;
}
#header .mv-txt p {
  letter-spacing: 3px;
  margin-top: 15px;
}
#header .openbtn1 {
  display: none;
}

.header-menu {
  padding-top: 20px !important;
}
.header-menu img {
  width: 250px;
  height: 80px;
}
@media (max-width: 599px) {
  .header-menu img {
    width: 180px;
    height: 80px;
  }
}
.header-menu nav {
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header-menu nav {
    display: none;
  }
}

/*ナビゲーションを横並びに*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 20px 25px;
  transition: all 0.3s;
}

nav ul li li a {
  padding: 10px 35px;
}

nav ul li a:hover {
  color: #fff;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 4;
  /*形状を指定*/
  background: #254e35;
  width: 400px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

nav li.has-child ul li:last-child a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #b9c9a9;
}

#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  visibility: hidden;
}

/*==1024px以下の形状*/
@media (max-width: 1024px) {
  /*アクティブになったエリア*/
  #g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 998;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #E55C00;
    /*丸のスタート位置と形状*/
    transform: scale(0); /*scaleをはじめは0に*/
    top: calc(50% - 50px); /*50%から円の半径を引いた値*/
    left: calc(50% - 50px); /*50%から円の半径を引いた値*/
    transition: all 0.6s; /*0.6秒かけてアニメーション*/
  }
  .circle-bg.circleactive {
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
  }
  /*ナビゲーション*/
  #g-nav ul {
    opacity: 0; /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 80%;
  }
  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
    opacity: 1;
    visibility: visible;
  }
  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  #g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    text-align: center;
    list-style: none;
  }
  #g-nav li a {
    color: white;
    text-decoration: none;
    padding: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  #g-nav {
    padding: 0;
  }
  #g-nav li:nth-child(2) {
    padding: 20px;
  }
  #g-nav ul .nav-open {
    position: relative;
    color: white;
    font-weight: bold;
    padding-bottom: 20px;
  }
  #g-nav ul li ul {
    display: none;
    position: unset;
    transform: none;
    margin: 0 auto;
    font-size: 80%;
  }
  #g-nav ul li ul li:first-child {
    padding: 30px 10px 10px;
  }
  #g-nav ul li ul li:last-child {
    padding: 10px;
  }
  #g-nav ul li ul a {
    padding: 0;
  }
  /*矢印の位置と向き*/
  #g-nav ul .nav-open::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 6px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
  #g-nav ul .nav-open.active::before {
    transform: rotate(135deg);
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn1 {
    display: block !important;
    position: fixed;
    top: 32px;
    right: 10px;
    z-index: 999; /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: white;
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/* 
----------------------------------------------------------------------
intro */
.intro {
  background: #F4F4F4;
  padding-top: 130px;
}
@media (max-width: 599px) {
  .intro {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .intro {
    padding-top: 200px;
  }
}
.intro .flex {
  justify-content: space-between;
}
.intro__left {
  position: relative;
  z-index: 0;
  width: 48%;
}
@media (max-width: 599px) {
  .intro__left {
    width: 100%;
  }
}
.intro__left .font-subtitle {
  color: #EC6104;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  top: 60px;
  left: 5%;
}
@media (max-width: 1024px) {
  .intro__left .font-subtitle {
    top: 100px;
    left: 0;
  }
}
@media (max-width: 599px) {
  .intro__left .font-subtitle {
    line-height: 1;
    top: -20px;
  }
}
.intro__left img {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) {
  .intro__left img {
    width: 300px;
    height: 200px;
  }
}
@media (max-width: 599px) {
  .intro__left img {
    position: relative;
    margin: 0 0 0 auto;
    margin-right: calc(50% - 50vw);
    top: -80px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 360px;
    height: 230px;
  }
}
.intro__right {
  width: 40%;
  position: relative;
}
@media (max-width: 599px) {
  .intro__right {
    width: 100%;
  }
}
.intro__right h4,
.intro__right h3 {
  color: #254E35;
  letter-spacing: 1.5px;
}
.intro__right .mission-txt {
  line-height: 2.6;
}
.intro__right .button {
  position: absolute;
  right: 50px;
}

/*== 波紋がふわっと広がる */
.btnripple3 {
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  display: inline-block;
  text-decoration: none;
  color: #254E35;
  outline: none;
}

/*波形の設定*/
.btnripple3:hover::before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: 30%;
  top: 0;
  /*波形の形状*/
  border: 1px solid #EC6104;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*アニメーションの設定*/
  animation: 1s circleanime2 forwards;
}

/*波形が広がるアニメーション*/
@keyframes circleanime2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*矢印の設定*/
.btnripple3::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 40%;
  right: -20px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #254E35;
  border-right: 1px solid #254E35;
  transform: rotate(45deg);
}

/* 
----------------------------------------------------------------------
service */
.service__title {
  justify-content: space-between;
}
.service__title__left {
  width: 50%;
}
.service__title__left h2 {
  line-height: 1;
  color: #254E35;
  margin-bottom: 8px;
}
.service__title__left h4 {
  color: #254E35;
}
.service__title__right {
  width: 48%;
  margin-top: 50px;
}
@media (max-width: 599px) {
  .service__title__right {
    width: 100%;
    margin-bottom: 60px;
  }
}
.service__title__right h3 {
  color: #254E35;
}
.service__title__right p {
  line-height: 2;
}
.service__content {
  justify-content: space-between;
}
.service__content__left {
  width: 50%;
  position: relative;
}
@media (max-width: 1500px) {
  .service__content__left {
    height: 850px;
  }
}
@media (max-width: 900px) {
  .service__content__left {
    height: 810px;
  }
}
@media (max-width: 599px) {
  .service__content__left {
    width: 100%;
    height: 350px;
  }
}
.service__content__left .service-large {
  margin-left: calc(100% - 50vw);
  width: 750px;
  height: 880px;
  position: relative;
}
@media (max-width: 1500px) {
  .service__content__left .service-large {
    width: 100%;
    height: 750px;
  }
}
@media (max-width: 1024px) {
  .service__content__left .service-large {
    height: 650px;
  }
}
@media (max-width: 900px) {
  .service__content__left .service-large {
    height: 550px;
  }
}
@media (max-width: 599px) {
  .service__content__left .service-large {
    margin-left: unset;
    width: 90%;
    height: 250px;
  }
}
.service__content__left .service-large .change_img01 {
  position: absolute;
  top: 0;
}
.service__content__left .service-large img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s;
}
.service__content__left .service-small img {
  position: absolute;
  right: 0;
  bottom: -150px;
  width: 400px;
  height: 290px;
  transition: all 1s;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 1500px) {
  .service__content__left .service-small img {
    bottom: -50px;
  }
}
@media (max-width: 1024px) {
  .service__content__left .service-small img {
    bottom: 50px;
  }
}
@media (max-width: 900px) {
  .service__content__left .service-small img {
    bottom: 150px;
    width: 300px;
    height: 200px;
  }
}
@media (max-width: 599px) {
  .service__content__left .service-small img {
    right: -5%;
    bottom: 0;
    width: 200px;
    height: 140px;
  }
}
.service__content__right {
  width: 48%;
  margin-top: 120px;
}
@media (max-width: 599px) {
  .service__content__right {
    width: 100%;
    margin-top: 50px;
  }
}
.service .on-img {
  opacity: 0;
  transition: all 1s;
}

/* ホバーアコーディオン */
.details {
  border-top: 1px solid #707070;
}
.details:last-of-type {
  border-bottom: 1px solid #707070;
}

.details-summary {
  position: relative;
  display: block;
  padding: 40px;
  font-weight: bold;
}
.details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}
.details-summary::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 45%;
  right: 40px;
  /*矢印の形状*/
  width: 10px;
  height: 10px;
  border-top: 2px solid #254E35;
  border-right: 2px solid #254E35;
  transform: rotate(45deg);
}

.details-summary::-webkit-details-marker {
  display: none;
}

.details-content {
  padding: 20px;
}
.details-content li {
  margin: 0 0 20px 60px;
  text-align: left;
}
.details-content a {
  color: #707070;
}
.details-content .button {
  text-align: right;
  margin-top: 50px;
}
.details-content .button a {
  color: #254E35;
}

.change_img01 {
  transition: all 3s;
}

/* 
----------------------------------------------------------------------
particle-bg */
.bg-special {
  position: relative;
  background: #F4F4F4;
  z-index: 0;
}
.bg-special::before {
  content: "";
  background: radial-gradient(circle closest-side at 20% 1400px, #bcd5c6 0% 10%, transparent 80% 80%);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.bg-special::after {
  content: "";
  background: radial-gradient(circle closest-side at 70% 300px, #ffd8be 0% 10%, transparent 80% 80%);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#particles-js {
  position: absolute; /*描画固定*/
  z-index: 1; /*描画を一番下に*/
  width: 100%;
  top: 200px;
  height: 1800px;
}

canvas {
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: repeat;
}

.bg-wrapper {
  position: relative; /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  z-index: 2; /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
  width: 100%;
  height: 100%;
}

/* 
----------------------------------------------------------------------
strength */
.strength {
  background: #F4F4F4;
  position: relative;
  z-index: 0;
}
.strength .flex {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.strength__left {
  width: 45%;
  height: 700px;
}
.strength__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 599px) {
  .strength__left {
    width: 100vw;
    height: 300px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 50px;
  }
}
.strength__right {
  width: 45%;
}
@media (max-width: 599px) {
  .strength__right {
    width: 100%;
  }
}
.strength__right h2 {
  color: #254E35;
  line-height: 1;
  margin-bottom: 8px;
}
.strength__right h4 {
  color: #254E35;
}
.strength__right .strength-content ul {
  padding: 0;
}
.strength__right .strength-content ul li {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.strength__right .strength-content ul li span {
  color: #254E35;
  margin-right: 30px;
}
.strength__right .button {
  text-align: right;
}
@media (max-width: 1024px) {
  .strength__right .button {
    margin-right: 7%;
  }
}

/* loop-letter */
.loop-wrapper {
  overflow: hidden;
  position: relative;
  width: 110%;
  margin-inline: auto;
  font-size: 230px;
  color: #F4F4F4;
  text-shadow: 2px 2px 0 #254E35, -2px -2px 0 #254E35, -2px 2px 0 #254E35, 2px -2px 0 #254E35, 2px 0 2px #254E35, -2px 0 2px #254E35, 0 2px 2px #254E35, 0 -2px 2px #254E35;
  letter-spacing: 10px;
  top: -130px;
}
@media (max-width: 1450px) {
  .loop-wrapper {
    width: 150%;
  }
}
@media (max-width: 1024px) {
  .loop-wrapper {
    font-size: 170px;
  }
}
@media (max-width: 800px) {
  .loop-wrapper {
    font-size: 120px;
    top: 0;
  }
}
@media (max-width: 599px) {
  .loop-wrapper {
    font-size: 100px;
    text-shadow: 1px 1px 0 #254E35, -1px -1px 0 #254E35, -1px 1px 0 #254E35, 1px -1px 0 #254E35, 1px 0 1px #254E35, -1px 0 1px #254E35, 0 1px 1px #254E35, 0 -1px 1px #254E35;
    width: 220%;
    position: relative;
    top: 20px;
  }
}

.loop {
  animation: loop 30s linear infinite;
  width: 100%;
}
@media (max-width: 599px) {
  .loop {
    white-space: nowrap;
  }
}

.loop2 {
  position: absolute;
  top: 0;
  left: 0;
  animation: loop 30s -15s linear infinite;
}
@media (max-width: 599px) {
  .loop2 {
    white-space: nowrap;
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* 
----------------------------------------------------------------------
innovation */
.innovation {
  background: #254E35;
  padding-top: 80px !important;
  color: white;
  text-align: center;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  .innovation {
    padding-top: 200px !important;
  }
}
.innovation h2 {
  line-height: 1;
  letter-spacing: 3px;
  position: relative;
  top: 27px;
  z-index: 2;
}
@media (max-width: 599px) {
  .innovation h2 {
    font-size: 32px;
    top: 16px;
  }
}
.innovation h2 span {
  color: #EC6104;
}
.innovation .wakayama-shape {
  width: 300px;
  position: absolute;
  top: -50px;
  right: 17%;
  z-index: 1;
}
@media (max-width: 960px) {
  .innovation .wakayama-shape {
    width: 200px;
    top: -30px;
  }
}
@media (max-width: 599px) {
  .innovation .wakayama-shape {
    right: 5%;
    width: 150px;
    top: -40px;
  }
}
.innovation .slide-show {
  width: 100vw;
}
.innovation .slide-show .slide-show-img {
  width: 640px;
  height: 420px;
  margin-right: 50px;
}
@media (max-width: 599px) {
  .innovation .slide-show .slide-show-img {
    width: 70vw;
    height: auto;
    margin-right: 40px;
  }
}
.innovation .slide-show .slide-show-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.innovation h3 br {
  display: none;
}
@media (max-width: 599px) {
  .innovation h3 br {
    display: block;
  }
}
.innovation h3 span {
  color: #EC6104;
}
.innovation .innovation-txt {
  width: 50%;
  margin: 0 auto;
  line-height: 1.8;
}
@media (max-width: 599px) {
  .innovation .innovation-txt {
    width: 80%;
  }
}
.innovation .button a {
  color: white;
}
.innovation .button .btnripple3::after {
  border-top: 1px solid white;
  border-right: 1px solid white;
}

/* 
----------------------------------------------------------------------
footer */
.footer {
  background: #E55C00;
  color: white;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 599px) {
  .footer {
    padding: 50px 0;
  }
}
.footer img {
  width: 300px;
  height: 50px;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .footer img {
    margin: 0 auto 50px;
    width: 250px;
  }
}
.footer .flex {
  justify-content: space-between;
}
.footer .flex ul {
  padding: 0;
}
.footer .flex a {
  color: white;
}
@media (max-width: 860px) {
  .footer__left {
    margin-bottom: 50px;
  }
}
.footer__right {
  justify-content: space-between;
}
@media (max-width: 599px) {
  .footer__right {
    flex-direction: row;
    justify-content: space-around;
  }
}
.footer__right .fr-1 li {
  margin-right: 80px;
}
@media (max-width: 599px) {
  .footer__right .fr-1 li {
    margin-right: 0;
  }
}
.footer .copyright {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

/* 
----------------------------------------------------------------------
scroll-show */
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 2s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* 
----------------------------------------------------------------------
トップ戻るボタン */
.back-to-top {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 5%;
  bottom: 5%;
  color: #fff;
  padding: 2rem;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.5s;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: #333;
  border-radius: 50%;
  z-index: -1;
}

/* 
----------------------------------------------------------------------
header */
.font-grey nav ul li a {
  color: #707070;
}
.font-grey nav ul li.has-child::before {
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
}

.font-grey + .openbtn1 span {
  background-color: #254E35;
}

/* 
----------------------------------------------------------------------
page-top */
.bg-page {
  background-size: cover;
  background-position: center center;
  height: 85vh;
}
@media (max-width: 599px) {
  .bg-page {
    height: 55vh;
  }
}

.bg-about1 {
  background-image: url(../images/about/about-1.webp);
}

.page-top__title {
  margin-top: 40px;
}
@media (max-width: 599px) {
  .page-top__title {
    margin-top: 20px;
  }
}
.page-top__title h4 {
  position: relative;
  display: inline-block;
}
.page-top__title h4::after {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  right: -90px;
  top: calc(50% - 1px);
}
.page-top__title.title-color h4::after {
  background-color: #254E35;
}

/* 
----------------------------------------------------------------------
rinen */
.rinen .rinen-content {
  text-align: center;
}
.rinen .rinen-content h3 {
  color: #254E35;
}
.rinen .mission__left {
  width: 66%;
}
@media (max-width: 960px) {
  .rinen .mission__left {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .rinen .mission__left {
    font-size: 22px;
  }
}
.rinen .mission__left span {
  position: relative;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  display: inline-block;
  background: #254E35;
}
@media (max-width: 599px) {
  .rinen .mission__left span {
    padding: 5px 10px;
  }
}
.rinen .mission__right {
  width: 36%;
  margin-left: auto;
}
@media (max-width: 960px) {
  .rinen .mission__right {
    width: 60%;
    margin-top: 30px;
  }
}
@media (max-width: 599px) {
  .rinen .mission__right {
    width: 95%;
    margin-left: 0;
    margin-right: auto;
  }
}
.rinen .value .bg-about2 {
  background-image: url(../images/about/about-2.webp);
}
.rinen .value__content {
  width: 45%;
  background-color: white;
  padding: 50px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  bottom: 220px;
}
@media (max-width: 960px) {
  .rinen .value__content {
    width: 60%;
  }
}
@media (max-width: 599px) {
  .rinen .value__content {
    width: 90%;
    padding: 40px 25px;
    position: static;
    margin: -150px auto 60px;
  }
}
.rinen .value__content p {
  line-height: 1.6;
  letter-spacing: 3px;
}
.rinen .credo__content {
  width: 75%;
  margin: 0 0 0 auto;
  justify-content: space-between;
}
@media (max-width: 860px) {
  .rinen .credo__content {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .rinen .credo__content {
    width: 100%;
    margin-top: 40px;
  }
}
.rinen .credo__content .credo-one {
  width: 40%;
  background: rgba(37, 78, 53, 0.7);
  color: white;
  border-radius: 30px;
  padding: 3% 5%;
}
@media (max-width: 1200px) {
  .rinen .credo__content .credo-one {
    width: 45%;
  }
}
@media (max-width: 700px) {
  .rinen .credo__content .credo-one {
    width: 48%;
  }
}
@media (max-width: 599px) {
  .rinen .credo__content .credo-one {
    width: 85%;
    margin: 0 auto;
    padding: 8% 12% 5%;
  }
}
.rinen .credo__content .credo-one .credo-number {
  text-align: right;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .rinen .credo__content .credo-one .credo-number {
    margin-bottom: 20px;
  }
}
.rinen .credo__content .credo-one .credo-title {
  font-weight: bold;
  border-bottom: 1px solid white;
  padding-bottom: 40px;
}
@media (max-width: 599px) {
  .rinen .credo__content .credo-one .credo-title {
    padding-bottom: 20px;
  }
}
.rinen .credo__content .credo-one .credo-txt {
  margin: 40px 0 40px;
}
@media (max-width: 599px) {
  .rinen .credo__content .credo-one .credo-txt {
    margin-top: 20px;
  }
}
.rinen .credo__content .credo-down {
  position: relative;
  top: 90px;
}
@media (max-width: 599px) {
  .rinen .credo__content .credo-down {
    position: unset;
  }
}

/* 
----------------------------------------------------------------------
message */
.message {
  background: #254E35;
  color: white;
  padding: 12% 0;
}
@media (max-width: 599px) {
  .message {
    padding: 16% 0;
  }
}
.message__content {
  justify-content: space-between;
}
@media (max-width: 599px) {
  .message__content {
    flex-direction: column-reverse;
  }
}
.message__content .message-txt {
  width: 50%;
}
@media (max-width: 599px) {
  .message__content .message-txt {
    width: 100%;
  }
}
.message__content .message-txt .name {
  text-align: right;
}
.message__content .message-img {
  width: 40%;
}
@media (max-width: 599px) {
  .message__content .message-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.message__content .message-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-about3 {
  background-image: url(../images/about/about-4.webp);
  height: 70vh;
}
@media (max-width: 599px) {
  .bg-about3 {
    height: 40vh;
  }
}

/* 
----------------------------------------------------------------------
strength */
.about-strength__title {
  text-align: right;
}
.about-strength__content .about-strength-one {
  position: relative;
  margin-bottom: 200px;
}
@media (max-width: 599px) {
  .about-strength__content .about-strength-one {
    margin-bottom: 40px;
  }
}
.about-strength__content .about-strength-one .about-strength-img {
  width: 45%;
}
@media (max-width: 960px) {
  .about-strength__content .about-strength-one .about-strength-img {
    width: 55%;
  }
}
@media (max-width: 720px) {
  .about-strength__content .about-strength-one .about-strength-img {
    margin-bottom: 230px;
  }
}
@media (max-width: 599px) {
  .about-strength__content .about-strength-one .about-strength-img {
    width: 100%;
    margin-bottom: 25px !important;
  }
}
.about-strength__content .about-strength-one .about-strength-img.img-reverse {
  margin: 0 0 0 auto;
}
.about-strength__content .about-strength-one .about-strength-txt {
  width: 65%;
  background: white;
  padding: 4% 6%;
  position: absolute;
  top: 200px;
  right: 0;
}
@media (max-width: 960px) {
  .about-strength__content .about-strength-one .about-strength-txt {
    width: 75%;
    top: 150px;
  }
}
@media (max-width: 599px) {
  .about-strength__content .about-strength-one .about-strength-txt {
    position: unset;
    width: 100%;
    padding: 0;
  }
}
.about-strength__content .about-strength-one .about-strength-txt .about-strength-title {
  font-weight: bold;
}
.about-strength__content .about-strength-one .about-strength-txt.txt-reverse {
  right: auto;
  left: 0;
  top: 150px;
}
@media (max-width: 599px) {
  .about-strength__content .about-strength-one .about-strength-txt.txt-reverse {
    padding: 0;
  }
}
@media (max-width: 720px) {
  .about-strength__content .about-strength-one:nth-of-type(2) .about-strength-img {
    margin-bottom: 280px;
  }
}

.page-fixbg {
  width: 100vw;
}
.page-fixbg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  background-image: url(../images/page-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
}

.bg-default {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 599px) {
  /* Safari */
  _::-webkit-full-page-media,
  _:future,
  :root .bg-default {
    background-attachment: scroll;
  }
}
/* 
----------------------------------------------------------------------
page-top */
.bg-company1 {
  background-image: url(../images/company/company-1.webp);
}

.title-color2 h4::after {
  background-color: #EC6104;
}

/* 
----------------------------------------------------------------------
company */
.company__content {
  width: 75%;
  margin: 0 0 0 auto;
}
@media (max-width: 960px) {
  .company__content {
    width: 85%;
  }
}
@media (max-width: 599px) {
  .company__content {
    width: 95%;
  }
}
.company__content .info-one {
  position: relative;
}
.company__content .info-one::after {
  content: "";
  background-color: #707070;
  width: 100%;
  height: 0.5px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.company__content .info-one td {
  padding: 30px 0;
}
@media (max-width: 599px) {
  .company__content .info-one td {
    display: block;
    padding: 0;
  }
  .company__content .info-one td.label2 {
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .company__content .info-one td.label2 {
    margin-bottom: 20px;
  }
}
.company__content .info-one td.label {
  width: 25%;
}
@media (max-width: 599px) {
  .company__content .info-one td.label {
    margin: 20px 0 10px;
    width: 100%;
  }
}

/* 
----------------------------------------------------------------------
access */
.access {
  background-color: #EC6104;
  padding: 10% 0 15%;
  color: white;
}
@media (max-width: 599px) {
  .access {
    padding-bottom: 25%;
  }
}
.access__content .flex {
  justify-content: space-around;
  align-items: center;
}
.access__content .flex .access-txt {
  width: 40%;
}
@media (max-width: 599px) {
  .access__content .flex .access-txt {
    width: 100%;
    margin-bottom: 30px;
  }
}
.access__content .flex .access-txt .mb-sm {
  font-weight: bold;
}
.access__content .flex .access-map {
  width: 50%;
  z-index: 1;
}
@media (max-width: 599px) {
  .access__content .flex .access-map {
    width: 100%;
  }
  .access__content .flex .access-map iframe {
    height: 250px;
  }
}
.access__content .access-wakayama {
  position: relative;
  z-index: 0;
}
.access__content .access-wakayama::before {
  content: "";
  background: #ffbf80;
  width: 40%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 20%;
}
@media (max-width: 599px) {
  .access__content .access-wakayama::before {
    width: 70%;
    height: 50%;
    top: unset;
    bottom: -40px;
  }
}
.access__content .access-tokyo {
  position: relative;
  z-index: 0;
}
.access__content .access-tokyo::before {
  content: "";
  background: #ffbf80;
  width: 40%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 20%;
}
@media (max-width: 599px) {
  .access__content .access-tokyo::before {
    width: 70%;
    height: 50%;
    top: unset;
    bottom: -40px;
  }
}

.bg-company2 {
  background-image: url(../images/company/company-2.webp);
  height: 70vh;
  background-attachment: fixed;
}
@media (max-width: 599px) {
  .bg-company2 {
    height: 35vh;
  }
}

/* 
----------------------------------------------------------------------
authorization */
.authorization__content {
  justify-content: space-around;
}
.authorization__content .auth-one1 {
  width: 80%;
  justify-content: space-around;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .authorization__content .auth-one1 {
    width: 100%;
    text-align: center;
  }
}
.authorization__content .auth-one1 .auth-img {
  width: 25%;
}
@media (max-width: 599px) {
  .authorization__content .auth-one1 .auth-img {
    width: 40%;
    margin: 0 auto 20px;
  }
}
.authorization__content .auth-one1 .auth-txt {
  width: 70%;
}
@media (max-width: 599px) {
  .authorization__content .auth-one1 .auth-txt {
    width: 100%;
  }
}
.authorization__content .auth-one1 .auth-txt .auth-title {
  border-bottom: 0.5px solid #707070;
  font-weight: bold;
}
.authorization__content .auth-one2 {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .authorization__content .auth-one2 {
    text-align: center;
  }
}
.authorization__content .auth-one2 .auth-title {
  border-bottom: 0.5px solid #707070;
  font-weight: bold;
}
@media (max-width: 599px) {
  .authorization__content .auth-one3 {
    text-align: center;
  }
}
.authorization__content .auth-one3 .auth-title {
  border-bottom: 0.5px solid #707070;
  font-weight: bold;
}

/* 
----------------------------------------------------------------------
page-top */
.bg-security1 {
  background-image: url(../images/security/security-1.webp);
}

.title-color h4::after {
  background-color: #254E35;
}

.sp-height {
  line-height: 1;
  margin-bottom: 20px;
}

/* 
----------------------------------------------------------------------
security */
.security-txt {
  width: 80%;
  margin: 0 auto;
  line-height: 1.8;
}

.security-name {
  text-align: right;
}

.bg-security2 {
  background-image: url(../images/security/security-2.webp);
  height: 70vh;
  background-attachment: fixed;
}
@media (max-width: 599px) {
  .bg-security2 {
    height: 35vh;
  }
}

/* 
----------------------------------------------------------------------
page-top */
.bg-privacy1 {
  background-image: url(../images/privacy/privacy-1.webp);
}

/* 
----------------------------------------------------------------------
page-top */
.bg-contact1 {
  background-image: url(../images/contact/contact-1.webp);
}

/* 
----------------------------------------------------------------------
contact */
.contact__content .content-width {
  text-align: center;
  background-color: #F4F4F4;
  padding: 5%;
}
.contact__content .content-width .font-title {
  position: relative;
  top: -120px;
}
@media (max-width: 1024px) {
  .contact__content .content-width .font-title {
    top: -80px;
  }
}
@media (max-width: 599px) {
  .contact__content .content-width .font-title {
    top: -60px;
  }
}
.contact__content .content-width .font-title::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
}
@media (max-width: 599px) {
  .contact__content .content-width .font-title::after {
    font-size: 16px;
    width: 100vw;
  }
}
.contact__content .content-width .font-title.tel-title::after {
  content: "お電話でのお問い合わせ";
}
.contact__content .content-width .font-title.form-title::after {
  content: "お問い合わせフォーム";
}
.contact__content .content-width .tel-txt {
  position: relative;
  bottom: 40px;
}
@media (max-width: 1024px) {
  .contact__content .content-width .tel-txt {
    bottom: 20px;
  }
}
.contact__content .content-width .tel-txt .font-lg {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.contact__content .content-width .tel-txt .font-lg::before {
  content: "";
  background: url(../images/contact/phone-solid.svg);
  position: absolute;
  left: -37px;
  top: 14px;
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .contact__content .content-width .tel-txt .font-lg::before {
    top: 8px;
  }
}
@media (max-width: 599px) {
  .contact__content .content-width .tel-txt .font-lg::before {
    left: -32px;
  }
}
.contact__content .content-width .tel-txt br {
  display: none;
}
@media (max-width: 599px) {
  .contact__content .content-width .tel-txt br {
    display: block;
  }
}
.contact__content .content-width .form-txt {
  width: 80%;
  margin: 0 auto;
}
.contact__content .content-width .form-container {
  width: 100%;
  height: 2450px;
  overflow-y: hidden;
}
.contact__content .content-width .form-container iframe {
  height: 2450px;
  border: none;
  margin-top: -160px;
}
@media (max-width: 599px) {
  .contact__content .content-width .form-container iframe {
    margin-top: -120px;
  }
}

.bg-contact2 {
  background-image: url(../images/contact/contact-2.webp);
  height: 70vh;
  background-attachment: fixed;
}
@media (max-width: 599px) {
  .bg-contact2 {
    height: 35vh;
  }
}

/* 
----------------------------------------------------------------------
page-top */
.bg-servicem1 {
  background-image: url(../images/service-m/servicem-1.webp);
}

/* 
----------------------------------------------------------------------
service-medical */
.servicem__title {
  font-weight: bold;
}
@media (max-width: 599px) {
  .servicem__title {
    line-height: 1;
    letter-spacing: 2px;
  }
  .servicem__title .font-lr {
    margin-bottom: 15px;
  }
}
.servicem__title span {
  color: #254E35;
}
.servicem__title .servicem-txt {
  width: 37%;
  margin: 0 0 0 auto;
  letter-spacing: 3px;
}
@media (max-width: 599px) {
  .servicem__title .servicem-txt {
    width: 90%;
    margin: 30px auto 0 0;
    line-height: 1.3;
    letter-spacing: 2px;
  }
}

/* 
----------------------------------------------------------------------
Feature */
.feature {
  padding: 10% 0;
  background-color: #EC6104;
  color: white;
  text-align: center;
}
@media (max-width: 599px) {
  .feature {
    padding: 15% 0;
  }
}
.feature__content {
  justify-content: space-between;
}
.feature__content .feature-one {
  width: 50%;
  padding: 5%;
  border: 1px solid white;
}
@media (max-width: 599px) {
  .feature__content .feature-one {
    width: 100%;
  }
}
.feature__content .feature-one .feature-num {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.feature__content .feature-one .feature-num::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
}
.feature__content .feature-one img {
  margin: 0 auto;
}
.feature__content .feature-one .feature-title {
  font-weight: bold;
}
.feature__content .feature-one.bl-none {
  border-left: none !important;
}
@media (max-width: 599px) {
  .feature__content .feature-one.bl-none {
    border-left: 1px solid white !important;
    border-top: none !important;
  }
}
.feature__content .feature-one.bt-none {
  border-top: none !important;
}

.bg-servicem2 {
  background-image: url(../images/service-m/servicem-2.webp);
  height: 70vh;
  background-attachment: fixed;
}
@media (max-width: 599px) {
  .bg-servicem2 {
    height: 35vh;
  }
}

.network-content .system-img {
  width: 100%;
  height: 70vh;
}
@media (max-width: 599px) {
  .network-content .system-img {
    height: 40vh;
  }
}
.network-content .system-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.network-content .system-flow {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  padding: 120px 0;
  background-color: #F4F4F4;
}
@media (max-width: 599px) {
  .network-content .system-flow {
    width: 100%;
    padding: 60px 0;
  }
}
.network-content .system-flow .flow-content {
  width: 390px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 599px) {
  .network-content .system-flow .flow-content {
    width: 240px;
  }
}
.network-content .system-flow .flow-content::before {
  content: "";
  width: 4px;
  height: 90%;
  background-color: #EC6104;
  position: absolute;
  top: 50%;
  left: 140px;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .network-content .system-flow .flow-content::before {
    left: 80px;
  }
}
.network-content .system-flow .flow-content-one {
  display: flex;
  gap: 120px;
}
@media (max-width: 599px) {
  .network-content .system-flow .flow-content-one {
    gap: 40px;
  }
}
.network-content .system-flow .flow-content-one .flow-img {
  width: 80px;
  height: 80px;
  position: relative;
}
@media (max-width: 599px) {
  .network-content .system-flow .flow-content-one .flow-img {
    width: 60px;
    height: 60px;
  }
}
.network-content .system-flow .flow-content-one .flow-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.network-content .system-flow .flow-content-one .flow-img::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #EC6104;
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .network-content .system-flow .flow-content-one .flow-img::after {
    width: 12px;
    height: 12px;
    right: -28px;
    top: 60%;
  }
}
.network-content .system-flow .flow-content-one p {
  line-height: 80px;
  font-weight: bold;
}

/* 
----------------------------------------------------------------------
page-top */
.bg-servicei1 {
  background-image: url(../images/service-i/sevicei-1.webp);
}

/* 
----------------------------------------------------------------------
service-infra */
.service-i span {
  color: #EC6104;
}
.service-i .servicem-txt {
  margin-top: 60px;
}
@media (max-width: 599px) {
  .service-i .servicem-txt {
    margin-top: 30px;
  }
}

.servicei-strength {
  background-image: url(../images/service-i/sevicei-2.webp);
  position: relative;
  z-index: 0;
  pointer-events: none;
}
.servicei-strength:hover::after {
  background-color: rgba(0, 0, 0, 0);
}
.servicei-strength::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s;
}
.servicei-strength .strength-title {
  color: white;
  position: absolute;
  top: -30px;
}
@media (max-width: 599px) {
  .servicei-strength .strength-title {
    top: -25px;
    font-size: 20px !important;
  }
}
.servicei-strength .strength-title p {
  padding: 1% 3%;
  background-color: #254E35;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 2.5px;
  margin-bottom: 10px !important;
}
.servicei-strength .strength-title p:last-child {
  width: 107%;
}
.servicei-strength .strength-arrow {
  color: white;
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 200px;
  height: 200px;
  border: 1px solid white;
  border-radius: 50%;
  text-align: center;
  padding-top: 130px;
  transition: transform 0.6s;
  pointer-events: auto;
}
@media (max-width: 599px) {
  .servicei-strength .strength-arrow {
    width: 150px;
    height: 150px;
    padding-top: 96px;
  }
}
.servicei-strength .strength-arrow .arrow {
  position: relative;
}
.servicei-strength .strength-arrow .arrow::before {
  content: "";
  width: 40px;
  height: 40px;
  border: 0;
  border-top: solid 4px white;
  border-right: solid 4px white;
  position: absolute;
  top: 0;
  left: 14%;
  margin-top: -70px;
  transform: rotate(45deg);
}
@media (max-width: 599px) {
  .servicei-strength .strength-arrow .arrow::before {
    width: 30px;
    height: 30px;
    top: 20px;
    left: 20%;
  }
}
.servicei-strength .strength-arrow:hover {
  transform: scale(1.3);
}

/* 
----------------------------------------------------------------------
feature */
.servicei-feature {
  background-color: #254E35;
}

.bg-servicei2 {
  background-image: url(../images/service-i/sevicei-3.webp);
  height: 70vh;
  background-attachment: fixed;
}
@media (max-width: 599px) {
  .bg-servicei2 {
    height: 35vh;
  }
}

/* 
----------------------------------------------------------------------
service */
.service-list {
  margin-left: 25%;
}
@media (max-width: 599px) {
  .service-list {
    margin-left: 0;
  }
}

.service-list-item {
  padding: 40px 64px 40px;
  border-bottom: 0.5px solid #707070;
}
@media (max-width: 599px) {
  .service-list-item {
    padding: 24px 40px 24px;
  }
}
.service-list-item:first-child {
  border-top: 0.5px solid #707070;
}
.service-list-item .button {
  text-align: right;
}
.service-list-item a {
  color: #707070;
}

/* 
----------------------------------------------------------------------
delete */
@media (max-width: 599px) {
  .delete-solution {
    margin-bottom: 50px !important;
  }
}
.delete-solution .content-width {
  padding: 5%;
  text-align: center;
  background-color: #254E35;
  border-radius: 30px;
}
@media (max-width: 599px) {
  .delete-solution .content-width {
    padding: 10% 5% 1%;
  }
}
.delete-solution__title h2 {
  color: white;
}
@media (max-width: 599px) {
  .delete-solution__title h2 {
    line-height: 1;
    margin-bottom: 20px;
  }
}
.delete-solution__title h4 {
  padding: 1% 5%;
  background-color: white;
  display: inline-block;
}
@media (max-width: 599px) {
  .delete-solution__title h4 {
    margin-bottom: 10px;
  }
}
.delete-solution__content {
  justify-content: space-between;
}
.delete-solution__content .solution-one {
  width: 48%;
  padding: 8% 5% 5%;
  background-color: white;
  border-radius: 25px;
  position: relative;
}
@media (max-width: 599px) {
  .delete-solution__content .solution-one {
    width: 100%;
    margin-bottom: 30px;
    padding: 13% 6% 8%;
  }
  .delete-solution__content .solution-one:last-child {
    margin-bottom: 0;
  }
}
.delete-solution__content .solution-one::before {
  position: absolute;
  font-size: 40px;
  left: 50%;
  top: 6%;
  transform: translate(-50%);
  opacity: 0.3;
}
@media (max-width: 599px) {
  .delete-solution__content .solution-one::before {
    top: 1%;
  }
}
.delete-solution__content .solution-one.number1::before {
  content: "01";
}
.delete-solution__content .solution-one.number2::before {
  content: "02";
}
.delete-solution__content .solution-one.numberA::before {
  content: "A";
  top: 4%;
}
@media (max-width: 599px) {
  .delete-solution__content .solution-one.numberA::before {
    top: 1%;
  }
}
.delete-solution__content .solution-one.numberB::before {
  content: "B";
  top: 4%;
}
@media (max-width: 599px) {
  .delete-solution__content .solution-one.numberB::before {
    top: 1%;
  }
}
.delete-solution__content .solution-one .solution-title {
  font-weight: bold;
}
.delete-solution__content .solution-one .step-flow .step {
  padding: 1% 5%;
  background-color: #254E35;
  color: white;
  display: inline-block;
}
.delete-solution__content .solution-one .step-flow .step-line {
  position: relative;
}
.delete-solution__content .solution-one .step-flow .step-line::after {
  content: "";
  background-color: #254E35;
  width: 1px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: -40px;
}
@media (max-width: 599px) {
  .delete-solution__content .solution-one .step-flow .step-line::after {
    height: 20px;
    bottom: -25px;
  }
}

.white {
  color: white;
}

/* 
----------------------------------------------------------------------
network design */
.detail-page {
  text-align: center;
}
@media (max-width: 599px) {
  .detail-page {
    margin-top: 64px;
  }
}

.detail-title {
  font-size: clamp(2rem, 1.091rem + 4.55vw, 4.5rem);
  line-height: 1.1;
}

.detail-subtitle::after {
  content: none !important;
}

.server-title {
  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
}

.detail-txt {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  line-height: 2;
}

.network-content .network-content-one {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 599px) {
  .network-content .network-content-one {
    flex-direction: column-reverse;
    margin-bottom: 0 !important;
  }
}
.network-content .network-content-one .network-content-txt {
  width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 599px) {
  .network-content .network-content-one .network-content-txt {
    width: 100%;
    text-align: center;
  }
}
.network-content .network-content-one .network-content-txt p {
  width: 80%;
  line-height: 2;
}
@media (max-width: 599px) {
  .network-content .network-content-one .network-content-txt p {
    width: 100%;
    margin-bottom: 40px;
  }
}
.network-content .network-content-one .network-content-img {
  width: 46%;
}
@media (max-width: 599px) {
  .network-content .network-content-one .network-content-img {
    width: 100%;
    margin-bottom: 40px;
  }
}

/* 
----------------------------------------------------------------------
page-top */
.bg-recruit1 {
  background-image: url(../images/recruit/recruit-1.webp);
}

/* 
----------------------------------------------------------------------
recruit */
.re-message {
  position: relative;
  z-index: 0;
}
.re-message__title {
  text-align: center;
}
.re-message .message-video {
  text-align: center;
}
@media (max-width: 599px) {
  .re-message .message-video iframe {
    width: 90%;
    height: 250px;
  }
}
.re-message::after {
  content: "";
  background-color: #254E35;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.data {
  background-color: #254E35;
}
.data__title {
  text-align: center;
}
.data__content {
  flex-wrap: wrap;
  justify-content: space-between;
}
.data__content .data-one {
  padding: 5% 0;
}
@media (max-width: 599px) {
  .data__content .data-one {
    padding: 10% 0;
  }
}
.data__content .data-one.row2 {
  width: 50%;
  text-align: center;
}
@media (max-width: 599px) {
  .data__content .data-one.row2 {
    width: 100%;
    border-left: 1px solid white;
    border-right: 1px solid white;
  }
  .data__content .data-one.row2:nth-child(2) {
    border-top: none;
  }
  .data__content .data-one.row2:nth-child(2) img {
    position: relative;
    right: 20px;
  }
}
.data__content .data-one .data-img {
  width: 60%;
  margin: 0 auto;
}
.data__content .data-one .data-img.data-img2 {
  width: 76%;
}
.data__content .data-one .data-img.data-img3 {
  width: 70%;
}
.data__content .data-one .data-img.data-img5 {
  width: 25%;
}
.data__content .data-one .data-img.data-img6 {
  width: 50%;
}
.data__content .data-one .data-img.data-img7 {
  width: 35%;
}
.data__content .data-one .data-txt.small {
  text-align: left;
  line-height: 1.2;
  font-size: 11px;
  width: 70%;
  margin: 0 auto;
}
.data__content .data-one .data-txt.font-lr {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1.4px;
}
.data__content .data-one .data-txt .font-lg {
  font-weight: bold;
}
.data__content .data-one.row3 {
  width: 33%;
  text-align: center;
}
@media (max-width: 599px) {
  .data__content .data-one.row3 {
    width: 100%;
    border-left: 1px solid white;
    border-right: 1px solid white;
  }
}
.data__content .data-one.row-center {
  width: 34%;
  text-align: center;
}
@media (max-width: 599px) {
  .data__content .data-one.row-center {
    width: 100%;
    border-left: 1px solid white;
  }
}
.data__content .data-one.border-right {
  border-right: 1px solid white;
}
.data__content .data-one.border-top {
  border-top: 1px solid white;
}
.data__content .data-one.border-left {
  border-left: 1px solid white;
}
.data__content .data-one.border-bottom {
  border-bottom: 1px solid white;
}
.data p {
  text-align: right;
}

.bg-recruit2 {
  background-image: url(../images/recruit/recruit-2.webp);
  height: 70vh;
  background-attachment: fixed;
}
@media (max-width: 599px) {
  .bg-recruit2 {
    height: 35vh;
  }
}

.point__title {
  text-align: center;
}
.point__voice {
  justify-content: space-between;
  margin: 0 auto;
  width: 80%;
  border: 1px solid #254E35;
  padding: 0 6%;
  align-items: center;
}
@media (max-width: 599px) {
  .point__voice {
    width: 100%;
    flex-direction: column-reverse !important;
    padding-bottom: 6%;
  }
}
.point__voice .point-txt {
  width: 65%;
}
@media (max-width: 599px) {
  .point__voice .point-txt {
    width: 90% !important;
  }
}
.point__voice .point-person {
  width: 30%;
}
@media (max-width: 599px) {
  .point__voice .point-person {
    width: 60%;
    margin-bottom: 25px;
  }
}
.point__voice .point-person p {
  text-align: center;
  line-height: 1.3;
}
.point__voice .point-person p:first-child {
  margin-top: 40px;
}
.point__voice.reverse {
  flex-direction: row-reverse;
}
.point__voice.reverse .point-txt {
  width: 62%;
}
.point__voice.reverse .point-person {
  width: 34%;
}
@media (max-width: 599px) {
  .point__voice.reverse .point-person {
    width: 65%;
  }
}

.re-innovation {
  position: relative;
  z-index: 0;
  margin-top: 350px;
}
@media (max-width: 1024px) {
  .re-innovation {
    margin-top: 0;
  }
}
.re-innovation .content-width {
  position: relative;
}
.re-innovation::before {
  content: "";
  background-color: #254E35;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .re-innovation::before {
    top: 90px;
    height: 105%;
  }
}
@media (max-width: 730px) {
  .re-innovation::before {
    height: 110%;
  }
}
@media (max-width: 599px) {
  .re-innovation::before {
    height: 100%;
  }
}
.re-innovation .sticky {
  width: 35%;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .re-innovation .sticky {
    position: absolute;
  }
}
.re-innovation__title {
  position: absolute;
  top: -145px;
}
@media (max-width: 1024px) {
  .re-innovation__title {
    top: 0;
    position: relative;
    margin-bottom: 80px;
  }
}
.re-innovation__title h2 {
  line-height: 1;
  letter-spacing: 2.2px;
}
@media (max-width: 599px) {
  .re-innovation__title h2 {
    margin-bottom: 60px !important;
  }
}
.re-innovation__title h3 {
  text-align: right;
}
.re-innovation__title p {
  text-align: right;
  width: 40%;
  margin: 0 0 0 auto;
}
@media (max-width: 599px) {
  .re-innovation__title p {
    width: 90%;
  }
}
.re-innovation__content .innovation-one {
  margin-bottom: 160px;
  display: flex;
}
@media (max-width: 599px) {
  .re-innovation__content .innovation-one {
    flex-direction: column;
    margin-bottom: 70px;
  }
}
.re-innovation__content .innovation-one .innovation-img {
  width: 50%;
  aspect-ratio: 16/9;
}
@media (max-width: 960px) {
  .re-innovation__content .innovation-one .innovation-img {
    width: 63%;
  }
}
@media (max-width: 599px) {
  .re-innovation__content .innovation-one .innovation-img {
    width: 100%;
    margin-bottom: 25px !important;
  }
}
.re-innovation__content .innovation-one .innovation-img.img-reverse {
  margin: 0 0 0 auto;
}
.re-innovation__content .innovation-one .innovation-img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.re-innovation__content .innovation-one .innovation-txt {
  width: 60%;
  background: #254E35;
  padding: 5%;
  position: relative;
  top: 160px;
  right: 40px;
  color: white;
}
@media (max-width: 960px) {
  .re-innovation__content .innovation-one .innovation-txt {
    width: 75%;
    top: 150px;
  }
}
@media (max-width: 599px) {
  .re-innovation__content .innovation-one .innovation-txt {
    position: unset;
    width: 100%;
    padding: 0;
  }
}
.re-innovation__content .innovation-one .innovation-txt h3 {
  position: relative;
}
.re-innovation__content .innovation-one .innovation-txt h3::before {
  font-family: "altesse-std-64pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  position: absolute;
  top: -95px;
  left: -90px;
  transform: rotate(-10deg);
}
@media (max-width: 960px) {
  .re-innovation__content .innovation-one .innovation-txt h3::before {
    font-size: 40px;
    top: -70px;
    left: -55px;
  }
}
@media (max-width: 599px) {
  .re-innovation__content .innovation-one .innovation-txt h3::before {
    top: -55vw;
    left: -10px;
  }
}
.re-innovation__content .innovation-one .innovation-txt h3.innovation1::before {
  content: "Innovation 01";
}
.re-innovation__content .innovation-one .innovation-txt h3.innovation2::before {
  content: "Innovation 02";
}
.re-innovation__content .innovation-one .innovation-txt h3.innovation3::before {
  content: "Innovation 03";
}
.re-innovation__content .innovation-one .innovation-txt.txt-reverse {
  right: auto;
  left: 0;
}
@media (max-width: 599px) {
  .re-innovation__content .innovation-one .innovation-txt.txt-reverse {
    padding: 0;
  }
}
.re-innovation__content .innovation-one:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media (max-width: 599px) {
  .re-innovation__content .innovation-one:nth-of-type(2) {
    flex-direction: column;
  }
}
.re-innovation__content .innovation-one:nth-of-type(2) .innovation-txt {
  right: auto;
  left: 80px;
}

.bg-recruit3 {
  background-image: url(../images/recruit/recruit-4.webp);
  height: 75vh;
  background-attachment: fixed;
}
@media (max-width: 599px) {
  .bg-recruit3 {
    height: 35vh;
  }
}

.join-us {
  background-image: url(../images/recruit/recruit-5.webp);
  height: 70vh;
  background-position: center center;
  position: relative;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 599px) {
  .join-us {
    height: 50vh;
    background-position: 35% center;
  }
}
.join-us:hover::after {
  background-color: rgba(0, 0, 0, 0);
}
.join-us::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s;
}
.join-us .loop-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-inline: auto;
  font-size: 180px;
  color: white;
  letter-spacing: 10px;
  top: 0;
  text-shadow: none;
  font-weight: bold;
}
@media (max-width: 599px) {
  .join-us .loop-wrapper {
    font-size: 60px;
    top: 70px;
  }
}
.join-us .loop {
  animation: loop 40s linear infinite;
  width: 1600px;
}
@media (max-width: 599px) {
  .join-us .loop {
    width: 650px;
  }
}
.join-us .loop2 {
  position: absolute;
  width: 1600px;
  top: 0;
  left: 0;
  animation: loop 40s -20s linear infinite;
}
@media (max-width: 599px) {
  .join-us .loop2 {
    width: 650px;
  }
}
.join-us .strength-arrow {
  color: white;
  position: absolute;
  bottom: 8%;
  right: 50%;
  transform: translateX(50%);
  width: 200px;
  height: 200px;
  border: 1px solid white;
  border-radius: 50%;
  text-align: center;
  padding-top: 130px;
  transition: transform 0.6s;
  pointer-events: auto;
}
@media (max-width: 599px) {
  .join-us .strength-arrow {
    width: 150px;
    height: 150px;
    padding-top: 96px;
  }
}
.join-us .strength-arrow .arrow {
  position: relative;
}
.join-us .strength-arrow .arrow::before {
  content: "";
  width: 40px;
  height: 40px;
  border: 0;
  border-top: solid 4px white;
  border-right: solid 4px white;
  position: absolute;
  top: 0;
  left: 14%;
  margin-top: -70px;
  transform: rotate(45deg);
}
@media (max-width: 599px) {
  .join-us .strength-arrow .arrow::before {
    width: 30px;
    height: 30px;
    top: 20px;
    left: 20%;
  }
}
.join-us .strength-arrow:hover {
  transform: scale(1.3) translateX(40%);
}/*# sourceMappingURL=style.css.map */