@charset "UTF-8";
/* =============================================================
# color
=============================================================*/
/* =============================================================
# color  ー  text
=============================================================*/
/* =============================================================
# text
=============================================================*/
/* =============================================================
# レイアウト幅
=============================================================*/
/* =============================================================
# mixin
=============================================================*/
/* =============================================================
# common　ー　全体に共通するスタイル
=============================================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.6875;
  background: #fff;
  color: #333333;
}

img {
  max-width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

/* header
________________________________________________*/
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.drawer--right .header .drawer-hamburger {
  right: 3px;
}
.header .drawer-hamburger-icon {
  background-color: #3EA1D1;
}
.drawer-open .header .drawer-hamburger-icon {
  background-color: transparent;
}
.header .drawer-hamburger-icon::before, .header .drawer-hamburger-icon::after {
  background-color: #3EA1D1;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 60px;
  }
}

.header__logo {
  width: 120px;
}

.header__nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    top: 60px;
    background-color: #3EA1D1;
    padding: 24px 0;
  }
}

@media (min-width: 768px) {
  .header__nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .header__nav-item + .header__nav-item {
    margin-left: 46px;
  }
}

.header__nav-item-link {
  display: block;
  color: #333333;
  height: 70px;
  line-height: 70px;
  letter-spacing: 0.1 em;
}
@media screen and (max-width: 767px) {
  .header__nav-item-link {
    color: #fff;
    font-size: 18px;
    text-align: right;
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
  }
}
@media (min-width: 768px) {
  .header__nav-item-link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .header__nav-item-link:hover {
    color: #3EA1D1;
  }
}

/* footer
________________________________________________*/
.footer {
  background: #f7f7f7;
  padding: 42px 40px 12px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 36px 0px 14px;
  }
}

.footer__logo {
  width: 120px;
  margin: 0 auto;
}

.footer__nav-list {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .footer__nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    text-align: center;
    margin-top: 16px;
  }
}

@media (min-width: 768px) {
  .footer__nav-item + .footer__nav-item {
    margin-left: 30px;
  }
}

