@charset "UTF-8";
/*======================================
color
======================================*/
/*======================================
インナー幅
======================================*/
/*======================================
mixin
======================================*/
/*======================================
#common - 全体に共通するスタイル
======================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 886px) {
  .is-sp {
    display: none;
  }
}

/*======================================
reset.css/共通設定
======================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 62.5%;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

dd, dt {
  margin: 0;
  padding: 0;
}

body {
  font-family: "ヒラギノ角ゴ ProN W3","Yu Gothic UI", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.4px;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.inner {
  width: 1200px;
  margin: 0 auto;
  height: inherit;
  max-width: calc(100% - 3% * 2);
}

@media screen and (max-width: 767px) {
  .inner {
    max-width: calc(100% - 4% * 2);
    margin: 0 auto;
  }
}

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

.btn-blue {
  color: #fff;
  background: #1571DA;
}

.section-padding {
  padding: 8rem 0;
}

.section-title {
  font-size: 2rem;
  font-size: 1.8rem;
}

/*======================================
header
======================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  background: #fff;
  color: #333333;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media screen and (max-width: 767px) {
  header {
    height: 78px;
  }
}

.js-change-header-color {
  background: #2070BF;
  color: #fff;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-left {
  width: 270px;
  max-width: 70%;
  text-align: center;
  font-weight: bold;
  padding: 1rem 0;
}

.header-logo {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .header-logo {
    font-size: 1.6rem;
  }
}

.header-logo-sm {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .header-logo-sm {
    font-size: 1.2rem;
  }
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

@media screen and (max-width: 885px) {
  .header-right {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header-right {
    display: none;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-nav-item {
  padding: 2rem 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.header-nav-item:not(:first-child) {
  margin-left: 3.5rem;
}

.header-tell {
  font-weight: bold;
}

.tell-small {
  font-size: 1.3rem;
}

.header-btn {
  padding: 11px 19px;
  text-align: center;
  border-radius: 5%;
  line-height: 1.6rem;
  margin-top: 1.7rem;
  margin-left: 4rem;
}

.header-btn a {
  font-size: 1.6rem;
  display: block;
}

.header-btn-span {
  font-size: 1.2rem;
}

.drawer-icon {
  position: fixed;
  cursor: pointer;
  right: 60px;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  z-index: 300;
}

@media screen and (max-width: 885px) {
  .drawer-icon {
    display: block;
    top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
    top: 30px;
  }
}

.drawer-icon.drawer-is-active {
  cursor: pointer;
}

.drawer-icon.drawer-is-active .drawer-icon_bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #333333;
}

.drawer-icon.drawer-is-active .drawer-icon_bar2 {
  display: none;
}

.drawer-icon.drawer-is-active .drawer-icon_bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
  background: #333333;
}

.drawer-icon_bars {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
}

.drawer-icon_bar1,
.drawer-icon_bar2,
.drawer-icon_bar3 {
  position: relative;
  width: 30px;
  height: 2px;
  background: #333333;
  top: 0;
  left: 0;
}

.drawer-icon_bar1 {
  top: 0px;
}

.drawer-icon_bar2 {
  top: 6px;
}

.drawer-icon_bar3 {
  top: 12px;
}

.drawer-content {
  width: 270px;
  height: 100%;
  position: fixed;
  top: 78px;
  right: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-content > :first-child {
  margin-top: 20px;
}

.drawer-content.drawer-is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (max-width: 885px) {
  .drawer-content {
    top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .drawer-content {
    top: 78px;
  }
}

.drawer-content_items .footer-nav {
  padding: 2rem 1.8rem;
  text-align: right;
  font-size: 1.8rem;
}

/*======================================
top
======================================*/
.top {
  padding-top: 62.25%;
  background: url(../img/catch001.jpg) no-repeat center top/contain;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  height: 100%;
  margin-top: 100px;
}

/*======================================
about
======================================*/
.about {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
}

