@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Zen+Antique&display=swap");

* {
    margin: 0;
    padding: 0;
    /* font-family: 'Poppins', sans-serif;
    font-family: 'Ubuntu', sans-serif; */
}

.animation-box {/* ページ上部のマーカーアニメーション */
    width: 100%;
    height: 13px;
    background: #39b436;
    animation-name: sample-animation;
    animation-duration: 2s;
    animation-iteration-count: 1;/* １回のみ再生　無限再生ならinfinity */
}
@keyframes sample-animation {
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}

.header-1 {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(173, 206, 216, 0.7),rgba(76, 90, 128, 0.7)),url(./1.HOME/header.JPG);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 1.5%;
    justify-content: space-between;
    align-items: center;
}

nav a {/* ロゴのアニメーションの拡大にかける時間 */
    transition: all 1.5s;
}

nav a:hover {/* アイコンの拡大率 */
    transform: scale(1.1);
}

nav a img {
    width: 150px; /* 画像の幅を指定 */
    height: auto; /* 画像の高さを自動調整 */
    transform:rotate(-5deg);
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 1px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}


.nav-links ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #91d68f;
    display: block;
    margin: auto;
    transition: 0.4s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

#homeLink, #careerLink, #skillsLink, #blogLink, #contactLink, #aboutLink {
    color: #fff;
}

#homeLink.current, #careerLink.current, #skillsLink.current, #blogLink.current, #contactLink.current, #aboutLink.current {
    color: #3aad38;
}



.language-switcher {
    position: absolute;
    top: calc(50% - 80px);
    right: 0;
    display: flex;
    flex-direction: column;
  }
  
  .language-switcher a {
    padding: 5px 10px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    margin-bottom: 120px;
    border-radius: 50px;
    text-align: right;
    transition: color 0.4s ease;
    font-weight: bold;
  }
  
  .language-switcher a:hover,
  .language-switcher a.active {
    color: #ffffff;
  }
  
  .language-switcher a:nth-child(1) {
    font-size: 27px;
  }
  
  .language-switcher a:nth-child(2) {
    font-size: 25px;
  }

/*   .language {
    position: fixed;
    top: 50%;
    right: 40;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .language-toggle {
    font-size: 16px;
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
  }
  
  .language-toggle:focus {
    outline: none;
  }
  
  .language-options {
    display: none;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .language-options a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
  }
  
  .language-options a:hover {
    background-color: #0c0c0c;
  }
  
  .language-toggle:focus + .language-options {
    display: block;
  }
 */

















.text-box {
    color: #fff;
    display: flex;
    width: 90%;
    height: 100vh;
    justify-content: left;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.cols {
    width: 50%;
}

.topline {
    display: block;
    position: relative;
    font-size: 40px;
    letter-spacing: 5px;
    color: #ffffff;
}

.topline::after {
    position: absolute;
    content: '';
    height: 5.5px;
    width: 80px;
    bottom: 6px;
    background-color: #3aad38;
}

.multiText {
    color: #3aad38;
    text-transform: capitalize;
}

.cols p {
    display: block;
    width: 120%;
    color: #ffffff;
    margin: 3px 0 3px;
    font-size: 25px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.cols p {
    display: block;
    width: 120%;
    color: #ffffff;
    margin: 3px 0 3px;
    font-size: 25px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}



.text-box h1 {
    font-size: 200px;
    line-height: 1.1;
}



.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: .5px;
}

.hero-btn:hover {
    background-color: transparent;
    border: 1px solid #3aad38;
    background: #3aad38;
    transition: all .6s;
    border-radius: 12px;
}

nav .fa {
    display: none;
}

.course {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 40px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

.text_slideIn {
    animation: slideIn 4.5s 1;
  }
  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }
    100% {
      opacity: 1;
      transform: translatY(0);
    }
}

.text_slidein-01 {
    animation: slidein 4.5s 1;
  }
  @keyframes slidein {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
}

/*========= スクロールダウンのためのCSS ===============*/
/*スクロールダウン全体の場所*/
.scrolldown2{
  position:absolute;
  bottom:10px;
  right:10%;
}

.scrolldown2 span{
    position: absolute;
    left:10px;
    bottom:10px;
    color: #eee;
    font-size: 1rem;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}


