/**
* Template Name: first-seeknext
* Author: SeekNext
* License: https://seeknext.jp/
*/

body {
  background-color: #f2f2f2;
  font-family: "Lato";
  font-weight: 300;
  font-size: 16px;
  color: #555;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  margin-top: 70px;
}

/* Titles */

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway";
  font-weight: 300;
  color: #333;
}

/* Paragraph & Typographic */

p {
  line-height: 28px;
  margin-bottom: 25px;
}

.centered {
  text-align: center;
}

.mt {
  margin-top: 40px;
}

/* Links */

a {
  color: #f85c37;
  word-wrap: break-word;
  -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
  -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
  -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
  -o-transition: color 0.1s ease-in, background 0.1s ease-in;
  transition: color 0.1s ease-in, background 0.1s ease-in;
}

a:hover, a:focus {
  color: #7b7b7b;
  text-decoration: none;
  outline: 0;
}

a:before, a:after {
  -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
  -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
  -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
  -o-transition: color 0.1s ease-in, background 0.1s ease-in;
  transition: color 0.1s ease-in, background 0.1s ease-in;
}

/* Bootstrap Modifications */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

.navbar {
  font-weight: 800;
  font-size: 14px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
  color: #ffffff;
  background-color: #74cfae;
}

.navbar-brand {
  font-size: 60px;
  padding-top: 0px;
  padding-bottom: 0px;
  display: block;
}
.navbar-brand img {
  max-width: 100%;
  object-fit: contain;
  max-height: 100%;
}

.btn-theme {
  color: #ffffff;
  background-color: #74cfae;
  border-color: transparent;
}

.btn {
  padding: 10px 30px;
  margin-bottom: 0;
  font-size: 18px;
  border: 5px solid transparent;
  border-radius: 0px;
}

.lead {
  letter-spacing: 1px;
}

/* WRAP SECTIONS */

/* hello */

#hello {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 200px;
  padding-bottom: 200px; */
  height: 90vh;
  /* max-height: 90vh; */
}

#hello h1 {
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #74cfae;
}

#hello h2 {
  color: #c0c0c0;
  font-weight: 400;
}

/* Green */

#green {
  background-color: #74cfae;
  padding-top: 80px;
  padding-bottom: 50px;
  margin-bottom: 0px;
}

#green h3 {
  color: white;
  font-weight: 400;
  margin-bottom: 35px;
}

#green p {
  color: white;
  font-weight: 400;
  font-size: 20px;
}

/* Skills */

#skills {
  background-color: #4e4e4e;
  padding-top: 50px;
  padding-bottom: 50px;
  /* margin-top: 50px; */
}

#skills h3 {
  color: white;
}

#skills p {
  color: white;
  font-weight: 400;
}

/* Social Links */

#social {
  padding: 40px 0;
}

#social i {
  font-size: 50px;
  color: #74cfae;
}

#social .col-md-3:hover {
  background-color: #f5f5f5;
}

#social .col-md-3 {
  padding: 30px;
}

/* Footer */

#f {
  padding-top: 20px;
  background-color: #74cfae;
}

#f p {
  color: white;
  text-align: right;
  font-weight: 400;
}

/* Image Opacity */

.grid img {
  opacity: .7;
}

.grid img:hover {
  opacity: 1;
}

/* Contact Form */

.contact-form {
  padding-bottom: 40px;
}

.contact-form label {
   color: #999;
}

.contact-form input, .contact-form textarea {
  padding: 10px 12px;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  height: auto;
}

.contact-form .form-send {
  text-align: center;
}

.contact-form .form-send button  {
  background: #74cfae;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

.contact-form .form-send button:hover {
  background: #78e0bb;
}

.contact-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact-form .loading {
  display: none;
  color: #555;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin: 15px 0;
}

.contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

@-webkit-keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.contact-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin: 15px 0;
}

.contact-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin: 15px 0;
}

/* Copyrights */

#copyrights {
  background: #222222;
  padding: 20px 0;
  text-align: center;
}

#copyrights p {
  margin-bottom: 5px;
  color: #fff;
}

#copyrights a {
  color: #74cfae;
}

.credits {
  color: #999;
}



/* 追加CSS */
.font-weight-bold {
  font-weight: bold !important;
}
.lh-2 {
  line-height: 1.8;
}
.text-black {
  color: #000;
}
.text-left {
  text-align: left;
}
.text-gray {
  color: #555;
}
.underline {
  text-decoration: underline;
}
.cttl_sec {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
}
.cttl_sec .ja {
  display: block;
  font-size: 30px;
}

/* #green */
#green p {
  text-align: left;
}
#green ul {
  color: #CC0000;
  font-weight: bold;
  font-size: 18px;
}
#green .img2 {
  display: block;
  margin: 100px auto 0;
}
@media (max-width: 1199.98px) {
  #green .img2 {
    display: none;
  }
}
/* #green */


