@charset "UTF-8";
/* 色
--------------------------------------------------------*/
/* フォント
--------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
/* レイアウト幅
--------------------------------------------------------*/
/* 階層
--------------------------------------------------------*/
/* ブレークポイント
--------------------------------------------------------*/
/* メディアクエリー
--------------------------------------------------------*/
/* メディアクエリ表示切替
--------------------------------------------------------*/
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}
/* area(枠)
--------------------------------------------------------*/
/*  background-ratio(画面色比率)
--------------------------------------------------------*/
/* body
--------------------------------------------------------*/
body {
  background-color: #f3f3f3;
  font-size: 16px;
  font-weight: 500;
  color: #3e3e3e;
  font-family: Montserrat, "游ゴシック体", "游ゴシック", YuGothic, "Yu Gothic", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  line-height: 1.1875;
}

a {
  color: #3e3e3e;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a:hover {
  opacity: 0.7;
}

/* h, p
--------------------------------------------------------*/
h1 {
  font-size: 32px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 20px;
}

p {
  font-size: inherit;
}
@media (max-width: 767px) {
  p {
    font-size: 14px;
  }
}

/* img
--------------------------------------------------------*/
img {
  width: 100%;
}

/* inner
--------------------------------------------------------*/
.inner {
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

/* section
--------------------------------------------------------*/
section {
  margin-top: 60px;
}
@media (max-width: 767px) {
  section {
    margin-top: 40px;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
}

/* conversion
--------------------------------------------------------*/
.conversion {
  font-size: 18px;
  font-weight: bold;
  background-color: #FFAA3B;
  padding: 16px 50px;
  border: 1px solid none;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.conversion:hover {
  background: #f18900;
}
@media (max-width: 767px) {
  .conversion {
    font-size: inherit;
  }
}
.conversion a {
  color: #fff;
}

/* link
--------------------------------------------------------*/
.link {
  text-align: center;
}
.link a {
  font-size: 20px;
  padding: 20px 78px;
  border: 1px solid;
  letter-spacing: 4px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .link a {
    font-size: 18px;
    letter-spacing: 3.6px;
  }
}
.link a.is-white {
  color: #3e3e3e;
  background-color: #FFFFFF;
}
.link a.is-white:hover {
  color: #fff;
  background: #3E3E3E;
  opacity: 1;
}
.link a.is-black {
  color: #fff;
  background-color: #3E3E3E;
}
.link a.is-black:hover {
  color: #3e3e3e;
  background: #FFFFFF;
  opacity: 1;
}

/* ページトップへ戻る
--------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-weight: bold;
  line-height: 1;
  z-index: 50;
}
@media (max-width: 767px) {
  #page-top {
    bottom: 28px;
    right: 16px;
  }
}

#page-top a {
  font-size: 40px;
  background: #f3f3f3;
  text-decoration: none;
  color: #3e3e3e;
  width: 50px;
  height: 50px;
  padding: 5px;
  text-align: center;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.7;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0;
  background: rgba(255, 255, 255, 0.1019607843);
  z-index: 20;
}
@media (max-width: 767px) {
  header {
    background: #f3f3f3;
    padding: 20px 15px;
  }
  header.menu-active .header__logo {
    visibility: hidden;
  }
}

.header__logo {
  display: none;
}
@media (max-width: 767px) {
  .header__logo {
    display: block;
  }
  .header__logo h1 {
    font-size: 23px;
    font-weight: bold;
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__nav .nav-menu .nav-menu__link {
  letter-spacing: -0.4px;
}
.header__nav .nav-menu .nav-menu__link:not(:first-child) {
  margin-left: 40px;
}
.header__nav .nav-menu .nav-menu__link a {
  -webkit-transition: none;
  transition: none;
}
.header__nav .nav-menu .nav-menu__link a:hover {
  position: relative;
  padding-bottom: 8px;
  opacity: 1;
}
.header__nav .nav-menu .nav-menu__link a:hover::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: #3e3e3e;
}

.drawer-hamburger,
.drawer-nav {
  display: none;
}
@media (max-width: 767px) {
  .drawer-hamburger,
  .drawer-nav {
    display: block;
  }
}

.drawer-toggle {
  z-index: 41;
}

.drawer-open .drawer-nav {
  display: none;
}
@media (max-width: 767px) {
  .drawer-open .drawer-nav {
    display: block;
  }
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background: #3e3e3e;
  width: 28px;
  height: 4px;
  border-radius: 5px;
}

.drawer-hamburger-icon {
  top: 4px;
}

.drawer-menu {
  margin-top: 150px;
  text-align: center;
}
.drawer-menu li:nth-child(n+2) {
  margin-top: 8px;
}
.drawer-menu li a {
  font-size: 18px;
}

.drawer-menu-item {
  display: none;
}
@media (max-width: 767px) {
  .drawer-menu-item {
    display: block;
  }
}

.drawer.drawer-open header,
.drawer.drawer-open .mainVisual,
.drawer.drawer-open section,
.drawer.drawer-open .access,
.drawer.drawer-open footer {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
}

.drawer--right.drawer-open .drawer-overlay {
  background: #3e3e3e;
  opacity: 0.7;
  z-index: 39;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 80%;
}
.drawer--right.drawer-open .drawer-hamburger-icon:after,
.drawer--right.drawer-open .drawer-hamburger-icon:before {
  background: #f3f3f3;
  z-index: 42;
}
.drawer--right.drawer-open .drawer-nav {
  width: 80%;
  z-index: 40;
}

.mainVisual {
  padding-top: 50.5%;
  background: url(../img/mv.png) no-repeat center center/cover;
  position: relative;
}
@media (max-width: 767px) {
  .mainVisual {
    padding-top: 74%;
    background: url(../img/mv.png) no-repeat left 22% center/cover;
  }
}

@media (max-width: 767px) {
  .mainVisual__inner {
    padding: 160px 16px 230px;
    text-align: center;
  }
}

.mainVisual__wrap {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-38.2%);
          transform: translateY(-38.2%);
  left: 50%;
  max-width: calc(1200px / 2);
  margin-right: 40px;
}
@media (max-width: 767px) {
  .mainVisual__wrap {
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%);
    left: 0;
    margin-right: 0;
    padding: 0 16px;
  }
}

.mainVisual__message .message-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .mainVisual__message .message-title {
    font-size: 24px;
    letter-spacing: 0;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .mainVisual__message .message-title {
    font-size: 24px;
    line-height: 1.6666666667;
    letter-spacing: 0;
    text-align: left;
  }
}
.mainVisual__message .message-lead {
  font-size: 18px;
  font-weight: bold;
  margin-top: 28px;
  line-height: 1.5555555556;
  letter-spacing: 0.45px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .mainVisual__message .message-lead {
    font-size: 14px;
    margin-top: 32px;
    letter-spacing: 0;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .mainVisual__message .message-lead {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4285714286;
    letter-spacing: 0;
    text-align: left;
  }
}

.message-link {
  display: inline-block;
  margin-top: 54px;
}
@media (max-width: 767px) {
  .message-link {
    margin-top: 38px;
    line-height: 1.5;
  }
}
.message-link a {
  color: #fff;
  padding: 16px 52px;
}
.message-link a:hover {
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .message-link a {
    font-size: inherit;
    padding: 16px 32px;
  }
}
@media (max-width: 767px) {
  .message-link a {
    font-size: inherit;
    padding: 16px 32px;
  }
}

.news {
  margin-top: 120px;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .news {
    margin-top: -10%;
    position: relative;
    padding: 0 16px;
  }
}
.news .news__inner {
  background-color: #ffffff;
  padding: 60px;
  border: 1px solid none;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
  max-width: 1080px;
}
@media (max-width: 767px) {
  .news .news__inner {
    background-color: #ffffff;
    padding: 40px 0 56px;
    border: 1px solid none;
    -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
  }
}

.news__items {
  margin: 70px auto 0;
}
@media (max-width: 767px) {
  .news__items {
    margin-top: 44px;
  }
}

.news__item {
  border-bottom: 1px solid #CECDCD;
}
.news__item:first-child {
  border-top: 1px solid #CECDCD;
}
.news__item a {
  padding: 35px 0 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .news__item a {
    display: block;
    padding: 7px 15px 13px;
  }
}
.news__item a::after {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  background: url(../img/news-arrow.svg) no-repeat center center/contain;
}
.news__item a:hover {
  opacity: 1;
  background: rgba(73, 115, 255, 0.1019607843);
}
.news__item a:hover .meta-label {
  background: #FFFFFF;
}
.news__item a .news__item--meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 7px;
}
@media (max-width: 767px) {
  .news__item a .news__item--meta {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-bottom: 6px;
  }
}
.news__item a .meta-time {
  width: 138px;
}
@media (max-width: 767px) {
  .news__item a .meta-time {
    width: 100px;
  }
}
.news__item a .meta-time .meta-time__published {
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 0.45px;
}
@media (max-width: 767px) {
  .news__item a .meta-time .meta-time__published {
    font-size: 14px;
  }
}
.news__item a .meta-label {
  width: 121px;
  font-size: 14px;
  letter-spacing: 0.35px;
  text-align: center;
  padding: 6px 0px;
  border: 2px solid #3b69ff;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .news__item a .meta-label {
    width: 81px;
    padding: 1px;
  }
}
@media (max-width: 767px) {
  .news__item a .meta-label p {
    font-size: 12px;
  }
}
.news__item a .news__item--title {
  margin-left: 40px;
  width: calc(100% - 138px - 161px - 83px);
  font-size: 18px;
  line-height: 1.5555555556;
  letter-spacing: 0.45px;
}
@media (max-width: 767px) {
  .news__item a .news__item--title {
    width: 88%;
    margin-left: 0;
    line-height: 1.4285714286;
  }
}

.news__link {
  margin-top: 59px;
  text-align: center;
}
@media (max-width: 767px) {
  .news__link {
    margin-top: 57px;
    width: 100%;
  }
  .news__link a {
    padding: 14px 98px;
  }
}

.service {
  margin-top: 120px;
  padding-top: 60px;
  background: #3e3e3e;
  background: -webkit-gradient(linear, left top, left bottom, from(#3e3e3e), color-stop(80%, #3e3e3e), color-stop(80%, transparent));
  background: linear-gradient(to bottom, #3e3e3e 0%, #3e3e3e 80%, transparent 80%);
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .service {
    background: -webkit-gradient(linear, left top, left bottom, from(#3e3e3e), color-stop(59%, #3e3e3e), color-stop(59%, transparent));
    background: linear-gradient(to bottom, #3e3e3e 0%, #3e3e3e 59%, transparent 59%);
    margin-top: 60px;
    padding-top: 43px;
  }
}
.service .section-title {
  color: #fff;
}

.service__items {
  background-color: #ffffff;
  padding: 62px 44px;
  border: 1px solid none;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
  width: 960px;
  max-width: 100%;
  margin: 62px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .service__items {
    display: block;
    margin-top: 42px;
    background-color: #ffffff;
    padding: 40px 16px;
    border: 1px solid none;
    -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
  }
}
.service__items .service__item {
  width: calc(33.3% - 60px);
  text-align: center;
}
.service__items .service__item:not(:first-child) {
  margin-left: 90px;
}
@media (max-width: 767px) {
  .service__items .service__item:not(:first-child) {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .service__items .service__item {
    width: 100%;
  }
}
.service__items .service__item .service__item--image {
  padding-top: 12px;
}
@media (max-width: 767px) {
  .service__items .service__item .service__item--image {
    padding-top: 10px;
  }
}
.service__items .service__item .service__item--image img {
  width: 52px;
  height: 52px;
}
.service__items .service__item .service__item--title {
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .service__items .service__item .service__item--title {
    margin-top: 12px;
    line-height: 1.2;
  }
}
.service__items .service__item .service__item--title p {
  font-size: 20px;
}
.service__items .service__item .service__item--message {
  margin-top: 11px;
  font-size: 14px;
  text-align: left;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .service__items .service__item .service__item--message {
    margin-top: 16px;
  }
}

.results {
  margin: 120px 0 0 40px;
  padding: 60px 0 80px 20px;
  background: #3e3e3e;
}
@media (max-width: 767px) {
  .results {
    margin: 57px 0 0 0;
    padding: 43px 0;
  }
}
.results .results__inner {
  padding-right: 0;
}
.results .section-title {
  color: #fff;
  text-align: left;
}
@media (max-width: 767px) {
  .results .section-title {
    padding-right: 20px;
    text-align: center;
  }
}

.result__items {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .result__items {
    margin-top: 46px;
  }
}
.result__items .result__item {
  max-width: 400px;
  max-height: 366px;
  background: #f3f3f3;
}
@media (max-width: 767px) {
  .result__items .result__item {
    margin-left: auto;
  }
}
.result__items .result__item .result__item--title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 18px;
  padding: 0 16px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .result__items .result__item .result__item--title {
    margin-top: 10px;
    line-height: 1.1428571429;
    padding: 0 14px;
    letter-spacing: 0.01px;
  }
}
.result__items .result__item .result__item--message {
  padding: 9px 14px 17px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .result__items .result__item .result__item--message {
    padding: 10px;
    margin-top: 0;
  }
  .result__items .result__item .result__item--message p {
    font-size: 12px;
    letter-spacing: 0.1px;
  }
}

.results__link {
  margin-top: 60px;
  text-align: left;
}
@media (max-width: 767px) {
  .results__link {
    margin-top: 24px;
    margin-right: 14px;
    text-align: center;
  }
  .results__link a {
    padding: 14px 0;
    width: 92%;
    display: inline-block;
    line-height: 1.2777777778;
    letter-spacing: 3.6px;
  }
}

/* スライダー
--------------------------------------------------------*/
@media (max-width: 767px) {
  .swiper-slide-next .result__item {
    margin-left: 0px;
  }
}

.swiper-pagination {
  position: relative;
  text-align: left;
  margin-top: 43px;
}
@media (max-width: 767px) {
  .swiper-pagination {
    margin-top: 26px;
    padding-right: 8px;
    text-align: center;
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #f3f3f3;
  opacity: 1;
}
.swiper-pagination-bullet:not(:first-child) {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  position: relative;
}
.swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 1px solid #f3f3f3;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet-active::after {
    width: 18px;
    height: 18px;
  }
}

.price {
  margin-top: 122px;
}
@media (max-width: 767px) {
  .price {
    margin-top: 40px;
  }
}

.price__items {
  max-width: 960px;
  margin: 64px auto 0;
}
@media (max-width: 767px) {
  .price__items {
    margin-top: 45px;
  }
}
.price__items .price-table table {
  margin: 0 auto;
  border: 1px solid #707070;
  border-collapse: collapse;
}
.price__items .price-table table th,
.price__items .price-table table td {
  border: 1px solid #707070;
  padding: 16px;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .price__items .price-table table th,
  .price__items .price-table table td {
    padding: 15px;
    font-size: 20px;
  }
}
.price__items .price-table table th {
  width: 262px;
  color: #fff;
  background: #3e3e3e;
}
@media (max-width: 767px) {
  .price__items .price-table table th {
    width: 200px;
  }
}
.price__items .price-table table td {
  width: 698px;
  text-align: left;
  padding-left: 40px;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .price__items .price-table table td {
    padding-left: 20px;
  }
}

.price__remark {
  margin-top: 12px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .price__remark p {
    font-size: 12px;
  }
}

.comments {
  margin-top: 116px;
  background: -webkit-gradient(linear, left bottom, left top, from(#3e3e3e), color-stop(79%, #3e3e3e), color-stop(79%, transparent));
  background: linear-gradient(to top, #3e3e3e 0%, #3e3e3e 79%, transparent 79%);
  background-size: 76.5% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .comments {
    background: -webkit-gradient(linear, left bottom, left top, from(#3e3e3e), color-stop(90%, #3e3e3e), color-stop(90%, transparent));
    background: linear-gradient(to top, #3e3e3e 0%, #3e3e3e 90%, transparent 90%);
    padding-bottom: 50px;
    background-size: 90% 100%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 767px) {
  .comments {
    margin-top: 60px;
    padding: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#3e3e3e), color-stop(88%, #3e3e3e), color-stop(88%, transparent));
    background: linear-gradient(to top, #3e3e3e 0%, #3e3e3e 88%, transparent 88%);
    background-size: 100%;
  }
}
.comments .comments__inner .section-title {
  text-align: left;
}

.comment__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .comment__body {
    position: relative;
    display: block;
    padding-bottom: 60px;
  }
}

.comment__items {
  background-color: #ffffff;
  padding: 124px 60px;
  border: 1px solid none;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .comment__items {
    width: 70%;
    min-width: 550px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .comment__items {
    background-color: #ffffff;
    padding: 40px 20px;
    border: 1px solid none;
    -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
    margin-bottom: 0;
  }
}
.comment__items .comment__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  padding: 0 0;
}
@media (max-width: 767px) {
  .comment__items .comment__item {
    margin-top: 40px;
  }
  .comment__items .comment__item:not(:first-child) {
    margin-top: 36px;
  }
}
.comment__items .comment__item .comment__item--person img {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .comment__items .comment__item .comment__item--person img {
    width: 60px;
    height: 60px;
  }
}
.comment__items .comment__item .comment__item--message {
  width: calc(100% - 130px);
  margin-left: 32px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .comment__items .comment__item .comment__item--message {
    width: 100%;
    margin-left: 20px;
    line-height: 1.4285714286;
  }
}

.comment__image {
  margin-top: 76px;
}
.comment__image img {
  width: 534px;
  height: 444px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .comment__image {
    display: none;
  }
}
@media (max-width: 767px) {
  .comment__image {
    display: none;
  }
}

.qa {
  margin-top: 0;
  padding: 64px 0 120px;
  background: url(../img/qa-bg.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .qa {
    padding: 40px 0 60px;
  }
}

.qa__items {
  max-width: 612px;
  margin-top: 62px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .qa__items {
    margin-top: 48px;
  }
}
.qa__items .qa__item {
  background-color: #ffffff;
  padding: 14px;
  border: 1px solid none;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
}
@media (max-width: 767px) {
  .qa__items .qa__item {
    background-color: #ffffff;
    padding: 12px;
    border: 1px solid none;
    -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
  }
  .qa__items .qa__item:not(:first-child) {
    margin-top: 26px;
  }
}
.qa__items .qa__item:not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .qa__items .qa__item:not(:first-child) {
    margin-top: 29px;
  }
}
.qa__items .qa__item .qa__item--question {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 1.5;
}
.qa__items .qa__item .qa__item--question:hover {
  cursor: pointer;
}
.qa__items .qa__item .qa__item--question::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2px;
  width: 17px;
  height: 17px;
  background: url(../img/minus.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .qa__items .qa__item .qa__item--question::after {
    width: 17px;
    height: 17px;
  }
}
.qa__items .qa__item .qa__item--question.is-change::after {
  background: url(../img/plus.svg) no-repeat center center/contain;
}
.qa__items .qa__item .qa__item--question.first-question-close::after {
  background: url(../img/plus.svg) no-repeat center center/contain;
}
.qa__items .qa__item .qa__item--question.first-question-close.is-change::after {
  background: url(../img/minus.svg) no-repeat center center/contain;
}
.qa__items .qa__item .qa__item--question span {
  color: #fff;
  padding: 2px 8px;
  max-width: 28px;
  max-height: 28px;
  background: #3b69ff;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  .qa__items .qa__item .qa__item--question span {
    padding: 3px 6px;
  }
}
.qa__items .qa__item .qa__item--question p {
  font-size: inherit;
  margin-left: 16px;
  line-height: 1.5;
}
.qa__items .qa__item .qa__item--answer {
  margin-top: 14px;
  line-height: 1.5;
  padding: 14px 18px;
  background: rgba(59, 105, 255, 0.2);
  border-radius: 4px;
}
@media (max-width: 767px) {
  .qa__items .qa__item .qa__item--answer {
    font-size: 14px;
    margin-top: 16px;
    padding: 8px 16px;
    line-height: 1.4285714286;
  }
}
.qa__items .qa__item .qa__item--answer.first-answer-close {
  display: none;
}

.access {
  margin-top: 0;
  padding-top: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#3e3e3e), color-stop(76.5%, #3e3e3e), color-stop(76.5%, transparent));
  background: linear-gradient(to right, #3e3e3e 0%, #3e3e3e 76.5%, transparent 76.5%);
  background-size: 100% 78%;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access {
    padding: 40px 0 60px;
    background: -webkit-gradient(linear, left top, right top, from(#3e3e3e), color-stop(100%, #3e3e3e), to(transparent));
    background: linear-gradient(to right, #3e3e3e 0%, #3e3e3e 100%, transparent 100%);
  }
}
@media (max-width: 767px) {
  .access {
    padding: 42px 0 58px;
    background: -webkit-gradient(linear, left top, right top, from(#3e3e3e), color-stop(100%, #3e3e3e), to(transparent));
    background: linear-gradient(to right, #3e3e3e 0%, #3e3e3e 100%, transparent 100%);
  }
}
.access .access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access .access__inner {
    display: block;
  }
}
@media (max-width: 767px) {
  .access .access__inner {
    display: block;
  }
}
.access .access__inner .section-title {
  text-align: left;
}

.access__left {
  padding-left: 60px;
}
@media (max-width: 767px) {
  .access__left {
    padding-left: 0;
  }
}
.access__left .access__left--info {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .access__left .access__left--info {
    margin-top: 42px;
  }
}
.access__left .access__left--info .info-address {
  font-weight: 300;
  line-height: 1.5;
  font-family: "游ゴシック体", "游ゴシック", YuGothic, "Yu Gothic", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
}

.access__right {
  margin-left: 74px;
  width: 726px;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access__right {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .access__right {
    margin-top: 16px;
    margin-left: 0;
  }
}
.access__right .access__right--map {
  position: relative;
  width: 100%;
  padding-top: 71.6253443526%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access__right .access__right--map {
    margin-top: 20px;
  }
}
.access__right .access__right--map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__left--link.is-pc {
  text-align: left;
  min-width: 339px;
  margin-top: 48px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access__left--link.is-pc {
    display: none;
  }
}
.access__left--link.is-tab {
  display: none;
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access__left--link.is-tab {
    display: block;
  }
}
@media (max-width: 767px) {
  .access__left--link.is-tab {
    margin-top: 22px;
    display: block;
  }
}
.access__left--link a {
  font-size: 20px;
  padding: 20px 76px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .access__left--link a {
    font-size: 18px;
    padding: 16px;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}

.contact {
  margin-top: 120px;
  padding: 60px;
  background: url(../img/contact-bg.png) no-repeat center center/cover;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .contact {
    margin-top: 0;
    padding: 40px 16px 26px;
    background: url(../img/contact-bg.png) no-repeat left -100px center/cover;
  }
}
.contact .contact__inner {
  background-color: #ffffff;
  padding: 0;
  border: 1px solid none;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  text-align: center;
  max-width: 960px;
}
.contact .contact__inner .contact__lead {
  color: #f3f3f3;
  text-align: center;
  padding: 60px;
  background: url(../img/contact1.png) no-repeat center center/cover;
  border-radius: 12px 12px 0 0;
}
@media (max-width: 767px) {
  .contact .contact__inner .contact__lead {
    padding: 40px 16px;
    background: url(../img/sp/contact1.png) no-repeat center center/cover;
  }
}
.contact .contact__inner .contact__lead .contact__lead--message {
  margin-top: 20px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .contact .contact__inner .contact__lead .contact__lead--message {
    display: inline-block;
    margin: 20px auto 0;
    text-align: left;
  }
}

/* select
--------------------------------------------------------*/
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  border: 1px solid #707070;
  padding: 9px 16px;
  font-family: inherit;
  font-size: inherit;
  width: 178px;
}
@media (max-width: 767px) {
  select {
    font-size: 14px;
    padding: 10px 12px;
    margin-top: 10px;
    width: 100%;
  }
}
select:focus, select:hover {
  -webkit-box-shadow: 0 0 5px rgba(73, 115, 255, 0.8);
          box-shadow: 0 0 5px rgba(73, 115, 255, 0.8);
}
select:focus {
  outline: none;
  border: none;
  border: 1px solid rgba(73, 115, 255, 0.8);
}

/* text, email, textarea
--------------------------------------------------------*/
input[type=text],
input[type=email],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
  position: relative;
  border: none;
  outline: none;
}

input[type=text],
input[type=email] {
  font-size: inherit;
  border-bottom: 1px solid #707070;
}
input[type=text]:focus, input[type=text]:hover,
input[type=email]:focus,
input[type=email]:hover {
  border: none;
  border-bottom: 1px solid rgba(73, 115, 255, 0.8);
}

.is-under-shadow {
  position: relative;
}
.is-under-shadow:focus::after, .is-under-shadow:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: rgba(73, 115, 255, 0.11);
  -webkit-box-shadow: 0 0 6px rgba(73, 115, 255, 0.21);
          box-shadow: 0 0 6px rgba(73, 115, 255, 0.21);
}

textarea {
  border: 1px solid #707070;
  min-height: 200px;
  resize: vertical;
  margin-top: 6px;
}
@media (max-width: 767px) {
  textarea {
    min-height: 160px;
    margin-top: 12px;
  }
}
textarea:focus, textarea:hover {
  border: none;
  outline: 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);
}

/* submit
--------------------------------------------------------*/
button[type=submit]:focus {
  outline: 1px solid #3b69ff;
  -webkit-box-shadow: 0 0 3px rgba(73, 115, 255, 0.8);
          box-shadow: 0 0 3px rgba(73, 115, 255, 0.8);
}

/* placeholder
--------------------------------------------------------*/
.contact__item__input input::-webkit-input-placeholder {
  color: #3e3e3e;
  opacity: 0.5;
}
.contact__item__input input::-moz-placeholder {
  color: #3e3e3e;
  opacity: 0.5;
}
.contact__item__input input:-ms-input-placeholder {
  color: #3e3e3e;
  opacity: 0.5;
}
.contact__item__input input::-ms-input-placeholder {
  color: #3e3e3e;
  opacity: 0.5;
}
.contact__item__input input::placeholder {
  color: #3e3e3e;
  opacity: 0.5;
}

/* radio
--------------------------------------------------------*/
.radio-input {
  opacity: 0;
  width: 0;
  height: 0;
  margin-right: -10px;
  /* 非表示にしたデフォルトのラジオボタンにチェックが入ると、オリジナルボタンのチェックも透明を解除して表示する */
}
.radio-input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 20px;
  position: relative;
  /* afterは枠の中のチェックマークとして利用するため、デザインを適用する
  デフォルトのチェックマークはopacity:0で透明にしておく*/
}
.radio-input + span::before, .radio-input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.radio-input + span::before {
  background: #fff;
  border: 1px solid #707070;
  display: block;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.radio-input + span::after {
  background: #3b69ff;
  border: 1px solid #707070;
  display: block;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
}
.radio-input:checked + span::after {
  opacity: 1;
}
.radio-input:focus + .radio-part::before, .radio-input:hover + .radio-part::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);
}
.radio-input:active + .radio-part::before {
  border: 1px solid #3b69ff;
  background: rgba(73, 115, 255, 0.2);
}

/* checkbox
--------------------------------------------------------*/
input[type=checkbox] {
  opacity: 0;
}
input[type=checkbox]:focus + label span, input[type=checkbox]:hover + label span {
  border: 1px solid #3b69ff;
  -webkit-box-shadow: 0 0 3px rgba(73, 115, 255, 0.8);
          box-shadow: 0 0 3px rgba(73, 115, 255, 0.8);
}
input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
input[type=checkbox] + label span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #FFFFFF;
}
@media (max-width: 767px) {
  input[type=checkbox] + label span {
    width: 18px;
    height: 18px;
  }
}
input[type=checkbox] + label span::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -1px;
  width: 5px;
  height: 14px;
  border: solid #3b69ff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
@media (max-width: 767px) {
  input[type=checkbox] + label span::before {
    width: 4px;
    height: 13px;
  }
}
input[type=checkbox] + label span:active {
  background: rgba(73, 115, 255, 0.2);
}
input[type=checkbox]:checked + label span::before {
  opacity: 1;
}

/* button
--------------------------------------------------------*/
button {
  color: inherit;
  background: inherit;
  cursor: pointer;
}
button:disabled {
  background: #b2b2b2;
  color: #fff;
  cursor: default;
}
button:disabled:hover {
  background: #b2b2b2;
}

.contact__items {
  padding: 60px 120px;
  text-align: left;
}
@media (max-width: 767px) {
  .contact__items {
    padding: 40px 12px;
  }
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .contact__item {
    display: block;
    margin-top: 32px;
  }
  .contact__item:first-child {
    margin-top: 0;
  }
}
.contact__item:not(:first-child) {
  margin-top: 31px;
}
@media (max-width: 767px) {
  .contact__item:not(:first-child) {
    margin-top: 30px;
  }
}
.contact__item .contact__item--title {
  min-width: 188px;
  font-weight: bold;
  position: relative;
}
.contact__item .contact__item--title span {
  width: 40px;
  height: 12px;
  font-size: 12px;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  padding: 0 8px;
  color: #fff;
  background: #FF4646;
  border-radius: 2px;
  margin-left: 12px;
}
@media (max-width: 767px) {
  .contact__item .contact__item--title span {
    margin-left: 20px;
  }
}
.contact__item .contact__item--input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media (max-width: 767px) {
  .contact__item .contact__item--input input {
    margin-top: 11px;
    font-size: 14px;
    padding: 0;
    padding-bottom: 5px;
    min-height: 18px;
  }
}
.contact__item .contact__item--input .input-select {
  position: relative;
}
.contact__item .contact__item--input .input-select::after {
  position: absolute;
  content: "";
  display: block;
  right: 16px;
  top: 10%;
  width: 8px;
  height: 8px;
  border: solid #3E3E3E;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 767px) {
  .contact__item .contact__item--input .input-select::after {
    right: 16px;
    width: 6px;
    height: 6px;
  }
}

.item-message {
  display: block;
}
.item-message .contact__item--title {
  margin-top: 33px;
}
.item-message .contact__item__input {
  margin-top: 8px;
}

.contact-radio .contact-radio__select:not(:first-child) {
  margin-left: 36px;
}

.contact__form--check {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .contact__form--check {
    margin-top: 27px;
    font-size: inherit;
  }
}

.contact__form--submit {
  margin-top: 37px;
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .contact__form--submit {
    margin-top: 31px;
    text-align: center;
  }
}

/* フォーム送信時
--------------------------------------------------------*/
.contact__message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact__message.-error {
  color: #f00;
}

footer {
  padding: 60px 120px;
  background: #3e3e3e;
}
@media (max-width: 767px) {
  footer {
    padding: 70px 76px;
  }
}
@media (max-width: 767px) {
  footer .footer__inner {
    padding: 0;
    text-align: center;
  }
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0.6;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__items {
    display: block;
  }
}

.footer__left .footer__left--icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .footer__left .footer__left--icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__left .footer__left--icons .icon-twitter a {
  opacity: 0.6;
  color: #fff;
  font-size: 36px;
}
.footer__left .footer__left--icons .icon-facebook {
  width: 36px;
  height: 36px;
  margin-left: 32px;
}
@media (max-width: 767px) {
  .footer__left .footer__left--icons .icon-facebook {
    margin-left: 50px;
  }
}
.footer__left .footer__left--icons .icon-facebook a {
  opacity: 0.6;
  color: #fff;
  font-size: 36px;
}

.footer__left--info .info-first {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .footer__left--info .info-first {
    margin-top: 36px;
  }
}
.footer__left--info .info-second {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footer__left--info .info-second {
    margin-top: 26px;
  }
}
.footer__left--info .info-third {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footer__left--info .info-third {
    margin-top: 26px;
  }
}

.footer__right .footer__right--info .info-company {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .footer__right .footer__right--info .info-company {
    font-size: 32px;
    margin-top: 37px;
  }
}
.footer__right .footer__right--info .info-copy {
  margin-top: 10px;
  font-size: 12px;
  text-align: right;
  letter-spacing: 0.3px;
}
@media (max-width: 767px) {
  .footer__right .footer__right--info .info-copy {
    margin-top: 12px;
    text-align: center;
  }
}