.scrolldown2:before {
    content: "";
    position: absolute;
    bottom:0;
    left:-4px;
    width:10px;
    height:10px;
    border-radius: 50%;
    background:#eee;
    animation:
    circlemove 3s ease-in-out infinite,
    cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove{
    0%{bottom:45px;}
    100%{bottom:-5px;}
 }

@keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
}

.scrolldown2:after{
    content:"";
    position: absolute;
    bottom:0;
    left:0;
    width:2px;
    height: 50px;
    background:#eee;
}



.about {
    width: 100%;
    height: 78.2vh;
    padding: 100px 0;
    background-color: #191919;
}

.about img {
    width: 430px;
    border-radius: 50px;
}

.about-text {
    width: 550px;
}

.main {
    width: 1130px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-around;
}

.about-text h2 {
    color: white;
    font-size: 75px;
    margin-bottom: 20px;
}

.about-text h5 {
    color: white;
    letter-spacing: 1px;
    font-size: 22px;
    margin-bottom: 25px;
}

.about-text p {
    color: white;
    letter-spacing: 1px;
    line-height: 28px;/* 行間の高さ */
    margin-bottom: 45px;/* pタグとボタンの高さを空ける */
    font-size: 18px;
}

.row {
    margin-top: 5%;
    display: flex; 
    justify-content: space-between;
}

.course-col {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.8s;
    color: #000;
    text-decoration: none;
}

.course-col a {
    color: #000;
    text-decoration: none;
}

.course-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.3);
}


/* testimonials */
 .testimonials {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}


.card-one{
    width: 360px;
    height: 320px;
    box-shadow: 20px 20px 50px rgba(58, 58, 58, 0.5);
    border-radius: 15px;
    background: #3d3d3d; /* 真っ白にして透明度を90%にしている */
    overflow: hidden;
    display: flex;
    justify-content: center; 
    align-items: center; 
    backdrop-filter: blur(5px);
    z-index: 1; 
    padding: 20px 35px;/* カード内側の余白を空ける */
    margin: 10px;/* カード間の幅を空ける */
}
  
.card-one .content-one{
    padding: 20px;
    /* text-align: center; */
    transform: translateY(0px); /* カード1アニメーション */
    opacity: 1; /* カード1透明度 */
    transition: 0.5s;
}

.card-one:hover .content-one{
    transform: translateY(0px);
    opacity: 1;
}

































  

/* callto action */
.cta1 {
    margin: 50px auto;
    width: 80%;
    background-image: linear-gradient(rgba(29, 29, 29, 0.7),rgba(37, 37, 37, 0.7)),url(./4.BLOG/OVERSEAS/trip2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta1 h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

.cta2 {
    margin: 50px auto;
    width: 80%;
    background-image: linear-gradient(rgba(29, 29, 29, 0.7),rgba(37, 37, 37, 0.7)),url(./4.BLOG/OVERSEAS/trip3.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta2 h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}


/* Footer */
.footer {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer p:nth-child(1) {
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

footer p:nth-child(2) {
    color: white;
    font-size: 17px;
    width: 500px;
    text-align: center;
}

.footer h4 {
    margin-bottom: 5px;
    margin-top: 20px;
    font-weight: 600;
}

.icons {
    display: flex;
}

.footer a {
    transition: all 0.3s;
}


.footer a:hover {
    transform: scale(1.3);
}

.icons .fa {
    color: #000000;
    margin: 0 10px;
    cursor: pointer;
    padding: 1px 0;
}

.icons-1 .fa {
    color: #ffffff;
    margin: 0 10px;
    cursor: pointer;
    padding: 1px 0;
}

.fa-heart-o {
    color: #000000;
}

.copy{
    text-align: center;
    background: #39b436;
    color: #fff;
    font-size: 13px;
    padding: 2px 0 3px;
}





/* -------------About US----------- */
.sub-header-2 {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(86, 103, 109, 0.7),rgba(47, 54, 75, 0.7)),url(./2.CAREER/career.jpg);
 /*    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(./img/career.jpg); */
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header-2 h1 { 
    margin-top: 50px;
}

.sub-header-2 p { 
    color: white;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img {
    width: 100%;
    border-radius: 30px;
}

.about-col h1 {
    padding-top: 0;
}

.about-col p {
    padding: 15px 0 25ps;
}

.red-btn {
    border: 1px solid #39b436;
    background:  transparent;
    color: #39b436;
}

.red-btn:hover {
    color: #fff;
}

@import url("https://fonts.googleapis.com/css?family=Oswald|Roboto:400,700");

.container h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
} 

.container a {
    text-decoration: underline;
}

.container p {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}



.container {
  max-width: 80%;
  width: 90%;
  margin: 0 auto;
}

.timeline-item {
  padding: 3em 2em 2em;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  border-left: 2px solid rgba(0, 0, 0, 0.3);
}

.timeline-item a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    transition: all 0.2s;
}

.timeline-item a:hover {
    color: #39b436;
}

.timeline-item p {
  font-size: 1rem;
}
.timeline-item::before {
  content: attr(date-is);
  position: absolute;
  left: 2em;
  font-weight: bold;
  top: 1em;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.785rem;
}
.timeline-item::after {
  width: 10px;
  height: 10px;
  display: block;
  top: 1em;
  position: absolute;
  left: -7px;
  border-radius: 10px;
  content: "";
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
}
.timeline-item:last-child {
  -o-border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0)) 1 100%;
     border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0)) 1 100%;
}















