/*
 * Solution by GetTemplates.co
 * URL: https://GetTemplates.co
 */
@font-face {
  font-family: "Lato-Regular";
  src: url(../fonts/Lato-Regular.ttf);
}
@font-face {
  font-family: "Lato-Black";
  src: url(../fonts/Lato-Black.ttf);
}
@font-face {
  font-family: "Lato-Bold";
  src: url(../fonts/Lato-Bold.ttf);
}
@font-face {
  font-family: "Lato-Light";
  src: url(../fonts/Lato-Light.ttf);
}
@font-face {
  font-family: "Lato-Medium";
  src: url(../fonts/Lato-Medium.ttf);
}
@font-face {
  font-family: "Lato-Semibold";
  src: url(../fonts/Lato-Semibold.ttf);
}
@font-face {
  font-family: "OpenSans-Bold";
  src: url(../fonts/OpenSans-Bold.ttf);
}
@font-face {
  font-family: "OpenSans-Regular";
  src: url(../fonts/OpenSans-Regular.ttf);
}
@font-face {
  font-family: "OpenSans-Semibold";
  src: url(../fonts/OpenSans-Semibold.ttf);
}
p {
  font-family: "OpenSans-Regular";
  color: #666666;
  font-size: 18px;
}

body {
  overflow: hidden;
  overflow-y: auto;
  font-family: "OpenSans-Regular";
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.0rem;
  }
}


#gtco-main-nav {
  /*2023/8/19Upd padding: 20px 0;*/
}
#gtco-main-nav .navbar-brand {
  font-size: 36px;
  font-family: "Lato-Black";
  text-transform: uppercase;
  background: -webkit-linear-gradient(left, #1d3ede, #01e6f8);
  background: -ms-linear-gradient(left, #1d3ede, #01e6f8);
  background: -moz-linear-gradient(left, #1d3ede, #01e6f8);
  background: -o-linear-gradient(left, #1d3ede, #01e6f8);
  -webkit-background-clip: text;
  -ms-background-clip: text;
  -o-background-clip: text;
  -webkit-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -o-text-fill-color: transparent;
}
#gtco-main-nav .bar1, #gtco-main-nav .bar2, #gtco-main-nav .bar3 {
  width: 25px;
  height: 2px;
  /*background-color: #fff;*/
  background-color: blue;
  margin: 5px 0;
  transition: 0.4s;
  display: block;
  position: relative;
}
#gtco-main-nav .change .bar1 {
  -webkit-transform: rotate(-42deg) translate(-2px, 6px);
  transform: rotate(-42deg) translate(-2px, 6px);
}
#gtco-main-nav .change .bar2 {
  opacity: 0;
}
#gtco-main-nav .change .bar3 {
  -webkit-transform: rotate(46deg) translate(-4px, -8px);
  transform: rotate(46deg) translate(-4px, -8px);
}
/*▼2023/8/19Upd
#gtco-main-nav .navbar-nav li a {
  font-family: "OpenSans-Regular";
  font-size: 24px;
  color: #000000;
  padding: 5px 15px !important;
  text-transform: uppercase;
}
▲2023/8/19Upd*/
/*▼2023/8/19Add*/
#gtco-main-nav .navbar-nav li a {
  font-family: "OpenSans-Regular";
  font-size: 15px;
  color: #000000;
  text-align:center;
  padding: 5px 15px !important;
  text-transform: uppercase;
}
#gtco-main-nav .navbar-nav li a:hover{
  color: blue;
}
#gtco-main-nav .navbar-nav li a .menu-title {
  display: flex;
  flex-direction: column;
}
#gtco-main-nav .navbar-nav li a .menu-sub-title {
  font-size: 10px;
  display: flex;
  flex-direction: column;
}
#gtco-main-nav .navbar-nav li ul li a {
    font-size:15px;
}
.dropdown-toggle::after {
    display: none;
}
/*▲2023/8/19Add*/
#gtco-main-nav form a {
  font-family: "OpenSans-Semibold";
  font-size: 18px;
  color: #fff;
  padding: 5px 25px;
  border-radius: 20px;
  border-width: 2px;
}
#gtco-main-nav form a.btn-info {
  background: #01e6f8;
  border-color: #01e6f8;
}
#gtco-main-nav form a.btn-outline-dark {
  border-color: #fff;
  background-color: transparent;
}
@media (max-width: 991px) {
  #gtco-main-nav form a.btn-outline-dark {
    border-color: #1d3ede;
    color: #1d3ede;
  }
}
/* ▼2023/8/19Upd ヘッダ固定化のためコメントアウト
#gtco-main-nav::after {
  position: absolute;
  content: "";
  height: 600px;
  width: 900px;
  background-image: -webkit-linear-gradient(-220deg, #1d3ede, #01e6f8);
  background-image: -moz-linear-gradient(-220deg, #1d3ede, #01e6f8);
  background-image: -ms-linear-gradient(-220deg, #1d3ede, #01e6f8);
  background-image: -o-linear-gradient(-220deg, #1d3ede, #01e6f8);
  background-image: linear-gradient(-220deg, #1d3ede, #01e6f8);
  left: 49.5%;
  top: -50px;
  z-index: -1;
  border-radius: 50% 0 50% 50%;
}
@media (max-width: 1400px) {
  #gtco-main-nav::after {
    height: 550px;
    width: 800px;
  }
}
@media (max-width: 1199px) {
  #gtco-main-nav::after {
    width: 700px;
  }
}
@media (max-width: 991px) {
  #gtco-main-nav::after {
    width: 55%;
    left: auto;
    right: 0;
  }
}
@media (max-width: 600px) {
  #gtco-main-nav::after {
    width: 100%;
    height: 400px;
  }
}
#gtco-main-nav::before {
  position: absolute;
  content: "";
  height: 590px;
  width: 930px;
  background-image: -webkit-linear-gradient(to right, #e8eefc, #e6fafe);
  background-image: -moz-linear-gradient(to right, #e8eefc, #e6fafe);
  background-image: -ms-linear-gradient(to right, #e8eefc, #e6fafe);
  background-image: -o-linear-gradient(to right, #e8eefc, #e6fafe);
  background-image: linear-gradient(to right, #e8eefc, #e6fafe);
  left: 47.5%;
  top: -25px;
  z-index: -1;
  border-radius: 50% 0 50% 50%;
}
@media (max-width: 1400px) {
  #gtco-main-nav::before {
    height: 540px;
    width: 810px;
  }
}
@media (max-width: 1199px) {
  #gtco-main-nav::before {
    width: 710px;
  }
}
@media (max-width: 991px) {
  #gtco-main-nav::before {
    width: 55%;
    left: auto;
    right: 0;
  }
}
@media (max-width: 600px) {
  #gtco-main-nav::before {
    width: 100%;
    height: 390px;
  }
}
▲2023/8/19Upd ヘッダ固定化のためコメントアウト */