.footer__nav-item-link {
  font-size: 12px;
  color: #333333;
  display: block;
  padding: 1em 0;
}
@media (min-width: 768px) {
  .footer__nav-item-link {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .footer__nav-item-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-item-link {
    padding: 0.3em 0;
  }
}

.footer__sns-list {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__sns-list {
    margin-top: 14px;
  }
}

.footer__sns-item {
  display: inline-block;
}
.footer__sns-item + .footer__sns-item {
  margin-left: 10px;
}

.footer__sns-item-link {
  color: #3EA1D1;
  font-size: 24px;
  display: block;
  padding: 0.1em 0.5em;
}
@media (min-width: 768px) {
  .footer__sns-item-link {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .footer__sns-item-link:hover {
    opacity: 0.7;
  }
}

.footer__copy {
  color: #888888;
  font-style: 12px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 5px;
  }
}

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

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

.util-title {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .util-title {
    font-size: 30px;
  }
}
.util-title::after {
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  background: #3EA1D1;
  margin: 16px auto 0;
}

.util-link {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #3EA1D1;
  border: 1px solid #3EA1D1;
  background: #fff;
  display: inline-block;
  padding: 10px 54px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.util-link.-active {
  background: #3EA1D1;
  color: #fff;
}
@media (min-width: 768px) {
  .util-link:not(.-submit):hover {
    background: #3EA1D1;
    color: #fff;
  }
}

/* top
________________________________________________*/
.top {
  position: relative;
}

@media (min-width: 768px) {
  .top__picture {
    padding-top: 55%;
    background: url(../img/top.png) top right/82.5% no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .top__picture {
    padding-top: 120%; /*414/345*120*/
    background: url(../img/sp/top.png) center center/cover;
  }
}

@media (min-width: 768px) {
  .top__message {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #fff;
    padding: 82px 44px 90px 40px;
  }
}
@media screen and (max-width: 767px) {
  .top__message {
    margin-top: 31px;
  }
}

.top__message-title {
  font-size: 26px;
  font-weight: bold;
}

.top__message-text {
  margin-top: 28px;
}

/* concept
________________________________________________*/
.concept__inner {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .concept__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .concept__inner {
    margin-top: 46px;
  }
}

@media (min-width: 768px) {
  .concept__picture {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (min-width: 768px) {
  .concept__message {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    margin-left: 6.6667%;
  }
}
@media screen and (max-width: 767px) {
  .concept__message {
    margin-top: 35px;
  }
}

.concept__message-titile {
  font-size: 20px;
  font-weight: bold;
}

.concept__message-text {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .concept__message-text {
    margin-top: 20px;
  }
}

/* feature
________________________________________________*/
@media screen and (max-width: 767px) {
  .feature {
    max-width: 340px;
  }
}

.feature__list {
  margin-top: 64px;
}
@media (min-width: 768px) {
  .feature__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .feature__list {
    margin-top: 46px;
  }
}

@media (min-width: 768px) {
  .feature__items {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 28.3333%;
        -ms-flex: 0 0 28.3333%;
            flex: 0 0 28.3333%;
  }
}
@media screen and (max-width: 767px) {
  .feature__items + .feature__items {
    margin-top: 49px;
  }
}

.feature__item-link {
  display: block;
  color: #333333;
  background: #fff;
  -webkit-box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16);
}
@media (min-width: 768px) {
  .feature__item-link:hover .feature__item-picture > img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.feature__item-picture {
  overflow: hidden;
}
.feature__item-picture > img {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.feature__item-body {
  text-align: center;
  font-weight: bold;
  padding: 26px 12px;
}

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

.about__inner {
  position: relative;
}

.about-title {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about-title {
    font-size: 20px;
  }
}

.about-text {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .about-text {
    font-size: 14px;
    margin-top: 22px;
    line-height: 1.7143;
  }
}

/* products
________________________________________________*/
.products {
  max-width: 940px;
}
@media screen and (max-width: 767px) {
  .products {
    max-width: 340px;
    padding: 0 58px;
  }
}

.products__list {
  margin-top: 64px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .products__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .products__list {
    margin-top: 48px;
  }
}

@media (min-width: 768px) {
  .products__items {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 27.6%;
        -ms-flex: 0 0 27.6%;
            flex: 0 0 27.6%;
  }
}
@media screen and (max-width: 767px) {
  .products__items + .products__items {
    margin-top: 40px;
  }
}

.products__item-link {
  display: block;
  color: #333333;
  font-size: 14px;
}
@media (min-width: 768px) {
  .products__item-link:hover .products__item-picture > img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.products__item-picture {
  overflow: hidden;
}
.products__item-picture > img {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.products__item-body {
  margin-top: 22px;
}

.products__item-cost {
  color: #888888;
  margin-top: 10px;
}

.products__footer {
  text-align: center;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .products__footer {
    margin-top: 42px;
  }
}

/* news
________________________________________________*/
.news {
  max-width: 1040px;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 0 32px;
  }
}

.news__list {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .news__list {
    margin-top: 25px;
  }
}

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

.news__item-link {
  color: #333333;
  font-size: 14px;
  padding: 22px 0;
  display: block;
}
@media (min-width: 768px) {
  .news__item-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news__item-link:hover .news__item-picture > img {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
  }
}

@media (min-width: 768px) {
  .news__item-header {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 260px;
        -ms-flex: 0 0 260px;
            flex: 0 0 260px;
  }
}

.news__item-picture {
  background: #000;
  padding-top: 61.5385%;
  position: relative;
  overflow: hidden;
}
.news__item-picture > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

@media (min-width: 768px) {
  .news__item-body {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news__item-body {
    margin-top: 21px;
  }
}

.news__item-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 16px;
  }
}

.news__item-text {
  color: #888888;
  margin-top: 16px;
  line-height: 1.7143;
}

.news__footer {
  text-align: center;
  margin-top: 48px;
}

/* concept2
________________________________________________*/
@media (min-width: 768px) {
  .concept2__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .concept2__picture {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (min-width: 768px) {
  .concept2__message {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    margin-right: 6.6667%;
  }
}

.concept2__message-titile {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .concept2__message-titile {
    margin-top: 34px;
    font-size: 20px;
  }
}

.concept2__message-text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .concept2__message-text {
    font-size: 14px;
    line-height: 1.7143;
  }
}

/* contact
________________________________________________*/
.contact {
  background: url(../img/contact.png) center center/cover;
  margin-top: 225px;
  padding: 72px 40px 80px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 92px;
    padding: 52px 28px;
  }
}
.contact .util-title {
  color: #3EA1D1;
}
.contact input[type=text],
.contact input[type=email],
.contact textarea {
  width: 100%;
  border: 0;
  font-size: 16px;
  padding: 0.2em 0.5em;
  -webkit-box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.16);
  border-radius: 2px;
}
.contact input[type=text],
.contact input[type=email] {
  height: 40px;
}
.contact textarea {
  min-height: 122px;
  resize: vertical;
}

.contact__form {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 26px;
  }
}

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

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

.contact__list {
  max-width: 510px;
  margin: 18px auto 0;
}

@media (min-width: 768px) {
  .contact__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.contact__item + .contact__item {
  margin-top: 32px;
}

.contact__title {
  background: rgba(62, 161, 209, 0.7);
  color: #FFFFFF;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding-left: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .contact__title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact__title {
    display: inline-block;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .contact__title::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -7.5px;
    border-style: solid;
    border-width: 20px 0 20px 8px;
    border-color: transparent transparent transparent rgba(62, 161, 209, 0.7);
  }
}

.contact__item-inline {
  font-size: 12px;
  color: #E7728E;
  vertical-align: super;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact__item-inline {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .contact__input {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 320px;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
    margin-left: 18px;
  }
}
@media screen and (max-width: 767px) {
  .contact__input {
    margin-top: 3px;
  }
}

.contact__radio-wrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #fff;
  border-radius: 1px;
  -webkit-box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 15px rgba(96, 96, 96, 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: #fff;
  border-radius: 1px;
}
.contact__radio-input:focus-visible + .contact__radio-part {
  outline: -webkit-focus-ring-color auto 5px;
}

.contact__radio-part {
  display: block;
  background: #fff;
  color: #3EA1D1;
  height: 38px;
  width: 80px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}

.contact__footer {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact__footer {
    margin-top: 14px;
  }
}

.contact__privacy {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

.contact__privacy-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact__privacy-input:checked + .contact__privacy-part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
.contact__privacy-input:focus-visible + .contact__privacy-part {
  outline: -webkit-focus-ring-color auto 5px;
}
.contact__privacy-input:checked:focus-visible + .contact__privacy-part {
  outline: none;
}

.contact__privacy-part {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #3EA1D1;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.contact__privacy-link {
  color: #3EA1D1;
  text-decoration: underline;
}

.contact__footer-submit {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .contact__footer-submit {
    margin-top: 24px;
  }
}

.contact__message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact__message.-error {
  color: #f00;
}/*# sourceMappingURL=style.css.map */