@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
/*-----------メディアクエリ----------------------*/
/*--------------------body---------------------------------------------------*/
body {
  font-size: 16px;
  line-height: 1.6875;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  color: #333333;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.section {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .section {
    margin-top: 96px;
  }
}

.section-title {
  font-family: "Lato", sans-serif;
  text-align: center;
}
.section-title h2 {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  color: #333333;
  line-height: 1;
  position: relative;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 30px;
  }
}
.section-title h2::after {
  position: absolute;
  display: block;
  bottom: -16px;
  opacity: 1;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #3EA1D1;
}
@media (max-width: 767px) {
  .section-title h2::after {
    width: 42px;
    height: 1px;
  }
}

.more {
  display: block;
  margin-top: 48px;
  text-align: center;
}
@media (max-width: 767px) {
  .more {
    margin-top: 42px;
  }
}
.more a {
  display: inline-block;
  padding: 10px 54px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #3EA1D1;
  background-color: #FFFFFF;
  border: 1px solid #3EA1D1;
  cursor: pointer;
}
.more a:hover {
  color: #FFFFFF;
  background-color: #3EA1D1;
}

/*------------header----------------------------------------------*/
.header {
  height: 70px;
  max-width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  color: #ffffff;
  display: flex;
  align-items: center;
  height: inherit;
}

.header-logo {
  width: 120px;
}
.header-logo img {
  display: block;
}

.header-nav {
  display: flex;
  color: #333333;
  align-items: center;
  margin-left: auto;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}
.header-nav li:not(:first-child) {
  margin-left: 46px;
}
.header-nav li a {
  position: relative;
  display: inline-block;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease 0s;
}
.header-nav li a::after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header-nav li a:hover {
  color: #3EA1D1;
}
.header-nav li a:hover::after, .header-nav li a.is-active::after {
  background-color: #3EA1D1;
}

.drawer-icon {
  position: fixed;
  top: 22px;
  right: 15px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon-bars {
  width: 30px;
  height: 18px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #3EA1D1;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  width: 270px;
  height: 100%;
  position: fixed;
  top: 60px;
  right: 0;
  background: #3EA1D1;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.3s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-item a {
  text-align: right;
  display: block;
  color: #FFFFFF;
  padding: 20px 15px;
  font-size: 18px;
}
.drawer-content-item a:first-child {
  padding-top: 46px;
}

/*---------------top-------------------------------------*/
.top {
  padding-top: 70px;
}
@media (max-width: 767px) {
  .top {
    padding-top: 60px;
  }
}

.top-content {
  position: relative;
}

.top-img {
  padding-top: 55%;
  background: url(../img/top@2x.png) no-repeat top right/82.5%;
}
@media (max-width: 767px) {
  .top-img {
    padding-top: 120%;
    background: url(../img/top@2x.png) no-repeat center center/cover;
  }
}

.top-texts {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #fff;
  padding: 82px 44px 90px 40px;
}
@media (max-width: 767px) {
  .top-texts {
    position: static;
    padding: 32px 0 0;
    text-align: center;
  }
}

.top-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6923076923;
}

.top-text-secondary {
  font-weight: 300;
  line-height: 1.6875;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .top-text-secondary {
    margin-top: 14px;
  }
}

/*---------------concept------------------------------------------*/
.concept-content {
  margin-top: 64px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .concept-content {
    display: block;
    margin-top: 46px;
  }
}

.concept-img {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .concept-img {
    width: 100%;
  }
}

.concept-text {
  flex: 0 1 50%;
  padding-left: 6.6667%;
}
@media (max-width: 767px) {
  .concept-text {
    width: 100%;
    padding-left: 0;
    margin-top: 35px;
  }
}
.concept-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .concept-text h3 {
    font-size: 18px;
  }
}
.concept-text p {
  margin-top: 48px;
  font-weight: 300;
  line-height: 1.6875;
}
@media (max-width: 767px) {
  .concept-text p {
    margin-top: 20px;
  }
}

.feature-list {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .feature-list {
    margin-top: 46px;
    display: block;
  }
}

.feature-item {
  flex: 0 0 28.3333%;
  background-color: #ffffff;
  box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.1607843137);
}
@media (max-width: 767px) {
  .feature-item:not(:first-child) {
    margin-top: 49px;
  }
}
.feature-item a {
  display: inline-block;
  color: #333333;
}

