@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

img {
  max-width: 100%;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1%;
}

.title {
  display: flex;
}

.title svg {
  margin: 0 5px;
}

.logo img {
  width: 134px;
  height: 34px;
}

/* header */
#header {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  margin-bottom: 60px;
}

.header_nav ul {
  display: flex;
}

.header_nav li {
  margin-left: 20px;
  color: #3abfe8;
}

.header_nav li a:hover {
  transition: all 0.5s ease 0s;
  color: #3abfe8;
}

.header_nav li:nth-child(2) {
  border-left: 1px solid #38bdea;
  border-right: 1px solid #38bdea;
  padding: 0 20px;
}

.inquiry_btn {
  position: fixed;
  z-index: 1;
  top: 90px;
  right: 3%;
  line-height: 120px;
  width: 120px;
  height: 120px;
  cursor: pointer;
  margin: 20px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 60px;
  transition: all 0.4s ease-in-out;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.inquiry_btn:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #fff;
}

.inquiry_btn:focus {
  outline: none;
}

.color {
  background-image: linear-gradient(to right,
      #14A4E0,
      #61DB8C,
      #40BBBC,
      #CCEB6B);
  box-shadow: 0 4px 15px 0 rgba(255, 255, 254, 0.75);
}

/*footerまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* hero */
.hero {
  position: relative;
  background: url(../images/hero_img.png) no-repeat 50% 50%;
  background-size: cover;
  transform-origin: center;
  /*変化する基点を中心からに設定*/
  width: 90vw;
  height: 700px;
  margin: 0 auto;
}

.hero .text {
  position: absolute;
  top: 40%;
  left: 10%;
}

.hero .text p {
  font-family: "Jost", sans-serif;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.hero h2 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 3.4rem;
  line-height: 70px;
  letter-spacing: 8px;
}

/* decoration */
.decoration {
  position: relative;
  top: -100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slideshow {
  display: flex;
  animation: loop-slide 40s infinite linear 1s both;
  font-size: 150px;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.content {
  padding-right: 5px;
  list-style: none;
  font-family: "Jost", sans-serif;
  font-weight: bold;
}

.content:nth-child(1) {
  color: #14a4e0;
}

.content:nth-child(2) {
  color: #22b1bb;
}

.content:nth-child(3) {
  color: #3abd63;
}

.content:nth-child(4) {
  color: #dccb34;
}

/* capability */
#capability {
  display: block;
  height: 9rem;
  margin-top: -9rem;
  content: "";
}

.svg-wrapper {
  position: relative;
  margin-top: -80px;
}

.capability {
  background-image: linear-gradient(90deg,
      rgba(44, 192, 255, 1),
      rgba(249, 250, 4, 1));
}

.capability-left {
  margin-top: -5px;
}

.capability-left h2 {
  margin-bottom: 25px;
  font-size: 2.1rem;
}

.capability-left-in {
  display: flex;
  align-items: center;
}

.capability-left-in p {
  margin-right: 15px;
}

.capability-in {
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
  padding: 70px 0;
  margin: 70px 0;
  display: inline-block;
}

.capability-right {
  position: absolute;
  top: 30%;
  right: 15%;
  writing-mode: vertical-rl;
}

.capability-right .title {
  display: flex;
  align-items: baseline;
}

.capability-right p {
  margin-left: 30px;
}

.capability-right h2 {
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
  font-size: 2.9rem;
}


.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-80px);
  transition: opacity 2s, visibility 2s, transform 2s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

/* information */
#information {
  display: block;
  height: 4rem;
  margin-top: -4rem;
  content: "";
}

.info {
  max-width: 930px;
  margin-top: 90px;
}

.info .title {
  margin-bottom: 40px;
}

.info dl {
  display: flex;
  flex-wrap: wrap;
  margin-left: 240px;
}

.info dt {
  width: 20%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #c5c5c5;
}

.info dd {
  width: 80%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #c5c5c5;
}

/* inquiry */
#inquiry {
  display: block;
  height: 5rem;
  margin-top: -5rem;
  content: "";
}

.inquiry {
  background-color: #40bbbc;
  margin-top: 170px;
  padding-top: 170px;
}

.inquiry .title {
  color: #fff;
  margin-bottom: 10px;
}

.inquiry h2 {
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
  font-size: 2.9rem;
  margin-bottom: 120px;
}

.inquiry span {
  width: 5px;
  color: #1a1a1a;
}

.form_wrapper {
  display: flex;
  width: 80%;
  margin: 0 auto;
  color: #fff;
}

.form_wrapper2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  color: #fff;
}

.form_wrapper3 {
  width: 80%;
  margin: 0 auto;
  color: #fff;
}

.title {
  margin-bottom: 5px;
}


.form_left {
  width: 90%;
}

.form_left .inner:last-child {
  margin-bottom: 60px;
}

.form_right {
  width: 90%;
}

.inner {
  width: 95%;
  height: 45px;
  padding-left: 20px;
  margin-bottom: 30px;
  border: 1px solid #40bbbc;
  border-radius: 5px;
  font-size: 0.975rem;
}

.form_right .inner {
  height: 373px;
}