.flow {
  padding: 50px 0;
  background: url(../img/email-pattern.png) top left / auto repeat;
}
.siteList {
  list-style: none;
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}
.siteList li {
  list-style: none;
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  margin-bottom: 10px;
}
.siteList a {
  text-decoration: underline;
}
.ml-3 {
  margin-left: 10px;
}
.ml-2 {
  margin-left: 5px;
}
.mb-4 {
  margin-bottom: 15px;
}
.mt-3 {
  margin-top: 10px;
}
.mb-5 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 15px;
}
.mt-3 {
  margin-top: 10px;
}
.w-75 {
  width: 75%;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-5 {
  margin-top: 30px;
}


.orderList {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;
  background: #f5faff;
}
.orderList .li {
  line-height: 1.5em;
  padding: 30px 0;
  padding-left: 0;
  text-align: center;
}
.orderList .li+li {
  border-top: #aaa solid 1px;
}
.orderList .li:before{
  margin-bottom: 15px;
  /* 以下数字をつける */
  /* position: absolute; */
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #5c9ee7;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 25px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  /*以下 上下中央寄せのため*/
}

/* マーカー線・赤 */
.marker {
  background: linear-gradient(transparent 75%, #c1e0ff 75%);
  font-weight: bold;
}
.marker2 {
  background: linear-gradient(transparent 75%, #7fbfff 75%);
  font-weight: bold;
}


#tableDiv {
  padding-top: 20px;
}
.priceTable {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.priceTable .rec {
  background-color: #d4f0fd;
}
.hidden_pc {
  display: none;
}

.text-md-center {
  text-align: center;
}
@media (max-width: 767.98px) {
  .text-md-center {
    text-align: left;
  }
  .priceTable thead {
    display: none;
  }
  .priceTable tbody tr {
    border: #333 solid 1px;
    padding: 10px 15px;
  }
  .priceTable tbody td {
    display: block;
    width: 100%;
    padding: 5px 15px;
    text-align: left;
  }
  .priceTable tbody td:nth-of-type(1) {
    font-weight: bold;
    font-size: 20px;
    padding: 15px;
    text-align: center;
  }
  .priceTable tbody td:nth-of-type(4) {

    padding: 15px 15px 20px;
  }
  .priceTable tbody ul {
    text-align: left;
    padding-left: 20px;
  }
  .hidden_pc {
    display: block;
    margin-bottom: 5px;
  }

}
.priceTable tbody {
  font-size: 14px;
}
.priceTable tbody dl {
  margin-bottom: 0;
}
.priceTable tbody ul {
  list-style: disc;
}

.priceTable tr {
  border-bottom: solid 1px #eee;
  /* cursor: pointer; */
}

.priceTable tr:hover {
  /* background-color: #d4f0fd; */
}

.priceTable th,table td {
  text-align: center;
  width: 25%;
  padding: 15px 0;
}
.priceTable tbody td:nth-of-type(2) {
  text-align: left;
}
.priceTable tbody td:nth-of-type(3) {
  text-align: left;
}

.notice {
  margin: 15px 0;
  padding: 0 15px;
  text-align: left;
}

.cttl_subTtl {
  font-weight: bold;
  margin-bottom: 20px;
}

.skillList {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 15px;
}
.skillList li {
  width: 31%;
  color: #aaa;
  background: #f3f3f3;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.4);
}
@media (max-width: 767.98px) {
  .skillList li {
    width: 49%;
  }
}
@media (max-width: 575.98px) {
  .skillList li {
    width: 100%;
  }
  .hidden_sp {
    display: none;
  }
}


.fade_continue_child {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 1s;
}
.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}

#contact {
  padding: 50px 0;
}

.marker_pink {
  background:linear-gradient(transparent 75%, #ff7f7f 75%);
  font-weight:bold;
  margin: 0 3px;
  font-size: 30px;
}

.form-group label {
  display: block;
}
.form-group label:hover {
  cursor: pointer;
}
.form-group label input {
  margin-right: 10px;
}
.form-group_check label {
  display: inline-block;
  margin-right: 25px;
  margin-bottom: 10px;
}
.form-group_check label input {
  margin-right: 5px;
}
.form-group_check p {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

#responseTxt_error {
  display: none;
  color: red;
  text-align: center;
  margin-bottom: 15px;
}
#responseTxt_success {
  display: none;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}


/* 制作実績 */
.results {
  padding: 50px 0;
}
.resultsList {
  list-style: none;
  padding-left: 0;
  margin: 50px 0;
}
.resultsList li {

}
.resultsList li a {
  display: block;
  border: #aaa solid 1px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 1px gray;
  transition: .7s;
  border-radius: 5px;
}
.resultsList li a:hover {
  transform: translateY(-5px);
  transition: .7s;
  box-shadow: 0 0 15px gray;
}
.resultsList li a:hover img, .resultsList li a:focus img, .resultsList li a:active img {
  transform: scale(1.2);
  transition: .7s;
}
.resultsList li .imgDiv {
  position: relative;
  overflow: hidden;
  transition: .7s;
}
.resultsList li .imgDiv img {
  width: 100%;
  object-fit: cover;
  transition: .7s;
}
.resultsList li .txt {
  padding: 15px;
}


.cbtn {
  border: 1px solid #aaa;
}
.btn-open {
  display: inline-block;
  /* width: 180px;
  height:50px; */
  text-align: center;
  background-color: #74cfae;
  font-size: 16px;
  line-height: 52px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #74cfae;
  position: relative;
  overflow: hidden;
  z-index: 1;
  max-width: 100%;
  min-width: 200px;
}
.btn-open span {
  z-index: 1;
}
.btn-open:after{
  width: 100%;
  height: 0;
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  background : #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .2s;
  z-index: -1;
}
.btn-open:hover{
  color: #74cfae !important;
}
.btn-open:hover:after{
  height: 340%;
  opacity: 1;
}
.btn-open:active:after{
  height: 380%;
  opacity: 1;
}