.feature-item-img {
  overflow: hidden;
}
.feature-item-img img {
  transition: all 0.3s ease 0s;
}
.feature-item-img img:hover {
  transform: scale(1.05);
}

.feature-item-text {
  padding: 26px 16px;
}
@media (max-width: 767px) {
  .feature-item-text {
    padding: 12px;
  }
}
.feature-item-text p {
  font-weight: 600;
  line-height: 1.6875;
  text-align: center;
}

.about {
  padding: 120px 0;
  background: url(../img/bg@2x.png) no-repeat center center/cover;
  color: #FFFFFF;
  position: relative;
}
.about::before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.12);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .about {
    background: url(../img/bg.png) no-repeat center center/cover;
    padding: 176px 0 52px;
  }
}

.about-content {
  position: relative;
}
.about-content h3 {
  font-size: 22px;
}
@media (max-width: 767px) {
  .about-content h3 {
    padding-top: 63px;
    font-size: 20px;
  }
}
.about-content p {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .about-content p {
    padding-top: 22px;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

.products {
  max-width: 940px;
  margin: 160px auto 0;
}
@media (max-width: 767px) {
  .products {
    max-width: 340px;
  }
}

.products-content {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .products-content {
    display: block;
    margin-top: 48px;
  }
}

.products-box {
  flex: 0 0 27.6%;
}
@media (max-width: 767px) {
  .products-box:not(:first-child) {
    margin-top: 40px;
  }
}
.products-box a {
  display: block;
  font-size: 14px;
}

.products-img {
  overflow: hidden;
}
.products-img img {
  transition: all 0.3s ease 0s;
}
.products-img img:hover {
  transform: scale(1.05);
}

.products-body {
  padding: 24px 0 16px;
}
@media (max-width: 767px) {
  .products-body {
    padding: 12px 0 8px;
  }
}

.products-title {
  line-height: 1.7142857143;
}

.products-cost {
  color: #989898;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .products-cost {
    margin-top: 5px;
  }
}

.news-content {
  max-width: 1040px;
  margin-top: 64px;
}
@media (max-width: 767px) {
  .news-content {
    margin-top: 32px;
  }
}

.news-items {
  padding: 0 80px;
}
@media (max-width: 767px) {
  .news-items {
    padding: 0 17px;
  }
}

.news-item {
  border-bottom: 1px solid #e0e0e0;
}

.news-item-row {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 22px 0;
}
@media (max-width: 767px) {
  .news-item-row {
    display: block;
  }
}

.news-item-img {
  flex: 0 0 260px;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .news-item-img {
    width: 100%;
  }
}
.news-item-img:hover {
  transform: scale(1.05);
}

.news-item-meta {
  flex: 0 1 100%;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .news-item-meta {
    width: 100%;
    margin-left: 0px;
    margin-top: 21px;
  }
}

.news-item-title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .news-item-title {
    margin-top: 8px;
    font-size: 16px;
  }
}

.news-item-text {
  margin-top: 16px;
  color: #888888;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news-item-text {
    margin-top: 12px;
  }
}

/*concept2---------------------------------------------*/
.concept2-content {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .concept2-content {
    display: block;
    margin-top: 32px;
  }
}

.concept2-img {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .concept2-img {
    width: 100%;
  }
}

.concept2-text {
  flex: 0 1 50%;
  padding-right: 6.6667%;
}
@media (max-width: 767px) {
  .concept2-text {
    width: 100%;
    padding-right: 0;
  }
}
.concept2-text h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .concept2-text h3 {
    font-size: 20px;
    margin-top: 34px;
  }
}
.concept2-text p {
  margin-top: 30px;
  line-height: 1.6875;
}
@media (max-width: 767px) {
  .concept2-text p {
    margin-top: 14px;
    line-height: 1.7142857143;
  }
}

.contact {
  background: url(../img/contact@2x.png) no-repeat center center/cover;
  margin-top: 225px;
  padding: 72px 40px 86px;
}
@media (max-width: 767px) {
  .contact {
    margin-top: 92px;
    padding: 56px 28px;
  }
}

.contact-title h2 {
  color: #3EA1D1;
}

.contact-form {
  margin: 56px;
}
@media (max-width: 767px) {
  .contact-form {
    margin-top: 26px;
  }
}

.contact-text {
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1rem;
}

.sup {
  color: #E7728E;
  font-size: 16px;
}

sup {
  color: #E7728E;
  font-size: 12px;
}
@media (max-width: 767px) {
  sup {
    font-size: 10px;
  }
}

