@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #3E3E3E;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.1875;
  letter-spacing: 0.025em;
  background: #F3F3F3;
}

img {
  width: 100%;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header {
    background: #FFFFFF1A;
  }
}
@media screen and (max-width: 767px) {
  .header {
    background: rgba(255, 255, 255, 0.6);
  }
}

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

.header-logo {
  font-size: 23px;
  font-weight: bold;
  padding: 20px 0;
  letter-spacing: 0.04em;
}

.header-nav {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .header-nav {
    background: #fff;
  }
}

@media screen and (min-width: 768px) {
  .header-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-list {
    margin-top: 180px;
  }
}

@media screen and (min-width: 768px) {
  .header-nav-item:not(:first-child) {
    margin-left: 42px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-item:not(:first-child) {
    margin-top: 23px;
  }
}

.header-nav-item-link {
  display: block;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.025em;
  color: #3E3E3E;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-nav-item-link {
    height: 83px;
    line-height: 83px;
  }
  .header-nav-item-link:after {
    background: #3e3e3e;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform: 0.2s;
            transform: 0.2s;
    bottom: 30px;
    width: 100%;
  }
  .header-nav-item-link:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  .header-nav-item-link {
    font-weight: bold;
    text-align: center;
  }
}

.drawer-icon {
  position: fixed;
  top: 24px;
  right: 16px;
  z-index: 300;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
}
.drawer-icon.is-active .drawer-icon-bar1 {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #fff;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}

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

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 26px;
  height: 4px;
  background: #3E3E3E;
  border-radius: 2px;
  top: 0;
  left: 0;
}

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

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

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

.drawer-content {
  width: 300px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content-items {
  padding-top: 175px;
}

.drawer-content-item:not(:first-child) {
  margin-top: 20px;
}
.drawer-content-item a {
  display: block;
  color: #3E3E3E;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.025em;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 298;
  background: rgba(112, 112, 112, 0.9);
  display: none;
}
.drawer-background.is-active {
  display: block;
}

.footer {
  background: #3E3E3E;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 52px 120px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer {
    padding: 50px 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin: 0 auto;
    text-align: center;
    padding: 60px 14px;
    padding-top: 52px;
  }
}

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

@media screen and (min-width: 768px) {
  .footer-right {
    margin-left: auto;
  }
}

.footer-sns-item {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer-sns-item:not(:first-child) {
    margin-left: 19px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer-sns-item:not(:first-child) {
    margin-left: 45px;
  }
}

.footer-sns-item-link {
  color: #fff;
  font-size: 43px;
  opacity: 0.6;
  display: block;
}

@media screen and (min-width: 768px) {
  .footer-nav-list {
    margin-top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    margin-top: 30px;
    text-align: center;
  }
}

.footer-nav-item-link {
  color: #FFF;
  letter-spacing: 0.025em;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer-nav-item-link {
    line-height: 1.6;
    padding: 9px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-item-link {
    font-size: 14px;
    line-height: 1.8;
    padding: 8px 0;
    padding-top: 6px;
  }
}

.footer-logo-link {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #E3E3E3;
}
@media screen and (min-width: 768px) {
  .footer-logo-link {
    margin-top: 24px;
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer-logo-link {
    margin-top: 25px;
    font-size: 32px;
  }
}

.footer-copyright {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.25;
  color: #FFF;
  display: block;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    text-align: right;
    margin-top: 7px;
  }
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    text-align: center;
    margin-top: 12px;
  }
}

@media screen and (min-width: 768px) {
  .section {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 40px;
  }
}

.util-title {
  font-weight: bold;
  line-height: 1;
  color: #3E3E3E;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .util-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .util-title {
    font-size: 30px;
  }
}

.util-link-bg-wh {
  letter-spacing: 0.2em;
  color: #3E3E3E;
  border: 1px solid #707070;
  background: #FFF;
  display: inline-block;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
  line-height: 1.125;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .util-link-bg-wh {
    font-size: 20px;
    padding: 20px 77px;
  }
}
@media screen and (max-width: 767px) {
  .util-link-bg-wh {
    font-size: 18px;
    padding: 16px 97px;
  }
}