/*.gtco-banner-area a, .gtco-feature a, .gtco-features a, .gtco-features-list a, .gtco-contact-area a, .gtco-news .owl-carousel .card a, #gtco-footer .submit-button {*/
.gtco-banner-area a, .gtco-feature a, .gtco-features a, .gtco-features-list a, .gtco-contact-area a, #gtco-footer .submit-button,
.gtco-news-button a {
  background-image: -moz-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  background-image: -webkit-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  background-image: -ms-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  font-size: 18px;
  font-family: "OpenSans-Semibold";
  color: #fff;
  border-radius: 50px;
  padding: 5px 30px;
  display: inline-block;
  text-transform: uppercase;
  padding-right: 5px;
  text-decoration: none !important;
}
/*.gtco-banner-area a .fa, .gtco-feature a .fa, .gtco-features a .fa, .gtco-features-list a .fa, .gtco-contact-area a .fa, .gtco-news .owl-carousel .card a .fa, #gtco-footer .submit-button .fa {*/
.gtco-banner-area a .fa, .gtco-feature a .fa, .gtco-features a .fa, .gtco-features-list a .fa, .gtco-contact-area a .fa, #gtco-footer .submit-button .fa,
.gtco-news-button a .fa {
  background: #fff;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  color: #37eaf9;
  font-size: 22px;
  text-align: center;
  padding-top: 5px;
  margin-left: 15px;
}

/*
.gtco-feature h1, .gtco-features h1,
.gtco-company-outline h1, .gtco-company-history h1, .gtco-company-soshiki h1, .gtco-company-access h1,
.gtco-recruit-novice h1, .gtco-data-erasure h1 {
    font-family: "Lato-Medium";
    font-size: 36px;
    text-align: center;
    color: #333333;
    margin-bottom: 100px;
}
*/

