@charset "UTF-8";
/*=======================================
#mixins
=======================================*/
/*=======================================
#color
=======================================*/
/*=======================================
#Text
=======================================*/
/*=======================================
#common
=======================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

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

body {
  min-width: 750px;
  color: #333;
  font-size: 20px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN";
  line-height: 1.5;
}

img {
  width: 100%;
}

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

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

a {
  cursor: pointer;
}

/*----------------------
 breadcrumbs
 -----------------------*/
.breadcrumbs {
  position: absolute;
  top: -40px;
  left: 0;
}

.breadcrumbs-other {
  position: absolute;
  top: -40px;
  left: 170px;
}

.breadcrumbs-privacy {
  position: absolute;
  top: 30px;
  left: 10px;
}

.breadcrumbs-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumbs-list-item + .breadcrumbs-list-item {
  margin-left: 8px;
}

.breadcrumbs-list-item:last-child .breadcrumbs-list-item-link {
  pointer-events: none;
}

.breadcrumbs-list-item-link {
  display: block;
  font-size: 14px;
  font-weight: 300;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.breadcrumbs-list-item-link:hover::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
}

/* ========================
header
===========================*/
.header {
  width: 100%;
  position: fixed;
  z-index: 100;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 0 10px;
}

@media screen and (max-width: 1285px) {
  .header .drawer-hamburger {
    width: 40px;
    top: 10px;
    right: 41px;
  }
}

@media screen and (max-width: 767px) {
  .header .drawer-hamburger {
    width: 55px;
    z-index: 50;
    top: 61px;
    right: 46px;
  }
  .header .drawer-hamburger:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 80px;
    height: 80px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}

.header .drawer-hamburger-icon {
  background-color: #333;
  height: 5px;
}

@media screen and (max-width: 1285px) {
  .header .drawer-hamburger-icon {
    top: 3px;
    right: 0px;
  }
}

@media screen and (max-width: 767px) {
  .header .drawer-hamburger-icon {
    top: 2px;
    right: 0px;
  }
}

.drawer-open .header .drawer-hamburger-icon {
  background-color: transparent;
}

.header .drawer-hamburger-icon::before, .header .drawer-hamburger-icon::after {
  background-color: #333;
  height: 5px;
}

@media screen and (max-width: 1285px) {
  .header .drawer-hamburger-icon::before {
    top: -15px;
  }
}

@media screen and (max-width: 767px) {
  .header .drawer-hamburger-icon::before {
    top: -22px;
  }
}

@media screen and (max-width: 1285px) {
  .header .drawer-hamburger-icon::after {
    top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .header .drawer-hamburger-icon::after {
    top: 22px;
  }
}

@media screen and (max-width: 1285px) {
  .drawer-open .drawer-hamburger-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg) translateY(9px) translateX(10px);
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .drawer-open .drawer-hamburger-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg) translateY(14px) translateX(11px);
    background-color: #fff;
  }
}

@media screen and (max-width: 1285px) {
  .drawer-open .drawer-hamburger-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg) translateY(-13px) translateX(12px);
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .drawer-open .drawer-hamburger-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg) translateY(-22px) translateX(16px);
    background-color: #fff;
  }
}

@media screen and (max-width: 1285px) {
  .drawer--right.drawer-open .drawer-hamburger {
    right: 7px;
    top: 5px;
  }
}

@media screen and (max-width: 767px) {
  .drawer--right.drawer-open .drawer-hamburger {
    top: 19px;
    right: 10px;
  }
}

.header-inner {
  max-width: 1330px;
  margin: 0 auto;
  background-color: #fff;
  padding: 0 26px 0 26px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .header-inner {
    border-radius: 50px;
    margin-top: 35px;
  }
}