.about-inner {
  width: 76%;
}

@media screen and (min-width: 886px) {
  .about-flex {
    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;
  }
}

.about-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  position: relative;
}

.about-img::before {
  position: absolute;
}

@media screen and (max-width: 767px) {
  .about-img {
    margin-bottom: 2rem;
  }
}

.about-text-box {
  color: #333333;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
  position: relative;
}

@media screen and (min-width: 886px) {
  .about-text-box {
    width: 77%;
  }
}

.about-title {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .about-title {
    margin-bottom: 2rem;
  }
}

.about-text {
  font-size: 1.6rem;
  padding-bottom: 50px;
  padding-bottom: 2rem;
}

.about-title {
  font-size: 2rem;
}

@media screen and (min-width: 886px) {
  .about-title {
    font-size: 2.5rem;
  }
}

/*======================================
reason
======================================*/
@media screen and (min-width: 886px) {
  .reason-inner {
    width: calc(100% - 20%);
  }
}

@media screen and (max-width: 885px) {
  .reason-inner {
    width: calc(100% - 10%);
  }
}

@media screen and (max-width: 767px) {
  .reason-inner {
    width: calc(100% - 8%);
  }
}

.reasontitle-box {
  text-align: center;
  margin-bottom: 4rem;
}

.reason-title {
  font-weight: bold;
  font-size: 1.7rem;
}

@media screen and (min-width: 886px) {
  .reason-title {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 886px) {
  .small-font {
    font-size: 2rem;
  }
}

.yl-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff6));
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.reason-sub-title {
  font-size: 1.4rem;
  margin-bottom: .5rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .reason-sub-title {
    font-size: 1.1rem;
  }
}

.reason-sub-title > :first-child {
  margin-left: 0;
}

.reason-items {
  margin: 0 auto;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  counter-reset: number 0;
}

@media screen and (max-width: 767px) {
  .reason-items {
    width: 100%;
    margin: 0 auto;
  }
}

.reason-item {
  margin-bottom: 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: solid 2px #c7c7c7;
}

.reason-item :nth-child(2n) {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.reason-item::after {
  counter-increment: number 1;
  content: counter(number);
  color: #E3E3E3;
  top: -10rem;
  right: 0;
  font-size: 10rem;
  width: 112px;
}

@media screen and (max-width: 767px) {
  .reason-item {
    display: block;
    border: none;
    max-width: 340px;
    margin: 0 auto;
    margin-bottom: 4rem;
  }
  .reason-item:not(:last-child) {
    padding-bottom: 48px;
  }
}

.reason-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.reason-item-img {
  width: 28%;
}

@media screen and (max-width: 767px) {
  .reason-item-img {
    margin-bottom: 5px;
    width: 100%;
  }
}

.reason-text-box {
  width: 72%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .reason-text-box {
    width: 100%;
  }
}

.reason-text {
  position: absolute;
  top: 50%;
  left: 1%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 2rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .reason-text {
    font-size: 1.4rem;
    -webkit-transform: none;
            transform: none;
    left: 20%;
  }
}

/*======================================
concept
======================================*/
.concept {
  position: relative;
}

.concept-title {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  color: #707070;
  margin-bottom: 11rem;
}

@media screen and (max-width: 767px) {
  .concept-title {
    font-size: 1.8rem;
  }
}

.concept-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: -10%;
  width: 100%;
  height: 20rem;
  background: rgba(112, 112, 112, 0.2);
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

@media screen and (max-width: 885px) {
  .concept-title::before {
    top: -5%;
  }
}

@media screen and (max-width: 767px) {
  .concept-title::before {
    top: -2%;
  }
}

.concept-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 87%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .concept-item {
    display: block;
  }
}

.concept-img {
  width: 41.66667%;
}

@media screen and (max-width: 767px) {
  .concept-img {
    width: 100%;
    margin: auto;
    margin-bottom: 2rem;
  }
}