/* -------------skills----------- */
.sub-header-3 {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(48, 54, 56, 0.7),rgba(37, 42, 56, 0.7)),url(./3.SKILLS/sony.JPG);
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(./img/sony.JPG); */
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header-3 h1 { 
    margin-top: 50px;
}

.sub-header-3 p { 
    color: white;
}

.flow h1 {
    text-align: center;
/*     position: absolute; */
    top: 50%;
    left: 50%;
}

.skill {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* 画面の高さに合わせる */
    width: 100%;
    text-align: center;

  }
  .skill h1 {
    margin-top: 15px;
    margin-bottom: 0px;
  }

  .skills-other {
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
    height: 100%; /* 画面の高さに合わせる */
    width: 100%;
    text-align: center;

  }
  .skills-other {
    margin-top: 15px;
    margin-bottom: 0px;
  }





/*------------------------------------
  pie chart
------------------------------------*/
@media screen and (min-width: 751px) {
    .pie-chart-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
        -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
    .pie-chart-wrap-1 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
          -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
      }
    .pie-chart-wrap-webapp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
          -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
      }
  }

   .pie-chart-wrap{
    display: flex;
   }

   .pie-chart-wrap-1 {
    display: flex;
   }

   .pie-chart-wrap_webapp {
    display: flex;
   }


  .box {
    margin-top: 25px;
    position: relative;
    min-width: 100px;
    width: 300px;
    height: 250px;
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
  }

.box:hover {
    transform: scale(1.05);
}
  



/* .rank-container {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 300px;
    height: 250px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    transition: all 0.2s;
  }
  
  .rank {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .S {
    margin-right: 10px;
  }
  
  .rank-container .title {
    font-size: 50px;
  }

  .rank-container .text-1 {
    padding: 10px 0 0;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
  }

  .rank-container:hover {
    transform: scale(1.05);
}

.rank-container .rank  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #111;
    cursor: pointer;
  } */





  @media screen and (max-width: 750px) {
    .box {
      width: 100%;
    }
  }
  @media screen and (min-width: 751px) {
    .box + .box {
      margin-left: 20px;
    }
  }
  @media screen and (max-width: 750px) {
    .box + .box {
      margin-top: 20px;
    }
  }
  .box .percent {
    position: relative;
    width: 150px;
    height: 150px;
  }
  .box .percent svg {
    position: relative;
    width: 150px;
    height: 150px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .box .percent svg circle {
    position: relative;
    fill: none;
    stroke-width: 10;
    stroke: #f3f3f3;
    stroke-dasharray: 440;
    stroke-dashoffset: 0;
    stroke-linecap: round;
  }
  .box .percent .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #111;
    cursor: pointer;
  }
  .box .percent .number .title {
    font-size: 50px;
  }
  .box .percent .number .title span {
    font-size: 22px;
  }




  .box .text {
    padding: 10px 0 0;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
  }
  .box .percent .line {
    -webkit-animation: circleAnim 3s forwards;
            animation: circleAnim 2.5s forwards;
  }
  .box.blue .percent .line {
    stroke-dashoffset: 300;
    stroke: #03a9f4;
  }
  .box.red .percent .line {
    stroke-dashoffset: 360;
    stroke: #ff3051;
  }
  .box.green .percent .line {
    stroke-dashoffset: 413.6;
    stroke: #b1d21f;
  }

  .box.yellow .percent .line {
    stroke-dashoffset: 370;
    ;
    stroke: #17dbe9;
  }
  .box.orange .percent .line {
    stroke-dashoffset: 423;
    stroke: #1fd26c;
  }
  .box.skyblue .percent .line {
    stroke-dashoffset: 390;
    stroke: #e91799;
  }

  .box.dark .percent .line {
    stroke-dashoffset: 425;
    stroke: #414141;
  }

  .box.pink .percent .line {
    stroke-dashoffset: 390;
    stroke: #e2b627;
  }


  
  @-webkit-keyframes circleAnim {
    0% {
      stroke-dasharray: 0 440;
    }
    99.9%, to {
      stroke-dasharray: 440 440;
    }
  }
  
  @keyframes circleAnim {
    0% {
      stroke-dasharray: 0 440;
    }
    99.9%, to {
      stroke-dasharray: 440 440;
    }
  }
  



  #pie-chart a {
    list-style-type: none;
    text-decoration: none;
    color: #000000;
    padding: 0;
}






















