* {
  word-spacing: 3px;
  letter-spacing: 1px;
  color: #333;
}

ul, li, a, div {
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: unset;
}

.blue {
  color: #6BBDFF;
}

.green {
  color: #ABE15E;
}

.white {
  color: #fff;
}

.red {
  color: #d65151;
}

body {
  font-size: 1rem;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

p {
  margin: 1rem 0;
}

section {
  margin: 10rem auto;
  max-width: 1200px;
}

section h2 {
  font-size: 5rem;
  line-height: 0.75;
  margin: 0 0 5rem 0;
}

section h2 span {
  color: #999;
  font-size: 1.75rem;
  font-weight: 300;
}

a:hover {
  color: orange;
  -webkit-transition: .5s;
  transition: .5s;
}

.nav_mb {
  display: none;
}

/* ===========================

HEADER

=========================== */
header {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  -webkit-box-shadow: 0px 0px 10px #333;
          box-shadow: 0px 0px 10px #333;
  z-index: 999;
}

header .navigation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.25rem;
}

header .navigation .logo {
  margin: 1rem 0;
}

header .navigation .logo h1 {
  font-size: 1.25rem;
  margin: 0;
}

header .navigation .logo h1 span {
  font-size: .75rem;
  color: #999;
  font-weight: 100;
}

header .navigation nav {
  width: 46%;
}

header .navigation nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .navigation nav ul li {
  text-align: center;
  font-weight: bold;
}

header .navigation nav ul li span {
  color: #999;
  font-size: .75rem;
  font-weight: 100;
}

header .navigation nav ul li:hover span {
  color: orange;
  -webkit-transition: .5s;
  transition: .5s;
}