.contact-content {
  max-width: 520px;
  margin: 0 auto;
}

.contact-form-row {
  display: flex;
}
@media (max-width: 767px) {
  .contact-form-row {
    display: inline-block;
  }
}
.contact-form-row:not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .contact-form-row:not(:first-child) {
    margin-top: 16px;
  }
}

.contact-form-label {
  flex: 0 1 100%;
  background-color: rgba(62, 161, 209, 0.7019607843);
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding-left: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form-label {
    display: inline-block;
  }
}
.contact-form-label label {
  line-height: 1;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
}
.contact-form-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -8px;
  border-style: solid;
  border-width: 20px 0 20px 8px;
  border-color: transparent transparent transparent rgba(62, 161, 209, 0.7019607843);
}
@media (max-width: 767px) {
  .contact-form-label::after {
    display: none;
  }
}

.contact-form-input {
  flex: 0 0 320px;
  margin-left: 18px;
}
@media (max-width: 767px) {
  .contact-form-input {
    margin-left: 0;
    margin-top: 3px;
  }
}

.contact-radio-wrap {
  display: inline-flex;
  border: solid 1px #ffffff;
  border-radius: 1px;
  box-shadow: 5px 6px 16px rgba(0, 0, 0, 0.16);
}

.contact-radio {
  position: relative;
}

.contact-radio-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-radio-input:checked + .contact-radio-part {
  background-color: #3EA1D1;
  color: #ffffff;
  border-radius: 1px;
}
.contact-radio-input:focus + .contact-radio-part {
  outline: -webkit-focus-ring-color auto 5px;
}

.contact-radio-part {
  display: block;
  background-color: #ffffff;
  color: #3EA1D1;
  height: 38px;
  line-height: 38px;
  width: 80px;
  text-align: center;
  transition: all 0.3s ease 0s;
}

[type=text],
[type=email],
textarea {
  width: 320px;
  max-width: 100%;
  border: none;
  font-size: 16px;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  box-shadow: 5px 6px 16px rgba(0, 0, 0, 0.16);
  color: inherit;
  font-family: inherit;
  background-color: #ffffff;
}

[type=text],
[type=email] {
  height: 40px;
}

textarea {
  min-height: 122px;
  resize: vertical;
  width: 320px;
  max-width: 100%;
  border: none;
}

.contact-form-check {
  margin-top: 20px;
  text-align: center;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .contact-form-check {
    margin-top: 14px;
  }
}
.contact-form-check [type=checkbox] {
  display: none;
}
.contact-form-check span {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}
.contact-form-check span::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.contact-form-check span::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: transparent url(../img/checkbox.svg) no-repeat center center/contain;
  display: none;
}
.contact-form-check span a {
  color: #3EA1D1;
  text-decoration: underline;
}
.contact-form-check [type=checkbox]:checked + span::after {
  display: block;
}

.contact-form-button {
  margin-top: 51px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-form-button {
    margin-top: 24px;
  }
}
.contact-form-button [type=submit] {
  background: #fff;
  color: #3EA1D1;
  width: 137px;
  display: inline-block;
  font-weight: 46;
  padding: 15px 53px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: 1px solid #3EA1D1;
  font-size: 14px;
  letter-spacing: 1.4px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.contact-form-button [type=submit]:-active {
  color: #FFFFFF;
  background-color: #3EA1D1;
}

/*----------------------footer--------------------------*/
.footer {
  padding-top: 42px;
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 36px;
  }
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
}

.footer-privacy {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-privacy {
    display: block;
  }
}
.footer-privacy li {
  font-size: 12px;
  display: block;
  padding: 1em 0;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .footer-privacy li {
    padding: 0.3em 0;
    text-align: center;
  }
}
.footer-privacy li:not(:first-child) {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .footer-privacy li:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .footer-privacy li {
    margin-top: 16px;
  }
}

.footer-sns-list {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-sns-list {
    margin-top: 14px;
  }
}

.footer-sns-item:not(:first-child) {
  margin-left: 16px;
}
.footer-sns-item a {
  color: #3EA1D1;
  font-size: 24px;
  display: inline-block;
  padding: 0.1rem 0.5rem;
  transition: all 0.3s ease 0s;
}

.footer-copy {
  margin-top: 10px;
  font-size: 12px;
  color: #888888;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-copy {
    margin-top: 5px;
  }
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact-message.-error {
  color: red;
}