input[type="checkbox"] {
  transform: scale(2);
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 2px;
  background-color: #fff;
  vertical-align: -5px;
  margin-right: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 3px;
  left: 5px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

.btn {
  display: inline-block;
  vertical-align: middle;
  margin: 40px 10px 140px;
  padding: 15px 125px;
  color: #000;
  font-size: 1rem;
  letter-spacing: 0.5pt;
  text-decoration: none;
  background-color: #EEEA41;
  border: 1px solid #EEEA41;
  border-radius: 50px;
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
}

.btn:hover {
  color: #000;
  background-color: #fff;
}

.policy {
  max-width: 920px;
  margin-bottom: 50px;
  height: 200px;
  overflow: scroll;
  padding: 30px;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  line-height: 1.5;
}

.policy h2 {
  margin: 10px 0 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 0px;
  letter-spacing: 0px;
  color: #414141;
}

.policy h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 35px 0 10px;
  color: #414141;
}

/* フォームエラーで既存のデザインを消す */
.formError .formErrorContent {
  display: none;
}

.formError .formErrorArrow div {
  display: none;
}

.formError .formErrorArrow {
  display: none;
}

/* thanks */
.thanks {
  background-color: #40bbbc;
  padding-top: 170px;
  text-align: center;
  color: #fff;
}

.thanks h2 {
  margin-top: 0;
  margin-bottom: 70px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.5rem;
  color: #fff;
}

.thanks p {
  line-height: 2.5;
  padding-bottom: 150px;
}


/* footer */
footer .logo {
  text-align: center;
  margin-top: 60px;
}

footer p {
  text-align: center;
  margin: 10px 0 60px;
  font-size: 0.75rem;
}

@media screen and (max-width: 600px) {
  
  .wrapper {
    padding: 0 5%;
  }

  .logo img {
    width: 120px;
  }

.title {
    align-items: center;
    font-size: 0.8rem;
  }
  .title svg {
    margin: 5px;
  }

  /* header */
  #header {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin-top: 25px;
    margin-bottom: 20px;
  }

  .header_nav ul {
    display: none;
  }

  .inquiry_btn {
    display: none;
  }

  /* hero */
  .hero {
    height: calc(50vh - 60px);
  }

  .hero .text {
    top: 30%;
    left: 5%;
  }

  .hero .text p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }

  .hero h2 {
    font-size: 2rem;
    line-height: 45px;
    letter-spacing: 5px;
  }

  .decoration {
    top: -60px;
  }
  
  .slideshow {
    font-size: 80px;
  }

/* capability */
.capability {
  display: flex;
  flex-direction: column-reverse;
  margin-top: -5px;
}

.capability-left h2 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.capability-left-in p {
  margin-right: 10px;
}

.capability-in {
  padding: 35px 0;
  margin: 35px 0;
}

.capability-right {
  position: static;
  writing-mode: horizontal-tb;
  margin-top: -5px;
}

.capability-right .title {
  align-items: center;
  font-size: 0.8rem;
  margin-left:5%;
}

.capability-right .title svg{
  color: #fff;
}

.capability-right p {
  margin-left: 0;
}

.capability-right h2 {
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
  font-size: 1.5rem;
  margin-left:5%;
  margin-bottom: 50px;
}

.js-fade h3 {
  line-height: 1.5;
  font-size: 0.9rem;
}

/* information */
.info {
  margin-top: 30px;
  font-size: 0.9rem;
}

.info .title {
  align-items: center;
  font-size: 0.8rem;
}

.info dl {
  margin-left: 0;
}

.info dt {
  margin-bottom: 35px;
  padding-bottom: 35px;
}

.info dd {
  margin-bottom: 35px;
  padding-bottom: 35px;
}
/* inquiry */
.inquiry {
  margin-top: 50px;
  padding-top: 50px;
}

.inquiry h2 {
  font-size: 1.5rem;
  margin-bottom: 60px;
}

.form_wrapper {
  display: block;
  width: 100%;
}
.form_wrapper3 {
  width: 80%;
}

.form_wrapper2 {
  font-size: 0.8rem;
  width: 100%;
}

.form_left {
  width: 80%;
  margin: 0 auto;
}

.form_left .inner:last-child {
  margin-bottom: 30px;
}

.form_right {
  width: 80%;
  margin: 0 auto;
}

.inner {
  width: 100%;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.form_right .inner {
  width:100%;
  height: 200px;
}

.btn {
  margin-bottom: 70px;
}

.policy {
  font-size: 0.9rem;
  width:80%;
}

.policy h2 {
  margin: 10px 0 30px;
  font-size:1rem;
}

.policy h3 {
  font-size: 0.9rem;
}

/* thanks */
.thanks {
  padding-top: 80px;
}

.thanks h2 {
  margin-top: 0;
  margin-bottom: 70px;

  font-size: 1.2rem;

}

.thanks p {
  line-height: 0.9;
  line-height: 2;
  padding-bottom: 70px;
}

/* footer */
footer .logo {
  text-align: center;
  margin-top: 30px;
}

footer p {
  text-align: center;
  margin: 5px 0 30px;
  font-size: 0.75rem;
}
}