.gtco-feature h2, .gtco-features h2, .gtco-features-list h2,
.gtco-company-outline h2, .gtco-company-history h2, .gtco-company-soshiki h2, .gtco-company-access h2,
.gtco-recruit-novice h2, .gtco-data-erasure h2,
.gtco-news h2, .gtco-margin-rate h2 {
  margin-bottom: 30px;

  font-size: 36px;
  font-family: "Lato-Black";
  text-transform: uppercase;
  background: -webkit-linear-gradient(left, #1d3ede, #01e6f8);
  background: -ms-linear-gradient(left, #1d3ede, #01e6f8);
  background: -moz-linear-gradient(left, #1d3ede, #01e6f8);
  background: -o-linear-gradient(left, #1d3ede, #01e6f8);
  -webkit-background-clip: text;
  -ms-background-clip: text;
  -o-background-clip: text;
  -webkit-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -o-text-fill-color: transparent;
}


.fh5co-heading {
  margin-bottom: 5em;
  position: relative;
  padding-left: 0px;
}
.fh5co-heading:after {
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: black;
  z-index: 0;
}
.fh5co-heading h1 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #000;
  font-family: "Sacramento", cursive;
}
.fh5co-heading h1 span {
  padding: 20px 30px;
  border: 1px solid #000;
  z-index: 8;
  position: relative;
}
.fh5co-heading h1 span:after {
  position: absolute;
  top: -10px;
  bottom: 10px;
  left: -10px;
  right: 10px;
  content: '';
  background: #e8e8e8;
  z-index: -1;
}
.fh5co-heading p {
  font-size: 18px;
  line-height: 1.5;
  color: #828282;
}

.card {
  border: none;
  background: transparent;
}

.gtco-banner-area {
  margin-top: 20px;
  /*2023/8/19Upd min-height: 500px;*/
  margin-bottom: 20px;
}
.gtco-contact-area {
  margin-top: 20px;
  min-height: 300px;
}
.gtco-banner-area h1, .gtco-contact-area h1 {
  font-family: "Lato-Light";
  font-size: 48px;
  color: #000000;
  /*2025/4/10 Del max-width: 500px;*/
  /*2023/8/26 Upd margin-top: 70px;*/
  margin-top: 30px;
  font-weight: 600;
}
.gtco-banner-area h1 span, .gtco-contact-area h1 span {
  font-family: "Lato-Medium";
}
.gtco-banner-area h2, .gtco-contact-area h2 {
  font-size: 1.8rem;
}
@media (max-width: 1199px) {
  .gtco-banner-area h1, .gtco-contact-area h1 {
    margin-top: 30px;
  }
}
.gtco-banner-area p, .gtco-contact-area p {
  max-width: 450px;
  margin: 20px 0;
  margin-bottom: 40px;
  font-size: 15px;
}
.gtco-banner-area a, .gtco-contact-area a {
  display: inline;
  padding: 10px 30px;
  padding-right: 5px;
}
.gtco-banner-area .col-md-6 .card .card-img-top {
  max-width: 430px;
  margin: 0 auto;
  margin-top: 30px;
  margin-right: 0;
}
@media (max-width: 1400px) {
  .gtco-banner-area .col-md-6 .card .card-img-top {
    max-width: 400px;
    margin-top: 20px;
    margin-right: auto;
  }
}
@media (max-width: 1199px) {
  .gtco-banner-area .col-md-6 .card .card-img-top {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .gtco-banner-area .col-md-6 .card .card-img-top {
    margin-top: 100px;
  }
}

.gtco-contact-area .col-md-6 .card .card-img-top {
  max-width: 430px;
  margin: 0 auto;
  margin-top: 30px;
  margin-right: 0;
}
@media (max-width: 1400px) {
  .gtco-contact-area .col-md-6 .card .card-img-top {
    max-width: 400px;
    margin-top: 20px;
    margin-right: auto;
  }
}
@media (max-width: 1199px) {
  .gtco-contact-area .col-md-6 .card .card-img-top {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .gtco-contact-area .col-md-6 .card .card-img-top {
    margin-top: 100px;
  }
}

.gtco-feature {
  margin-top: 100px;
}
.gtco-feature .card .back-bg {
  margin-left: -30px !important;
  margin-top: -20px;
}
.gtco-feature .card svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.gtco-feature .card svg.defs {
  position: absolute;
  width: 0;
  height: 0;
}
.gtco-feature .card .squircle {
  width: 100%;
  height: 450px;
  background: url(../images/learn-img.jpg) center/cover, #aaa;
  clip-path: url(#clip-path);
  background-position-x: -50px;
}
.gtco-feature p small {
  font-size: 16px;
}
.gtco-feature a {
  margin-top: 20px;
  display: inline-block;
}

.gtco-features {
  margin-top: 100px;
}
.gtco-features svg {
  position: absolute;
  /*2023/9/12Upd
  margin-left: -100px;
  margin-top: 100px;*/
}
@media (max-width: 767px) {
  .gtco-features svg {
    margin: 0 auto;
  /*2023/9/12Upd margin-top: 200px;*/
  }
}
.gtco-features h2 {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .gtco-features h2 {
    margin-top: 0;
  }
}
.gtco-features .col-lg-4 p {
  max-width: 320px;
  margin-bottom: 30px;
}
.gtco-features .col-lg-8 {
  padding: 10px 100px;
}
@media (max-width: 767px) {
  .gtco-features .col-lg-8 {
    padding: 10px 0;
  }
}

.gtco-features .col-lg-8 .row .col:first-child {
  margin-top: 150px;
}
@media (max-width: 600px) {
  .gtco-features .col-lg-8 .row .col:first-child {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .gtco-features .col-lg-8 .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gtco-features .col-lg-8 .card {
  background: #fff;
  margin: 30px 5px;
  padding: 20px 10px;
  border-radius: 20px;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
}
.gtco-features .col-lg-8 .card .oval {
  background: linear-gradient(to right, #f1f6fd, #f0fbfe);
  padding: 10px;
  width: 150px;
  border-radius: 50%;
  margin: auto;
  transform: rotate(20deg);
  margin-top: 20px;
}
.gtco-features .col-lg-8 .card .card-img-top {
  max-width: 0.8in;
  margin: 0 auto;
  transform: rotate(-20deg);
}
.gtco-features .col-lg-8 .card h3 {
  font-family: "Lato-Regular";
  font-size: 18px;
  color: #1d3ede;
}
.gtco-features .col-lg-8 .card p {
  font-size: 16px;
}

.gtco-numbers-block {
  margin: 100px auto;
  margin-top: 200px;
  color: #fff;
}
@media (max-width: 600px) {
  .gtco-numbers-block {
    margin-top: 100px;
  }
}
@media (max-width: 1299px) {
  .gtco-numbers-block .row {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .gtco-numbers-block .row .col-3 {
    padding: 0;
  }
}
.gtco-numbers-block #custom-map::before {
  position: absolute;
  content: "";
  height: 100px;
  width: 100%;
  border: 2px solid red;
}
.gtco-numbers-block svg {
  margin-top: -100px;
  position: absolute;
  left: 0;
  max-width: 1500px;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1299px) {
  .gtco-numbers-block svg {
    margin-top: -90px;
  }
}
@media (max-width: 1199px) {
  .gtco-numbers-block svg {
    margin-top: -60px;
  }
}
@media (max-width: 991px) {
  .gtco-numbers-block svg {
    margin-top: -40px;
  }
}
@media (max-width: 650px) {
  .gtco-numbers-block svg {
    margin-top: -20px;
  }
}
@media (max-width: 600px) {
  .gtco-numbers-block svg {
    margin-top: -10px;
  }
}
.gtco-numbers-block h5 {
  font-family: "Lato-Bold";
  font-size: 60px;
}
@media (max-width: 1299px) {
  .gtco-numbers-block h5 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .gtco-numbers-block h5 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .gtco-numbers-block h5 {
    margin: 0;
    font-size: 18px;
  }
}
.gtco-numbers-block p {
  font-family: "Lato-Semibold";
  font-size: 24px;
  color: #fff;
}
@media (max-width: 1299px) {
  .gtco-numbers-block p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .gtco-numbers-block p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .gtco-numbers-block p {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .gtco-numbers-block p {
    line-height: 1.1;
  }
}
@media (max-width: 500px) {
  .gtco-numbers-block p {
    font-size: 8px;
  }
}

.gtco-testimonials {
  position: relative;
  margin-top: 200px;
}
@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 100px;
  }
}
.gtco-testimonials h2 {
  font-family: "Lato-Medium";
  font-size: 36px;
  text-align: center;
  color: #333333;
  margin-bottom: 100px;
}
.gtco-testimonials .owl-stage-outer {
  padding-bottom: 30px;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #01e6f8;
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: #01e6f8;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.gtco-testimonials .card {
  background: #fff;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
  margin: 0 30px;
  padding: 0 20px;
  border-radius: 50px;
}
.gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 0 auto;
  border: 5px solid #1d3ede;
  width: 100px;
  height: 100px;
}
.gtco-testimonials .card h5 {
  color: #1d3ede;
  font-size: 21px;
  line-height: 1.3;
  font-family: "Lato-Medium";
}
.gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
  font-family: "OpenSans-Regular";
}
.gtco-testimonials .card p {
  font-size: 18px;
}
.gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 24px;
}
.gtco-testimonials .center h5 span {
  font-size: 20px;
}
.gtco-testimonials .center p {
  font-size: 20px;
}
.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}

.gtco-features-list {
  margin-top: 100px;
  margin-bottom: 100px;
}
.gtco-features-list .media {
  margin: 20px 0;
}
.gtco-features-list .oval {
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  padding: 15px;
  height: 60px;
  width: 60px;
}
.gtco-features-list .oval .align-self-start {
  width: 100%;
  padding: 3px;
}
.gtco-features-list .media-body {
  font-family: "OpenSans-Regular";
  font-size: 16px;
  color: #666666;
  padding-right: 20px;
}
.gtco-features-list .media-body h5 {
  font-family: "Lato-Semibold";
  margin-bottom: 20px !important;
  font-size: 22px;
  color: black;
}

.gtco-logo-area {
  margin: 50px auto;
}
.gtco-logo-area .col .img-fluid {
  max-height: 32px;
}
@media (max-width: 600px) {
  .gtco-logo-area .col {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 20px 0;
  }
}

.gtco-news {
  background: #fcfcfc;
  padding: 20px 0;
  margin: 0 auto;
}
.gtco-news h2 {
  font-size: 36px;
  font-weight: "Lato-Medium";
  text-align: center;
  margin-bottom: 0;
}
.gtco-news .owl-carousel .owl-nav {
  display: block !important;
  position: absolute;
  top: 25%;
  width: 100%;
}
@media (max-width: 600px) {
  .gtco-news .owl-carousel .owl-nav {
    display: none !important;
  }
}
.gtco-news .owl-carousel .owl-nav .owl-prev, .gtco-news .owl-carousel .owl-nav .owl-next {
  font-size: 120px;
  color: #666666;
  position: absolute;
}
.gtco-news .owl-carousel .owl-nav .owl-prev {
  left: -50px;
}
.gtco-news .owl-carousel .owl-nav .owl-next {
  right: -50px;
}
.gtco-news .owl-carousel .card {
  padding: 0 25px;
}
.gtco-news .owl-carousel .card .card-img-top {
  border-radius: 40px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
}
.gtco-news .owl-carousel .card h5 {
  font-family: "Lato-Medium";
  font-size: 22px;
  color: #333333;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .gtco-news .owl-carousel .card h5 {
    font-size: 18px;
  }
}
.gtco-news .owl-carousel .card p {
  font-size: 17px;
}
@media (max-width: 767px) {
  .gtco-news .owl-carousel .card p {
    font-size: 15px;
  }
}
.gtco-news .owl-carousel .card a {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

#gtco-footer {
  padding-bottom: 20px;
}
#gtco-footer h4 {
  font-family: "Lato-Medium";
  font-size: 24px;
  color: #1d3ede;
  /*2023/8/26 Upd margin-bottom: 30px;*/
  margin-bottom: 15px;
}
#gtco-footer input, #gtco-footer textarea {
  background-color: white;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  max-width: 700px;
  width: 100%;
  height: 60px;
  border: none;
  margin-bottom: 30px;
  padding-left: 30px;
  color: #000;
}
#gtco-footer input::-webkit-input-placeholder, #gtco-footer input::-moz-placeholder, #gtco-footer input:-ms-input-placeholder, #gtco-footer input:-moz-placeholder, #gtco-footer textarea::-webkit-input-placeholder, #gtco-footer textarea::-moz-placeholder, #gtco-footer textarea:-ms-input-placeholder, #gtco-footer textarea:-moz-placeholder {
  color: #999999;
  font-family: "OpenSans-Regular";
  font-size: 18px;
}
#gtco-footer textarea {
  min-height: 200px;
  border-radius: 30px;
  padding-top: 20px;
  padding-right: 20px;
  resize: none;
}
#gtco-footer .company-nav, #gtco-footer .services-nav {
  font-family: "OpenSans-Regular";
  font-size: 20px;
}
#gtco-footer .company-nav a, #gtco-footer .services-nav a {
  color: #666666;
  margin: 0;
  padding: 0;
}
#gtco-footer .follow-us-nav a {
  padding: 0 10px;
  color: #666666;
}
@media (max-width: 385px) {
  #gtco-footer .follow-us-nav a {
    padding-right: 0;
  }
}
#gtco-footer .follow-us-nav a .fa {
  font-size: 24px;
}
#gtco-footer .col-12 {
  margin-top: 90px;
}
#gtco-footer .col-12 p {
  font-family: "Lato-Regular";
  font-size: 18px;
  color: #999999;
}
@media (max-width: 991px) {
  #gtco-footer .col-12 {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  #gtco-footer .col-lg-6 {
    margin-bottom: 50px;
  }
}