/* -------------Blog content----------- */
.sub-header-4 {
    height: 50vh;
    width: 100%;
/*     background-image: linear-gradient(rgba(61, 70, 73, 0.7),rgba(67, 76, 100, 0.7)),url(./img/66.JPG);*/ 
    background-image: linear-gradient(rgba(61, 70, 73, 0.2),rgba(67, 76, 100, 0.2));
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header-4 h1 { 
    margin-top: 50px;
}

.sub-header-4 p { 
    color: white;
}

.portfolio {
    width: 98%;
    padding: 10px 10px;
}


.title h1 {
  margin-top: 15px;
  margin-bottom: 0px;
  text-align: center;
}


/* .title h2 {
    color: rgb(0, 0, 0);
    font-size: 75px;
    margin: 30px auto;
    text-align: center;
} */

.blogbox {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.card {
    height: 300px;/* カードの縦幅 */
    width: 500px;/* カードの横幅 */
    background-color: #4c5d61;/* カードの色 */
    padding: 20px 35px;/* カード内側の余白を空ける */
    margin: 20px;/* カード間の幅を空ける */
    border-radius: 40px;/* 丸みを帯びさせる */
    overflow: hidden;/* はみ出た部分を隠す */
    text-align: center;/* テキストの位置を中央に */
    opacity: 0.85;
}

.card img {
    width: 350px;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 40px;
    transition: all 0.3s;
}

.card img:hover {   
    transform: scale(1.05);
}

h5 {
    color: white;
    font-size: 23px;
    margin-bottom: 15px;
}

.paragraph p {
    color: white;
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 30px;
}

.card .button {
    background-color: lightseagreen;
    padding: 13px 30px;/* ボタンの箱の大きさ */
    color:  white;
    font-weight: bold;/* 太文字化 */
    text-decoration: none;/* 下線を消す */
    border-radius: 30px;
    transition: all 0.3s;/* ボタンに触れたときのアクション0.3s */
}

.card .botton:hover {
    background-color: transparent;/* ボタンに触れたときのアクション(透過) */
    border: 2px solid green;/* 透過したときのふちは緑色 */
    cursor: pointer;
}  

























.wrapper {
    max-width: 760px;
    margin: 0 auto 20px auto;/* 左右0px 下130pxのマージン */
    font-size: 0.9rem;
    padding: 0 4%;
}

.sec-title {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
}

#news dl {
    display: flex;/* 横並び */
    flex-wrap: wrap;
    margin-bottom: 20px;
    
    border-top: 1px solid #c8c8c8;/* 上に線 */
}

#news dt {
    border-bottom: 1px solid #c8c8c8;/* dtセクションに下線 */
    padding: 15px;
}

#news dd {
    width: 80%;
    border-bottom: 1px solid #c8c8c8;/* ddセクションに下線 */
    padding: 15px;
}