.concept-right {
  width: 58.33333%;
  margin-left: 6.66667%;
}

@media screen and (max-width: 767px) {
  .concept-right {
    width: 100%;
    margin-left: 0;
  }
}

.concept-text {
  font-size: 1.7rem;
  font-weight: bold;
  color: #707070;
}

.concept-text p {
  padding-bottom: 2rem;
  font-family: "Yu Gothic UI";
}

@media screen and (max-width: 767px) {
  .concept-text {
    text-align: center;
    font-size: 1.4rem;
  }
}

.concept-btn {
  padding: 5px 10px;
  text-align: center;
  width: 330px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.concept-btn a {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .concept-btn {
    margin: 0 auto;
    width: auto;
  }
}

/*======================================
bg-bar
======================================*/
.bg-bar {
  margin-top: 160px;
  background: url(../img/bg-ber.jpg) no-repeat center top/cover;
  width: 100%;
  max-width: 100%;
  padding: 3rem 0;
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

@media screen and (max-width: 767px) {
  .bg-bar {
    background: url(../img/sp-bg-ber.jpg) no-repeat left center/cover;
    margin-top: 9px;
    padding-top: 20px;
    position: relative;
  }
  .bg-bar::before {
    content: "";
    position: absolute;
    height: inherit;
    width: inherit;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
  }
}

.bg-ber-inner {
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
}

.bg-ber-text {
  width: 81%;
  margin: 0 auto;
  text-align: center;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .bg-ber-text {
    color: #fff;
    line-height: 1.5;
  }
}

.bg-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.bg-title:nth-child(2) {
  font-size: 1.8rem;
  margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
  .bg-title:nth-child(2) {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .bg-title {
    font-size: 1.6rem;
  }
}

.bg-text {
  font-size: 1.6rem;
  margin-bottom: 4rem;
}

/*======================================
facebook
======================================*/
.facebook {
  padding-bottom: 10rem;
}

.fb-content {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  color: #707070;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .fb-content {
    width: 90%;
  }
}

.fb-subtitle {
  font-size: 1.6rem;
}

.fb-btn {
  display: inline-block;
  width: 290px;
}

/*======================================
info
======================================*/
.info {
  background: #E9E9E9;
}

.info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .info-item {
    display: block;
  }
}

.info-img {
  width: 41.66667%;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .info-img {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}

.info-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -10px;
  left: -10px;
  background: #9b9b9b;
  z-index: -1;
}

.info-text {
  width: 58.33333%;
  margin-left: 6.66667%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .info-text {
    width: 100%;
    margin: 0 auto;
  }
}

.info-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .info-title {
    margin-bottom: 2rem;
  }
}

.info-btn {
  padding: 18px 20px;
  font-size: 20px;
  width: 50%;
  margin: 0 auto 4rem;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .info-btn {
    margin-bottom: 2rem;
  }
}

.info-tell-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}

.info-tell-items .message {
  font-size: 1.4rem;
}

@media screen and (max-width: 885px) {
  .info-tell-items .message {
    margin-bottom: 20px;
  }
}

.info-tell-items .tell-info {
  font-family: "Roboto";
  font-size: 3.4rem;
}

@media screen and (max-width: 885px) {
  .info-tell-items .tell-info {
    margin-bottom: 20px;
  }
}

.info-tell-items .time-info {
  font-size: 1.4rem;
}

/*======================================
footer
======================================*/
.footer {
  background: #2070BF;
  color: #fff;
  padding: 6rem;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 6rem 3rem;
  }
}

.footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .footer-box {
    display: block;
  }
}

.footer-right {
  text-align: center;
  width: 41.66667%;
  margin-right: 2rem;
}

@media screen and (max-width: 767px) {
  .footer-right {
    width: 100%;
  }
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 885px) {
  .footer-logo {
    font-size: 2rem;
  }
}

.sm-footer-logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.footer-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5rem 0;
}

.footer-tell {
  margin-bottom: 4rem;
}