.util-link-bg-bk {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #FFF;
  border: 1px solid #FFF;
  background: transparent;
  display: inline-block;
  padding: 20px 80px;
  line-height: 1.125;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .util-link-bg-bk {
    font-size: 20px;
    padding: 20px 80px;
  }
}
@media screen and (max-width: 767px) {
  .util-link-bg-bk {
    font-size: 18px;
    padding: 16px 100px;
  }
}
.util-link-bg-bk:hover {
  color: #3E3E3E;
  background: #fff;
}

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

@media screen and (min-width: 768px) {
  .top-inner {
    background: url(/img/mv.png) center center/cover;
    padding-top: 51%;
  }
}
@media screen and (max-width: 767px) {
  .top-inner {
    background: url(/img/mv.png);
    background-position: 24% center;
    background-size: cover;
    position: relative;
    padding-top: 221px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
    height: 667px;
  }
}

@media screen and (min-width: 768px) {
  .top-message {
    position: absolute;
    left: 48%;
    top: 56%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 19px 27px 25px;
  }
}

.top-message-title {
  letter-spacing: 0.000625em;
  color: #3E3E3E;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-message-title {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top-message-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .top-message-title {
    font-size: 24px;
    line-height: 1.6666;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.top-message-text {
  letter-spacing: 0.025em;
  color: #3E3E3E;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-message-text {
    font-size: 18px;
    line-height: 1.5555;
    margin-top: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top-message-text {
    font-size: 14px;
    margin-top: 17px;
  }
}
@media screen and (max-width: 767px) {
  .top-message-text {
    font-size: 14px;
    line-height: 1.4285;
    margin-top: 22px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.top-button-link {
  font-weight: bold;
  color: #FFF;
  letter-spacing: 0.025em;
  background: #FFAA3B;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
          box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .top-button-link {
    font-size: 18px;
    line-height: 1.4444;
    padding: 14px 50px;
    margin-top: 38px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top-button-link {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-button-link {
    font-size: 16px;
    line-height: 1.5;
    padding: 13px 30px;
    margin-top: 26px;
  }
}
.top-button-link:hover {
  background: #F18900;
}

@media screen and (min-width: 768px) {
  .news {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 58px;
  }
}

.news-inner {
  background: #fff;
  -webkit-box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
          box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
}
@media screen and (min-width: 768px) {
  .news-inner {
    padding: 60px 60px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .news-inner {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0;
    padding-top: 45px;
  }
}

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

.news-item {
  border-top: 1px solid #CECDCD;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.news-item:hover {
  background: #4973FF1A;
}
.news-item:nth-child(n+3) {
  border-bottom: 1px solid #CECDCD;
}
@media screen and (min-width: 768px) {
  .news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 0;
    padding-bottom: 37px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .news-item {
    padding: 12px 50px 3px 16px;
  }
}

.news-meta {
  width: 259px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-date {
  letter-spacing: 0.025em;
  line-height: 1.4444;
  font-family: "Montserrat", sans-serif;
  color: #3E3E3E;
  padding-top: 2px;
}
@media screen and (min-width: 768px) {
  .news-date {
    width: 138px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .news-date {
    width: 100px;
    font-size: 14px;
  }
}

.news-label-link {
  display: inline-block;
  color: #3E3E3E;
  text-align: center;
  background: #fff;
  border: 2px solid #3B69FF;
  border-radius: 50px;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .news-label-link {
    width: 121px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .news-label-link {
    width: 81px;
    height: 20px;
    line-height: 17px;
    font-size: 12px;
    margin-top: 4px;
  }
}

.news-title {
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-title {
    width: calc(100% - 259px - 83px);
    padding-left: 40px;
  }
  .news-title::after {
    content: "";
    position: absolute;
    top: 52%;
    right: -68px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 10.75px;
    height: 21.5px;
    background: url(/img/news-arrow.png) no-repeat center center/contain;
  }
}
@media screen and (max-width: 767px) {
  .news-title {
    width: 100%;
    margin-top: 12px;
  }
  .news-title::after {
    content: "";
    position: absolute;
    top: 12%;
    right: -35px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 16.125px;
    height: 32.25px;
    background: url(/img/news-arrow.png) no-repeat center center/contain;
  }
}

.news-title-link {
  color: #3E3E3E;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .news-title-link {
    font-size: 18px;
    line-height: 1.5555;
  }
}
@media screen and (max-width: 767px) {
  .news-title-link {
    font-size: 14px;
    line-height: 1.4285;
  }
}

.news-button {
  text-align: center;
  padding-bottom: 41px;
}

.news-button-link {
  margin-top: 42px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.news-button-link:hover {
  color: #fff;
  background: #3E3E3E;
}

.service {
  background: #3E3E3E;
}
@media screen and (min-width: 768px) {
  .service {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .service {
    height: 480px;
  }
}

.util-title-service {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .util-title-service {
    padding-top: 62px;
  }
}
@media screen and (max-width: 767px) {
  .util-title-service {
    padding-top: 41px;
  }
}

.service-inner {
  background: #fff;
  -webkit-box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
          box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
  padding: 0;
}
@media screen and (min-width: 768px) {
  .service-inner {
    margin: 66px 160px 0 160px;
    height: 328px;
  }
}
@media (min-width: 1200px) {
  .service-inner {
    width: 960px;
    margin: 0 auto;
    margin-top: 66px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service-inner {
    margin: 66px 30px 0 30px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .service-inner {
    margin: 45px 16px 0 16px;
  }
}

@media screen and (min-width: 768px) {
  .service-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .service-item {
    width: 33.3333%;
    padding: 45px;
    padding-top: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service-item {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .service-item {
    width: 100%;
    padding: 16px;
    padding-top: 40px;
  }
}

.service-item-img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service-item-img {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .service-item-img {
    width: 55px;
  }
}

.service-item-title {
  font-size: 20px;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #3E3E3E;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-item-title {
    line-height: 1.4;
    margin-top: 19px;
    margin-left: 6px;
  }
}
@media screen and (max-width: 767px) {
  .service-item-title {
    line-height: 1.2;
    margin-top: 16px;
  }
}

.service-item-text {
  font-size: 14px;
  line-height: 1.7142;
  color: #3E3E3E;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (min-width: 768px) {
  .service-item-text {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .service-item-text {
    margin-top: 20px;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .results {
    margin-top: 215px;
  }
}
@media screen and (max-width: 767px) {
  .results {
    margin-top: 391px;
  }
}

.results-container {
  background: #3E3E3E;
}
@media screen and (min-width: 768px) {
  .results-container {
    padding: 65px 0 60px 60px;
  }
}
@media screen and (max-width: 767px) {
  .results-container {
    padding: 46px 0 40px 16px;
  }
}

.util-title-results {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .util-title-results {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media screen and (max-width: 767px) {
  .util-title-results {
    text-align: center;
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) {
  .results-list {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .results-list {
    margin-top: 40px;
  }
}

.results-item-body {
  background: #fff;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .results-item-body {
    padding: 14px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .results-item-body {
    padding: 10px;
  }
}

.results-item-title {
  color: #3E3E3E;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .results-item-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .results-item-title {
    font-size: 14px;
  }
}

.results-item-text {
  line-height: 1.5;
  color: #3E3E3E;
}
@media screen and (min-width: 768px) {
  .results-item-text {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .results-item-text {
    font-size: 12px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 105px;
    left: -5px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 77px;
    left: 78px;
    width: auto;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
  position: relative;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}
.swiper-pagination-bullet-active::after {
  border: solid 1px #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
}

@media screen and (min-width: 768px) {
  .results-button {
    margin-top: 98px;
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 767px) {
  .results-button {
    margin-top: 68px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .results-button .util-link-bg-bk-results {
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 767px) {
  .results-button .util-link-bg-bk-results {
    letter-spacing: 0.2em;
  }
}

.price {
  padding-top: 6px;
}

.price-table {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .price-table {
    max-width: 960px;
  }
}
@media screen and (max-width: 767px) {
  .price-table {
    max-width: 343px;
  }
}

.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #707070;
  background: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .table {
    margin-top: 60px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .table {
    margin-top: 40px;
    font-size: 18px;
  }
}
.table th,
.table td {
  border: 1px solid #707070;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .table th,
.table td {
    padding: 0 40px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .table th,
.table td {
    padding: 0 20px;
    height: 55px;
  }
}
.table th {
  color: #fff;
  background: #3E3E3E;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .table th:nth-child(1) {
    width: 262px;
  }
}
@media screen and (max-width: 767px) {
  .table th:nth-child(1) {
    width: 100px;
  }
}
.table td {
  color: #3E3E3E;
  background: #fff;
  -moz-text-align-last: left;
       text-align-last: left;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .table td {
    font-size: 24px;
  }
}

.price-attention {
  font-size: 12px;
  text-align: left;
  color: #3E3E3E;
  line-height: 1.6666;
}
@media screen and (max-width: 767px) {
  .price-attention {
    margin-top: 7px;
  }
}
@media screen and (min-width: 768px) {
  .price-attention {
    margin-top: 11px;
  }
}

.bg-wrapper {
  position: relative;
}
.bg-wrapper::before {
  background: #3E3E3E;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 294px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bg-wrapper::before {
    bottom: 138px;
    top: 146px;
    width: 76.5625%;
  }
}
@media screen and (max-width: 767px) {
  .bg-wrapper::before {
    top: 53px;
  }
}

.comments {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .comments {
    margin-top: 60px;
    padding: 0 17px;
  }
}

.comments-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.comments-container {
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .comments-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 668px;
            flex: 0 1 668px;
    padding: 119px 60px 119px;
  }
}
@media screen and (max-width: 767px) {
  .comments-container {
    padding: 43px 20px 36px;
    margin-top: -5px;
  }
}

.util-title-comments {
  -moz-text-align-last: left;
       text-align-last: left;
}

.comments-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .comments-list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .comments-list {
    margin-top: 42px;
  }
}

.comments-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  color: #3E3E3E;
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .comments-item {
    font-size: 14px;
    line-height: 1.4285;
  }
}
.comments-item:before {
  content: "";
  display: block;
}
@media screen and (min-width: 768px) {
  .comments-item:before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    height: 100px;
    margin-right: 32px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 767px) {
  .comments-item:before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
    height: 60px;
    margin-right: 20px;
  }
}
.comments-item:nth-child(1):before {
  background: url(/img/comments1.png) center center/contain no-repeat;
}
.comments-item:nth-child(2):before {
  background: url(../img/comments2.png) center center/contain no-repeat;
}
.comments-item + .comments-item {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .comments-item + .comments-item {
    margin-top: 58px;
  }
}
@media screen and (max-width: 767px) {
  .comments-item + .comments-item {
    margin-top: 34px;
  }
}

.comments-picture {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .comments-picture {
    display: none;
    margin-top: 74px;
  }
}
.comments-picture > img {
  width: 100%;
}

.qa {
  background: url(/img/qa-bg.png);
  background-position: top center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .qa {
    background-attachment: fixed;
    padding: 62px 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .qa {
    margin-top: 60px;
    padding: 46px 0 60px;
  }
}

.qa-list {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .qa-list {
    width: 612px;
    margin-left: auto;
    margin-top: 62px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .qa-list {
    margin: 0 auto;
    margin-top: 62px;
  }
}
@media screen and (max-width: 767px) {
  .qa-list {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .qa-item:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .qa-item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.qa-box {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.qa-box-q {
  font-weight: bold;
  line-height: 1.5;
  color: #3E3E3E;
  padding: 17px 56px;
  background: #fff;
  position: relative;
}
.qa-box-q::before {
  content: "Q";
  position: absolute;
  top: 33%;
  left: 16px;
  font-size: 16px;
  line-height: 1.1875;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: #3B69FF;
  padding: 3px 5px;
  border-radius: 50px;
}

.qa-box-icon {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.qa-box-icon.is-open .qa-box-bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.qa-box-bar1 {
  width: 16px;
  height: 3px;
  background: #3B69FF;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.qa-box-bar2 {
  width: 3px;
  height: 16px;
  background: #3B69FF;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa-box-a {
  background: #fff;
  color: #3E3E3E;
  line-height: 1.5;
  padding: 0 16px 16px;
  display: none;
}

.qa-box-content {
  background: #3B69FF33;
  border-radius: 4px;
  position: relative;
  padding: 9px 16px 14px;
}
@media screen and (max-width: 767px) {
  .qa-box-content {
    font-size: 14px;
    padding: 6px 12px 4px;
  }
}

.access {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .access {
    padding: 0 60px;
    padding-left: 100px;
    padding-right: 40px;
    margin-top: 125px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access {
    padding-left: 50px;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .access {
    padding: 0 16px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 414px 1fr;
  }
}

@media screen and (min-width: 768px) {
  .access-inner {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.util-title-access {
  color: #FFF;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (min-width: 768px) {
  .util-title-access {
    margin-top: -3px;
  }
}
@media screen and (max-width: 767px) {
  .util-title-access {
    margin-top: 7px;
  }
}

.access-address {
  color: #FFF;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .access-address {
    margin-top: 55px;
  }
}
@media screen and (max-width: 767px) {
  .access-address {
    margin-top: 38px;
    font-size: 14px;
  }
}

.access-map {
  -webkit-box-shadow: 0 0 10px rgba(62, 62, 62, 0.2);
          box-shadow: 0 0 10px rgba(62, 62, 62, 0.2);
  grid-row: 1/3;
  grid-column: 2/3;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 720px;
          flex: 0 1 720px;
  width: 100%;
  position: relative;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .access-map {
    padding-top: 71.6253443526%;
    height: 520px;
  }
}
@media screen and (max-width: 767px) {
  .access-map {
    padding-top: 70.2623906706%;
    height: 241px;
    margin-top: 19px;
  }
}

@media screen and (min-width: 768px) {
  .access-button {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}

.access-button {
  margin-top: 29px;
  padding-bottom: 60px;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (max-width: 767px) {
  .access-button {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .access-button .util-link-bg-bk-access {
    padding: 19px 75px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .access-button .util-link-bg-bk-access {
    padding: 16px 96px;
    letter-spacing: 0.1em;
  }
}

.contact {
  background: url(/img/contact-bg.png) center center/cover;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    margin: 0;
    padding: 40px 16px;
  }
}

.contact-inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-inner {
    max-width: 960px;
  }
}
@media screen and (max-width: 767px) {
  .contact-inner {
    max-width: 343px;
  }
}

.contact-inner-header {
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 768px) {
  .contact-inner-header {
    background: url(/img/contact1.png) no-repeat center center/cover;
    padding: 67px 236px 56px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact-inner-header {
    padding: 67px 36px 56px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .contact-inner-header {
    background: url(/img/sp/contact1@2x.png) no-repeat center center/cover;
    padding: 40px 18px;
  }
}

.util-title-contact {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .util-title-contact {
    margin-top: 5px;
  }
}

.contact-inner-lead {
  color: #fff;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .contact-inner-lead {
    margin-top: 17px;
  }
}
@media screen and (max-width: 767px) {
  .contact-inner-lead {
    font-size: 14px;
    line-height: 1.4285;
    margin-top: 10px;
  }
}

.contact-from {
  background: #fff;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 768px) {
  .contact-from {
    padding: 60px 120px 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact-from {
    padding: 40px 12px;
    padding-top: 36px;
  }
}

.contact-from-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .contact-from-row:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact-from-row {
    display: block;
  }
  .contact-from-row:not(:first-child) {
    margin-top: 20px;
  }
}

.contact-from-label {
  margin: 0;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .contact-from-label {
    width: 188px;
    padding-top: 12px;
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 767px) {
  .contact-from-label {
    width: 100%;
  }
}
.contact-from-label label.is-required {
  display: inline-block;
  position: relative;
  margin-top: 5px;
}
.contact-from-label label.is-required::after {
  content: "必須";
  position: absolute;
  top: 56%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(100% + 12px);
  width: 34px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #FF4646;
  text-align: center;
  border-radius: 2px;
  padding: 2px 3px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact-from-label label.is-required::after {
    left: calc(100% + 20px);
  }
}

.contact-from-label-gender {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .contact-from-input {
    width: calc(100% - 188px);
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-from-input {
    width: 100%;
    margin-top: 16px;
  }
}
.contact-from-input [type=text] {
  border: none;
  border-bottom: 1px solid #3e3e3e;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 18px;
  padding-left: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: none;
  color: inherit;
  font-family: inherit;
  font-size: 17px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-from-input [type=text]:hover, .contact-from-input [type=text]:focus {
  border-color: #4973FF;
  outline: none;
}
@media screen and (min-width: 768px) {
  .contact-from-input [type=text] {
    padding-bottom: 3px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .contact-from-input [type=text] {
    padding: 0;
  }
}
.contact-from-input [type=email] {
  border: none;
  border-bottom: 1px solid #3e3e3e;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
  padding: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-from-input [type=email]:hover, .contact-from-input [type=email]:focus {
  border-color: #4973FF;
  outline: none;
}
@media screen and (min-width: 768px) {
  .contact-from-input [type=email] {
    padding-bottom: 4px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact-from-input [type=email] {
    padding: 0;
  }
}
.contact-from-input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  padding: 12px;
  color: inherit;
  font-family: inherit;
  background: #fff url(/img/select-arrow.png) no-repeat right 12px center/12px 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .contact-from-input select {
    font-size: 16px;
    width: 177px;
    height: 40px;
    margin-left: 1px;
  }
}
@media screen and (max-width: 767px) {
  .contact-from-input select {
    font-size: 14px;
    width: 100%;
  }
}
.contact-from-input select:hover {
  -webkit-box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
          box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
}

.contact-from-message {
  margin-top: 20px;
}

.contact-from-input-message {
  width: 100%;
}
.contact-from-input-message textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: none;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  resize: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-from-input-message textarea:hover {
  border: 1px solid #4973FF;
  -webkit-box-shadow: 0 0 8px rgba(73, 115, 255, 0.5);
          box-shadow: 0 0 8px rgba(73, 115, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .contact-from-input-message textarea {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .contact-from-input-message textarea {
    height: 160px;
  }
}

.contact-from-radio {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .contact-from-radio {
    margin-top: 26px;
  }
}
.contact-from-radio [type=radio] {
  display: none;
}
.contact-from-radio span {
  display: inline-block;
  padding-left: 21px;
  position: relative;
  margin-right: 33px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-from-radio span:hover::before {
  border: 1px solid #3B69FF;
  -webkit-box-shadow: 0 0 6px rgba(73, 115, 255, 0.2);
          box-shadow: 0 0 6px rgba(73, 115, 255, 0.2);
}
.contact-from-radio span:active::before {
  background-color: rgba(73, 115, 255, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 767px) {
  .contact-from-radio span {
    margin-bottom: 8px;
    margin-right: 32px;
  }
}
.contact-from-radio span::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}
.contact-from-radio span::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #3B69FF;
  position: absolute;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
.contact-from-radio [type=radio]:checked + span::after {
  display: block;
}

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

.contact-from-check {
  margin-top: 28px;
  font-weight: bold;
  color: #3E3E3E;
}
.contact-from-check .js-open-button {
  font-weight: bold;
  color: #3E3E3E;
}
@media screen and (max-width: 767px) {
  .contact-from-check {
    margin-top: 18px;
  }
}
.contact-from-check [type=checkbox] {
  display: none;
}
.contact-from-check span {
  display: inline-block;
  padding-left: 40px;
  position: relative;
  margin-top: 6px;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-from-check span:hover::before {
  border: 1px solid #3B69FF;
  -webkit-box-shadow: 0 0 6px rgba(73, 115, 255, 0.2);
          box-shadow: 0 0 6px rgba(73, 115, 255, 0.2);
}
.contact-from-check span::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #707070;
  position: absolute;
  top: 57%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.contact-from-check span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: transparent url(/img/checkbox.png) no-repeat center center/contain;
  display: none;
}
.contact-from-check span:active::before {
  background-color: rgba(73, 115, 255, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-from-check [type=checkbox]:checked + span::after {
  display: block;
}
.contact-from-check a {
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-from-check a:hover {
  opacity: 0.7;
}

.contact-from-button {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .contact-from-button {
    margin-top: 40px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media screen and (max-width: 767px) {
  .contact-from-button {
    text-align: center;
  }
}
.contact-from-button [type=submit] {
  background: #B2B2B2;
  width: 173px;
  display: inline-block;
  font-weight: bold;
  color: #fff;
  padding: 12px 48px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: none;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-from-button [type=submit]:hover {
  opacity: 0.7;
}
.contact-from-button [type=submit].-active {
  background: #F18900;
  color: #fff;
}

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

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 150;
}
@media screen and (max-width: 767px) {
  .to-top {
    right: 16px;
    bottom: 16px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.to-top a:hover {
  opacity: 0.7;
}
.to-top a img {
  width: 50px;
}