.gtco-company-outline {
  margin-top: 100px;
}
.gtco-company-outline .card .back-bg {
  margin-left: -30px !important;
  margin-top: -20px;
}
.gtco-company-outline .card svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.gtco-company-outline .card svg.defs {
  position: absolute;
  width: 0;
  height: 0;
}
.gtco-company-outline .card .squircle {
  width: 100%;
  height: 450px;
  background: url(../images/learn-img.jpg) center/cover, #aaa;
  clip-path: url(#clip-path);
  background-position-x: -50px;
}
.gtco-company-outline p small {
  font-size: 16px;
}
.gtco-company-outline a {
  margin-top: 20px;
  display: inline-block;
}

.gtco-company-outline table {
  border-collapse: separate;
}

.gtco-company-outline td {
  font-size: 16px;
}

.gtco-company-outline td a {
  margin-top: 20px;
  display: inline-block;
  background-image: initial;
  font-size: 16px;
  font-family: "OpenSans-Semibold";
  color: #333344;
  border-radius: initial;
  padding: initial;
  display: initial;
  text-transform: initial;
  padding-right: initial;
  text-decoration: initial;
}

.gtco-company-outline .wtxt {
    color: #FFFFFF;
}

.gtco-company-outline .txt {
    color: #333344;
}

.gtco-company-history {
  margin-top: 100px;
}
.gtco-company-history .card .back-bg {
  margin-left: -30px !important;
  margin-top: -20px;
}
.gtco-company-history .card svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.gtco-company-history .card svg.defs {
  position: absolute;
  width: 0;
  height: 0;
}
.gtco-company-history .card .squircle {
  width: 100%;
  height: 450px;
  background: url(../images/learn-img.jpg) center/cover, #aaa;
  clip-path: url(#clip-path);
  background-position-x: -50px;
}
.gtco-company-history p small {
  font-size: 16px;
}
.gtco-company-history a {
  margin-top: 20px;
  display: inline-block;
}

.gtco-company-history table {
  border-collapse: separate;
}

.gtco-company-history table table {
  line-height: 0;
}

.gtco-company-history td {
  font-size: 16px;
}

.gtco-company-history td a {
  margin-top: 20px;
  display: inline-block;
  background-image: initial;
  font-size: 16px;
  font-family: "OpenSans-Semibold";
  color: #333344;
  border-radius: initial;
  padding: initial;
  display: initial;
  text-transform: initial;
  padding-right: initial;
  text-decoration: initial;
}

.gtco-company-history .wtxt {
    color: #FFFFFF;
}

.gtco-company-history .txt {
    color: #333344;
}

.gtco-company-soshiki {
  margin-top: 100px;
}

.gtco-company-access {
  margin-top: 100px;
  margin-bottom: 100px;
}

/*▼2023/8/19Add*/
.gtco-news {
  margin-bottom: 100px;
}
/*▲2023/8/19Add*/

/*▼2025/3/26Add*/
.gtco-margin-rate {
  margin-bottom: 100px;
}

.table-margin-rate {
  color:#008080;
}
/*▲2025/3/26Add*/

.contact-info {
  margin-bottom: 4em;
  padding: 0;
}
.contact-info li {
  list-style: none;
  margin: 0 0 20px 0;
  position: relative;
  padding-left: 40px;
}
.contact-info li i {
  position: absolute;
  top: .3em;
  left: 0;
  font-size: 22px;
  color: #1d42df;
}
.contact-info li a {
  color: #1d42df;
}

#map {
  height: 500px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #map {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  #map {
    height: 200px;
  }
}

