/* color */
/* thickness */
* {
  margin: 0;
  padding: 0;
  letter-spacing: 0.09em;
}

html,
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 18px;
  color: #0f0f0f;
  background-color: #ffffff;
}
@media screen and (max-width: 1280px) {
  html,
  body {
    font-size: 16px;
  }
}

html {
  scroll-padding-top: 80px;
}
@media screen and (max-width: 1280px) {
  html {
    scroll-padding-top: 160px;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
  position: relative;
  background-repeat: no-repeat;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.6s;
}
a:hover {
  text-decoration: none;
}

h2 {
  font-weight: 600;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  border-style: none;
}

th,
td {
  border: none;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

li {
  list-style: none;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text],
input[type=textarea],
input[type=email],
input[type=radio],
input[type=checkbox],
input[type=tel],
textarea,
select {
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
  border-radius: 0 !important;
}

.l-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .l-header {
    position: fixed;
  }
}

.l-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
  width: 40%;
  max-width: 640px;
  background-color: #ffffff;
  z-index: 102;
}
@media screen and (max-width: 1280px) {
  .l-header-logo {
    text-align: center;
    height: 80px;
    padding: 24px 32px;
    width: calc(100% - 80px);
    max-width: 400px;
  }
}

.l-header-btn {
  display: none;
  width: 80px;
  height: 80px;
  z-index: 101;
  background-color: #0368b6;
}
@media screen and (max-width: 1280px) {
  .l-header-btn {
    display: block;
  }
}
.l-header-btn span {
  display: block;
  width: 32px;
  height: 2px;
  left: 24px;
  background-color: #ffffff;
  position: absolute;
  transition: all 0.6s;
}
.l-header-btn span:nth-child(1) {
  top: 24px;
}
.l-header-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header-btn span:nth-child(3) {
  bottom: 24px;
}

.l-header-btn--open span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.l-header-btn--open span:nth-child(2) {
  opacity: 0;
}
.l-header-btn--open span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 48%;
}

.l-header-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  font-weight: 500;
  margin-right: 80px;
  z-index: 100;
}
@media screen and (max-width: 1280px) {
  .l-header-nav {
    opacity: 0;
    flex-direction: column-reverse;
    position: fixed;
    background-color: rgba(3, 104, 182, 0.9);
    transition: all 0.6s;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    margin-right: 0;
    padding: 160px 80px 80px 80px;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header-nav {
    padding: 160px 48px 80px;
  }
}

.l-header-nav--open {
  opacity: 1;
  pointer-events: auto;
}

.l-header-tel {
  text-align: right;
  margin-bottom: 20px;
}
.l-header-tel a {
  display: inline-block;
  padding: 8px 32px 8px 64px;
  border: 1px solid #ffffff;
  font-size: 20px;
  transition: all 0.6s;
}
@media screen and (max-width: 1280px) {
  .l-header-tel a {
    width: 100%;
    text-align: left;
    border: none;
    background-color: rgba(3, 104, 182, 0.7);
    padding: 24px 32px 24px 64px;
    border: 1px solid #fff;
  }
}
@media screen and (max-width: 1280px) and (max-width: 768px) {
  .l-header-tel a {
    text-align: center;
  }
}
.l-header-tel a::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../images/header-tel.png);
  background-size: 20px 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  left: 32px;
  transform: translatey(-50%);
}
@media screen and (max-width: 768px) {
  .l-header-tel a::before {
    left: 64px;
  }
}
.l-header-tel a:hover {
  background-color: #0368b6;
}
.l-header-tel img {
  width: 20px;
}

.l-header-menu {
  display: flex;
}
.l-header-menu li {
  padding: 0 24px;
}
.l-header-menu a {
  display: block;
  transition: all 0.6s;
}
.l-header-menu a:hover {
  opacity: 0.4;
}
.l-header-menu li:not(:first-child) {
  border-left: 1px solid #ffffff;
}
.l-header-menu li:last-child {
  padding-right: 0;
}
@media screen and (max-width: 1280px) {
  .l-header-menu {
    display: block;
    margin-bottom: 80px;
  }
  .l-header-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .l-header-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .l-header-menu li:not(:first-child) {
    border-left: none;
  }
  .l-header-menu li:last-child {
    padding-right: inherit;
  }
  .l-header-menu a {
    padding: 24px;
  }
}