.blog-content {
    width: 80%;
    margin: auto; 
    padding: 60px 0;
}

.blog-left {
    flex-basis: 65%;
}

.blog-left img {
    width: 100%;
}

.blog-left h2 {
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}

.blog-left p {
    color: #999;
    padding: 0;
}

.blog-right {
    flex-basis: 32%;
}

.blog-right h3 {
    background: #39b436;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.comment-box {
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.comment-box h3 {
    text-align: left;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}

.comment-form button {
    margin: 10px 0;
}



/* -------------Contact us page----------- */
.sub-header-5 {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(83, 89, 92, 0.7),rgba(51, 58, 78, 0.7)),url(./1.HOME/contact.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header-5 h1 { 
    margin-top: 50px;
}

.sub-header-5 p { 
    color: white;
}
.location {
    width: 80%;
    height: auto;
    margin: auto;
    padding: 10px 0;
    margin-top: 50px;
}

.location iframe {
    width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa {
    font-size: 28px;
    color: #39b436;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p {
    padding: 0;
}

.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, 
.contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.feature {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.feature p {
    color: #131313;
    font-size: 16px;
    font-weight: 22px;
    line-height: 22px;
    padding: 10px;
}

.feature-col {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 10%;
    padding: 20px 12px;
    box-sizing: border-box;
}

.feature-col li {
    list-style: square;
    display: inline-block;
    padding: 3px 6px;
    position: relative;
}

.footer .move-up{
    position: absolute;
    right: 6%;
    top: 118%;
}

.footer .move-up span{
    color: var(--midnight);
}

.footer .move-up span:hover{
    color: var(--white);
    cursor: pointer;
}




/* -------MOVIE-------- */
.sub-header-6 {
    height: 25vh;
    width: 100%;
    background-image: linear-gradient(rgba(86, 103, 109, 0.7),rgba(47, 54, 75, 0.7)),url(./2.CAREER/career.jpg);
 /*    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(./img/career.jpg); */
     background-position: top; 
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header-6 h1 { 
    margin-top: 0px;
}

.sub-header-6 p { 
    color: white;
}


.card-Three,
.card-Four{
    width: 320px;
    height: 320px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: #000000; /* 真っ白にして透明度を90%にしている */
    overflow: hidden;
    display: flex;
    justify-content: center; 
    align-items: center; 
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1; 
    padding: 20px 35px;/* カード内側の余白を空ける */
    margin: 10px;/* カード間の幅を空ける */
}
  
.card-Three .content-Three,
.card-Four .content-Four {
    padding: 20px;
    /* text-align: center; */
    transform: translateY(10px); /* カード1アニメーション */
    opacity: 1; /* カード1透明度 */
    transition: 0.5s;
}
  
.card-Three:hover .content-Three,
.card-Four:hover .content-Four {
    transform: translateY(10px);
    opacity: 1;
}
  
.card-Three .content-Three h3,
.card-Four .content-Four h3{
    margin-top: 5px;
    font-size: 1.05em;
    color: #ffffff;
    z-index: 1;
}

.card-Three .content-Three p,
.card-Four .content-Four p {
    font-size: 1.1em;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 5px;
}
 
.content-Three img,
.content-Four img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}



/* -------FLL--------- */
.FLL-2013 {
    width: 80%;
    margin: auto; 
    padding: 60px 0;
}

.FLL-left {
    flex-basis: 65%;
}

.FLL-left img {
    width: 100%;
}

.FLL-left h2 {
    color: #222;
    font-weight: 600;
    margin: 30px 0;
    text-align: center;
    font-size: 30px;
}

.FLL-left li {
    list-style-type: none;
    color: #696969;
    padding: 0;
}

.FLL-left p {
    color: #696969;
    padding: 0;
}

.FLL-right {
    flex-basis: 32%;
}

.FLL-right h3 {
    background: #39b436;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    border-radius: 10px;
}

.FLL-right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.FLL-right div li  {
    list-style: none;
    color: #696969;
}

.FLL-right div li  a {
    text-decoration: none;
}



/* 2017_2_4 */
.table-1 {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .abc {
    display: table-row;
  }
  
  .def {
    font-weight: bold;
  }
  
  .cell {
    display: table-cell;
    border: 1px solid #ccc;
    padding: 10px;
  }

  .hero-btn-1 {
    display: inline-block;
    text-decoration: none;
    color: #3aad38;
    border: 1px solid #3aad38;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: .5px;
}

.hero-btn-1:hover {
    background-color: transparent;
    border: 1px solid #3aad38;
    background: #3aad38;
    transition: all .6s;
    border-radius: 12px;
    color: white;
}
  
.hero-btn-2 {
    display: block;
    text-decoration: none;
    color: #3aad38;
    border: 1px solid #3aad38;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0 auto; /* Add this line to center the button */
}

.hero-btn-2:hover {
    background-color: transparent;
    border: 1px solid #3aad38;
    background: #3aad38;
    transition: all .6s;
    border-radius: 12px;
    color: white;
}

.highsch-left {
    flex-basis: 65%;
}


.highsch-left img {
    width: 100%;
    border-radius: 10px;
}

.highsch-left h2 {
    color: #222;
    font-weight: 600;
    margin: 30px 0;
    text-align: center;
    font-size: 30px;
}

.highsch-left li {
    list-style-type: none;
    color: #696969;
    padding: 0;
}

.highsch-left p {
    color: #696969;
    padding: 0;
}






.highsch-left .leg1 {
    max-width: 315px;
    display: inline-block;
    margin-right: 10px;
}


.cta3 {
    margin: 50px auto;
    width: 50%;
    background-color: #383f42;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta3 h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

.FLL-2013 .title {
    text-align: center;
}

 pre {
    padding: 1em;/* 内側の余白 */
    margin: 0 0 1.5em;/* 外側の余白 */
    border: solid 1px #4d4d4d;/* 枠線（枠線を濃い黒に） */
    color: #fff;/* 文字色（文字を白に） */
 } 

 code {
    overflow: auto;
    resize: horizontal;
  }


  .highsch-left .leg2 {
    width: 210px;
/*     display:flex; */
    margin:0 auto;
    margin-right: 1px;
}

.cell {
    text-align: center;
}

.highsch-left .leg3 {
    width: 179px;
    display: inline-block;
    margin-right: 1px;

}


.highsch-left .leg4 {
    width: 350px;
    display:flex;
    margin:0 auto;
}

.highsch-left .leg5 {
    width: 300px;
/*     display: inline-block; */
    display:flex;
    margin:0 auto;
}

.highsch-left ul {
    display: flex;
    justify-content: center;
}
.highsch-left li {
    list-style: none;
    max-width: fit-content;
}
.highsch-left li:nth-child(2) {
    margin: 0 10px;
}

.highsch-left img {
    width: 300;
    height: 400;
}



.highsch-left .leg7 {
    width: 308px;
    display: inline-block;
    margin-right: 1px;
    margin:0 auto;
}
.highsch-left .leg8 {
    width: 250px;
    display: inline-block;
    margin-right: 1px;
}
.highsch-left .leg9 {
    width: 450px;
    display: inline-block;
    margin-right: 1px;
}
.highsch-left .leg10 {
    width: 300px;
    display: inline-block;
    margin-right: 1px;
}

.nowpage {
    color: #3aad38;
}

.container a {
    text-decoration: underline;
  }





/* smartphone */
@media(max-width: 700px){
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: #000000;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }

    .row {
        flex-direction: column;
    }

    .testiminial-col img {
        margin-left: 0px;
        margin-right: 15px;
    }

    .cta h1 {
        font-size: 24px;
    }

    .sub-header {
        font-size: 24px;
    }

    .cols {
        width: 80%;
    }

    .topline {
        display: block;
        position: relative;
        font-size: 25px;
        letter-spacing: 1px;
        color: #ffffff;
    }

    .topline::after {
        position: absolute;
        content: '';
        height: 3.5px;
        width: 30px;
        bottom: 6px;
        background-color: #3aad38;
    }

    .text-box h1 {
        font-size: 85px;
        line-height: 1.1;
    }

    .cols p {
        display: block;
        width: 120%;
        color: #ffffff;
        margin: 3px 0 3px;
        font-size: 15px;
        margin-top: 15px;
        margin-bottom: 20px;
        color: white;
        line-height: 1.2;
    }
    




    
    .about {
        width: 100%;
        height: 78.2vh;
        padding: 100px 0;
        background-color: #191919;
    }
    
    .about img {
        width: 400px;
        border-radius: 50px;
    }
    
    .about-text {
        width: 400px;
    }
    
    .main {
        width: 350px;
        display: flex;
        margin: 0 auto;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }
    
    .about-text h2 {
        font-size: 30px;
        margin-bottom: 0px;
    }
    
    .about-text h5 {
        color: white;
        letter-spacing: 1px;
        font-size: 14px;
        margin-bottom: 7px;
    }
    
    .about-text p {
        color: white;
        letter-spacing: 1px;
        line-height: 15px;/* 行間の高さ */
        margin-bottom: 7px;
        font-size: 10px;
    }

    .container h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5em;
      } 

      .container p {
        font-family: "Roboto", sans-serif;
        font-size: 0.6rem;
      }



      .sub-header-2 {
        height: 28vh;
    }
    
    .sub-header-2 h1 { 
        margin-top: 20px;
    }

      .sub-header-3 {
        height: 28vh;
    }
    
    .sub-header-3 h1 { 
        margin-top: 20px;
    }
      
    .sub-header-4 {
        height: 28vh;
    }
    
    .sub-header-4 h1 { 
        margin-top: 20px;
    }
    
    .sub-header-5 {
        height: 28vh;
    }
    
    .sub-header-5 h1 { 
        margin-top: 20px;
    }

    .cta3 {
        margin: 30px auto;
        width: 80%;
        background-color: #383f42;
        background-position: center;
        background-size: cover;
        border-radius: 10px;
        text-align: center;
        padding: 40px 0;
    }

    .highsch-left .leg1 {
        max-width: 190px;
    }
    .highsch-left .leg10 {
        max-width: 182px;
    }
    .prettyprint {
        text-align: left;
    }
    .highsch-left .leg2 {
        max-width: 125px;
    }
    .highsch-left .leg3 {
        max-width: 95px;
    }
    .highsch-left .leg11 {
        position: relative;
    }
    .highsch-left .leg4 {
        position: relative;
    }
    .highsch-left .leg5 {
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .box .percent {
        display: flex;
        flex-direction: column;
      }
      .blogbox {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .language-switcher a {
        margin-bottom: 30px;
      }

      .language-switcher a:nth-child(1) {
        font-size: 20px;
      }
      
      .language-switcher a:nth-child(2) {
        font-size: 18px;
      }

      .card-one{
        width: 280px;
        height: 320px;
    }
    .about-text {
        width: 300px;
    }
    
    #navLinks {
        position: fixed;
        top: 0;
        right: -100%;
        width: 200px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
/*         background-image: linear-gradient(rgba(29, 29, 29, 0.7),rgba(37, 37, 37, 0.7));   
 */        z-index: 999;
        transition: right 0.3s ease-in-out;
    }
    
    body.slide-right #navLinks {
        right: -200px;
        display: none;
    }



    .pie-chart-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        }
        .pie-chart-wrap .box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
        height: auto;
        }
        .pie-chart-wrap-1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        }
        .pie-chart-wrap-1 .box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
        height: auto;
        }

        .pie-chart-wrap_webapp {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        }
        .pie-chart-wrap_webapp .box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 00%;
        margin-bottom: 20px;
        height: auto;
        }
        
        pre {
            white-space: pre-wrap;
            word-wrap: break-word;
          }

          .FLL-right {
            display: none;
          }

          .card {
            height: 480px;/* カードの縦幅 */
            width: 270px;/* カードの横幅 */
        }

}