@media screen and (min-width: 768px) {
  .header-inner {
    border-radius: 35.5px;
    margin-top: 7px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-logo {
  display: inline-block;
}

.header-logo-mark {
  position: relative;
}

@media screen and (max-width: 767px) {
  .header-logo-mark {
    width: 544px;
    -o-object-fit: contain;
       object-fit: contain;
    vertical-align: middle;
    margin-left: 5px;
    padding: 5px 0;
  }
}

@media screen and (min-width: 768px) {
  .header-logo-mark {
    width: 318px;
  }
  .header-logo-mark:hover {
    opacity: 0.7;
  }
}

.drawer--right
.drawer-nav {
  right: -750px;
}

@media screen and (max-width: 1285px) {
  .header-nav {
    width: 350px;
    top: 7px;
  }
}

@media screen and (max-width: 767px) {
  .header-nav {
    width: 750px;
    top: 0;
  }
}

@media screen and (min-width: 1286px) {
  .header-nav {
    margin-left: auto;
  }
}

@media screen and (max-width: 1285px) {
  .header-nav-list {
    padding: 60px 0 60px;
    background-color: #7DBD5E;
  }
  .header-nav-list .is-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header-nav-list {
    padding: 110px 0 55px;
    background-color: #7DBD5E;
  }
}

@media screen and (min-width: 1286px) {
  .header-nav-list {
    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: 1285px) {
  .header-nav-item {
    border-top: 1px solid #fff;
    text-align: center;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .header-nav-item {
    border-top: 1px solid #fff;
    text-align: center;
  }
}

@media screen and (min-width: 1286px) {
  .header-nav-item + .header-nav-item {
    margin-left: 1em;
  }
}

.header-nav-item-link {
  display: block;
}

@media screen and (max-width: 1285px) {
  .header-nav-item-link {
    font-size: 20px;
    font-weight: 400;
    line-height: 60px;
    height: 60px;
    text-align: center;
    color: #fff;
    padding: 0 60px;
  }
  .header-nav-item-link:not(last-child):hover::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
  }
}

@media screen and (max-width: 767px) {
  .header-nav-item-link {
    font-size: 40px;
    font-weight: 400;
    line-height: 110px;
    height: 110px;
    text-align: center;
    color: #fff;
  }
}

@media screen and (min-width: 1286px) {
  .header-nav-item-link {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.04em;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    text-align: center;
  }
  .header-nav-item-link:hover {
    color: #7DBD5E;
  }
}

@media screen and (max-width: 1285px) {
  .active {
    background-color: rgba(255, 255, 255, 0.9);
    color: #7DBD5E;
  }
}

@media screen and (max-width: 767px) {
  .active {
    color: #7DBD5E;
  }
}

@media screen and (min-width: 1286px) {
  .active {
    color: #7DBD5E;
  }
}

.header-contact-btn {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

@media screen and (max-width: 1285px) {
  .header-contact-btn {
    padding-top: 55px;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .header-contact-btn {
    padding-top: 55px;
    position: relative;
  }
}

.header-nav-item-link-contact {
  display: inline-block;
}

@media screen and (max-width: 1285px) {
  .header-nav-item-link-contact {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 12px 25px 12px 66px;
    background-color: #fff;
    border-radius: 24px;
    position: relative;
    color: #7DBD5E !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #7dbd5e 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #7dbd5e));
    background-image: linear-gradient(to right, transparent 50%, #7dbd5e 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .header-nav-item-link-contact::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    font-size: 30px;
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-nav-item-link-contact:hover {
    background-color: #7DBD5E;
    background-position: -100% 100%;
    color: #fff !important;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    border: 3px solid #fff;
    padding: 8px 22px 9px 63px;
  }
}

@media screen and (max-width: 767px) {
  .header-nav-item-link-contact {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #7DBD5E;
    padding: 24px 49px 24px 132px;
    background-color: #fff;
    border-radius: 30px;
    position: relative;
  }
  .header-nav-item-link-contact::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    font-size: 50px;
    top: 50%;
    left: 50px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-nav-item-link-contact:hover {
    background-color: #7DBD5E;
    background-position: -100% 100%;
    color: #fff !important;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    border: 3px solid #fff;
    padding: 24px 49px 24px 132px;
  }
}

@media screen and (min-width: 1286px) {
  .header-nav-item-link-contact {
    font-size: 12px;
    font-weight: 400;
    line-height: 45px;
    color: #fff;
    height: 45px;
    background-color: #7DBD5E;
    padding: 0 24px;
    border-radius: 22px;
    color: #fff !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, white 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, white));
    background-image: linear-gradient(to right, transparent 50%, white 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .header-nav-item-link-contact:hover {
    background-color: #fff;
    background-position: -100% 100%;
    color: #7DBD5E !important;
    border: 3px solid #7DBD5E;
    line-height: 39px;
    padding: 0 21px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
  }
}

.gig_loader {
  display: none;
}

.email-icon {
  position: absolute;
  font-size: 38px;
  top: 60%;
  left: 87px;
  color: #7DBD5E;
}

.drawer-toggle {
  background-color: transparent;
  border: none;
}

/* ========================
footer
===========================*/
.footer {
  width: 100%;
  background-color: #231815;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 120px 0;
  }
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 63px 0;
  }
}

.footer-title {
  display: block;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer-logo {
    max-width: 567px;
  }
}

@media screen and (min-width: 768px) {
  .footer-logo {
    width: 344px;
  }
  .footer-logo:hover {
    opacity: 0.7;
  }
}

.footer-item-list {
  margin: 27px auto 0;
}

@media screen and (max-width: 767px) {
  .footer-item-list {
    width: 100%;
    margin-top: 82px;
  }
}

@media screen and (min-width: 768px) {
  .footer-item-list {
    width: 430px;
  }
}

@media screen and (max-width: 767px) {
  .footer-item {
    text-align: center;
    margin-top: 61px;
  }
}

@media screen and (min-width: 768px) {
  .footer-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-item-content-title {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer-item-content-title {
    font-size: 30px;
    font-weight: 300;
  }
}

@media screen and (min-width: 768px) {
  .footer-item-content-title {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin-left: 7px;
  }
}

.footer-item-content {
  color: #fff;
  margin-left: 7px;
}

@media screen and (max-width: 767px) {
  .footer-item-content {
    font-size: 29px;
    font-weight: 300;
  }
}

@media screen and (min-width: 768px) {
  .footer-item-content {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

.footer-item-address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 7px;
}

@media screen and (max-width: 767px) {
  .footer-item-address {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-tel {
  text-align: center;
  -webkit-transition: -webkit-text-decoration .3s;
  transition: -webkit-text-decoration .3s;
  transition: text-decoration .3s;
  transition: text-decoration .3s, -webkit-text-decoration .3s;
}

@media screen and (max-width: 767px) {
  .footer-tel {
    margin-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .footer-tel {
    margin-top: 32px;
  }
}

.footer-tel-link {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer-tel-link {
    font-size: 32px;
    font-weight: 700;
  }
}

@media screen and (min-width: 768px) {
  .footer-tel-link {
    font-size: 16px;
    font-weight: 300;
  }
}

.footer-tel-link:hover {
  text-decoration: underline;
}

.footer-privacy-list {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer-privacy-list {
    margin-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .footer-privacy-list {
    margin-top: 32px;
  }
}

.footer-privacy {
  text-align: center;
}

.footer-privacy-link {
  display: inline-block;
  color: #fff;
  text-align: center;
  position: relative;
}

.footer-privacy-link:hover::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .footer-privacy-link {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .footer-privacy-link {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

.footer-copyright {
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .footer-copyright {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .footer-copyright {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

/* ========================
common
===========================*/
.main {
  padding-top: 77px;
}

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

.util-title {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .util-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

@media screen and (min-width: 768px) {
  .util-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

.sub-title {
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sub-title {
    font-size: 32px;
    margin-top: 15px;
  }
}

@media screen and (min-width: 768px) {
  .sub-title {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* ========================
main
===========================*/
.section {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 120px 0;
  }
}

@media screen and (min-width: 768px) {
  .section {
    padding: 72px 0 72px 0;
  }
}

/* ========================
top
===========================*/
.top {
  background: url(/img/2index/topbg.jpg) center center/cover no-repeat;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top {
    height: 1233px;
  }
}

@media screen and (min-width: 768px) {
  .top {
    height: 700px;
  }
}

.top-message-title {
  font-weight: 800;
  color: #231815;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .top-message-title {
    font-size: 50px;
    text-align: center;
    position: absolute;
    bottom: 40%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .top-message-title {
    position: absolute;
    font-size: 42px;
    bottom: 213px;
    right: 115px;
  }
}

/* ========================
information
===========================*/
.information {
  background-color: #E8E8E8;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .information-list {
    width: 100%;
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .information-list {
    max-width: 730px;
    margin: 60px auto 0;
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .information-item + .information-item {
    margin-top: 68px;
  }
}

@media screen and (min-width: 768px) {
  .information-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  .information-item + .information-item {
    margin-top: 12px;
  }
}

.info-item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .info-item-body {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .info-date {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .info-date {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

.info-label {
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #7DBD5E;
}

@media screen and (max-width: 767px) {
  .info-label {
    font-size: 28px;
    padding: 4px 44px;
    border-radius: 40px;
    margin-left: 15px;
  }
}

@media screen and (min-width: 768px) {
  .info-label {
    font-size: 14px;
    padding: 3px 20px;
    border-radius: 15px;
    margin-left: 15px;
    height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .info-text {
    margin-top: 32px;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .info-text {
    margin-left: 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

/* ========================
Service
===========================*/
.service {
  padding: 107px 0  70px 0;
  width: 100%;
}

.service-item-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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 0 40px;
}

.service-item {
  background: #E8E8E8;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .service-item {
    width: 100%;
    margin-top: 53px;
    border-radius: 62px;
  }
}

@media screen and (min-width: 768px) {
  .service-item {
    border-radius: 21px;
  }
  .service-item:nth-child(n+1):nth-child(-n+4) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 47%;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
  .service-item:nth-child(n+5) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 949px) {
  .service-item:nth-child(n+5) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 47%;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}

@media screen and (min-width: 768px) {
  .service-item:nth-child(n + 3) {
    margin-top: 52px;
  }
}

@media screen and (min-width: 768px) {
  .service-item .service-item-body {
    padding: 20px 15px 18px;
  }
}

@media screen and (max-width: 767px) {
  .service-item .service-item-body {
    padding: 60px 60px 45px;
  }
}

@media screen and (min-width: 768px) {
  .service-item {
    border-radius: 21px;
  }
  .service-item:nth-child(n+1):nth-child(-n+4) .service-item-body {
    min-height: 250px;
  }
  .service-item:nth-child(n+5) .service-item-body {
    min-height: 330px;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 949px) {
  .service-item:nth-child(n+5) .service-item-body {
    min-height: 250px;
  }
}

@media screen and (min-width: 768px) {
  .service-item:nth-child(n + 3) {
    margin-top: 52px;
  }
}

.service-item-picture-link {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 21px 21px 0 0;
}

@media screen and (min-width: 768px) {
  .service-item-picture-link {
    height: 240px;
  }
}

@media screen and (max-width: 767px) {
  .service-item-picture-link {
    height: 400px;
  }
}

.service-item-picture-link img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.service-item-picture-link img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .service-item-picture-link img img {
    border-radius: 62px 62px 0 0;
    -o-object-fit: cover;
       object-fit: cover;
    height: 400px;
  }
}

.service-item-title {
  line-height: 1.5;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .service-item-title {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .service-item-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .service-item-text {
    margin-top: 50px;
    font-size: 32px;
    font-weight: 300;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .service-item-text {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  .service-item-btn {
    margin-top: 70px;
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .service-item-btn {
    text-align: center;
    position: absolute;
    bottom: 18px;
    right: 28px;
  }
}

.service-item-link {
  font-weight: 600;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .service-item-link {
    padding: 15px 53px 15px 30px;
    font-size: 23px;
    border-radius: 40px;
    line-height: 1.5;
    background-color: #7DBD5E;
    position: relative;
    color: #fff !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #fff 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fff));
    background-image: linear-gradient(to right, transparent 50%, #fff 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .service-item-link:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    margin-left: 16px;
    position: absolute;
    top: 50%;
    right: 23px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 30px;
  }
}

@media screen and (min-width: 768px) {
  .service-item-link {
    padding: 7px 43px 7px 29px;
    font-size: 10px;
    border-radius: 18px;
    background-color: #7DBD5E;
    position: relative;
    color: #fff !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #fff 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fff));
    background-image: linear-gradient(to right, transparent 50%, #fff 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .service-item-link:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    margin-left: 16px;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 30px;
  }
  .service-item-link:hover {
    background-color: #fff;
    background-position: -100% 100%;
    color: #7DBD5E !important;
    border: none;
    border: 3px solid #7DBD5E;
    padding: 4px 41px 4px 26px;
  }
}

/* ========================
About
===========================*/
.about {
  min-width: 750px;
  background-color: #7DBD5E;
}

.about .util-title,
.about .sub-title {
  color: #fff;
}

.about-sub-title {
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .about-sub-title {
    font-size: 38px;
    margin-top: 24px;
  }
}

@media screen and (min-width: 768px) {
  .about-sub-title {
    font-size: 16px;
    margin-top: 15px;
  }
}

.about-inner {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .about-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

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

@media screen and (min-width: 768px) {
  .about-left {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .about-left-picture {
    border-radius: 52px;
  }
}

@media screen and (max-width: 767px) {
  .about-message {
    width: 100%;
    margin-top: 62px;
  }
}

@media screen and (min-width: 768px) {
  .about-message {
    width: 50%;
  }
}

.about-text {
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .about-text {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .about-text {
    margin-left: 9.4%;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
  }
}

.about-link-btn {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .about-link-btn {
    margin-top: 120px;
    background-color: #fff;
    border-radius: 70px;
    height: 115px;
    border: 7px solid #7DBD5E;
  }
}

@media screen and (min-width: 768px) {
  .about-link-btn {
    text-align: right;
    margin-top: 25%;
  }
}

.about-link {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.07em;
  -webkit-transition: all .3s  ease 0s;
  transition: all .3s  ease 0s;
  color: #7DBD5E;
}

@media screen and (max-width: 767px) {
  .about-link {
    font-size: 28px;
    padding: 40px 122px 44px 72px;
    border-radius: 57px;
    color: #7DBD5E;
    display: inline-block;
    line-height: 1;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about-link {
    padding: 26px 42px 26px 17px;
    font-size: 17px;
    border-radius: 40px;
    line-height: 1px;
    border: 3px solid #7DBD5E;
    display: inline-block;
    background-color: #fff;
    color: #7DBD5E !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #7dbd5e 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #7dbd5e));
    background-image: linear-gradient(to right, transparent 50%, #7dbd5e 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .about-link:hover {
    background-color: #7DBD5E;
    background-position: -100% 100%;
    color: #fff !important;
    border: 3px solid #fff;
  }
}

.about-link::after {
  content: '\f35d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .about-link::after {
    top: 48%;
    right: 80px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .about-link::after {
    top: 48%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* ========================
totop
===========================*/
.pagetop {
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  width: 100%;
}

.pagetop a {
  display: block;
  background-color: #fff;
  border: 3px solid #7DBD5E;
  border-radius: 9999px;
  position: relative;
  position: fixed;
}

@media screen and (max-width: 767px) {
  .pagetop a {
    width: 106px;
    height: 106px;
    right: 30px;
    bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .pagetop a {
    width: 62px;
    height: 62px;
    right: 30px;
    bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .pagetop a {
    right: 30px;
    bottom: 150px;
  }
}

.pagetop a::after {
  content: '\f077';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  margin-left: 16px;
  position: absolute;
  color: #7DBD5E;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 767px) {
  .pagetop a::after {
    font-size: 40px;
    left: 35%;
  }
}

@media screen and (min-width: 768px) {
  .pagetop a::after {
    left: 23%;
  }
}

.pagetop a.is-show {
  visibility: visible;
}

.pagetop:hover {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  opacity: 0.7;
}

/* ========================
Cleaning-top
===========================*/
.cleaning-top {
  width: 100%;
  background: url(/img/3cleaning/cleaning2.jpg) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .cleaning-top {
    height: 1233px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .cleaning-top {
    height: 530px;
  }
}

.util-top-title {
  font-weight: 800;
  color: #333;
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .util-top-title {
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .util-top-title {
    padding-top: 300px;
    font-size: 40px;
  }
}

/* ========================
Cleaning-description
===========================*/
.description {
  width: 100%;
  background-color: #E8E8E8;
}

.description-inner {
  position: relative;
}

.description-title {
  padding-bottom: 25px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .description-title {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

@media screen and (min-width: 768px) {
  .description-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

.description-title::after {
  content: "";
  width: 135px;
  height: 4px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 2px;
}

.description-text {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .description-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 2.15;
  }
}

@media screen and (min-width: 768px) {
  .description-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 2.15;
  }
}

/* ========================
business-summary
===========================*/
.business-summary-title {
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .business-summary-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

@media screen and (min-width: 768px) {
  .business-summary-title {
    font-size: 32px;
  }
}

.business-summary-item {
  margin-top: 60px;
}

/* ========================
Achievement
===========================*/
.achievement {
  background-color: #E8E8E8;
}

.achievement-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #333;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .achievement-title {
    font-size: 45px;
  }
}

@media screen and (min-width: 768px) {
  .achievement-title {
    font-size: 32px;
  }
}

.achievement-item {
  margin-top: 60px;
}

/* ========================
cleaning-link
===========================*/
.cleaning-link {
  padding: 107px 0;
}

.cleaning-link-franchise {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .cleaning-link-franchise {
    background-color: #7DBD5E;
    border-radius: 70px;
    height: 115px;
  }
}

@media screen and (min-width: 768px) {
  .cleaning-link-franchise {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .cleaning-link-franchise-item {
    width: 100%;
    font-size: 26px;
    padding: 37px 0px 37px 50px;
    border-radius: 70px;
    display: inline-block;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: #fff !important;
  }
}

@media screen and (min-width: 768px) {
  .cleaning-link-franchise-item {
    font-size: 20px;
    border-radius: 40px;
    padding: 20px 100px 20px 100px;
    display: inline-block;
    font-weight: 700;
    background-color: #7DBD5E;
    text-align: center;
    position: relative;
    color: #fff !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #fff 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fff));
    background-image: linear-gradient(to right, transparent 50%, #fff 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .cleaning-link-franchise-item:hover {
    background-color: #fff;
    background-position: -100% 100%;
    color: #7DBD5E !important;
    border: none;
    border: 3px solid #7DBD5E;
    padding: 17px 97px 17px 97px;
  }
}

.cleaning-link-franchise-item::after {
  content: '\f35d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  margin-left: 16px;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 767px) {
  .cleaning-link-franchise-item::after {
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .cleaning-link-franchise-item::after {
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.cleaning-link-homepage {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cleaning-link-homepage {
    margin-top: 57px;
    text-align: center;
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .cleaning-link-homepage {
    margin-top: 120px;
    border-radius: 70px;
    height: 115px;
    background-color: #fff;
    border: 7px solid #7DBD5E;
  }
}

.cleaning-link-homepage-item {
  display: inline-block;
  font-weight: 700;
  color: #7DBD5E;
  position: relative;
}

@media screen and (max-width: 767px) {
  .cleaning-link-homepage-item {
    font-size: 28px;
    padding: 27px 0px 27px 90px;
    border-radius: 57px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .cleaning-link-homepage-item {
    font-size: 20px;
    border-radius: 40px;
    padding: 17px 154px 17px 154px;
    text-align: center;
    border: 3px solid #7DBD5E;
    background-color: #fff;
    color: #7DBD5E !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #7dbd5e 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #7dbd5e));
    background-image: linear-gradient(to right, transparent 50%, #7dbd5e 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .cleaning-link-homepage-item:hover {
    background-color: #fff;
    background-position: -100% 100%;
    color: #fff !important;
    border: none;
    padding: 20px 157px 20px 157px;
  }
}

.cleaning-link-homepage-item::after {
  content: '\f35d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  margin-left: 16px;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 767px) {
  .cleaning-link-homepage-item::after {
    top: 46%;
    right: 100px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .cleaning-link-homepage-item::after {
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* ========================
Minpaku-top
===========================*/
.minpaku-top {
  width: 100%;
  background: url(/img/4minpaku/minpaku1.png) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .minpaku-top {
    height: 1233px;
  }
}

@media screen and (min-width: 768px) {
  .minpaku-top {
    height: 530px;
  }
}

/* ========================
minpaku-summary
===========================*/
.minpakus-summary-title {
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .minpakus-summary-title {
    font-size: 50px;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .minpakus-summary-title {
    font-size: 32px;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .minpaku-summary-items {
    margin-top: 72px;
  }
}

@media screen and (min-width: 768px) {
  .minpaku-summary-items {
    position: relative;
    margin-top: 72px;
  }
}

.minpaku-summary-item-picture {
  display: block;
}

@media screen and (max-width: 767px) {
  .minpaku-summary-item-picture {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .minpaku-summary-item-picture {
    width: 724px;
    margin: 0 auto;
  }
}

/* ========================
minpaku-summary
===========================*/
.hostel-smily {
  background-color: #e8e8e8;
}

.hostel-smily-title {
  padding-bottom: 25px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hostel-smily-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

.hostel-smily-title::after {
  content: "";
  width: 135px;
  height: 4px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 2px;
}

.hostel-smily-contents {
  margin-top: 60px;
}

.hostel-smily-contents-title {
  background-color: #E97A00;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .hostel-smily-contents-title {
    border-radius: 50px;
    height: 96px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-contents-title {
    border-radius: 30px;
    height: 60px;
    width: 406px;
  }
}

.hostel-smily-contents-title-text {
  font-weight: 600;
  text-align: center;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hostel-smily-contents-title-text {
    font-size: 30px;
    line-height: 96px;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-contents-title-text {
    font-size: 20px;
    line-height: 60px;
  }
}

.hostel-smily-contents-title-text::after {
  position: absolute;
  content: "";
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .hostel-smily-contents-title-text::after {
    border-style: solid;
    border-width: 36px 21px 0 21px;
    border-color: #E97A00 transparent transparent transparent;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-contents-title-text::after {
    bottom: -22px;
    border-style: solid;
    border-width: 22px 12.5px 0 12.5px;
    border-color: #E97A00 transparent transparent transparent;
  }
}

@media screen and (max-width: 767px) {
  .hostel-smily-contents-list {
    width: 100%;
    margin-top: 36px;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-contents-list {
    margin-top: 49px;
    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) {
  .hostel-smily-contents-list-item + .hostel-smily-contents-list-item {
    margin-top: 73px;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-contents-list-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30.2%;
        -ms-flex: 0 0 30.2%;
            flex: 0 0 30.2%;
  }
}

@media screen and (max-width: 767px) {
  .hostel-smily-contents-list-item-picture {
    border-radius: 65px;
    height: 440px;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-contents-list-item-picture {
    border-radius: 26px;
  }
}

@media screen and (max-width: 767px) {
  .hostel-smily-bottom {
    margin-top: 120px;
    background-color: #fff;
    border-radius: 70px;
    height: 115px;
    border: 7px solid #7DBD5E;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-bottom {
    margin-top: 60px;
    text-align: center;
  }
}

.hostel-smily-bottom-link {
  display: inline-block;
  font-weight: 700;
  color: #7DBD5E;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hostel-smily-bottom-link {
    font-size: 28px;
    padding: 40px 0px 34px 75px;
    border-radius: 57px;
    color: #7DBD5E;
    display: inline-block;
    line-height: 1;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-bottom-link {
    font-size: 20px;
    padding: 26px 144px 26px 144px;
    line-height: 1px;
    text-align: center;
    border-radius: 30px;
    border: 3px solid #7DBD5E;
    background-color: #fff;
    color: #7DBD5E !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #7dbd5e 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #7dbd5e));
    background-image: linear-gradient(to right, transparent 50%, #7dbd5e 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .hostel-smily-bottom-link:hover {
    background-color: #fff;
    background-position: -100% 100%;
    color: #fff !important;
    border: none;
    padding: 29px 144px 29px 144px;
  }
}

.hostel-smily-bottom-link::after {
  content: '\f35d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  margin-left: 16px;
  position: absolute;
  top: 0;
  right: 22px;
}

@media screen and (max-width: 767px) {
  .hostel-smily-bottom-link::after {
    top: 50%;
    right: 80px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .hostel-smily-bottom-link::after {
    top: 48%;
    right: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* ========================
laundry 
===========================*/
.laundry-top {
  width: 100%;
  background: url(/img/5laundry/laundryt1.jpg) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .laundry-top {
    height: 1233px;
  }
}

@media screen and (min-width: 768px) {
  .laundry-top {
    height: 530px;
  }
}

.laundry-contents-top {
  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) {
  .laundry-contents-top {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .laundry-contents-top {
    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;
  }
}

.laundry-contents-top-item {
  width: 261px;
  height: 261px;
  background-color: #0E8964;
  border-radius: 50%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .laundry-contents-top-item {
    margin-left: 49px;
  }
}

.laundry-contents-top-item-text {
  width: 100%;
  font-size: 40px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.laundry-contents-top-item-text span {
  font-size: 27px;
  display: block;
  margin-top: 17px;
}

.laundry-contents-top-cross {
  font-size: 54px;
  color: #0E8964;
}

@media screen and (min-width: 768px) {
  .laundry-contents-top-cross {
    margin-left: 49px;
  }
}

.laundry-contents-bottom {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .laundry-contents-bottom {
    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;
  }
}

.laundry-contents-bottom-item {
  position: relative;
}

@media screen and (max-width: 767px) {
  .laundry-contents-bottom-item {
    width: 100%;
  }
  .laundry-contents-bottom-item + .laundry-contents-bottom-item {
    margin-top: 219px;
  }
  .laundry-contents-bottom-item:not(:last-child)::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 70px;
    color: #008074;
    position: absolute;
    bottom: -155px;
    left: 46%;
  }
}

@media screen and (min-width: 768px) {
  .laundry-contents-bottom-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30.2%;
        -ms-flex: 0 0 30.2%;
            flex: 0 0 30.2%;
  }
  .laundry-contents-bottom-item:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 30px;
    color: #008074;
    position: absolute;
    top: 106px;
    right: -31px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.laundry-contents-bottom-item-picture {
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .laundry-contents-bottom-item-picture {
    height: 438px;
    border-radius: 67px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .laundry-contents-bottom-item-picture {
    border-radius: 25px;
  }
}

@media screen and (max-width: 767px) {
  .laundry-contents-bottom-item-body {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .laundry-contents-bottom-item-body {
    margin-top: 20px;
  }
}

.laundry-contents-bottom-item-body-title {
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .laundry-contents-bottom-item-body-title {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .laundry-contents-bottom-item-body-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .laundry-contents-bottom-item-body-text {
    margin-top: 50px;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .laundry-contents-bottom-item-body-text {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

.map-contents {
  position: relative;
}

.map-iframe {
  position: relative;
}

@media screen and (max-width: 767px) {
  .map-iframe {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .map-iframe {
    width: 1000px;
    max-width: 100%;
    margin: 117px auto 0;
  }
}

.map-iframe::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.map-iframe-wrap {
  width: 100%;
  padding-top: 57.7%;
}

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

.map-contents-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), color-stop(85%, rgba(255, 255, 255, 0))) no-repeat 50% 50%/100% 100%;
  background: -webkit-linear-gradient(left, #FFFFFF 0%, rgba(255, 255, 255, 0) 85%) no-repeat 50% 50%/100% 100%;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 85%) no-repeat 50% 50%/100% 100%;
}

.map-contents-info-group {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .map-contents-info-text {
    margin-top: 121px;
  }
}

.map-contents-info-text-title {
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .map-contents-info-text-title {
    font-size: 45px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .map-contents-info-text-title {
    font-size: 35px;
  }
}

.map-contents-info-text-subtitle {
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .map-contents-info-text-subtitle {
    font-size: 28px;
    margin-top: 45px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .map-contents-info-text-subtitle {
    font-size: 17px;
    margin-top: 24px;
  }
}

.map-contents-address-text {
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .map-contents-address-text {
    margin-top: 70px;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .map-contents-address-text {
    font-size: 16px;
    margin-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  .map-contents-link {
    height: 115px;
    background-color: #fff;
    width: 380px;
    border-radius: 70px;
    margin: 70px auto 0;
    border: 6px solid #7DBD5E;
  }
}

@media screen and (min-width: 768px) {
  .map-contents-link {
    text-align: center;
    width: 100%;
  }
}

.map-contents-link-google {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}

@media screen and (max-width: 767px) {
  .map-contents-link-google {
    width: 100%;
    font-size: 28px;
    padding: 32px 0 32px 50px;
    color: #7DBD5E;
  }
}

@media screen and (min-width: 768px) {
  .map-contents-link-google {
    font-size: 16px;
    padding: 18px 50px;
    border-radius: 40px;
    margin-top: 33px;
    border: 3px solid #7DBD5E;
    background-color: #fff;
    color: #7DBD5E !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #7dbd5e 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #7dbd5e));
    background-image: linear-gradient(to right, transparent 50%, #7dbd5e 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .map-contents-link-google:hover {
    background-color: #7DBD5E;
    background-position: -100% 100%;
    color: #fff !important;
  }
}

.map-contents-link-google::after {
  content: '\f35d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .map-contents-link-google::after {
    top: 50%;
    right: 45px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .map-contents-link-google::after {
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* ========================
coin-laundry 
===========================*/
.coin-laundry {
  background-color: #E8E8E8;
}

.coin-laundry-list {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .coin-laundry-list {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .coin-laundry-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) {
  .coin-laundry-item {
    width: 100%;
  }
  .coin-laundry-item + .coin-laundry-item {
    margin-top: 72px;
  }
}

@media screen and (min-width: 768px) {
  .coin-laundry-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30.2%;
        -ms-flex: 0 0 30.2%;
            flex: 0 0 30.2%;
  }
}

@media screen and (max-width: 767px) {
  .coin-laundry-item-picture {
    border-radius: 65px;
    width: 100%;
    height: 440px;
  }
}

@media screen and (min-width: 768px) {
  .coin-laundry-item-picture {
    border-radius: 25px;
  }
}

/* ========================
housecleaning
===========================*/
.hausecleaning-top {
  width: 100%;
  background: url(/img/6houseclianing/6houseclianingtop.png) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .hausecleaning-top {
    height: 1233px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-top {
    height: 530px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-contents-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;
  }
}

.hausecleaning-contents-item {
  position: relative;
}

@media screen and (max-width: 767px) {
  .hausecleaning-contents-item {
    width: 100%;
  }
  .hausecleaning-contents-item + .hausecleaning-contents-item {
    margin-top: 72px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-contents-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 31.1;
        -ms-flex: 0 0 31.1;
            flex: 0 0 31.1;
  }
}

.hausecleaning-contents-circle {
  background-color: #0F86B3;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .hausecleaning-contents-circle {
    width: 366px;
    height: 366px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-contents-circle {
    width: 280px;
    height: 280px;
  }
}

.hausecleaning-contents-circle::after {
  position: absolute;
  content: '\f077';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  font-size: 40px;
  color: #0F86B3;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hausecleaning-contents-item-text {
  width: 100%;
  font-weight: 500;
  text-align: center;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .hausecleaning-contents-item-text {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-contents-item-text {
    font-size: 30px;
  }
}

.hausecleaning-info {
  background-color: #e8e8e8;
}

@media screen and (max-width: 767px) {
  .hausecleaning-info {
    width: 100%;
    border-radius: 40px;
    margin-top: 56px;
    padding: 40px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-info {
    width: 311px;
    height: 264px;
    border-radius: 25px;
    margin-top: 56px;
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .hausecleaning-info-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-info-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

.hausecleaning-info-text + .hausecleaning-info-text {
  margin-top: 20px;
}

.hausecleaning-training {
  text-align: center;
}

.hausecleaning-training-text {
  font-weight: normal;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  background-color: #0F86B3;
}

@media screen and (max-width: 767px) {
  .hausecleaning-training-text {
    padding: 40px 104px;
    font-size: 40px;
    border-radius: 40px;
    margin-top: 130px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-training-text {
    padding: 15px 104px;
    font-size: 23px;
    font-weight: 500;
    display: inline-block;
    border-radius: 18px;
    margin-top: 113px;
  }
}

@media screen and (max-width: 767px) {
  .hausecleaning-training-list {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-training-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) {
  .hausecleaning-training-item {
    width: 100%;
  }
  .hausecleaning-training-item + .hausecleaning-training-item {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-training-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 22.7%;
        -ms-flex: 0 0 22.7%;
            flex: 0 0 22.7%;
    margin-top: 44px;
  }
}

@media screen and (max-width: 767px) {
  .hausecleaning-training-item-picture {
    border-radius: 60px;
    height: 440px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-training-item-picture {
    border-radius: 18px;
  }
}

.hausecleaning-staff {
  margin-top: 114px;
  text-align: center;
}

.hausecleaning-staff-text {
  font-weight: normal;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  background-color: #0F86B3;
}

@media screen and (max-width: 767px) {
  .hausecleaning-staff-text {
    padding: 40px 104px;
    display: block;
    font-size: 40px;
    border-radius: 40px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-staff-text {
    padding: 15px 104px;
    display: inline-block;
    font-size: 23px;
    border-radius: 18px;
  }
}

.hausecleaning-staff-resident {
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .hausecleaning-staff-resident-title {
    font-size: 40px;
    margin-top: 60px;
    font-weight: 300;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-staff-resident-title {
    font-size: 20px;
    margin-top: 41px;
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  .hausecleaning-staff-resident-text {
    font-size: 32px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-staff-resident-text {
    font-size: 20px;
    margin-top: 17px;
    font-weight: 300;
  }
}

.hausecleaning-staff-teacher {
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .hausecleaning-staff-teacher-title {
    font-size: 40px;
    margin-top: 60px;
    font-weight: 300;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-staff-teacher-title {
    font-size: 20px;
    margin-top: 50px;
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  .hausecleaning-staff-teacher-text {
    font-size: 32px;
    margin-top: 30px;
    line-height: 1.5;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .hausecleaning-staff-teacher-text {
    font-size: 16px;
    font-weight: 300;
    margin-top: 17px;
  }
}

/* ========================
house
===========================*/
.house-top {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .house-top {
    background: url(/img/7house/housetop.png) center top/cover no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .house-top {
    background: url(/img/7house/housetop-sp.png) center top/cover no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .house-top {
    height: 1233px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .house-top {
    height: 530px;
  }
}

@media screen and (min-width: 768px) {
  .house-contents {
    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) {
  .house-contents-item {
    width: 100%;
  }
  .house-contents-item + .house-contents-item {
    margin-top: 121px;
  }
}

@media screen and (min-width: 768px) {
  .house-contents-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30.2%;
        -ms-flex: 0 0 30.2%;
            flex: 0 0 30.2%;
    position: relative;
  }
  .house-contents-item:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 30px;
    color: #008074;
    position: absolute;
    top: 106px;
    right: -31px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .house-contents-item-picture {
    height: 440px;
    border-radius: 65px;
  }
}

@media screen and (min-width: 768px) {
  .house-contents-item-picture {
    border-radius: 25px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 208px;
  }
}

@media screen and (max-width: 767px) {
  .house-contents-item-body {
    margin-top: 55px;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .house-contents-item-body {
    margin-top: 20px;
    line-height: 1;
  }
}

.house-contents-item-body-title {
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .house-contents-item-body-title {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .house-contents-item-body-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .house-contents-item-body-text {
    margin-top: 55px;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .house-contents-item-body-text {
    margin-top: 22px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

/*=======================================
Info
=======================================*/
.company-info-top {
  width: 100%;
  background: url(/img/8info/conpany.jpg) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .company-info-top {
    height: 1233px;
  }
}

@media screen and (min-width: 768px) {
  .company-info-top {
    height: 530px;
  }
}

.company-info-title {
  font-weight: 400;
  color: #fff;
  background: #7DBD5E;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .company-info-title {
    font-size: 40px;
    line-height: 126px;
    width: 100%;
    height: 126px;
    border-radius: 40px;
  }
}

@media screen and (min-width: 768px) {
  .company-info-title {
    font-size: 23px;
    line-height: 65px;
    width: 304px;
    height: 65px;
    border-radius: 15px;
  }
}

.company-info-list {
  width: 100%;
  background-color: #E8E8E8;
  border-radius: 74px;
  margin-top: 60px;
}

.company-info-item {
  border-bottom: 3px solid #fff;
}

@media screen and (max-width: 767px) {
  .company-info-item {
    padding: 55px 70px;
  }
}

@media screen and (min-width: 768px) {
  .company-info-item {
    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;
    padding: 49px 83px;
  }
}

.company-info-item:last-child {
  border: none;
}

.company-info-item-title {
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .company-info-item-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .company-info-item-title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 228px;
        -ms-flex: 0 0 228px;
            flex: 0 0 228px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .company-info-item-data {
    margin-top: 27px;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .company-info-item-data {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

/*=======================================
Company-history
=======================================*/
.company-history {
  width: 100%;
  background-color: #E8E8E8;
}

.company-history-list {
  width: 100%;
  background-color: #fff;
  border-radius: 74px;
  margin-top: 60px;
  padding: 55px 70px;
}

@media screen and (max-width: 767px) {
  .company-history-items li {
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .company-history-items {
    padding-bottom: 41px;
  }
  .company-history-items + .company-history-items {
    padding-top: 41px;
    border-top: 3px solid #e8e8e8;
  }
}

@media screen and (min-width: 768px) {
  .company-history-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .company-history-items + .company-history-items {
    margin-top: 48px;
  }
  .company-history-items:nth-child(13) {
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .company-history-item-date {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .company-history-item-date {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 180px;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .company-history-item-border {
    width: 3px;
    height: 62px;
    background-color: #BFBFBF;
  }
}

@media screen and (min-width: 768px) {
  .company-history-item-border-large {
    width: 3px;
    height: 100px;
    background-color: #BFBFBF;
  }
}

@media screen and (max-width: 767px) {
  .company-history-item-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    margin-top: 32px;
  }
}

@media screen and (min-width: 768px) {
  .company-history-item-text {
    padding-left: 4.5%;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
  }
}

.company-history-item-text span {
  display: block;
  margin-top: 13px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .company-history-item-logo {
    margin: 0 auto;
    width: 328px;
    margin-top: 25px;
  }
}

@media screen and (min-width: 768px) {
  .company-history-item-logo {
    margin-left: auto;
    width: 193px;
  }
}

/*=======================================
Contact
=======================================*/
.contact-top {
  width: 100%;
  background: url(/img/9contact/contact.png) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .contact-top {
    height: 1233px;
  }
}

@media screen and (min-width: 768px) {
  .contact-top {
    height: 530px;
  }
}

.contact-title {
  position: relative;
}

.contact-title-text {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  padding-bottom: 25px;
  text-align: center;
  color: #333;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-title-text {
    font-size: 45px;
  }
}

@media screen and (min-width: 768px) {
  .contact-title-text {
    font-size: 32px;
  }
}

.contact-title-text::after {
  content: "";
  width: 135px;
  height: 4px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 2px;
}

.contact-text {
  font-weight: 300;
  line-height: 1;
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .contact-text {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .contact-text {
    font-size: 16px;
  }
}

/* ========================
Contact-form
===========================*/
.contact .util-title {
  color: #7DBD5E;
}

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"],
.contact textarea {
  width: 100%;
  border: 0;
  padding: .2em .5em;
  background-color: #E8E8E8;
}

@media screen and (max-width: 767px) {
  .contact input[type="text"],
  .contact input[type="email"],
  .contact input[type="tel"],
  .contact textarea {
    font-size: 28px;
    border-radius: 20px;
  }
}

@media screen and (min-width: 768px) {
  .contact input[type="text"],
  .contact input[type="email"],
  .contact input[type="tel"],
  .contact textarea {
    font-size: 16px;
    border-radius: 2px;
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  .contact input[type="text"],
  .contact input[type="email"],
  .contact input[type="tel"] {
    height: 90px;
  }
}

@media screen and (min-width: 768px) {
  .contact input[type="text"],
  .contact input[type="email"],
  .contact input[type="tel"] {
    height: 50px;
  }
}

.contact textarea {
  min-height: 215px;
  resize: vertical;
}

@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 60px;
  }
}

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

@media screen and (min-width: 768px) {
  .contact-list {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .contact-item + .contact-item {
    margin-top: 71px;
  }
}

@media screen and (min-width: 768px) {
  .contact-item + .contact-item {
    margin-top: 25px;
  }
}

.contact-item-title {
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .contact-item-title {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .contact-item-title {
    font-size: 16px;
  }
}

.contact-item-input {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contact-item-input {
    margin-top: 28px;
  }
}

@media screen and (min-width: 768px) {
  .contact-item-input {
    margin-top: 7px;
  }
}

.contact-submit {
  margin-top: 46px;
  text-align: center;
  margin: 0 auto;
  margin-top: 49px;
}

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

@media screen and (min-width: 768px) {
  .contact-submit {
    max-width: 500px;
  }
}

.contact-submit-link {
  width: 100%;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  background: #7DBD5E;
  display: inline-block;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact-submit-link {
    font-size: 40px;
    padding: 45px 0;
    border-radius: 45px;
  }
}

@media screen and (min-width: 768px) {
  .contact-submit-link {
    font-size: 32px;
    padding: 14px 0;
    border-radius: 21px;
    color: #fff !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #fff 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fff));
    background-image: linear-gradient(to right, transparent 50%, #fff 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .contact-submit-link:hover {
    background-color: #fff;
    background-position: -100% 100%;
    color: #7DBD5E !important;
    border: none;
    border: 3px solid #7DBD5E;
    padding: 11px 0;
  }
}

/*送信完了後メッサージcss*/
.success_msg {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .success_msg_title {
    font-size: 40px;
    font-weight: 500;
    margin-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .success_msg_title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 95px;
  }
}

.success_msg_text {
  line-height: 1.5;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .success_msg_text {
    font-size: 32px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .success_msg_text {
    font-size: 16px;
    margin-top: 16px;
  }
}

.top-page-link {
  display: inline-block;
  color: #7DBD5E;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .top-page-link {
    font-size: 28px;
    margin-top: 10px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .top-page-link {
    font-size: 18px;
    margin-top: 10px;
    margin-top: 30px;
  }
  .top-page-link:hover {
    text-decoration: underline;
  }
}

/*送信後contact form非表示*/
.contact-form-none {
  display: none;
}

/* ========================
Privacy
===========================*/
.privacy-bg {
  background-color: #e7e7e7;
}

.privacy {
  width: 100%;
  background-color: #E7E7E7;
  position: relative;
}

.privacy-list {
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .privacy-list {
    margin-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .privacy-list {
    margin-top: 60px;
  }
}

.privacy-title {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .privacy-title {
    font-size: 33px;
    line-height: 1.7272;
  }
  .privacy-title + .privacy-title {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .privacy-title {
    font-size: 21px;
  }
  .privacy-title:not(first-child) {
    margin-top: 43px;
  }
}

@media screen and (max-width: 767px) {
  .privacy-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 64px;
  }
}

@media screen and (min-width: 768px) {
  .privacy-text {
    margin-top: 42px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

.privacy-footer {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .privacy-footer {
    margin-top: 57px;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .privacy-footer {
    margin-top: 42px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .privacy-footer-text {
    margin-top: 22px;
  }
}

@media screen and (min-width: 768px) {
  .privacy-footer-text {
    margin-top: 10px;
  }
}

.personal-info-item + .personal-info-item {
  margin-top: 60px;
}

/* ========================
Personal-info
===========================*/
.personal-info {
  background-color: #fff;
  width: 100%;
  padding: 110px 0;
}

.personal-info-item-title {
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
  padding-bottom: 25px;
  color: #333;
  position: relative;
}

@media screen and (max-width: 767px) {
  .personal-info-item-title {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .personal-info-item-title {
    font-size: 26px;
  }
}

.personal-info-item-title::after {
  display: block;
  content: "";
  width: 135px;
  height: 4px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 2px;
}

@media screen and (max-width: 767px) {
  .text-center-none {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .personal-info-item-text {
    margin-top: 65px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .personal-info-item-text {
    margin-top: 60px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .personal-info-item-list {
    margin-top: 65px;
  }
}

@media screen and (min-width: 768px) {
  .personal-info-item-list {
    margin-top: 42px;
  }
}

@media screen and (max-width: 767px) {
  .personal-info-subitem {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .personal-info-subitem {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .personal-info-subitem-lists {
    margin-top: 65px;
  }
}

@media screen and (min-width: 768px) {
  .personal-info-subitem-lists {
    margin-top: 42px;
  }
}

.personal-info-subitem-title {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .personal-info-subitem-title {
    font-size: 32px;
    margin-top: 65px;
  }
}

@media screen and (min-width: 768px) {
  .personal-info-subitem-title {
    font-size: 21px;
    margin-top: 42px;
  }
}

@media screen and (max-width: 767px) {
  .personal-info-subitem-list {
    margin-top: 65px;
  }
}

@media screen and (min-width: 768px) {
  .personal-info-subitem-list {
    margin-top: 42px;
  }
}

@media screen and (max-width: 767px) {
  .personal-info-subitem-text {
    margin-top: 65px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .personal-info-subitem-text {
    margin-top: 42px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

/* ===============================================
// 
// クロスバリアコート
//
=============================================== */
.cross-barrier-top {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cross-barrier-top {
    background: url(/img/10cross-barrier/cross-barrier-top.png) center top/cover no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .cross-barrier-top {
    background: url(/img/10cross-barrier/cross-barrier-top-sp.png) center top/cover no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .cross-barrier-top {
    height: 1233px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .cross-barrier-top {
    height: 530px;
  }
}

.cross_barrier_coat-contents {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cross_barrier_coat-contents li {
    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;
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 767px) {
  .cross_barrier_coat-contents li:nth-child(1) {
    margin-bottom: 180px;
  }
}

@media screen and (min-width: 768px) {
  .cross_barrier_coat-contents li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.cross_barrier_coat-contents li:nth-child(1) h2 {
  color: #3c6ea5;
}

.cross_barrier_coat-contents li:nth-child(2) h2 {
  color: #008074;
}

.cross_barrier_coat-content {
  margin: 0 5px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.cross_barrier_coat-content h2 {
  font-size: 30px;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .cross_barrier_coat-content h2 {
    font-size: 50px;
  }
}

.cross_barrier_coat-content p {
  text-align: center;
  font-size: 16px;
  line-height: 2.15;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .cross_barrier_coat-content p {
    font-size: 32px;
  }
}

.cross_barrier_coat-img {
  margin: 0 5px;
  border-radius: 30px;
}

@media screen and (min-width: 768px) {
  .cross_barrier_coat-img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 39%;
        -ms-flex: 0 0 39%;
            flex: 0 0 39%;
  }
}

@media screen and (max-width: 767px) {
  .cross_barrier_coat-img {
    margin-top: 90px;
  }
}

.cross_barrier_coat-img img {
  border-radius: 30px;
}

/* ===============================================
// cross_price
=============================================== */
.cross_price {
  background-color: #E8E8E8;
}

.cross_price-title-inner {
  text-align: center;
}

.cross_price-title {
  font-weight: normal;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  background-color: #0F86B3;
}

@media screen and (max-width: 767px) {
  .cross_price-title {
    padding: 40px 104px;
    font-size: 40px;
    border-radius: 40px;
  }
}

@media screen and (min-width: 768px) {
  .cross_price-title {
    padding: 15px 104px;
    font-size: 23px;
    font-weight: 400;
    display: inline-block;
    border-radius: 18px;
  }
}

.cross_price-list {
  max-width: 710px;
  margin: 45px auto;
  background: #fff;
  border-radius: 77px;
  padding: 40px 75px;
}

@media screen and (max-width: 767px) {
  .cross_price-list {
    padding: 50px;
    margin-top: 70px;
  }
}

.cross_price-list dl {
  border-bottom: 5px solid #dddddd;
  padding-bottom: 15px;
  padding-right: 25px;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .cross_price-list dl {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .cross_price-list dl {
    font-size: 32px;
    line-height: 1.5;
    padding-right: 15px;
    font-weight: bold;
  }
}

.cross_price-list dl:nth-child(n+2) {
  padding-top: 25px;
}

@media screen and (max-width: 767px) {
  .cross_price-list dl dd {
    margin-left: 28%;
  }
}

@media screen and (max-width: 767px) {
  .cross_price-item-data {
    margin-top: 15px;
  }
}

/* ===============================================
// cross_method
=============================================== */
.cross_price {
  background-color: #E8E8E8;
}

@media screen and (max-width: 767px) {
  .cross_price-text {
    margin-top: 60px;
    font-size: 32px;
    font-weight: 300;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .cross_price-text {
    font-size: 16px;
    margin-top: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .cross_method-list {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .cross_method-list {
    margin-top: 45px;
  }
}

/* ===============================================
// 
//air_catalyst
//
=============================================== */
.air_catalyst-top {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .air_catalyst-top {
    background: url(/img/11air_catalyst/air_catalyst-top-pc.png) center top/cover no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .air_catalyst-top {
    background: url(/img/11air_catalyst/air_catalyst-top-sp.png) center top/cover no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .air_catalyst-top {
    height: 1233px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .air_catalyst-top {
    height: 530px;
  }
}

.air_catalyst-content-title {
  font-size: 30px;
  text-align: center;
  color: #3c6ea5;
  font-weight: 500;
}

.air_catalyst-content-title:nth-of-type(2) {
  color: #008074;
  margin-top: 130px;
}

@media screen and (max-width: 767px) {
  .air_catalyst-content-title {
    font-size: 50px;
  }
}

@media screen and (min-width: 768px) {
  .air_catalyst-content {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 45px;
  }
}

@media screen and (max-width: 767px) {
  .air_catalyst-content {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .air_catalyst-content-img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}

@media screen and (max-width: 767px) {
  .air_catalyst-content-img {
    width: 54vw;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .air_catalyst-content-text {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    font-size: 16px;
    font-weight: 300;
    line-height: 2.15;
  }
}

@media screen and (max-width: 767px) {
  .air_catalyst-content-text {
    font-size: 32px;
    line-height: 2.15;
    margin-top: 50px;
    font-weight: 300;
  }
}

.air_catalyst-content-text2 {
  text-align: center;
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .air_catalyst-content-text2 {
    margin-top: 70px;
    text-align: left;
  }
}

/* ===============================================
// air_catalyst-qa
=============================================== */
.air_catalyst-qa .cross_price-title {
  background-color: #7da15e;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .air_catalyst-qa-list {
    margin-top: 70px;
  }
}

.air_catalyst-qa-list {
  position: relative;
  border-bottom: 2px solid #666;
  padding: 35px 0;
}

@media screen and (min-width: 768px) {
  .air_catalyst-qa-list {
    font-size: 16px;
    font-weight: 300;
    line-height: 2.15;
  }
}

@media screen and (max-width: 767px) {
  .air_catalyst-qa-list {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 300;
  }
}

.air_catalyst-question {
  position: relative;
  padding-left: 80px;
}

@media screen and (max-width: 767px) {
  .air_catalyst-question {
    padding-left: 120px;
  }
}

.air_catalyst-question::before {
  position: absolute;
  content: 'Q';
  font-weight: 700;
  font-size: 28px;
  background-color: #7da15e;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  text-align: center;
  line-height: 50px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .air_catalyst-question::before {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 45px;
  }
}

.air_catalyst-answer {
  position: relative;
  padding-left: 80px;
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .air_catalyst-answer {
    padding-left: 120px;
  }
}

.air_catalyst-answer::before {
  position: absolute;
  content: 'A';
  font-weight: 700;
  font-size: 28px;
  background-color: #666;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  text-align: center;
  line-height: 50px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .air_catalyst-answer::before {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 45px;
  }
}

.air_catalyst-bottom {
  margin: 130px 40px 0;
}

@media screen and (min-width: 768px) {
  .air_catalyst-bottom {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .air_catalyst-bottom {
    margin-top: 120px;
    background-color: #fff;
    border-radius: 70px;
    height: 115px;
    border: 7px solid #7DBD5E;
  }
}

.air_catalyst-bottom-link {
  display: inline-block;
  font-weight: 700;
  color: #7DBD5E;
  position: relative;
}

@media screen and (max-width: 767px) {
  .air_catalyst-bottom-link {
    font-size: 28px;
    padding: 40px 0px 34px 75px;
    border-radius: 57px;
    color: #7DBD5E;
    display: inline-block;
    line-height: 1;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .air_catalyst-bottom-link {
    font-size: 20px;
    padding: 26px 144px 26px 144px;
    line-height: 1px;
    text-align: center;
    border-radius: 30px;
    border: 3px solid #7DBD5E;
    background-color: #fff;
    color: #7DBD5E !important;
    background-size: 200% 100%;
    background-image: -webkit-linear-gradient(left, transparent 50%, #7dbd5e 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #7dbd5e));
    background-image: linear-gradient(to right, transparent 50%, #7dbd5e 50%);
    -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
    transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  }
  .air_catalyst-bottom-link:hover {
    background-color: #fff;
    background-position: -100% 100%;
    color: #fff !important;
    border: none;
    padding: 29px 144px 29px 144px;
  }
}

.air_catalyst-bottom-link::after {
  content: '\f35d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  margin-left: 16px;
  position: absolute;
  top: 0;
  right: 22px;
}

@media screen and (max-width: 767px) {
  .air_catalyst-bottom-link::after {
    top: 50%;
    right: 80px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .air_catalyst-bottom-link::after {
    top: 48%;
    right: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.air_catalyst-bottom-text {
  font-size: 16px;
  text-align: center;
  margin-top: 55px;
  font-weight: 600;
  letter-spacing: 0.075em;
  padding: 0 40px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .air_catalyst-bottom-text {
    font-size: 32px;
    font-weight: bold;
  }
}
/*# sourceMappingURL=style.css.map */