.gtco-recruit-novice {
  margin-top: 100px;
}
.gtco-recruit-novice .card .back-bg {
  margin-left: -30px !important;
  margin-top: -20px;
}
.gtco-recruit-novice .card svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.gtco-recruit-novice .card svg.defs {
  position: absolute;
  width: 0;
  height: 0;
}
.gtco-recruit-novice .card .squircle {
  width: 100%;
  height: 450px;
  background: url(../images/learn-img.jpg) center/cover, #aaa;
  clip-path: url(#clip-path);
  background-position-x: -50px;
}
.gtco-recruit-novice p small {
  font-size: 16px;
}
.gtco-recruit-novice a {
  margin-top: 20px;
  display: inline-block;
}

.gtco-recruit-novice table {
  border-collapse: separate;
}

.gtco-recruit-novice td {
  font-size: 16px;
}

.gtco-recruit-novice td a {
  margin-top: 20px;
  display: inline-block;
  background-image: initial;
  font-size: 16px;
  font-family: "OpenSans-Semibold";
  color: #333344;
  border-radius: initial;
  padding: initial;
  display: initial;
  text-transform: initial;
  padding-right: initial;
  text-decoration: initial;
}

.gtco-recruit-novice .top {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
}

.gtco-recruit-novice .wtxt {
    color: #FFFFFF;
}

.gtco-recruit-novice .txt {
    color: #333344;
}

/*▼2023/9/12Add*/
.gtco-recruit-novice .subtxt {
    font-size: 80%;
}
/*▲2023/9/12Add*/

.gtco-data-erasure {
  margin-top: 100px;
}
.gtco-data-erasure .card .back-bg {
  margin-left: -30px !important;
  margin-top: -20px;
}
.gtco-data-erasure .card svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.gtco-data-erasure .card svg.defs {
  position: absolute;
  width: 0;
  height: 0;
}
.gtco-data-erasure .card .squircle {
  width: 100%;
  height: 450px;
  background: url(../images/learn-img.jpg) center/cover, #aaa;
  clip-path: url(#clip-path);
  background-position-x: -50px;
}
.gtco-data-erasure p small {
  font-size: 16px;
}
.gtco-data-erasure a {
  margin-top: 20px;
  display: inline-block;
}

.gtco-data-erasure a {
  background-image: -moz-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  background-image: -webkit-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  background-image: -ms-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  font-size: 18px;
  font-family: "OpenSans-Semibold";
  color: #fff;
  border-radius: 50px;
  padding: 5px 30px;
  display: inline-block;
  text-transform: uppercase;
  padding-right: 5px;
  text-decoration: none !important;
}
.gtco-data-erasure a .fa {
  background: #fff;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  color: #37eaf9;
  font-size: 22px;
  text-align: center;
  padding-top: 5px;
  margin-left: 15px;
}

.gtco-data-erasure a {
  display: inline;
  padding: 10px 30px;
  padding-right: 5px;
}

#page_top{
  width: 90px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 0;
  opacity: 0.6;
  border: 3px solid #3f98ef;
  border-radius: 15px;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'FontAwesome';
  font-weight: 900;
  content: '\f106';
  font-size: 40px;
  color: #3f98ef;
  position: absolute;
  width: 0px;
  height: 0px;
  top: -10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin-left: 30px;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #3f98ef;
  position: absolute;
  top: 38px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.readmore{
    position: relative;
    box-sizing: border-box;
    /*以下お好み*/
    /* ボーダーを付ける場合 */
    padding: 10px;
    border: 1px solid #CCC;
}

.readmore-content{
    position: relative;
    overflow: hidden;
    /*以下お好み*/
    /*高さの初期値*/
    height: 100px;
}
.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 50px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

/* 続きを読むボタン */
.readmore-label{
    display: table;
    bottom: 5px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0 10px;
    background-color: #8899aa;
    border-radius: 10px;
    color: #FFF;
}
.readmore-label:before{
    content: '続きを読む';
}

.readmore-check{
    display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
    /* display: none; */
}
.readmore-check:checked ~ .readmore-label:before{
    content: '閉じる';
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
    height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
    display: none;
}

/*▼2023/8/19Add*/
/*マウスホバーでDropdownメニューを展開する*/
.dropdown:hover > .dropdown-menu {
  display: block;
}

@media (min-width: 992px) {
    /*Dropdownメニュー中央寄せ*/
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
    }
    
    /*メニュー均等配置*/
    .nav-justified {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    .navbar .nav-justified > li {
        display: table-cell;
        width: 100%;
    }
}

/*ヘッダー固定によるアンカーずれ解消*/
.contents{
    padding-top:120px;
}
.contents_innner {
    padding-top: 120px;
    margin-top:-120px;
}
@media (max-width: 991px) {
    .contents{
        padding-top:150px;
    }
    .contents_innner {
        padding-top: 150px;
        margin-top:-150px;
    }
}

/*▼お知らせカテゴリーラジオボタン設定*/
fieldset {
  border:none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.radio-inline__input {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

.radio-inline__label {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-right: 18px;
    border:1px solid #C0C0C0;
    border-radius: 5px;
    transition: all .2s;
}

.radio-inline__input:checked + .radio-inline__label-all {
    background: #B54A4A;
    color: #fff;
}
.radio-inline__input:checked + .radio-inline__label-announce {
    background:#F47BA7;
    color: white;
}
.radio-inline__input:checked + .radio-inline__label-system {
    background:#F0D26E;
    color: white;
}
.radio-inline__input:checked + .radio-inline__label-fs {
    background:#A0D782;
    color: white;
}
.radio-inline__input:checked + .radio-inline__label-dataerasure {
    background:gray;
    color: white;
}

.radio-inline__input:focus + .radio-inline__label {
    outline-color: #4D90FE;
    outline-offset: -2px;
    outline-style: auto;
    outline-width: 5px;
}
/*▲お知らせカテゴリーラジオボタン設定*/

.news-date {
    color:blue;
}
.news-category-mark {
    display:inline-block;
    width:7em;
    text-align:center;
    border-radius: 5px;
}
.news-category-mark-announce {
    background:#F47BA7;
    color:white;
}
.news-category-mark-system {
    background:#F0D26E;
    color:white;
}
.news-category-mark-fs {
    background:#A0D782;
    color:white;
}
.news-category-mark-dataerasure {
    background:gray;
    color:white;
    width:14em;
    padding: 0.5em 0;
    font-size: 50%;
}

@media screen and (max-width: 991px) {
    .table-news table {
      display: block;
      width: 100%;
    }
    .table-news tbody {
      display: block;
      width: 100%;
    }
    .table-news tr {
      display: block;
      width: 100%;
    }
    .table-news td {
        border:none;
    }
    .news-date, .news-category {
        padding-bottom:0 !important;
    }
    .news-contents {
      display: block;
      width: 95%;
    }
}

.table-works {
    color:#808000;
}

.table-works-title {
  font-family: "Lato-Black";
  text-transform: uppercase;
  background: -webkit-linear-gradient(left, #808000, #969682);
  background: -ms-linear-gradient(left, #808000, #969682);
  background: -moz-linear-gradient(left, #808000, #969682);
  background: -o-linear-gradient(left, #808000, #969682);
  -webkit-background-clip: text;
  -ms-background-clip: text;
  -o-background-clip: text;
  -webkit-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -o-text-fill-color: transparent;
}

.company-nav-sub {
    font-family: "OpenSans-Regular";
    font-size: 15px;
    padding-left: 0.5em;
}
.company-nav-sub a {
    color: #666666;
    margin: 0;
    padding: 0;
}
#gtco-footer .company-nav li a:hover {
  color: blue;
}
.company-nav-sub li {
    list-style-type: none;
    padding-left: 0.5em;
    border-left: 1px solid #DDD6CF;
}
.sitemap-sub-title {
    font-size: 60%;
}
/*▲2023/8/19Add*/
/*▼2023/9/12Add*/
.col-system-image {
    height: 400px;
}
.photo-system .col-md-4 .card {
  background: #fff;
  margin: 30px 5px;
  padding: 0px;
  border-radius: 20px;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
}

.photo-system .col-md-4 .card .card-body {
  padding: 10px;
}

.photo-system .col-md-4 .card .card-body .card-text {
  height:3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-system .col-md-4 .card .card-img-top {
  max-width: 100%;
  border-radius: 20px 20px 0 0;
}


.dev-image-table {
    border-collapse: separate;
    border-spacing: 5px 10px;
}

@media screen and (max-width: 991px) {
    .dev-image-table table {
        display: block;
        width: 100%;
    }
    .dev-image-table tbody {
        display: block;
        width: 100%;
    }
    .dev-image-table tr {
        display: block;
        width: 100%;
        padding-bottom: 15px;
    }
    .dev-image-genre {
        display: block;
        width: 100%;
    }
}
.dev-image-genre span {
    display:inline-block;
    font-size: 18px;
    width:13em;
    text-align:justify;
    text-align-last:justify;
}
.dev-image-genre-flont span {
    background: -webkit-linear-gradient(left, #87CEEB, #87FFFF);
    background: -ms-linear-gradient(left, #87CEEB, #87FFFF);
    background: -moz-linear-gradient(left, #87CEEB, #87FFFF);
    background: -o-linear-gradient(left, #87CEEB, #87FFFF);
}
.dev-image-genre-server span {
    background: -webkit-linear-gradient(left, #ADD8E6, #ADFFFF);
    background: -ms-linear-gradient(left, #ADD8E6, #ADFFFF);
    background: -moz-linear-gradient(left, #ADD8E6, #ADFFFF);
    background: -o-linear-gradient(left, #ADD8E6, #ADFFFF);
}
.dev-image-genre-pack span {
    background: -webkit-linear-gradient(left, #B0E0E6, #B0FFFF);
    background: -ms-linear-gradient(left, #B0E0E6, #B0FFFF);
    background: -moz-linear-gradient(left, #B0E0E6, #B0FFFF);
    background: -o-linear-gradient(left, #B0E0E6, #B0FFFF);
}

.dev-image-lang span {
    display:inline-block;
    font-size: 22px;
    width:6em;
    text-align:center;
    border-radius: 10px;
    filter: drop-shadow(5px 5px 2px rgba(62,67,76,.2));
}
.dev-image-lang-html span {
    background: -webkit-linear-gradient(left, #FFD700, #FFFF00);
    background: -ms-linear-gradient(left, #FFD700, #FFFF00);
    background: -moz-linear-gradient(left, #FFD700, #FFFF00);
    background: -o-linear-gradient(left, #FFD700, #FFFF00);
}
.dev-image-lang-js span {
    background: -webkit-linear-gradient(left, #00FA9A, #98FB98);
    background: -ms-linear-gradient(left, #00FA9A, #98FB98);
    background: -moz-linear-gradient(left, #00FA9A, #98FB98);
    background: -o-linear-gradient(left, #00FA9A, #98FB98);
}
.dev-image-lang-java span {
    background: -webkit-linear-gradient(left, #00FF00, #7FFF00);
    background: -ms-linear-gradient(left, #00FF00, #7FFF00);
    background: -moz-linear-gradient(left, #00FF00, #7FFF00);
    background: -o-linear-gradient(left, #00FF00, #7FFF00);
}
.dev-image-lang-python span {
    background: -webkit-linear-gradient(left, #87CEFA, #ADD8E6);
    background: -ms-linear-gradient(left, #87CEFA, #ADD8E6);
    background: -moz-linear-gradient(left, #87CEFA, #ADD8E6);
    background: -o-linear-gradient(left, #87CEFA, #ADD8E6);
}
.dev-image-lang-cnet span {
    background: -webkit-linear-gradient(left, #DA70D6, #DDA0DD);
    background: -ms-linear-gradient(left, #DA70D6, #DDA0DD);
    background: -moz-linear-gradient(left, #DA70D6, #DDA0DD);
    background: -o-linear-gradient(left, #DA70D6, #DDA0DD);
}
.dev-image-lang-vbnet span {
    background: -webkit-linear-gradient(left, #40E0D0, #7FFFD4);
    background: -ms-linear-gradient(left, #40E0D0, #7FFFD4);
    background: -moz-linear-gradient(left, #40E0D0, #7FFFD4);
    background: -o-linear-gradient(left, #40E0D0, #7FFFD4);
}
/*▲2023/9/12Add*/