@media(max-width: 415px){
    .about {
        width: 100%;
        height: 105vh;
        padding: 100px 0;
        background-color: #191919;
    }
}



.box-1 {
    margin-left: 10px;
    transition: all 0.2s;
  }

.box-1:hover {
    transform: scale(1.05);
}

.language {
    color: #fff;
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 100vh;
    justify-content: right;
    padding: 0 5%;
    overflow: hidden;
}

/* ------------------- */
.cta4 {
    margin: 50px auto;
    width: 50%;
    background-color: #383f42;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 50px 0;
}

.cta4 h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
    font-size: 25px;
}










  .Vinci {
    text-align: center;
  }

  .progress-bar {
    height: 20px;
    background-color: #39b436;
    border-radius: 10px 20px 20px 10px;
    overflow: hidden;
    color: white; /* 文字色を白色に設定 */
    text-indent: 5px;
    transition: width 0.3s ease-out;
  }
  


  .clear-button {
    text-align: center;
    width: 350px;
}

button {
    background: #39b436;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    border-radius: 10px;
}

.script-right{
    flex-basis: 32%;
}

textarea {
    border: 1px solid #383f42; /* 初期の枠の色を黒に設定 */
  }
  
  textarea.full {
    border: 1.95px solid #39b436; /* 変更する枠の色を赤に設定 */
  }


  

  

  .signature-pad-wrapper {
    position: relative;
    width: 80%;
    height: 20%; 
    padding-bottom: 26.66%; 
    background-color: #fff; 
    margin: 0 auto;
  }
  
  .signature-pad {
    border: .1px solid #000000;
    border-radius: 0.2px;
    position: absolute;
    width: 100%; 
    height: 100%; 
    left: 0;
    top: 0;
  }
  
  .clear-link_signature {
    display: block; 
    text-align: center; 
    color: gray; 
    text-decoration: underline; 
    cursor: pointer; 
    margin: 30px auto; /* Change here */
    width: 80%; /* Add this */
  }
  
  .clear-link_signature:hover {
    color: #45a049; 
  }
  
  * {
    margin: 0;
    padding: 0;
}