.l-header--detail {
  background-color: #ffffff;
}
.l-header--detail .l-header-tel a {
  background-color: #0368b6;
}
.l-header--detail .l-header-tel a:hover {
  background-color: #8eaed5;
}
.l-header--detail .l-header-menu {
  color: #0f0f0f;
}
.l-header--detail .l-header-menu li:not(:first-child) {
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 1280px) {
  .l-header--detail .l-header-menu {
    color: #ffffff;
  }
  .l-header--detail .l-header-menu li:not(:first-child) {
    border-left: none;
  }
}

.l-header-btn--top {
  background-color: transparent;
  transition: all 0.6s;
}
.l-header-btn--top.fadeIn {
  background-color: #0368b6;
}

@media screen and (max-width: 1280px) {
  .l-header--top {
    background-color: transparent;
    transition: all 0.6s;
  }
  .l-header--top.fadeIn {
    background-color: #ffffff;
  }
}

.l-main--detail {
  display: block;
  padding-top: 135px;
}

.l-footer {
  background-color: #0368b6;
  color: #ffffff;
}

.l-footer-logo {
  width: 28%;
  padding: 40px 80px;
  background-color: #ffffff;
}
@media screen and (max-width: 1280px) {
  .l-footer-logo {
    padding: 320px;
    padding: 32px 64px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-logo {
    width: 100%;
    text-align: center;
    padding: 32px 48px;
  }
}

.l-footer-headline {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .l-footer-headline {
    display: block;
  }
}

.l-footer-youtube {
  margin-left: 64px;
  width: 72%;
  /*max-width: 330px;*/
}
.l-footer-youtube a {
  display: inline-flex;
  align-items: flex-end;
  padding: 16px 32px;
  border: 1px solid #ffffff;
  font-weight: 500;
  transition: all 0.6s;
}
.l-footer-youtube a:hover {
  opacity: 0.6;
}
.l-footer-youtube img {
  width: auto;
  max-height: 22px;
  margin-right: 20px;
}
.l-footer-youtube p {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  /*
  span {
  	font-size: 16px;
  }
  */
}
@media screen and (max-width: 1280px) {
  .l-footer-youtube {
    margin-left: initial;
    margin: 48px 80px 0px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-youtube {
    margin: 24px auto 0;
    width: 92%;
  }
  .l-footer-youtube a {
    padding: 13px 0;
    width: 100%;
    justify-content: center;
  }
  .l-footer-youtube img {
    max-height: 20px;
    margin-right: 2%;
  }
  .l-footer-youtube p {
    font-size: 16px;
  }
}

.l-footer-content {
  padding: 16px 160px;
  font-weight: 500;
}
.l-footer-content section {
  padding: 48px 0;
}
.l-footer-content p {
  line-height: 2.5em;
}
.l-footer-content section:first-child {
  border-bottom: solid 1px #ffffff;
}
.l-footer-content section:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
}
.l-footer-content h3 {
  font-size: 24px;
  margin-bottom: 48px;
}
.l-footer-content h3 a {
  transition: all 0.6s;
}
.l-footer-content h3 a:hover {
  opacity: 0.5;
}
.l-footer-content ul {
  margin-right: 64px;
  margin-bottom: 48px;
}
.l-footer-content li {
  margin-bottom: 48px;
  font-weight: 600;
}
.l-footer-content li a {
  padding-left: 48px;
  transition: all 0.6s;
}
.l-footer-content li a:hover {
  opacity: 0.5;
}
.l-footer-content li a::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #ffffff;
  top: 50%;
  width: 16px;
  height: 2px;
  left: 0;
  transform: translatey(-50%);
}
.l-footer-content li:last-child {
  margin: 0;
}
.l-footer-content .product {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1280px) {
  .l-footer-content {
    padding: 16px 80px;
  }
  .l-footer-content h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .l-footer-content ul {
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .l-footer-content .technology ul:first-child {
    margin-bottom: 24px;
  }
  .l-footer-content li {
    padding-left: 32px;
    margin-bottom: 24px;
  }
  .l-footer-content li:last-child {
    margin: 0;
  }
  .l-footer-content section {
    padding: 48px 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-content {
    padding: 24px;
  }
  .l-footer-content section:nth-child(2) {
    display: block;
  }
}

.l-footer-copy {
  padding: 0 0 48px;
}/*# sourceMappingURL=common.css.map */