/* ===========================

INTRODUCTION

=========================== */
.intro {
  background: -webkit-gradient(linear, left top, right top, from(#ABE15E), to(#6BBDFF));
  background: linear-gradient(0.25turn, #ABE15E, #6BBDFF);
  height: 100vh;
  width: 100%;
  background-size: 400% 400%;
  -webkit-animation: gradAnimation 6s ease infinite;
          animation: gradAnimation 6s ease infinite;
}

.intro .intro_ill {
  background: url(../img/top_map.svg) no-repeat;
  background-position: center;
  background-size: contain;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  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;
}

.intro .intro_ill .intro_text {
  background: rgba(255, 255, 255, 0.3);
  padding: 4rem 5rem;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.intro .intro_ill .intro_text h2 {
  font-size: 2rem;
}

@-webkit-keyframes gradAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===========================

Services / Partnership / Works

=========================== */
section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section .contentsText {
  margin-left: 3vmax;
}

section .contentsText ul {
  margin: 2rem 0;
}

section .contentsText ul li {
  list-style: inside;
}

section .blockLeft {
  padding: 0 2rem;
  width: 50%;
}

section .blockLeft svg {
  width: 100%;
}

section .blockRight {
  padding: 0 2rem;
  width: 50%;
}

section .blockRight svg {
  width: 100%;
}

/* ===========================

About

=========================== */
.about {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  text-align: center;
}

.about th, .about td {
  font-weight: unset;
  padding: 3rem .5rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #aaa;
}

.about th {
  width: 24%;
}

/* ===========================

CONTACT

=========================== */
.contact {
  background: -webkit-gradient(linear, left top, right top, from(#ABE15E), to(#6BBDFF));
  background: linear-gradient(0.25turn, #ABE15E, #6BBDFF);
}

.contact section {
  display: block;
  margin: 10rem auto 0;
}

.contact section .contact_inner {
  max-width: 800px;
  padding: 10rem 0;
  margin: 0 auto;
}

.contact section .contact_inner h2 {
  text-align: center;
}

.contact section .contact_inner table {
  width: 100%;
  font-size: unset;
}

.contact section .contact_inner table th, .contact section .contact_inner table td {
  font-weight: unset;
  padding: 1rem .5rem;
  text-align: left;
  vertical-align: top;
}

.contact section .contact_inner table th input[type=text], .contact section .contact_inner table th input[type=tel], .contact section .contact_inner table th input[type=email], .contact section .contact_inner table th textarea, .contact section .contact_inner table td input[type=text], .contact section .contact_inner table td input[type=tel], .contact section .contact_inner table td input[type=email], .contact section .contact_inner table td textarea {
  padding: 1rem;
  width: 100%;
  border: none;
}

.contact section .contact_inner table th input[type=submit], .contact section .contact_inner table td input[type=submit] {
  border: none;
  padding: 1rem 3rem;
  background-color: #6BBDFF;
  color: #fff;
  cursor: pointer;
}

.contact section .contact_inner table th input[type=submit]:hover, .contact section .contact_inner table td input[type=submit]:hover {
  background-color: #d65151;
}

.contact section .contact_inner table th {
  width: 30%;
}

.contact section .contact_inner table td {
  width: 70%;
}

.contact section .contact_inner table .pp {
  color: #fff;
  text-decoration: underline;
}

footer {
  font-size: .75rem;
  display: -ms-grid;
  display: grid;
  text-align: center;
}

.wpcf7-list-item {
  margin: 0 !important;
}

/* ===========================

Privacy Policy Page

=========================== */
.privP {
  display: inline-block;
  width: 100%;
}

.privP section {
  display: block;
  max-width: 1200px;
  margin: 10rem auto 5rem;
  padding: 0 15px;
}

.privP section p {
  max-width: 1000px;
  margin: 0 auto;
}

.privP section .ppTitle {
  margin-bottom: 6rem;
}

.privP section .ppTitle h2 {
  max-width: 1000px;
  margin: 0 auto;
  color: #6BBDFF;
}

.privP section .ppBlock {
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid #aaa;
  padding: 3rem 0;
}

.privP section .ppBlock h2 {
  font-size: 2rem;
}

/* ===========================

Break Point 1024

=========================== */
@media screen and (max-width: 1024px) {
  header .navigation {
    display: block;
  }
  header .navigation nav {
    display: none;
    margin: 0 auto;
  }
  header .navigation nav ul {
    display: block;
  }
  header .navigation nav ul li {
    margin: 2rem 0;
  }
  header .navigation .nav_mb {
    display: block;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    right: 15px;
    top: 1rem;
  }
  header .navigation .nav_mb .burger {
    display: block;
  }
  header .navigation .nav_mb .burger .line1, header .navigation .nav_mb .burger .line2, header .navigation .nav_mb .burger .line3 {
    display: block;
    background-color: #333;
    height: 2px;
    width: 2rem;
    margin: 0.5rem 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .navigation .nav_act {
    display: block;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
  }
  header .navigation .nav_act ul li {
    opacity: 1;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  header .navigation .burger_act .line1 {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  header .navigation .burger_act .line2 {
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
    opacity: 0;
  }
  header .navigation .burger_act .line3 {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
            transform: rotate(-45deg) translate(8px, -8px);
  }
  .header_act {
    background-color: rgba(255, 255, 255, 0.9);
    height: 100%;
  }
}

/* ===========================

Break Point 796

=========================== */
.mbDisplay768 {
  display: none;
}

@media screen and (max-width: 768px) {
  .mbDisplay768 {
    display: block;
  }
  header .navigation .logo h1 {
    font-size: 1rem;
  }
  .intro .intro_ill {
    background-position: right;
    background-size: cover;
    padding: 0 15px;
  }
  .intro .intro_ill .intro_text {
    padding: 2rem;
  }
  .intro .intro_ill .intro_text h2 {
    font-size: 1.75rem;
  }
  section {
    margin: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section .blockRight, section .blockLeft {
    width: 100%;
    padding: 0 15px;
  }
  section h2 {
    font-size: 2.75rem;
    line-height: 1.25;
    margin: 0 0 3rem 0;
  }
  section h2 span {
    color: #999;
    font-size: 1rem;
    font-weight: 300;
  }
  section .contentsText {
    margin-left: 0;
  }
  section .about {
    margin: 10rem 0 0 0;
  }
  section .about h2 {
    margin: 0;
  }
  section .about table {
    margin-top: 5rem;
  }
  section .about table th, section .about table td {
    display: block;
    width: 90%;
    padding: 15px;
  }
  section .about table th {
    border: none;
    padding-top: 2rem;
    padding-bottom: 0;
  }
  section .about table td {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .s, .w {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .contact section .contact_inner .contact_text {
    padding: 0 15px;
  }
  .contact section .contact_inner table th, .contact section .contact_inner table td {
    display: block;
    width: 84%;
  }
}
/*# sourceMappingURL=ar.css.map */