#recaptcha-wrapper {
    display: flex;
    justify-content: center;
}

button.hero-btn-2.red-btn {
    display: block;
    margin: 0 auto;
}

.valid {
    border-color: #45a049;
}




#myBtn {
    opacity: 0; /* Hidden by default */
    display: inline; /* Let it be inline */
    position: fixed; /* Fixed/sticky position */
    bottom: 50px; /* Place the button at the bottom of the page */
    right: 10px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: transparent; /* Set a background color */
    color: #555; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    transition: opacity 0.5s, color .3s; /* Add a transition effect */
  }
  
  #myBtn:hover {
    color: #45a049; /* Add a dark-grey color on hover */
  }
  
  .arrow-up {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #45a049;
    margin:0 auto;
  }
  
  .top-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }





/*   @keyframes glowing {
    0% {box-shadow: 0 0 5px #ff9999, 0 0 25px #ff9999, 0 0 50px #ff9999, 0 0 100px #ff9999;}
    50% {box-shadow: 0 0 10px #ffcccc, 0 0 20px #ffcccc, 0 0 30px #ffcccc, 0 0 40px #ffcccc;}
    100% {box-shadow: 0 0 5px #ff9999, 0 0 25px #ff9999, 0 0 50px #ff9999, 0 0 100px #ff9999;}
  }
  
  .hero-btn_home {
    color: white;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6666;
    border-radius: 25px;
    font-size: 20px;
    animation: glowing 2s infinite;
  } */

  @keyframes animate {
    0% { stroke-dashoffset: 0; stroke: #ff9999; }
    50% { stroke: #ffcccc; }
    100% { stroke-dashoffset: -100; stroke: #ff9999; }
  }
  




.box_webapp {
    margin-top: 25px;
    position: relative;
    min-width: 50px;
    width: 500px;
    height: 250px;
    margin-bottom: 25px;
    display: flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    color: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.8s;
    overflow: hidden; /* Hide overflowing canvas */
}
.box_webapp:hover {
    width: 1000px; /* Adjust this according to your needs */
    background: black; /* Change background color on hover */
    color: #00FF00; /* Change text color on hover */
}
.box_webapp canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none; /* Make canvas not interfere with mouse events */
}
.box_webapp a {
    text-decoration: none;
    font-size: 20px;
    /* Other styles... */
}
.box_webapp .percent .number .title {
    font-size: 50px;
    color: inherit; /* Inherit color from parent element */
}






/* Webkit browsers like Chrome, Safari */
::selection {
    background: rgba(143, 235, 143, 0.5); /* Half-transparent pastel green */
    color: inherit;
}

/* Firefox */
::-moz-selection {
    background: rgba(143, 235, 143, 0.5); /* Half-transparent pastel green */
    color: inherit;
}