.footer-add {
  margin-bottom: 1rem;
}

.footer-left {
  width: 41.66667%;
}

@media screen and (max-width: 767px) {
  .footer-left {
    width: 100%;
  }
}

.iframe-wrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 74.95%;
  position: relative;
}

.iframe-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.small {
  text-align: center;
  margin-top: 5rem;
}

/*pagetop*/
#page-top {
  position: fixed;
  right: 40px;
  bottom: 47px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  #page-top {
    right: 16px;
    bottom: 13px;
  }
}

/*======================================
contact
======================================*/
.contact {
  width: 100%;
  max-width: 100%;
  margin-top: 100px;
  padding-bottom: 100px;
}

.contact-inner {
  width: 75%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contact-inner {
    width: calc(100% - 4% * 2);
  }
}

.contact-bar {
  background: #2070BF;
  text-align: center;
  color: #fff;
  padding: 1rem;
  font-size: 1.8rem;
}

.contact-bar .small-contact-font {
  font-size: 1.4rem;
}

.contact_form {
  background: transparent;
  width: 95%;
  max-width: 720px;
  margin: 60px auto 0;
}

@media screen and (max-width: 767px) {
  .contact_form {
    padding: 12px 12px 0;
    margin: 23px auto 0;
    width: 100%;
    height: auto;
    border-radius: 0 0 12px 12px;
  }
}

.contact-form-dl {
  margin: 0;
  padding: 0;
}

.contact-form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form_row:not(:first-child) {
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .contact-form_row {
    display: block;
  }
  .contact-form_row:not(:first-child) {
    margin-top: 24px;
  }
}

.contact-textarea {
  display: block;
}

@media screen and (min-width: 886px) {
  .contact-textarea {
    margin-top: 2px;
  }
}

.contact-form-label {
  width: 133px;
  vertical-align: bottom;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .contact-form-label {
    width: 100%;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .contact-form_label {
    width: 100%;
    line-height: 1.5;
  }
}

.label {
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .label {
    line-height: 1.3;
  }
}

.label.is-required {
  display: inline-block;
  position: relative;
}

.label.is-required::after {
  content: "必須";
  position: absolute;
  width: 42px;
  height: 16px;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -60px;
  background: #FF4646;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  line-height: 1;
}

@media screen and (min-width: 886px) {
  .label.is-required::after {
    right: -53px;
  }
}

@media screen and (max-width: 767px) {
  .label.is-required::after {
    left: 255px;
  }
}

.contact-form-input {
  width: calc(100% - 188px);
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .contact-form-input {
    width: 100%;
    margin-top: 16px;
    line-height: 1.5;
  }
}

.contact-form-input [type="text"] {
  position: relative;
  width: 100%;
  color: inherit;
  font-size: 14px;
  padding: 8px 16px;
  border: none;
  border-bottom: 1px solid #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 0;
  font-family: inherit;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact-form-input [type="text"] .contact-focusLine {
  bottom: 1px;
  -webkit-box-shadow: 0 2px 4px rgba(73, 115, 255, 0.6);
          box-shadow: 0 2px 4px rgba(73, 115, 255, 0.6);
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  width: 100%;
}

.contact-form-input [type="text"]:focus, .contact-form-input [type="text"]:hover {
  border-bottom: 1px solid #3e3e3e;
  outline: none;
}

.contact-form-input [type="text"] [type="text"]:hover + .contact-focusLine, .contact-form-input [type="text"] [type="text"]:focus + .contact-focusLine {
  opacity: 1;
}

.contact-form-input [type="text"] [type="email"]:hover + .contact-focusLine, .contact-form-input [type="text"] [type="email"]:focus + .contact-focusLine {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .contact-form-input [type="text"] {
    height: 19px;
    font-size: 14px;
    padding: 17px 5px;
  }
}

.contact-form-input [type="email"] {
  display: inline-block;
  width: 100%;
  height: 32px;
  color: inherit;
  font-size: 14px;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 0;
  font-family: inherit;
  outline: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact-form-input [type="email"]:focus, .contact-form-input [type="email"]:hover {
  border-bottom: 1px solid #3e3e3e;
}

@media screen and (max-width: 767px) {
  .contact-form-input [type="email"] {
    height: 19px;
    font-size: 14px;
    padding: 17px 5px;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-input-textarea {
    height: 160px;
  }
}

.contact-form-input-textarea textarea {
  margin-top: 4px;
  height: 200px;
  resize: none;
  width: 100%;
  color: inherit;
  font-size: 16px;
  padding: 12px 12px;
  border: 1px solid #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 0;
  font-family: inherit;
  outline: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact-form-input-textarea textarea:hover {
  border: 1px solid #3e3e3e;
}

.contact-form-input-textarea textarea:focus {
  border: 1px solid #3e3e3e;
  -webkit-box-shadow: 0 0 8px #3e3e3e;
          box-shadow: 0 0 8px #3e3e3e;
}

@media screen and (max-width: 767px) {
  .contact-form-input-textarea textarea {
    margin-top: 16px;
    height: 160px;
  }
}

.contact-form_button {
  margin-top: 41px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-form_button {
    line-height: 1;
    width: 165px;
    margin: 35px auto 28px;
  }
}

.contact-form_button .btn-submit {
  background: #B2B2B2;
  width: 173px;
  height: 50px;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  padding: 10px 50px;
  border-radius: 10px;
  border: 0;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: no-drop;
}

.contact-form_button .btn-submit.-active {
  background-color: #2070BF;
  color: #fff;
  cursor: pointer;
}

.contact-form_button .btn-submit.-active:hover {
  background: #F18900;
}

@media screen and (max-width: 767px) {
  .contact-form_button .btn-submit {
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 1.6;
    width: 165px;
  }
}

.contact-message {
  text-align: center;
  display: none;
}

.contact-message.-error {
  color: #f00;
}

/*======================================
union
======================================*/
.union {
  margin-top: 100px;
}

.union-messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .union-messages {
    display: block;
    margin-right: 0;
  }
}

.text-message {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
  margin-right: 20px;
  font-size: 1.6rem;
  border: 2px solid #2070BF;
  padding: 2rem;
}

@media screen and (max-width: 767px) {
  .text-message {
    margin-right: 0px;
  }
}

.sub-message {
  text-align: right;
}

.message-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ruel {
  text-align: center;
  width: 280px;
  margin: 5rem auto;
}

.title-ruel {
  font-size: 2.2rem;
  text-decoration: underline;
  padding: 1rem;
  text-align: center;
}

.sub-title-ruel {
  text-align: left;
  font-size: 16px;
}

.price-item {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 5rem;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .price-item {
    margin-top: 1rem;
  }
}

.price-item table {
  border-collapse: collapse;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .price-item table {
    height: 168px;
    line-height: 1;
  }
}

.price-item th, .price-item td {
  border: 1px solid #707070;
  height: 58px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  padding: 16px 40px;
}

@media screen and (max-width: 767px) {
  .price-item th, .price-item td {
    height: 56px;
    padding: 15px 15px;
    font-weight: 600;
    font-size: 1.5rem;
  }
}

.price-item th {
  background: #FFFFFF;
  color: #3E3E3E;
  text-align: left;
}

.price-item th:nth-child(3n + 1) {
  background: #3E3E3E;
  width: 172px;
  color: #FFFFFF;
  text-align: center;
}

.price-item td {
  width: 73%;
  background: #FFFFFF;
  color: #3E3E3E;
  text-align: left;
}

.price-item td:nth-child(3n + 1) {
  background: #3E3E3E;
  width: 172px;
  color: #FFFFFF;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .price-item td {
    padding-left: 23px;
    width: 72%;
  }
}

.price-item .td3-2 {
  font-size: 13px;
}
